diff --git a/public/main.profile.dart.js b/public/main.profile.dart.js index 3e76e1d16521..e4bfda065a36 100644 --- a/public/main.profile.dart.js +++ b/public/main.profile.dart.js @@ -20858,6 +20858,12 @@ this.spans = t1; this._attributed_text$_listeners = t2; }, + AttributionVisitEvent: function AttributionVisitEvent(t0, t1) { + this.index = t0; + this._core$_name = t1; + }, + AttributionVisitor: function AttributionVisitor() { + }, NamedAttribution: function NamedAttribution(t0) { this.id = t0; }, @@ -61671,6 +61677,9 @@ this._follower$_leaderAnchor = t1; this._follower$_followerAnchor = t2; }, + FunctionalAligner: function FunctionalAligner(t0) { + this.delegate = t0; + }, FollowerAlignment: function FollowerAlignment(t0, t1, t2) { this.leaderAnchor = t0; this.followerAnchor = t1; @@ -72520,7 +72529,7 @@ t1 = A.getPlatformName(); t2 = secret == null ? "" : secret; t3 = type$.String; - headers = A.LinkedHashMap_LinkedHashMap$_literal(["X-CLIENT-PLATFORM", t1, "X-CLIENT-VERSION", "5.0.146", "X-API-SECRET", t2, "X-Requested-With", "XMLHttpRequest", "Content-Type", "application/json; charset=utf-8"], t3, t3); + headers = A.LinkedHashMap_LinkedHashMap$_literal(["X-CLIENT-PLATFORM", t1, "X-CLIENT-VERSION", "5.0.147", "X-API-SECRET", t2, "X-Requested-With", "XMLHttpRequest", "Content-Type", "application/json; charset=utf-8"], t3, t3); if (token.length !== 0) headers.$indexSet(0, "X-API-Token", token); t1 = idToken == null; @@ -72546,11 +72555,11 @@ t2 = response.get$body(response).length > 200 ? B.JSString_methods.substring$2(response.get$body(response), 0, 200) : response.get$body(response); throw A.wrapException("Error: please check that Invoice Ninja v5 is installed on the server\n\nURL: " + url + "\n\nResponse: " + t2 + "\n\nHeaders: " + t1.toString$0(0) + "}"); } else { - t1 = A.Version_parse("5.0.146"); + t1 = A.Version_parse("5.0.147"); minClientVersion.toString; t1 = A.Version__compare(t1, A.Version_parse(minClientVersion)); if (t1 < 0) - throw A.wrapException("Error: client not supported, please update to the latest version [Current v5.0.146 < Minimum v" + minClientVersion + "]"); + throw A.wrapException("Error: client not supported, please update to the latest version [Current v5.0.147 < Minimum v" + minClientVersion + "]"); else { t1 = A.Version__compare(A.Version_parse(serverVersion), A.Version_parse("5.0.4")); if (t1 < 0) @@ -106198,6 +106207,9 @@ _InvoiceEmailViewState__buildEdit_closure1: function _InvoiceEmailViewState__buildEdit_closure1(t0) { this.$this = t0; }, + _InvoiceEmailViewState__buildEdit_closure2: function _InvoiceEmailViewState__buildEdit_closure2(t0) { + this.$this = t0; + }, _InvoiceEmailViewState__buildHistory_closure: function _InvoiceEmailViewState__buildHistory_closure(t0) { this.activities = t0; }, @@ -131578,7 +131590,7 @@ _.body = t2; _.email = t3; }, - _TemplatesAndRemindersState_build_closure9: function _TemplatesAndRemindersState_build_closure9(t0, t1) { + _TemplatesAndRemindersState_build_closure10: function _TemplatesAndRemindersState_build_closure10(t0, t1) { this.$this = t0; this.viewModel = t1; }, @@ -131657,6 +131669,9 @@ }, _TemplatesAndRemindersState_build_closure8: function _TemplatesAndRemindersState_build_closure8() { }, + _TemplatesAndRemindersState_build_closure9: function _TemplatesAndRemindersState_build_closure9(t0) { + this.$this = t0; + }, ReminderSettings: function ReminderSettings(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.viewModel = t0; @@ -138731,6 +138746,159 @@ t1._refreshNodeIdCaches$0(); return t1; }, + serializeDocumentToMarkdown(doc) { + var t1, t2, isFirstLine, i, node, _length, _list, index, indent, symbol, t3, serializer, nodeBelow, blockType, t4, + buffer = new A.StringBuffer(""); + for (t1 = doc._editor$_nodes, t2 = type$.JSArray_String, isFirstLine = true, i = 0; i < t1.length; ++i) { + node = B.JSArray_methods.elementAt$1(t1, i); + if (!isFirstLine) + buffer._contents += "\n"; + else + isFirstLine = false; + if (node instanceof A.ImageNode) + buffer._contents += "![" + node._altText + "](" + node._image0$_imageUrl + ")"; + else if (node instanceof A.HorizontalRuleNode) + buffer._contents += "---"; + else if (node instanceof A.ListItemNode) { + _length = node._list_items$_indent + 1; + if (_length < 0) + A.throwExpression(A.ArgumentError$("Length must be a non-negative integer: " + _length, null)); + _list = A._setArrayType(new Array(_length), t2); + for (index = 0; index < _length; ++index) + _list[index] = " "; + indent = B.JSArray_methods.join$1(_list, ""); + symbol = node.type === B.ListItemType_1 ? "*" : "1."; + t3 = node._text$_text; + serializer = new A.AttributedTextMarkdownSerializer(); + serializer.__AttributedTextMarkdownSerializer__fullText_A = t3.text; + serializer._markdown$_buffer = new A.StringBuffer(""); + serializer.__AttributedTextMarkdownSerializer__bufferCursor_A = 0; + t3.visitAttributions$1(serializer); + t3 = buffer._contents += indent + symbol + " " + J.toString$0$(serializer._markdown$_buffer); + nodeBelow = i < t1.length - 1 ? B.JSArray_methods.elementAt$1(t1, i + 1) : null; + if (nodeBelow != null && !(nodeBelow instanceof A.ListItemNode)) + buffer._contents = t3 + "\n"; + } else if (node instanceof A.ParagraphNode) { + blockType = node._metadata.$index(0, "blockType"); + if (blockType.$eq(0, B.NamedAttribution_header1)) { + t3 = node._text$_text; + serializer = new A.AttributedTextMarkdownSerializer(); + serializer.__AttributedTextMarkdownSerializer__fullText_A = t3.text; + serializer._markdown$_buffer = new A.StringBuffer(""); + serializer.__AttributedTextMarkdownSerializer__bufferCursor_A = 0; + t3.visitAttributions$1(serializer); + t3 = buffer._contents += "# " + J.toString$0$(serializer._markdown$_buffer); + } else if (blockType.$eq(0, B.NamedAttribution_header2)) { + t3 = node._text$_text; + serializer = new A.AttributedTextMarkdownSerializer(); + serializer.__AttributedTextMarkdownSerializer__fullText_A = t3.text; + serializer._markdown$_buffer = new A.StringBuffer(""); + serializer.__AttributedTextMarkdownSerializer__bufferCursor_A = 0; + t3.visitAttributions$1(serializer); + t3 = buffer._contents += "## " + J.toString$0$(serializer._markdown$_buffer); + } else if (blockType.$eq(0, B.NamedAttribution_header3)) { + t3 = node._text$_text; + serializer = new A.AttributedTextMarkdownSerializer(); + serializer.__AttributedTextMarkdownSerializer__fullText_A = t3.text; + serializer._markdown$_buffer = new A.StringBuffer(""); + serializer.__AttributedTextMarkdownSerializer__bufferCursor_A = 0; + t3.visitAttributions$1(serializer); + t3 = buffer._contents += "### " + J.toString$0$(serializer._markdown$_buffer); + } else if (blockType.$eq(0, B.NamedAttribution_header4)) { + t3 = node._text$_text; + serializer = new A.AttributedTextMarkdownSerializer(); + serializer.__AttributedTextMarkdownSerializer__fullText_A = t3.text; + serializer._markdown$_buffer = new A.StringBuffer(""); + serializer.__AttributedTextMarkdownSerializer__bufferCursor_A = 0; + t3.visitAttributions$1(serializer); + t3 = buffer._contents += "#### " + J.toString$0$(serializer._markdown$_buffer); + } else if (blockType.$eq(0, B.NamedAttribution_header5)) { + t3 = node._text$_text; + serializer = new A.AttributedTextMarkdownSerializer(); + serializer.__AttributedTextMarkdownSerializer__fullText_A = t3.text; + serializer._markdown$_buffer = new A.StringBuffer(""); + serializer.__AttributedTextMarkdownSerializer__bufferCursor_A = 0; + t3.visitAttributions$1(serializer); + t3 = buffer._contents += "##### " + J.toString$0$(serializer._markdown$_buffer); + } else if (blockType.$eq(0, B.NamedAttribution_header6)) { + t3 = node._text$_text; + serializer = new A.AttributedTextMarkdownSerializer(); + serializer.__AttributedTextMarkdownSerializer__fullText_A = t3.text; + serializer._markdown$_buffer = new A.StringBuffer(""); + serializer.__AttributedTextMarkdownSerializer__bufferCursor_A = 0; + t3.visitAttributions$1(serializer); + t3 = buffer._contents += "###### " + J.toString$0$(serializer._markdown$_buffer); + } else if (blockType.$eq(0, B.NamedAttribution_blockquote)) { + t3 = node._text$_text; + serializer = new A.AttributedTextMarkdownSerializer(); + serializer.__AttributedTextMarkdownSerializer__fullText_A = t3.text; + serializer._markdown$_buffer = new A.StringBuffer(""); + serializer.__AttributedTextMarkdownSerializer__bufferCursor_A = 0; + t3.visitAttributions$1(serializer); + t3 = buffer._contents += "> " + J.toString$0$(serializer._markdown$_buffer); + } else if (blockType.$eq(0, B.NamedAttribution_code)) { + t3 = buffer._contents += "```\n"; + t4 = node._text$_text; + serializer = new A.AttributedTextMarkdownSerializer(); + serializer.__AttributedTextMarkdownSerializer__fullText_A = t4.text; + serializer._markdown$_buffer = new A.StringBuffer(""); + serializer.__AttributedTextMarkdownSerializer__bufferCursor_A = 0; + t4.visitAttributions$1(serializer); + t3 += J.toString$0$(serializer._markdown$_buffer) + "\n"; + buffer._contents = t3; + t3 += "```"; + buffer._contents = t3; + } else { + t3 = node._text$_text; + serializer = new A.AttributedTextMarkdownSerializer(); + serializer.__AttributedTextMarkdownSerializer__fullText_A = t3.text; + serializer._markdown$_buffer = new A.StringBuffer(""); + serializer.__AttributedTextMarkdownSerializer__bufferCursor_A = 0; + t3.visitAttributions$1(serializer); + t3 = buffer._contents += J.toString$0$(serializer._markdown$_buffer); + } + if (i !== t1.length - 1) + buffer._contents = t3 + "\n"; + } + } + t1 = buffer._contents; + return t1.charCodeAt(0) == 0 ? t1 : t1; + }, + AttributedTextMarkdownSerializer__sortAndSerializeAttributions(attributions, $event) { + var t1, t2, + buffer = new A.StringBuffer(""); + for (t1 = J.get$iterator$ax($event === B.AttributionVisitEvent_0 ? B.List_Toh : new A.ReversedListIterable(B.List_Toh, type$.ReversedListIterable_NamedAttribution)); t1.moveNext$0();) { + t2 = t1.get$current(t1); + if (attributions.contains$1(0, t2)) + buffer._contents += A.AttributedTextMarkdownSerializer__encodeMarkdownStyle(t2); + } + t1 = buffer._contents; + return t1.charCodeAt(0) == 0 ? t1 : t1; + }, + AttributedTextMarkdownSerializer__encodeMarkdownStyle(attribution) { + if (attribution.$eq(0, B.NamedAttribution_code)) + return "`"; + else if (attribution.$eq(0, B.NamedAttribution_bold)) + return "**"; + else if (attribution.$eq(0, B.NamedAttribution_italics)) + return "*"; + else if (attribution.$eq(0, B.NamedAttribution_strikethrough)) + return "~"; + else + return ""; + }, + AttributedTextMarkdownSerializer__encodeLinkMarker(attributions, $event) { + var linkAttribution, + linkAttributions = new A.WhereIterable(attributions, new A.AttributedTextMarkdownSerializer__encodeLinkMarker_closure(), A._instanceType(attributions)._eval$1("WhereIterable")); + if (!linkAttributions.get$isEmpty(linkAttributions)) { + linkAttribution = type$.LinkAttribution._as(linkAttributions.get$first(linkAttributions)); + if ($event === B.AttributionVisitEvent_0) + return "["; + else + return "](" + linkAttribution.url.toString$0(0) + ")"; + } + return ""; + }, _MarkdownToDocument: function _MarkdownToDocument(t0, t1) { this._markdown$_content = t0; this._listItemTypeStack = t1; @@ -138739,6 +138907,13 @@ this._imageAltText = this._markdown$_imageUrl = null; this._textStack = t0; }, + AttributedTextMarkdownSerializer: function AttributedTextMarkdownSerializer() { + this.__AttributedTextMarkdownSerializer__fullText_A = $; + this._markdown$_buffer = null; + this.__AttributedTextMarkdownSerializer__bufferCursor_A = $; + }, + AttributedTextMarkdownSerializer__encodeLinkMarker_closure: function AttributedTextMarkdownSerializer__encodeLinkMarker_closure() { + }, _EmptyParagraphSyntax: function _EmptyParagraphSyntax() { }, GoogleOAuth_signIn(callback, isSilent) { @@ -139020,9 +139195,10 @@ }, getRandomString_closure: function getRandomString_closure() { }, - ExampleEditor: function ExampleEditor(t0, t1) { + ExampleEditor: function ExampleEditor(t0, t1, t2) { this.value = t0; - this.key = t1; + this.onChanged = t1; + this.key = t2; }, _ExampleEditorState: function _ExampleEditorState(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; @@ -139069,6 +139245,43 @@ }, _darkModeStyles_closure1: function _darkModeStyles_closure1() { }, + SuperEditorDemoTextItemSelector: function SuperEditorDemoTextItemSelector(t0, t1, t2, t3, t4, t5) { + var _ = this; + _.parentFocusNode = t0; + _.boundaryKey = t1; + _.id = t2; + _.items = t3; + _.onSelected = t4; + _.key = t5; + }, + _SuperEditorDemoTextItemSelectorState: function _SuperEditorDemoTextItemSelectorState(t0, t1, t2) { + var _ = this; + _._super_editor_item_selector$_popoverController = t0; + _._popoverFocusNode = t1; + _._widget = null; + _._debugLifecycleState = t2; + _._framework$_element = null; + }, + _SuperEditorDemoTextItemSelectorState_build_closure: function _SuperEditorDemoTextItemSelectorState_build_closure(t0) { + this.$this = t0; + }, + _SuperEditorDemoTextItemSelectorState_build__closure: function _SuperEditorDemoTextItemSelectorState_build__closure(t0) { + this.$this = t0; + }, + _SuperEditorDemoTextItemSelectorState__buildButton_closure: function _SuperEditorDemoTextItemSelectorState__buildButton_closure(t0) { + this.$this = t0; + }, + SuperEditorDemoTextItem: function SuperEditorDemoTextItem(t0, t1) { + this.id = t0; + this.label = t1; + }, + SuperEditorPopoverButton: function SuperEditorPopoverButton(t0, t1, t2, t3) { + var _ = this; + _.padding = t0; + _.onTap = t1; + _.child = t2; + _.key = t3; + }, EditorToolbar: function EditorToolbar(t0, t1, t2, t3, t4, t5, t6, t7) { var _ = this; _.editorViewportKey = t0; @@ -139099,6 +139312,16 @@ _EditorToolbarState__applyLink_closure: function _EditorToolbarState__applyLink_closure(t0) { this.$this = t0; }, + _EditorToolbarState__onBlockTypeSelected_closure: function _EditorToolbarState__onBlockTypeSelected_closure(t0, t1) { + this.$this = t0; + this.selectedItem = t1; + }, + _EditorToolbarState__onBlockTypeSelected__closure: function _EditorToolbarState__onBlockTypeSelected__closure(t0) { + this.selectedItem = t0; + }, + _EditorToolbarState__buildBlockTypeSelector_closure: function _EditorToolbarState__buildBlockTypeSelector_closure(t0) { + this.$this = t0; + }, _EditorToolbarState__buildUrlField_closure0: function _EditorToolbarState__buildUrlField_closure0() { }, _EditorToolbarState__buildUrlField_closure: function _EditorToolbarState__buildUrlField_closure() { @@ -139109,6 +139332,10 @@ _EditorToolbarState__buildUrlField__closure: function _EditorToolbarState__buildUrlField__closure(t0) { this.$this = t0; }, + _TextType: function _TextType(t0, t1) { + this.index = t0; + this._core$_name = t1; + }, ImageFormatToolbar: function ImageFormatToolbar(t0, t1, t2, t3) { var _ = this; _.anchor = t0; @@ -143010,6 +143237,8 @@ ChangeComposingRegionCommand: function ChangeComposingRegionCommand(t0) { this.composingRegion = t0; }, + ClearComposingRegionRequest: function ClearComposingRegionRequest() { + }, ChangeInteractionModeRequest: function ChangeInteractionModeRequest(t0) { this.isInteractionModeDesired = t0; }, @@ -143382,6 +143611,18 @@ this.child = t1; this.key = t2; }, + createDefaultDocumentEditor(composer, $document) { + var t1 = A.LinkedHashMap_LinkedHashMap$_literal(["document", $document, "composer", composer], type$.String, type$.Editable), + t2 = A.List_List$from($.$get$defaultRequestHandlers(), true, type$.nullable_EditCommand_Function_EditRequest), + t3 = A.List_List$from($.$get$defaultEditorReactions(), true, type$.EditReaction), + t4 = A._setArrayType([], type$.JSArray_EditListener), + editor = new A.Editor(t2, t3, t4); + t1 = new A.EditContext(t1); + editor.__Editor_context_F = t1; + t2 = type$.JSArray_EditCommand; + editor.__Editor__commandExecutor_F = new A._DocumentEditorCommandExecutor(t1, new A.EditorCommandQueue(A._setArrayType([], t2), A._setArrayType([], t2)), A._setArrayType([], type$.JSArray_EditEvent)); + return editor; + }, defaultRequestHandlers_closure: function defaultRequestHandlers_closure() { }, defaultRequestHandlers_closure0: function defaultRequestHandlers_closure0() { @@ -143460,6 +143701,10 @@ }, defaultRequestHandlers_closure37: function defaultRequestHandlers_closure37() { }, + defaultRequestHandlers_closure38: function defaultRequestHandlers_closure38() { + }, + defaultRequestHandlers_closure39: function defaultRequestHandlers_closure39() { + }, HeaderConversionReaction__getHeaderAttributionForLevel(level) { switch (level) { case 1: @@ -143562,21 +143807,21 @@ _.blinkTimingMode = t4; _.key = t5; }, - _CaretDocumentOverlayState: function _CaretDocumentOverlayState(t0, t1, t2) { + CaretDocumentOverlayState: function CaretDocumentOverlayState(t0, t1, t2) { var _ = this; - _.___CaretDocumentOverlayState__blinkController_F = $; + _.__CaretDocumentOverlayState__blinkController_F = $; _.SingleTickerProviderStateMixin__ticker = t0; _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; _._widget = _._layoutData = null; _._debugLifecycleState = t2; _._framework$_element = null; }, - _CaretDocumentOverlayState__onSelectionChange_closure: function _CaretDocumentOverlayState__onSelectionChange_closure() { + CaretDocumentOverlayState__onSelectionChange_closure: function CaretDocumentOverlayState__onSelectionChange_closure() { }, - _CaretDocumentOverlayState_doBuild_closure: function _CaretDocumentOverlayState_doBuild_closure(t0) { + CaretDocumentOverlayState_doBuild_closure: function CaretDocumentOverlayState_doBuild_closure(t0) { this.$this = t0; }, - __CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin: function __CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin() { + _CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin: function _CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin() { }, EditorSelectionAndFocusPolicy: function EditorSelectionAndFocusPolicy(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10) { var _ = this; @@ -143620,7 +143865,7 @@ _.___DocumentMouseInteractorState__focusNode_A = $; _._document_gestures_mouse$_previousSelection = null; _._document_gestures_mouse$_selectionType = t0; - _._dragEndGlobal = _._dragStartGlobal = null; + _._dragEndGlobal = _._dragSelectionBase = _._dragStartGlobal = null; _._expandSelectionDuringDrag = false; _._document_gestures_mouse$_panGestureDevice = _._wordSelectionDownstream = _._wordSelectionUpstream = null; _.___DocumentMouseInteractorState__selectionSubscription_A = $; @@ -143784,17 +144029,18 @@ this.$this = t0; this.gestureSettings = t1; }, - SuperEditorAndroidControlsOverlayManager: function SuperEditorAndroidControlsOverlayManager(t0, t1, t2, t3, t4, t5, t6, t7, t8) { + SuperEditorAndroidControlsOverlayManager: function SuperEditorAndroidControlsOverlayManager(t0, t1, t2, t3, t4, t5, t6, t7, t8, t9) { var _ = this; - _.document = t0; - _.getDocumentLayout = t1; - _.selection = t2; - _.setSelection = t3; - _.scrollChangeSignal = t4; - _.dragHandleAutoScroller = t5; - _.defaultToolbarBuilder = t6; - _.child = t7; - _.key = t8; + _.tapRegionGroupId = t0; + _.document = t1; + _.getDocumentLayout = t2; + _.selection = t3; + _.setSelection = t4; + _.scrollChangeSignal = t5; + _.dragHandleAutoScroller = t6; + _.defaultToolbarBuilder = t7; + _.child = t8; + _.key = t9; }, SuperEditorAndroidControlsOverlayManagerState: function SuperEditorAndroidControlsOverlayManagerState(t0, t1, t2, t3) { var _ = this; @@ -143839,8 +144085,6 @@ }, SuperEditorAndroidControlsOverlayManagerState__buildMagnifier_closure: function SuperEditorAndroidControlsOverlayManagerState__buildMagnifier_closure() { }, - SuperEditorAndroidControlsOverlayManagerState__buildDebugSelectionFocalPoint_closure: function SuperEditorAndroidControlsOverlayManagerState__buildDebugSelectionFocalPoint_closure() { - }, SelectionBound: function SelectionBound(t0, t1) { this.index = t0; this._core$_name = t1; @@ -143970,10 +144214,12 @@ this.index = t0; this._core$_name = t1; }, - SuperEditorIosToolbarOverlayManager: function SuperEditorIosToolbarOverlayManager(t0, t1, t2) { - this.defaultToolbarBuilder = t0; - this.child = t1; - this.key = t2; + SuperEditorIosToolbarOverlayManager: function SuperEditorIosToolbarOverlayManager(t0, t1, t2, t3) { + var _ = this; + _.tapRegionGroupId = t0; + _.defaultToolbarBuilder = t1; + _.child = t2; + _.key = t3; }, SuperEditorIosToolbarOverlayManagerState: function SuperEditorIosToolbarOverlayManagerState(t0, t1) { var _ = this; @@ -144866,10 +145112,30 @@ UnIndentListItemCommand: function UnIndentListItemCommand(t0) { this.nodeId = t0; }, + ConvertListItemToParagraphRequest: function ConvertListItemToParagraphRequest(t0, t1) { + this.nodeId = t0; + this.paragraphMetadata = t1; + }, ConvertListItemToParagraphCommand: function ConvertListItemToParagraphCommand(t0, t1) { this.nodeId = t0; this.paragraphMetadata = t1; }, + ConvertParagraphToListItemRequest: function ConvertParagraphToListItemRequest(t0, t1) { + this.nodeId = t0; + this.type = t1; + }, + ConvertParagraphToListItemCommand: function ConvertParagraphToListItemCommand(t0, t1) { + this.nodeId = t0; + this.type = t1; + }, + ChangeListItemTypeRequest: function ChangeListItemTypeRequest(t0, t1) { + this.nodeId = t0; + this.newType = t1; + }, + ChangeListItemTypeCommand: function ChangeListItemTypeCommand(t0, t1) { + this.nodeId = t0; + this.newType = t1; + }, SplitListItemRequest: function SplitListItemRequest(t0, t1, t2) { this.nodeId = t0; this.splitPosition = t1; @@ -146115,6 +146381,21 @@ }, ContentLayerState: function ContentLayerState() { }, + RoundedRectanglePopoverAppearance: function RoundedRectanglePopoverAppearance(t0, t1) { + this.child = t0; + this.key = t1; + }, + _RoundedRectanglePopoverAppearanceState: function _RoundedRectanglePopoverAppearanceState(t0, t1, t2) { + var _ = this; + _.___RoundedRectanglePopoverAppearanceState__containerFadeInAnimation_F = _.___RoundedRectanglePopoverAppearanceState__animationController_F = $; + _.SingleTickerProviderStateMixin__ticker = t0; + _.SingleTickerProviderStateMixin__tickerModeNotifier = t1; + _._widget = null; + _._debugLifecycleState = t2; + _._framework$_element = null; + }, + __RoundedRectanglePopoverAppearanceState_State_SingleTickerProviderStateMixin: function __RoundedRectanglePopoverAppearanceState_State_SingleTickerProviderStateMixin() { + }, AxisOffset: function AxisOffset(t0, t1) { this.leading = t0; this.trailing = t1; @@ -146869,6 +147150,72 @@ }, _MagnifierAndToolbarController_Object_ChangeNotifier: function _MagnifierAndToolbarController_Object_ChangeNotifier() { }, + _PopoverScaffoldState_closePopoverOnTapOutside(controller) { + controller.close$0(0); + }, + defaultPopoverAligner(globalLeaderRect, followerSize, screenSize, boundaryKey) { + var t1, t2, t3, bounds, alignment, _null = null; + if (boundaryKey == null) + t1 = _null; + else { + t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, boundaryKey); + t1 = t1 == null ? _null : t1.get$renderObject(); + } + type$.nullable_RenderBox._as(t1); + if (t1 != null) { + t2 = A.MatrixUtils_transformPoint(t1.getTransformTo$1(0, _null), B.Offset_0_0); + t3 = t1.get$size(t1).bottomRight$1(0, B.Offset_0_0); + bounds = A.Rect$fromPoints(t2, A.MatrixUtils_transformPoint(t1.getTransformTo$1(0, _null), t3)); + } else + bounds = new A.Rect(0, 0, 0 + screenSize._dx, 0 + screenSize._dy); + alignment = A._Cell$named("alignment"); + t1 = followerSize._dy; + if (globalLeaderRect.bottom + t1 < bounds.bottom) + alignment.__late_helper$_value = B.FollowerAlignment_KpO; + else if (globalLeaderRect.top - t1 > bounds.top) + alignment.__late_helper$_value = B.FollowerAlignment_ecu; + else + alignment.__late_helper$_value = B.FollowerAlignment_KpO; + return alignment._readLocal$0(); + }, + PopoverScaffold: function PopoverScaffold(t0, t1, t2, t3, t4, t5, t6) { + var _ = this; + _.controller = t0; + _.buttonBuilder = t1; + _.popoverBuilder = t2; + _.popoverFocusNode = t3; + _.parentFocusNode = t4; + _.boundaryKey = t5; + _.key = t6; + }, + _PopoverScaffoldState: function _PopoverScaffoldState(t0, t1, t2, t3) { + var _ = this; + _._popover_scaffold$_overlayController = t0; + _._popoverLink = t1; + _._scaffoldFocusNode = t2; + _.___PopoverScaffoldState__screenBoundary_A = _.___PopoverScaffoldState__screenSize_A = $; + _._widget = null; + _._debugLifecycleState = t3; + _._framework$_element = null; + }, + _PopoverScaffoldState__onPopoverControllerChanged_closure: function _PopoverScaffoldState__onPopoverControllerChanged_closure(t0) { + this.$this = t0; + }, + _PopoverScaffoldState__buildPopover_closure: function _PopoverScaffoldState__buildPopover_closure(t0) { + this.$this = t0; + }, + PopoverController: function PopoverController(t0) { + var _ = this; + _._shouldShow = false; + _.ChangeNotifier__count = 0; + _.ChangeNotifier__listeners = t0; + _.ChangeNotifier__reentrantlyRemovedListeners = _.ChangeNotifier__notificationCallStackDepth = 0; + _.ChangeNotifier__debugDisposed = false; + }, + PopoverGeometry: function PopoverGeometry() { + }, + _PopoverController_Object_ChangeNotifier: function _PopoverController_Object_ChangeNotifier() { + }, SuperEditorPopover: function SuperEditorPopover(t0, t1, t2, t3) { var _ = this; _.popoverFocusNode = t0; @@ -146876,6 +147223,44 @@ _.child = t2; _.key = t3; }, + ItemSelectionList: function ItemSelectionList(t0, t1, t2, t3, t4, t5, t6, t7) { + var _ = this; + _.value = t0; + _.items = t1; + _.itemBuilder = t2; + _.onItemSelected = t3; + _.onCancel = t4; + _.focusNode = t5; + _.key = t6; + _.$ti = t7; + }, + ItemSelectionListState: function ItemSelectionListState(t0, t1, t2, t3, t4, t5, t6) { + var _ = this; + _._selectable_list$_scrollableKey = t0; + _.scrollController = t1; + _._itemKeys = t2; + _._activeIndex = null; + _.SingleTickerProviderStateMixin__ticker = t3; + _.SingleTickerProviderStateMixin__tickerModeNotifier = t4; + _._widget = null; + _._debugLifecycleState = t5; + _._framework$_element = null; + _.$ti = t6; + }, + ItemSelectionListState__activateItem_closure: function ItemSelectionListState__activateItem_closure(t0, t1) { + this.$this = t0; + this.animationDuration = t1; + }, + ItemSelectionListState__onKeyEvent_closure: function ItemSelectionListState__onKeyEvent_closure(t0, t1) { + this._box_0 = t0; + this.$this = t1; + }, + ItemSelectionListState_build_closure: function ItemSelectionListState_build_closure(t0, t1) { + this.$this = t0; + this.i = t1; + }, + _ItemSelectionListState_State_SingleTickerProviderStateMixin: function _ItemSelectionListState_State_SingleTickerProviderStateMixin() { + }, SignalNotifier: function SignalNotifier(t0) { var _ = this; _.ChangeNotifier__count = 0; @@ -147047,7 +147432,9 @@ _.__editing_controls0$_upstreamHandleKey = t1; _.__editing_controls0$_downstreamHandleKey = t2; _.__editing_controls0$_isDraggingExtent = _.__editing_controls0$_isDraggingBase = _._isDraggingCollapsed = false; - _._widget = _._collapsedHandleOffset = _._touchHandleOffsetFromLineOfText = _.__editing_controls0$_localDragOffset = _.__editing_controls0$_globalDragOffset = null; + _._touchHandleOffsetFromLineOfText = _.__editing_controls0$_localDragOffset = _.__editing_controls0$_globalDragOffset = null; + _._needToSyncSelectionWithHandleLocation = false; + _._widget = _._collapsedHandleOffset = null; _._debugLifecycleState = t3; _._framework$_element = null; }, @@ -147076,6 +147463,9 @@ this.$this = t0; this.details = t1; }, + _AndroidEditingOverlayControlsState__updateSelectionForDragHandleAfterScrollChange_closure: function _AndroidEditingOverlayControlsState__updateSelectionForDragHandleAfterScrollChange_closure(t0) { + this.$this = t0; + }, _AndroidEditingOverlayControlsState__onHandleDragEnd_closure: function _AndroidEditingOverlayControlsState__onHandleDragEnd_closure(t0) { this.$this = t0; }, @@ -147111,16 +147501,17 @@ }, __AndroidEditingOverlayControlsState_State_WidgetsBindingObserver: function __AndroidEditingOverlayControlsState_State_WidgetsBindingObserver() { }, - AndroidTextFieldTouchInteractor: function AndroidTextFieldTouchInteractor(t0, t1, t2, t3, t4, t5, t6, t7) { + AndroidTextFieldTouchInteractor: function AndroidTextFieldTouchInteractor(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.focusNode = t0; _.textController = t1; _.editingOverlayController = t2; _.textScrollController = t3; _.textKey = t4; - _.showDebugPaint = t5; - _.child = t6; - _.key = t7; + _.getGlobalCaretRect = t5; + _.showDebugPaint = t6; + _.child = t7; + _.key = t8; }, AndroidTextFieldTouchInteractorState: function AndroidTextFieldTouchInteractorState(t0, t1, t2, t3) { var _ = this; @@ -147137,7 +147528,7 @@ this.$this = t0; this.tapTextPosition = t1; }, - AndroidTextFieldTouchInteractorState__onTextPanStart_closure: function AndroidTextFieldTouchInteractorState__onTextPanStart_closure(t0, t1) { + AndroidTextFieldTouchInteractorState__onPanStart_closure: function AndroidTextFieldTouchInteractorState__onPanStart_closure(t0, t1) { this.$this = t0; this.details = t1; }, @@ -147219,6 +147610,9 @@ SuperAndroidTextFieldState_initState_closure: function SuperAndroidTextFieldState_initState_closure(t0) { this.$this = t0; }, + SuperAndroidTextFieldState_initState_closure0: function SuperAndroidTextFieldState_initState_closure0(t0) { + this.$this = t0; + }, SuperAndroidTextFieldState_dispose_closure: function SuperAndroidTextFieldState_dispose_closure(t0) { this.$this = t0; }, @@ -148642,16 +149036,17 @@ }, _FloatingCursorController_Object_ChangeNotifier: function _FloatingCursorController_Object_ChangeNotifier() { }, - IOSTextFieldTouchInteractor: function IOSTextFieldTouchInteractor(t0, t1, t2, t3, t4, t5, t6, t7) { + IOSTextFieldTouchInteractor: function IOSTextFieldTouchInteractor(t0, t1, t2, t3, t4, t5, t6, t7, t8) { var _ = this; _.focusNode = t0; _.textController = t1; _.editingOverlayController = t2; _.textScrollController = t3; _.selectableTextKey = t4; - _.showDebugPaint = t5; - _.child = t6; - _.key = t7; + _.getGlobalCaretRect = t5; + _.showDebugPaint = t6; + _.child = t7; + _.key = t8; }, IOSTextFieldTouchInteractorState: function IOSTextFieldTouchInteractorState(t0, t1, t2, t3, t4) { var _ = this; @@ -148751,6 +149146,9 @@ SuperIOSTextFieldState_initState_closure: function SuperIOSTextFieldState_initState_closure(t0) { this.$this = t0; }, + SuperIOSTextFieldState_initState_closure0: function SuperIOSTextFieldState_initState_closure0(t0) { + this.$this = t0; + }, SuperIOSTextFieldState_dispose_closure: function SuperIOSTextFieldState_dispose_closure(t0) { this.$this = t0; }, @@ -148803,7 +149201,7 @@ SuperTextFieldState: function SuperTextFieldState(t0, t1, t2) { var _ = this; _._platformFieldKey = t0; - _.__SuperTextFieldState__controller_A = $; + _.__SuperTextFieldState__controller_A = _.__SuperTextFieldState__focusNode_A = $; _._scrollShortcutOverrides = t1; _._widget = null; _._debugLifecycleState = t2; @@ -154253,7 +154651,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 1348 + $signature: 1351 }; A.AppBootstrap_prepareEngineInitializer_closure0.prototype = { call$1(configuration) { @@ -154289,7 +154687,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 915 + $signature: 835 }; A.AppBootstrap__prepareAppRunner_closure.prototype = { call$1(params) { @@ -154325,7 +154723,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 915 + $signature: 835 }; A.BrowserEngine.prototype = { _enumToString$0() { @@ -154960,7 +155358,7 @@ call$1(filter) { A.SkCanvasExtension_saveLayer(this.$this.skCanvas, this.paint.skiaObject, A.toSkRect(this.bounds), filter, 0); }, - $signature: 29 + $signature: 30 }; A._canvasKitJsUrls_closure.prototype = { call$1(filename) { @@ -154982,14 +155380,14 @@ this.canvasKitScript.remove(); this.canvasKitLoadCompleter.complete$1(0, true); }, - $signature: 29 + $signature: 30 }; A._downloadCanvasKitJs_errorEventHandler.prototype = { call$1(errorEvent) { this.canvasKitScript.remove(); this.canvasKitLoadCompleter.complete$1(0, false); }, - $signature: 29 + $signature: 30 }; A.CanvasKitCanvas.prototype = { save$0(_) { @@ -155735,50 +156133,50 @@ t1.toString; return t1; }, - $signature: 1410 + $signature: 1426 }; A.HtmlViewEmbedder__compositeWithParams_closure.prototype = { call$0() { var t1 = A.createPlatformViewSlot(this.viewId); return new A.ViewClipChain(t1, t1); }, - $signature: 1116 + $signature: 1128 }; A.HtmlViewEmbedder__applyMutators_closure.prototype = { call$0() { return A.LinkedHashSet_LinkedHashSet$_empty(type$.String); }, - $signature: 569 + $signature: 550 }; A.HtmlViewEmbedder__applyMutators_closure0.prototype = { call$0() { return A.LinkedHashSet_LinkedHashSet$_empty(type$.String); }, - $signature: 569 + $signature: 550 }; A.HtmlViewEmbedder_submitFrame_closure.prototype = { call$1(view) { return !B.JSArray_methods.contains$1(this.diffResult.viewsToAdd, view); }, - $signature: 146 + $signature: 140 }; A.HtmlViewEmbedder__updateOverlays_closure.prototype = { call$1(group) { return B.JSArray_methods.get$last(group.__engine$_group); }, - $signature: 3163 + $signature: 3164 }; A.HtmlViewEmbedder__updateOverlays_closure0.prototype = { call$1(view) { return !B.JSArray_methods.contains$1(this.viewsNeedingOverlays, view); }, - $signature: 146 + $signature: 140 }; A.HtmlViewEmbedder__updateOverlays_closure1.prototype = { call$1(view) { return !this.$this.__engine$_overlays.containsKey$1(0, view); }, - $signature: 146 + $signature: 140 }; A.OverlayGroup.prototype = {}; A.ViewClipChain.prototype = {}; @@ -155868,7 +156266,7 @@ } return new A.ViewListDiffResult(B.JSArray_methods.sublist$2(t1, 0, index), B.JSArray_methods.sublist$1(t2, t1.length - index), false, _null); }, - $signature: 914 + $signature: 899 }; A.diffViewList_lookBackwards.prototype = { call$1(index) { @@ -155888,7 +156286,7 @@ } return new A.ViewListDiffResult(B.JSArray_methods.sublist$1(t2, index + 1), B.JSArray_methods.sublist$2(t1, 0, t1.length - 1 - index), true, B.JSArray_methods.get$first(t2)); }, - $signature: 914 + $signature: 899 }; A.SkiaFontCollection.prototype = { get$fontFallbackManager() { @@ -156153,13 +156551,13 @@ call$0() { return A._setArrayType([], type$.JSArray_JavaScriptObject); }, - $signature: 913 + $signature: 887 }; A.SkiaFontCollection__registerWithFontProvider_closure0.prototype = { call$0() { return A._setArrayType([], type$.JSArray_JavaScriptObject); }, - $signature: 913 + $signature: 887 }; A.SkiaFontCollection_loadAssetFonts_closure.prototype = { call$0() { @@ -156171,7 +156569,7 @@ call$0() { return this._0_0._1; }, - $signature: 1701 + $signature: 1702 }; A.SkiaFontCollection_registerDownloadedFonts_makeRegisterFont.prototype = { call$3(buffer, url, family) { @@ -156185,7 +156583,7 @@ return null; } }, - $signature: 2706 + $signature: 2725 }; A.RegisteredFont.prototype = {}; A.UnregisteredFont.prototype = {}; @@ -156280,7 +156678,7 @@ _this.result.set(chunk, t1.position); t1.position = t1.position + A._asInt(chunk.length); }, - $signature: 910 + $signature: 778 }; A.CkImage.prototype = { _init$0() { @@ -156758,7 +157156,7 @@ t2 = J.getInterceptor$asx(t1); this.$this.paintBounds = new A.Rect(t2.$index(t1, 0), t2.$index(t1, 1), t2.$index(t1, 2), t2.$index(t1, 3)); }, - $signature: 29 + $signature: 30 }; A.PictureLayer.prototype = { preroll$2(prerollContext, matrix) { @@ -157011,7 +157409,7 @@ if (t1._nativeObject != null) t1.dispose$0(); }, - $signature: 932 + $signature: 934 }; A.NativeMemoryFinalizationRegistry.prototype = {}; A.UniqueRef.prototype = { @@ -157200,7 +157598,7 @@ call$1(skImageFilter) { this.$this.skiaObject.setImageFilter(skImageFilter); }, - $signature: 29 + $signature: 30 }; A.CkPath.prototype = { get$fillType() { @@ -157713,7 +158111,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 70 + $signature: 69 }; A.SimpleCkShader.prototype = { SimpleCkShader$0() { @@ -158015,7 +158413,7 @@ this.$this._surface.surface.flush(); return true; }, - $signature: 1131 + $signature: 1132 }; A.CkSurface.prototype = { dispose$0() { @@ -158192,7 +158590,7 @@ } return $.__canvasKit._readField$0().TextStyle(properties); }, - $signature: 605 + $signature: 487 }; A.CkStrutStyle.prototype = { $eq(_, other) { @@ -158555,7 +158953,7 @@ call$1(font) { return this.fontFamily === font; }, - $signature: 11 + $signature: 12 }; A.IntlSegmenterGranularity.prototype = { _enumToString$0() { @@ -158595,7 +158993,7 @@ this._box_0.errorEnvelopeEncoded = true; } }, - $signature: 188 + $signature: 175 }; A.ClipboardMessageHandler_setDataMethodCall_closure0.prototype = { call$1(_) { @@ -158615,7 +159013,7 @@ t1.toString; t1.call$1(B.C_JSONMessageCodec.encodeMessage$1([map])); }, - $signature: 40 + $signature: 38 }; A.ClipboardMessageHandler_getDataMethodCall_closure0.prototype = { call$1(error) { @@ -158646,7 +159044,7 @@ t1.toString; t1.call$1(B.C_JSONMessageCodec.encodeMessage$1([map])); }, - $signature: 40 + $signature: 38 }; A.ClipboardMessageHandler_hasStringsMethodCall_closure0.prototype = { call$1(error) { @@ -158951,14 +159349,14 @@ call$1(arg) { return this._this.warn(arg); }, - $signature: 44 + $signature: 45 }; A.DomNavigatorExtension_get_languages_closure.prototype = { call$1(any) { any.toString; return A._asString(any); }, - $signature: 464 + $signature: 578 }; A.HttpFetchResponseImpl.prototype = { get$status(_) { @@ -159075,7 +159473,7 @@ call$2(entries, observer) { this.fn.call$2(J.cast$1$0$ax(entries, type$.JavaScriptObject), observer); }, - $signature: 1128 + $signature: 1131 }; A._ttPolicy_closure.prototype = { call$1(url) { @@ -159249,12 +159647,12 @@ $._fontChangeScheduled = false; $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3("flutter/system", $.$get$_fontChangeMessage(), new A.sendFontChangeMessage__closure()); }, - $signature: 909 + $signature: 770 }; A.sendFontChangeMessage__closure.prototype = { call$1(_) { }, - $signature: 152 + $signature: 163 }; A.FontFallbackManager.prototype = { ensureFontsSupportText$2(text, fontFamilies) { @@ -159443,37 +159841,37 @@ call$1(font) { return font.name === "Noto Sans SC"; }, - $signature: 176 + $signature: 188 }; A.FontFallbackManager$__closure0.prototype = { call$1(font) { return font.name === "Noto Sans TC"; }, - $signature: 176 + $signature: 188 }; A.FontFallbackManager$__closure1.prototype = { call$1(font) { return font.name === "Noto Sans HK"; }, - $signature: 176 + $signature: 188 }; A.FontFallbackManager$__closure2.prototype = { call$1(font) { return font.name === "Noto Sans JP"; }, - $signature: 176 + $signature: 188 }; A.FontFallbackManager$__closure3.prototype = { call$1(font) { return font.name === "Noto Sans KR"; }, - $signature: 176 + $signature: 188 }; A.FontFallbackManager$__closure4.prototype = { call$1(font) { return font.name === "Noto Sans Symbols"; }, - $signature: 176 + $signature: 188 }; A.FontFallbackManager_addMissingCodePoints_closure.prototype = { call$0() { @@ -159508,14 +159906,14 @@ call$1(font) { return font.coverCount === 0; }, - $signature: 176 + $signature: 188 }; A.FontFallbackManager__selectFont_closure.prototype = { call$1(font) { var t1 = this.$this; return font === t1._notoSansSC || font === t1._notoSansTC || font === t1._notoSansHK || font === t1._notoSansJP || font === t1._notoSansKR; }, - $signature: 176 + $signature: 188 }; A._UnicodePropertyLookup.prototype = { get$length(_) { @@ -159692,13 +160090,13 @@ throw A.wrapException(A.AssertionError$(string$.There_w)); this._box_0.fontManifestJson = B.JSArray_methods.get$first(accumulated); }, - $signature: 1832 + $signature: 1859 }; A.fetchFontManifest_closure0.prototype = { call$1(chunk) { return this.inputSink.add$1(0, chunk); }, - $signature: 910 + $signature: 778 }; A.fetchFontManifest_closure1.prototype = { call$1(fontFamilyJson) { @@ -159709,7 +160107,7 @@ t1 = J.map$1$1$ax(type$.List_dynamic._as(t1.$index(fontFamilyJson, "fonts")), new A.fetchFontManifest__closure(), type$.FontAsset); return new A.FontFamily(familyName, A.List_List$of(t1, true, A._instanceType(t1)._eval$1("ListIterable.E"))); }, - $signature: 2116 + $signature: 2117 }; A.fetchFontManifest__closure.prototype = { call$1(fontAssetJson) { @@ -159731,7 +160129,7 @@ throw A.wrapException(A.AssertionError$("Invalid Font manifest, missing 'asset' key on font.")); return new A.FontAsset(asset, descriptors); }, - $signature: 2633 + $signature: 2636 }; A.FontLoadError.prototype = {}; A.FontNotFoundError.prototype = { @@ -164963,13 +165361,13 @@ call$1(codec) { codec.getNextFrame$0().then$1$1(0, new A.HtmlRenderer_decodeImageFromPixels_executeCallback_closure(this.callback), type$.Null); }, - $signature: 908 + $signature: 659 }; A.HtmlRenderer_decodeImageFromPixels_executeCallback_closure.prototype = { call$1(frameInfo) { this.callback.call$1(frameInfo.get$image(frameInfo)); }, - $signature: 2724 + $signature: 2733 }; A.SurfaceScene.prototype = { dispose$0() { @@ -165149,7 +165547,7 @@ $.SurfaceSceneBuilder__lastFrameScene = t1._as(B.JSArray_methods.get$first(t2)); return new A.SurfaceScene(t1._as(B.JSArray_methods.get$first(t2)).rootElement); }, - $signature: 2897 + $signature: 2898 }; A.NormalizedGradient.prototype = { setupUniforms$2(gl, glProgram) { @@ -165193,7 +165591,7 @@ call$1(c) { return (c.get$value(c) >>> 24 & 255) < 1; }, - $signature: 2898 + $signature: 2903 }; A.SharedCanvas.prototype = {}; A.EngineGradient.prototype = { @@ -165455,7 +165853,7 @@ return image; } }, - $signature: 3007 + $signature: 3010 }; A.EngineImageFilter.prototype = { get$filterAttribute() { @@ -165591,7 +165989,7 @@ bSize = t1._dy * t1._dx; return J.compareTo$1$ns(bSize, aSize); }, - $signature: 3020 + $signature: 3025 }; A.PersistedSurfaceState.prototype = { _enumToString$0() { @@ -165938,7 +166336,7 @@ call$2(m1, m2) { return B.JSNumber_methods.compareTo$1(m1.matchQuality, m2.matchQuality); }, - $signature: 3157 + $signature: 3160 }; A._PersistedSurfaceMatch.prototype = { toString$0(_) { @@ -166101,7 +166499,7 @@ A.DomEventTargetExtension_removeEventListener(_this.imgElement, "error", _this.errorListener._readLocal$0(), null); _this.completer.completeError$1($event); }, - $signature: 29 + $signature: 30 }; A.HtmlCodec__decodeUsingOnLoad_closure0.prototype = { call$1($event) { @@ -166114,7 +166512,7 @@ A.DomEventTargetExtension_removeEventListener(t1, "error", _this.errorListener._readLocal$0(), null); _this.completer.complete$1(0, new A.SingleFrameInfo(A.HtmlImage$(t1, B.JSNumber_methods.toInt$0(t1.naturalWidth), B.JSNumber_methods.toInt$0(t1.naturalHeight)))); }, - $signature: 29 + $signature: 30 }; A.HtmlBlobCodec.prototype = { dispose$0() { @@ -166329,7 +166727,7 @@ call$0() { return new A.DateTime(Date.now(), false); }, - $signature: 466 + $signature: 581 }; A.BrowserImageDecoder__getOrCreateWebDecoder_closure.prototype = { call$0() { @@ -166363,7 +166761,7 @@ $._hotRestartListeners[_i].call$0(); return A.Future_Future$value(A.ServiceExtensionResponse$result("OK"), type$.ServiceExtensionResponse); }, - $signature: 905 + $signature: 725 }; A.initializeEngineServices_closure0.prototype = { call$0() { @@ -166392,7 +166790,7 @@ if (t2 != null) A.invoke(t2, t1._onDrawFrameZone); }, - $signature: 909 + $signature: 770 }; A.initializeEngineServices_initializeRendererCallback.prototype = { call$0() { @@ -166431,13 +166829,13 @@ $defaultValues() { return [null]; }, - $signature: 903 + $signature: 917 }; A.FlutterEngineInitializer__staticInteropFactoryStub_closure0.prototype = { call$0() { return A.futureToPromise(this.autoStart.call$0(), type$.JavaScriptObject); }, - $signature: 1070 + $signature: 1071 }; A.FlutterAppRunner__staticInteropFactoryStub_closure.prototype = { call$1(args) { @@ -166451,13 +166849,13 @@ $defaultValues() { return [null]; }, - $signature: 903 + $signature: 917 }; A.futureToPromise_closure.prototype = { call$2(resolver, rejecter) { this.future.then$1$2$onError(0, new A.futureToPromise__closure(resolver, this.T), new A.futureToPromise__closure0(rejecter), type$.void); }, - $signature: 1075 + $signature: 1102 }; A.futureToPromise__closure.prototype = { call$1(value) { @@ -166478,49 +166876,49 @@ call$1($event) { return $event._event.altKey; }, - $signature: 203 + $signature: 206 }; A._kLogicalKeyToModifierGetter_closure0.prototype = { call$1($event) { return $event._event.altKey; }, - $signature: 203 + $signature: 206 }; A._kLogicalKeyToModifierGetter_closure1.prototype = { call$1($event) { return $event._event.ctrlKey; }, - $signature: 203 + $signature: 206 }; A._kLogicalKeyToModifierGetter_closure2.prototype = { call$1($event) { return $event._event.ctrlKey; }, - $signature: 203 + $signature: 206 }; A._kLogicalKeyToModifierGetter_closure3.prototype = { call$1($event) { return $event._event.shiftKey; }, - $signature: 203 + $signature: 206 }; A._kLogicalKeyToModifierGetter_closure4.prototype = { call$1($event) { return $event._event.shiftKey; }, - $signature: 203 + $signature: 206 }; A._kLogicalKeyToModifierGetter_closure5.prototype = { call$1($event) { return $event._event.metaKey; }, - $signature: 203 + $signature: 206 }; A._kLogicalKeyToModifierGetter_closure6.prototype = { call$1($event) { return $event._event.metaKey; }, - $signature: 203 + $signature: 206 }; A._cached_closure.prototype = { call$0() { @@ -166569,13 +166967,13 @@ call$1(domEvent) { this.$this.get$_converter().handleEvent$1(new A.FlutterHtmlKeyboardEvent(domEvent)); }, - $signature: 29 + $signature: 30 }; A.KeyboardBinding$__closure0.prototype = { call$1($event) { this.$this.get$_converter().handleEvent$1(new A.FlutterHtmlKeyboardEvent($event)); }, - $signature: 29 + $signature: 30 }; A.KeyboardBinding__addEventListener_loggedHandler.prototype = { call$1($event) { @@ -166583,7 +166981,7 @@ if ((t1 == null ? $.EngineSemanticsOwner__instance = A.EngineSemanticsOwner$_() : t1).receiveGlobalEvent$1($event)) this.handler.call$1($event); }, - $signature: 29 + $signature: 30 }; A.KeyboardBinding__onKeyData_closure.prototype = { call$1(handled) { @@ -166787,7 +167185,7 @@ call$0() { return new A.KeyData(new A.Duration(this.currentTimeStamp._duration + 2000000), B.KeyEventType_1, this.physicalKey, this.logicalKey, null, true); }, - $signature: 902 + $signature: 916 }; A.KeyboardConverter__startGuardingKey_closure0.prototype = { call$0() { @@ -166829,13 +167227,13 @@ } return B.JSString_methods.get$hashCode(t1) + 98784247808; }, - $signature: 174 + $signature: 181 }; A.KeyboardConverter__handleEvent_closure0.prototype = { call$0() { return new A.KeyData(this.timeStamp, B.KeyEventType_1, this.physicalKey, this.logicalKey.call$0(), null, true); }, - $signature: 902 + $signature: 916 }; A.KeyboardConverter__handleEvent_closure1.prototype = { call$0() { @@ -166853,7 +167251,7 @@ if (t2.containsValue$1(0, testeeLogicalKey) && !getModifier.call$1(_this.event)) t2.removeWhere$1(t2, new A.KeyboardConverter__handleEvent__closure(t1, testeeLogicalKey, _this.timeStamp)); }, - $signature: 1357 + $signature: 1358 }; A.KeyboardConverter__handleEvent__closure.prototype = { call$2(physicalKey, logicalRecord) { @@ -166863,14 +167261,14 @@ this.$this._dispatchKeyData.call$1(new A.KeyData(this.timeStamp, B.KeyEventType_1, physicalKey, t1, null, true)); return true; }, - $signature: 1370 + $signature: 1373 }; A.KeyboardConverter_handleEvent_closure.prototype = { call$1(data) { this._box_0.sentAnyEvents = true; return this.$this.performDispatchKeyData.call$1(data); }, - $signature: 494 + $signature: 620 }; A.ContextMenu.prototype = { disable$0(_) { @@ -166891,7 +167289,7 @@ call$1($event) { $event.preventDefault(); }, - $signature: 29 + $signature: 30 }; A.BrowserHistory.prototype = { get$_unsubscribe() { @@ -167065,7 +167463,7 @@ A.MultiEntriesBrowserHistory_onPopState_closure.prototype = { call$1(_) { }, - $signature: 152 + $signature: 163 }; A.SingleEntryBrowserHistory.prototype = { SingleEntryBrowserHistory$1$urlStrategy(urlStrategy) { @@ -167162,12 +167560,12 @@ A.SingleEntryBrowserHistory_onPopState_closure.prototype = { call$1(_) { }, - $signature: 152 + $signature: 163 }; A.SingleEntryBrowserHistory_onPopState_closure0.prototype = { call$1(_) { }, - $signature: 152 + $signature: 163 }; A.NotoFont.prototype = {}; A.FallbackFontComponent.prototype = { @@ -167188,7 +167586,7 @@ call$1(font) { return font.enabled; }, - $signature: 176 + $signature: 188 }; A.EnginePictureRecorder.prototype = { beginRecording$1(bounds) { @@ -167588,7 +167986,7 @@ call$1(data) { this.registrationZone.runUnaryGuarded$2(this.callback, data); }, - $signature: 152 + $signature: 163 }; A.EnginePlatformDispatcher__sendPlatformMessage_closure.prototype = { call$1(_) { @@ -167600,7 +167998,7 @@ call$1(success) { this.$this.replyToPlatformMessage$2(this.callback, B.C_JSONMessageCodec.encodeMessage$1([success])); }, - $signature: 188 + $signature: 175 }; A.EnginePlatformDispatcher__sendPlatformMessage_closure1.prototype = { call$1($content) { @@ -167608,7 +168006,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1.append($content); }, - $signature: 29 + $signature: 30 }; A.EnginePlatformDispatcher__sendPlatformMessage_closure2.prototype = { call$1(handled) { @@ -167618,7 +168016,7 @@ else if (t1 != null) t1.call$1(null); }, - $signature: 188 + $signature: 175 }; A.EnginePlatformDispatcher__addLocaleChangedListener_closure.prototype = { call$1(_) { @@ -167626,7 +168024,7 @@ t1.configuration = t1.configuration.copyWith$1$locales(A.EnginePlatformDispatcher_parseBrowserLanguages()); A.invoke(t1._onLocaleChanged, t1._onLocaleChangedZone); }, - $signature: 29 + $signature: 30 }; A.EnginePlatformDispatcher__addFontSizeObserver_closure.prototype = { call$2(mutations, _) { @@ -167655,7 +168053,7 @@ } } }, - $signature: 1374 + $signature: 1375 }; A.EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure.prototype = { call$1($event) { @@ -167664,7 +168062,7 @@ t1 = t1 ? B.Brightness_0 : B.Brightness_1; this.$this._updatePlatformBrightness$1(t1); }, - $signature: 29 + $signature: 30 }; A.EnginePlatformDispatcher_replyToPlatformMessage_closure.prototype = { call$1(_) { @@ -167791,7 +168189,7 @@ wrapper.append($content); return wrapper; }, - $signature: 605 + $signature: 487 }; A.PlatformViewMessageHandler.prototype = { _createPlatformView$2(methodCall, callback) { @@ -167836,7 +168234,7 @@ A.SafariPointerEventWorkaround_workAroundMissingPointerEvents_closure.prototype = { call$1($event) { }, - $signature: 29 + $signature: 30 }; A.PointerBinding.prototype = { dispose$0() { @@ -167909,7 +168307,7 @@ if ((t1 == null ? $.EngineSemanticsOwner__instance = A.EngineSemanticsOwner$_() : t1).receiveGlobalEvent$1($event)) this.handler.call$1($event); }, - $signature: 29 + $signature: 30 }; A._WheelEventListenerMixin.prototype = { _isAcceleratedMouseWheelDelta$2(delta, wheelDelta) { @@ -168263,7 +168661,7 @@ call$0() { return new A._ButtonSanitizer(); }, - $signature: 1407 + $signature: 1408 }; A._PointerAdapter__addPointerEventListener_closure.prototype = { call$1($event) { @@ -168279,7 +168677,7 @@ } this.handler.call$1($event); }, - $signature: 29 + $signature: 30 }; A._PointerAdapter_setup_closure.prototype = { call$1($event) { @@ -168299,7 +168697,7 @@ t1._convertEventsToPointerData$3$data$details$event(pointerData, sanitizer.sanitizeDownEvent$2$button$buttons(t2, B.JSNumber_methods.toInt$0(t3)), $event); t1.__engine$_callback.call$1(pointerData); }, - $signature: 125 + $signature: 124 }; A._PointerAdapter_setup_closure0.prototype = { call$1($event) { @@ -168324,7 +168722,7 @@ } t1.__engine$_callback.call$1(pointerData); }, - $signature: 125 + $signature: 124 }; A._PointerAdapter_setup_closure1.prototype = { call$1($event) { @@ -168340,7 +168738,7 @@ t1.__engine$_callback.call$1(pointerData); } }, - $signature: 125 + $signature: 124 }; A._PointerAdapter_setup_closure2.prototype = { call$1($event) { @@ -168361,7 +168759,7 @@ } } }, - $signature: 125 + $signature: 124 }; A._PointerAdapter_setup_closure3.prototype = { call$1($event) { @@ -168379,13 +168777,13 @@ t1.__engine$_callback.call$1(pointerData); } }, - $signature: 125 + $signature: 124 }; A._PointerAdapter_setup_closure4.prototype = { call$1($event) { this.$this._handleWheelEvent$1($event); }, - $signature: 29 + $signature: 30 }; A._TouchAdapter.prototype = { _addTouchEventListener$3(target, eventName, handler) { @@ -168435,7 +168833,7 @@ this.$this._keyboardConverter.synthesizeModifiersIfNeeded$5(t1, t2, t3, t4, t5); this.handler.call$1($event); }, - $signature: 29 + $signature: 30 }; A._TouchAdapter_setup_closure.prototype = { call$1($event) { @@ -168462,7 +168860,7 @@ } t3.__engine$_callback.call$1(pointerData); }, - $signature: 125 + $signature: 124 }; A._TouchAdapter_setup_closure0.prototype = { call$1($event) { @@ -168483,7 +168881,7 @@ } t3.__engine$_callback.call$1(pointerData); }, - $signature: 125 + $signature: 124 }; A._TouchAdapter_setup_closure1.prototype = { call$1($event) { @@ -168511,7 +168909,7 @@ } t3.__engine$_callback.call$1(pointerData); }, - $signature: 125 + $signature: 124 }; A._TouchAdapter_setup_closure2.prototype = { call$1($event) { @@ -168538,7 +168936,7 @@ } t3.__engine$_callback.call$1(pointerData); }, - $signature: 125 + $signature: 124 }; A._MouseAdapter.prototype = { _addMouseEventListener$4$useCapture(target, eventName, handler, useCapture) { @@ -168590,7 +168988,7 @@ this.$this._keyboardConverter.synthesizeModifiersIfNeeded$5(t1, t2, t3, t4, t5); this.handler.call$1($event); }, - $signature: 29 + $signature: 30 }; A._MouseAdapter_setup_closure.prototype = { call$1($event) { @@ -168609,7 +169007,7 @@ t1._convertEventsToPointerData$3$data$details$event(pointerData, t2.sanitizeDownEvent$2$button$buttons(t3, B.JSNumber_methods.toInt$0(t4)), $event); t1.__engine$_callback.call$1(pointerData); }, - $signature: 125 + $signature: 124 }; A._MouseAdapter_setup_closure0.prototype = { call$1($event) { @@ -168627,7 +169025,7 @@ t1._convertEventsToPointerData$3$data$details$event(pointerData, t2.sanitizeMoveEvent$1$buttons(B.JSNumber_methods.toInt$0(t3)), $event); t1.__engine$_callback.call$1(pointerData); }, - $signature: 125 + $signature: 124 }; A._MouseAdapter_setup_closure1.prototype = { call$1($event) { @@ -168642,7 +169040,7 @@ t1.__engine$_callback.call$1(pointerData); } }, - $signature: 125 + $signature: 124 }; A._MouseAdapter_setup_closure2.prototype = { call$1($event) { @@ -168657,13 +169055,13 @@ t1.__engine$_callback.call$1(pointerData); } }, - $signature: 125 + $signature: 124 }; A._MouseAdapter_setup_closure3.prototype = { call$1($event) { this.$this._handleWheelEvent$1($event); }, - $signature: 29 + $signature: 30 }; A._PointerState.prototype = {}; A.PointerDataConverter.prototype = { @@ -168802,7 +169200,7 @@ call$0() { return new A._PointerState(this.x, this.y); }, - $signature: 1437 + $signature: 1438 }; A.Profiler.prototype = {}; A.RawKeyboard.prototype = { @@ -168890,13 +169288,13 @@ call$1($event) { this.$this._handleHtmlEvent$1($event); }, - $signature: 29 + $signature: 30 }; A.RawKeyboard$__closure0.prototype = { call$1($event) { this.$this._handleHtmlEvent$1($event); }, - $signature: 29 + $signature: 30 }; A.RawKeyboard$__closure1.prototype = { call$0() { @@ -168922,7 +169320,7 @@ if (A._asBool(J.$index$asx(type$.Map_String_dynamic._as(B.C_JSONMessageCodec.decodeMessage$1(data)), "handled"))) this.event._event.preventDefault(); }, - $signature: 152 + $signature: 163 }; A.GlProgram.prototype = {}; A.GlContext.prototype = { @@ -169256,13 +169654,13 @@ call$1(_) { return this.$this._setFocusFromDom$1(true); }, - $signature: 29 + $signature: 30 }; A.AccessibilityFocusManager_manage_closure0.prototype = { call$1(_) { return this.$this._setFocusFromDom$1(false); }, - $signature: 29 + $signature: 30 }; A.AccessibilityFocusManager_changeFocus_closure.prototype = { call$0() { @@ -169472,13 +169870,13 @@ $.$get$EnginePlatformDispatcher__instance().invokeOnSemanticsAction$3(this.semanticsObject.id, B.SemanticsAction_128_decrease, null); } }, - $signature: 29 + $signature: 30 }; A.Incrementable_closure0.prototype = { call$1(mode) { this.$this.update$0(0); }, - $signature: 899 + $signature: 912 }; A.LabelAndValue.prototype = { update$0(_) { @@ -169708,13 +170106,13 @@ call$1(_) { this.$this._gestureModeDidChange$0(); }, - $signature: 899 + $signature: 912 }; A.Scrollable_update_closure1.prototype = { call$1(_) { this.$this._recomputeScrollPosition$0(); }, - $signature: 29 + $signature: 30 }; A.EngineAccessibilityFeatures.prototype = { toString$0(_) { @@ -170176,7 +170574,7 @@ call$1(child) { child.visitDepthFirst$1(this.callback); }, - $signature: 897 + $signature: 911 }; A.AccessibilityMode.prototype = { _enumToString$0() { @@ -170508,13 +170906,13 @@ if (this.$this._attachments.$index(0, node.id) == null) this.removals.push(node); }, - $signature: 897 + $signature: 911 }; A.EngineSemanticsOwner__now_closure.prototype = { call$0() { return new A.DateTime(Date.now(), false); }, - $signature: 466 + $signature: 581 }; A.EngineSemanticsOwner__getGestureModeClock_closure.prototype = { call$0() { @@ -170603,7 +171001,7 @@ call$1($event) { this.$this.tryEnableSemantics$1($event); }, - $signature: 29 + $signature: 30 }; A.MobileSemanticsEnabler.prototype = { get$isWaitingToEnableSemantics() { @@ -170702,7 +171100,7 @@ call$1($event) { this.$this.tryEnableSemantics$1($event); }, - $signature: 29 + $signature: 30 }; A.Button.prototype = { update$0(_) { @@ -170752,7 +171150,7 @@ return; $.$get$EnginePlatformDispatcher__instance().invokeOnSemanticsAction$3(t1.id, B.SemanticsAction_1_tap, null); }, - $signature: 29 + $signature: 30 }; A.SemanticsTextEditingStrategy.prototype = { enable$3$onAction$onChange(_, inputConfig, onAction, onChange) { @@ -171018,7 +171416,7 @@ return; $.$get$EnginePlatformDispatcher__instance().invokeOnSemanticsAction$3(t1.id, B.SemanticsAction_32768_didGainAccessibilityFocus, null); }, - $signature: 29 + $signature: 30 }; A.TextField__initializeForBlink_closure0.prototype = { call$1($event) { @@ -171027,7 +171425,7 @@ return; $.$get$EnginePlatformDispatcher__instance().invokeOnSemanticsAction$3(t1.id, B.SemanticsAction_65536_didLoseAccessibilityFocus, null); }, - $signature: 29 + $signature: 30 }; A.TextField__initializeForWebkit_closure.prototype = { call$1($event) { @@ -171035,7 +171433,7 @@ t1.lastPointerDownOffsetX = $event.clientX; t1.lastPointerDownOffsetY = $event.clientY; }, - $signature: 29 + $signature: 30 }; A.TextField__initializeForWebkit_closure0.prototype = { call$1($event) { @@ -171056,7 +171454,7 @@ } t1.lastPointerDownOffsetY = t1.lastPointerDownOffsetX = null; }, - $signature: 29 + $signature: 30 }; A.TextField__invokeIosWorkaround_closure.prototype = { call$0() { @@ -171084,7 +171482,7 @@ t2.focus(); t1.editableElement = null; }, - $signature: 29 + $signature: 30 }; A.TextField_update_closure.prototype = { call$0() { @@ -171519,7 +171917,7 @@ t1.writeValue$2(0, t2, key); t1.writeValue$2(0, t2, value); }, - $signature: 217 + $signature: 213 }; A.StandardMethodCodec.prototype = { decodeMethodCall$1(methodCall) { @@ -171880,7 +172278,7 @@ call$1(line) { return line.lineMetrics; }, - $signature: 1859 + $signature: 1860 }; A.ParagraphSpan.prototype = { get$style(receiver) { @@ -172485,7 +172883,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 2061 + $signature: 2062 }; A.HtmlFontCollection_loadAssetFonts_closure0.prototype = { call$0() { @@ -172497,7 +172895,7 @@ call$0() { return this._0_0._1; }, - $signature: 2087 + $signature: 2088 }; A.TextFragmenter.prototype = {}; A.TextFragment.prototype = {}; @@ -173617,7 +174015,7 @@ t1.trailingSpaces = t1.trailingNewlines = 0; t1.prev1 = t1.prev2 = null; }, - $signature: 2097 + $signature: 2115 }; A.RulerHost.prototype = { dispose$0() { @@ -174276,7 +174674,7 @@ $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3("flutter/textinput", B.C_JSONMethodCodec.encodeMethodCall$1(new A.MethodCall(string$.TextInT, [0, A.LinkedHashMap_LinkedHashMap$_literal([t1.uniqueIdentifier, newEditingState.toFlutter$0()], type$.nullable_String, type$.dynamic)])), A._engine___emptyCallback$closure()); } }, - $signature: 29 + $signature: 30 }; A.AutofillInfo.prototype = { applyToDomElement$2$focusedElement(domElement, focusedElement) { @@ -174750,25 +175148,25 @@ call$1(_) { this.$this.domElement.focus(); }, - $signature: 29 + $signature: 30 }; A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure.prototype = { call$1(_) { _.preventDefault(); }, - $signature: 29 + $signature: 30 }; A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure0.prototype = { call$1(_) { _.preventDefault(); }, - $signature: 29 + $signature: 30 }; A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure1.prototype = { call$1(_) { _.preventDefault(); }, - $signature: 29 + $signature: 30 }; A.IOSTextEditingStrategy.prototype = { initializeTextEditing$3$onAction$onChange(inputConfig, onAction, onChange) { @@ -174862,7 +175260,7 @@ call$1(_) { this.$this._schedulePlacement$0(); }, - $signature: 29 + $signature: 30 }; A.IOSTextEditingStrategy_addEventHandlers_closure0.prototype = { call$1(_) { @@ -174874,7 +175272,7 @@ else t2.owner.sendTextConnectionClosedToFrameworkIfAny$0(); }, - $signature: 29 + $signature: 30 }; A.IOSTextEditingStrategy__addTapListener_closure.prototype = { call$1(_) { @@ -174884,7 +175282,7 @@ t1._schedulePlacement$0(); } }, - $signature: 29 + $signature: 30 }; A.IOSTextEditingStrategy__schedulePlacement_closure.prototype = { call$0() { @@ -174962,7 +175360,7 @@ else t1.owner.sendTextConnectionClosedToFrameworkIfAny$0(); }, - $signature: 29 + $signature: 30 }; A.FirefoxTextEditingStrategy.prototype = { initializeTextEditing$3$onAction$onChange(inputConfig, onAction, onChange) { @@ -175029,13 +175427,13 @@ call$1($event) { this.$this.handleChange$1($event); }, - $signature: 29 + $signature: 30 }; A.FirefoxTextEditingStrategy_addEventHandlers_closure0.prototype = { call$1(_) { this.$this._postponeFocus$0(); }, - $signature: 29 + $signature: 30 }; A.FirefoxTextEditingStrategy__postponeFocus_closure.prototype = { call$0() { @@ -175126,7 +175524,7 @@ t1 = A.CastIterable_CastIterable(new A._DomListWrapper(form.getElementsByClassName("submitBtn"), t1), t1._eval$1("Iterable.E"), type$.JavaScriptObject); A._instanceType(t1)._rest[1]._as(J.get$first$ax(t1._source)).click(); }, - $signature: 2180 + $signature: 2181 }; A.TextEditingChannel.prototype = { handleTextInput$2(data, callback) { @@ -175277,7 +175675,7 @@ $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3(_s17_, B.C_JSONMethodCodec.encodeMethodCall$1(new A.MethodCall("TextInputClient.updateEditingState", [t1, editingState.toFlutter$0()])), A._engine___emptyCallback$closure()); } }, - $signature: 2586 + $signature: 2589 }; A.HybridTextEditing__startEditing_closure.prototype = { call$1(inputAction) { @@ -175286,7 +175684,7 @@ t1 = t1._clientId; $.$get$EnginePlatformDispatcher__instance().invokeOnPlatformMessage$3("flutter/textinput", B.C_JSONMethodCodec.encodeMethodCall$1(new A.MethodCall("TextInputClient.performAction", [t1, inputAction])), A._engine___emptyCallback$closure()); }, - $signature: 99 + $signature: 100 }; A.EditableTextStyle.prototype = { applyToDomElement$1(domElement) { @@ -175309,7 +175707,7 @@ call$1(e) { return A._asNum(e); }, - $signature: 2701 + $signature: 2706 }; A.TransformKind.prototype = { _enumToString$0() { @@ -175320,7 +175718,7 @@ call$1(byte) { return "0x" + B.JSString_methods.padLeft$2(B.JSInt_methods.toRadixString$1(byte, 16), 2, "0"); }, - $signature: 367 + $signature: 419 }; A.LruCache.prototype = { get$length(_) { @@ -175681,13 +176079,13 @@ call$2(entries, _) { entries.map$1$1(entries, new A.CustomElementDimensionsProvider__closure(), type$.Size).forEach$1(0, this.$this.get$_broadcastSize()); }, - $signature: 2790 + $signature: 2862 }; A.CustomElementDimensionsProvider__closure.prototype = { call$1(entry) { return new A.Size(entry.contentRect.width, entry.contentRect.height); }, - $signature: 2873 + $signature: 2897 }; A.DimensionsProvider.prototype = {}; A.FullPageDimensionsProvider.prototype = { @@ -175797,7 +176195,7 @@ t1 = type$.Object._as(t1); this.$this._hostElement.setAttribute(entry.key, t1); }, - $signature: 892 + $signature: 867 }; A.EmbeddingStrategy.prototype = { registerElementForCleanup$1(element) { @@ -175863,7 +176261,7 @@ t2 = type$.Object._as(t2); t1.setAttribute(entry.key, t2); }, - $signature: 892 + $signature: 867 }; A.EngineFlutterWindow.prototype = { EngineFlutterWindow$2(viewId, platformDispatcher) { @@ -176217,7 +176615,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 65 + $signature: 63 }; A.ViewPadding.prototype = {}; A._DefaultTextEditingStrategy_Object_CompositionAwareMixin.prototype = {}; @@ -177978,7 +178376,7 @@ call$0() { return A.Future_Future$value(null, type$.Null); }, - $signature: 70 + $signature: 69 }; A.SentinelValue.prototype = { get$id() { @@ -179107,7 +179505,7 @@ call$0() { return B.JSNumber_methods.floor$0(1000 * this.performance.now()); }, - $signature: 174 + $signature: 181 }; A.Primitives_functionNoSuchMethod_closure.prototype = { call$2($name, argument) { @@ -179117,7 +179515,7 @@ this.$arguments.push(argument); ++t1.argumentCount; }, - $signature: 162 + $signature: 169 }; A.TypeErrorDecoder.prototype = { matchTypeError$1(message) { @@ -179594,7 +179992,7 @@ call$2(o, tag) { return this.getUnknownTag(o, tag); }, - $signature: 3160 + $signature: 3163 }; A.initHooks_closure1.prototype = { call$1(tag) { @@ -180319,7 +180717,7 @@ call$1(beforeEntry) { return new A.MapEntry(J.codeUnitAt$1$s(beforeEntry.value, 0), beforeEntry.key, type$.MapEntry_int_String); }, - $signature: 3194 + $signature: 3202 }; A.LocaleKeymap.prototype = { getLogicalKey$3(eventCode, eventKey, eventKeyCode) { @@ -180367,7 +180765,7 @@ t2 = this.span; t1.firstChild ? t1.removeChild(t2) : t1.appendChild(t2); }, - $signature: 3293 + $signature: 3294 }; A._AsyncRun__scheduleImmediateJsOverride_internalCallback.prototype = { call$0() { @@ -180478,13 +180876,13 @@ call$2(error, stackTrace) { this.bodyFunction.call$2(1, new A.ExceptionAndStackTrace(error, stackTrace)); }, - $signature: 936 + $signature: 937 }; A._wrapJsFunctionForAsync_closure.prototype = { call$2(errorCode, result) { this.$protected(errorCode, result); }, - $signature: 937 + $signature: 940 }; A._asyncStarHelper_closure.prototype = { call$0() { @@ -180556,7 +180954,7 @@ return t1.cancelationFuture; } }, - $signature: 1069 + $signature: 1070 }; A._AsyncStarStreamController__closure.prototype = { call$0() { @@ -180987,7 +181385,7 @@ } else if (t2 === 0 && !_this.eagerError) _this._future._completeError$2(_this.error._readLocal$0(), _this.stackTrace._readLocal$0()); }, - $signature: 155 + $signature: 162 }; A.Future_wait_closure.prototype = { call$1(value) { @@ -181323,7 +181721,7 @@ call$2(error, stackTrace) { this.$this._completeError$2(error, stackTrace); }, - $signature: 175 + $signature: 183 }; A._Future__chainForeignFuture_closure1.prototype = { call$0() { @@ -181388,7 +181786,7 @@ call$1(_) { return this.originalSource; }, - $signature: 1132 + $signature: 1133 }; A._Future__propagateToListeners_handleValueCallback.prototype = { call$0() { @@ -181457,7 +181855,7 @@ this._future._completeError$2(e, s); } }, - $signature: 175 + $signature: 183 }; A._AsyncCallbackEntry.prototype = {}; A.Stream.prototype = { @@ -181535,7 +181933,7 @@ t1._addError$2(error, stackTrace); t1._closeUnchecked$0(); }, - $signature: 383 + $signature: 356 }; A.Stream_asyncMap_closure.prototype = { call$0() { @@ -181977,7 +182375,7 @@ t1._addError$2(e, s); t1._async$_close$0(); }, - $signature: 175 + $signature: 183 }; A._AddStreamState_cancel_closure.prototype = { call$0() { @@ -182510,7 +182908,7 @@ call$2(error, stackTrace) { A._cancelAndError(this.subscription, this.future, error, stackTrace); }, - $signature: 155 + $signature: 162 }; A._cancelAndValue_closure.prototype = { call$0() { @@ -183200,7 +183598,7 @@ call$1(v) { return this.K._is(v); }, - $signature: 148 + $signature: 138 }; A._HashMapKeyIterable.prototype = { get$length(_) { @@ -183289,7 +183687,7 @@ call$1(v) { return this.K._is(v); }, - $signature: 148 + $signature: 138 }; A._HashSet.prototype = { _newSet$0() { @@ -183738,7 +184136,7 @@ call$2(k, v) { this.result.$indexSet(0, this.K._as(k), this.V._as(v)); }, - $signature: 217 + $signature: 213 }; A.LinkedList.prototype = { remove$1(_, entry) { @@ -184332,7 +184730,7 @@ t1._contents = t2 + ": "; t1._contents += A.S(v); }, - $signature: 306 + $signature: 277 }; A.UnmodifiableMapBase.prototype = {}; A._MapBaseValueIterable.prototype = { @@ -185319,7 +185717,7 @@ call$1(a) { return this.K._is(a); }, - $signature: 148 + $signature: 138 }; A._SplayTreeIterator.prototype = { get$current(_) { @@ -185568,7 +185966,7 @@ call$1(v) { return this.E._is(v); }, - $signature: 148 + $signature: 138 }; A.SplayTreeSet__newSet_closure.prototype = { call$2(a, b) { @@ -186530,7 +186928,7 @@ t2.i = i + 1; t1[i] = value; }, - $signature: 306 + $signature: 277 }; A._JsonPrettyPrintMixin.prototype = { writeList$1(list) { @@ -186595,7 +186993,7 @@ t2.i = i + 1; t1[i] = value; }, - $signature: 306 + $signature: 277 }; A._JsonStringStringifier.prototype = { get$_partialResult() { @@ -187476,7 +187874,7 @@ hash = hash + ((hash & 524287) << 10) & 536870911; return hash ^ hash >>> 6; }, - $signature: 520 + $signature: 500 }; A._BigIntImpl_hashCode_finish.prototype = { call$1(hash) { @@ -187484,7 +187882,7 @@ hash ^= hash >>> 11; return hash + ((hash & 16383) << 15) & 536870911; }, - $signature: 133 + $signature: 137 }; A._BigIntImpl_toDouble_readBits.prototype = { call$1(n) { @@ -187510,7 +187908,7 @@ t1.cachedBitsLength = t4; return result; }, - $signature: 133 + $signature: 137 }; A._BigIntImpl_toDouble_roundUp.prototype = { call$0() { @@ -187529,7 +187927,7 @@ call$2(key, value) { this.result.$indexSet(0, key._name, value); }, - $signature: 888 + $signature: 714 }; A._WeakReferenceWrapper.prototype = {}; A.NoSuchMethodError_toString_closure.prototype = { @@ -187543,7 +187941,7 @@ t1._contents += A.Error_safeToString(value); t2.comma = ", "; }, - $signature: 888 + $signature: 714 }; A.DateTime.prototype = { get$timeZoneOffset() { @@ -187628,7 +188026,7 @@ return 0; return A.int_parse(matched, null); }, - $signature: 886 + $signature: 713 }; A.DateTime_parse_parseMilliAndMicroseconds.prototype = { call$1(matched) { @@ -187642,7 +188040,7 @@ } return result; }, - $signature: 886 + $signature: 713 }; A.Duration.prototype = { $add(_, other) { @@ -188321,21 +188719,21 @@ call$1$range($0) { return this.noSuchMethod$1(this, A.createInvocationMirror("call", "call$1$range", 0, [$0], ["range"], 0)); }, - call$1$paragraphWidth($0) { - return this.noSuchMethod$1(this, A.createInvocationMirror("call", "call$1$paragraphWidth", 0, [$0], ["paragraphWidth"], 0)); - }, - call$9$fontFamily$fontFamilyFallback$fontSize$fontStyle$fontWeight$forceStrutHeight$height$leading$leadingDistribution($0, $1, $2, $3, $4, $5, $6, $7, $8) { - return this.noSuchMethod$1(this, A.createInvocationMirror("call", "call$9$fontFamily$fontFamilyFallback$fontSize$fontStyle$fontWeight$forceStrutHeight$height$leading$leadingDistribution", 0, [$0, $1, $2, $3, $4, $5, $6, $7, $8], ["fontFamily", "fontFamilyFallback", "fontSize", "fontStyle", "fontWeight", "forceStrutHeight", "height", "leading", "leadingDistribution"], 0)); - }, call$4$boxHeightStyle$boxWidthStyle($0, $1, $2, $3) { return this.noSuchMethod$1(this, A.createInvocationMirror("call", "call$4$boxHeightStyle$boxWidthStyle", 0, [$0, $1, $2, $3], ["boxHeightStyle", "boxWidthStyle"], 0)); }, call$2$end$start($0, $1) { return this.noSuchMethod$1(this, A.createInvocationMirror("call", "call$2$end$start", 0, [$0, $1], ["end", "start"], 0)); }, + call$1$paragraphWidth($0) { + return this.noSuchMethod$1(this, A.createInvocationMirror("call", "call$1$paragraphWidth", 0, [$0], ["paragraphWidth"], 0)); + }, call$3$dimensions$textScaler($0, $1, $2) { return this.noSuchMethod$1(this, A.createInvocationMirror("call", "call$3$dimensions$textScaler", 0, [$0, $1, $2], ["dimensions", "textScaler"], 0)); }, + call$9$fontFamily$fontFamilyFallback$fontSize$fontStyle$fontWeight$forceStrutHeight$height$leading$leadingDistribution($0, $1, $2, $3, $4, $5, $6, $7, $8) { + return this.noSuchMethod$1(this, A.createInvocationMirror("call", "call$9$fontFamily$fontFamilyFallback$fontSize$fontStyle$fontWeight$forceStrutHeight$height$leading$leadingDistribution", 0, [$0, $1, $2, $3, $4, $5, $6, $7, $8], ["fontFamily", "fontFamilyFallback", "fontSize", "fontStyle", "fontWeight", "forceStrutHeight", "height", "leading", "leadingDistribution"], 0)); + }, call$3$boxHeightStyle($0, $1, $2) { return this.noSuchMethod$1(this, A.createInvocationMirror("call", "call$3$boxHeightStyle", 0, [$0, $1, $2], ["boxHeightStyle"], 0)); }, @@ -188876,6 +189274,9 @@ call$5$from$newComposingRegion$newSelection$newText$to($0, $1, $2, $3, $4) { return this.noSuchMethod$1(this, A.createInvocationMirror("call", "call$5$from$newComposingRegion$newSelection$newText$to", 0, [$0, $1, $2, $3, $4], ["from", "newComposingRegion", "newSelection", "newText", "to"], 0)); }, + call$3$overscroll$physics$scrollbars($0, $1, $2) { + return this.noSuchMethod$1(this, A.createInvocationMirror("call", "call$3$overscroll$physics$scrollbars", 0, [$0, $1, $2], ["overscroll", "physics", "scrollbars"], 0)); + }, call$2$brightness$disabledColor($0, $1) { return this.noSuchMethod$1(this, A.createInvocationMirror("call", "call$2$brightness$disabledColor", 0, [$0, $1], ["brightness", "disabledColor"], 0)); }, @@ -189649,19 +190050,19 @@ } return map; }, - $signature: 1515 + $signature: 1516 }; A.Uri__parseIPv4Address_error.prototype = { call$2(msg, position) { throw A.wrapException(A.FormatException$("Illegal IPv4 address, " + msg, this.host, position)); }, - $signature: 1545 + $signature: 1546 }; A.Uri_parseIPv6Address_error.prototype = { call$2(msg, position) { throw A.wrapException(A.FormatException$("Illegal IPv6 address, " + msg, this.host, position)); }, - $signature: 1599 + $signature: 1629 }; A.Uri_parseIPv6Address_parseHex.prototype = { call$2(start, end) { @@ -189673,7 +190074,7 @@ this.error.call$2("each part must be in the range of `0x0..0xFFFF`", start); return value; }, - $signature: 520 + $signature: 500 }; A._Uri.prototype = { get$_text() { @@ -189984,7 +190385,7 @@ t1._contents += A._Uri__uriEncode(B.List_M1A, value, B.C_Utf8Codec, true); } }, - $signature: 1632 + $signature: 1633 }; A._Uri__makeQuery_closure.prototype = { call$2(key, value) { @@ -189995,7 +190396,7 @@ for (t1 = J.get$iterator$ax(value), t2 = this.writeParameter; t1.moveNext$0();) t2.call$2(key, t1.get$current(t1)); }, - $signature: 162 + $signature: 169 }; A._Uri__splitQueryStringAll_parsePair.prototype = { call$3(start, equalsIndex, end) { @@ -190013,7 +190414,7 @@ } J.add$1$ax(this.result.putIfAbsent$2(0, key, A.core__Uri__createList$closure()), value); }, - $signature: 1666 + $signature: 1667 }; A.UriData.prototype = { get$uri() { @@ -190086,7 +190487,7 @@ B.NativeUint8List_methods.fillRange$3(t1, 0, 96, defaultTransition); return t1; }, - $signature: 1667 + $signature: 1670 }; A._createTables_setChars.prototype = { call$3(target, chars, transition) { @@ -190094,7 +190495,7 @@ for (t1 = chars.length, i = 0; i < t1; ++i) target[chars.charCodeAt(i) ^ 96] = transition; }, - $signature: 885 + $signature: 712 }; A._createTables_setRange.prototype = { call$3(target, range, transition) { @@ -190102,7 +190503,7 @@ for (i = range.charCodeAt(0), n = range.charCodeAt(1); i <= n; ++i) target[(i ^ 96) >>> 0] = transition; }, - $signature: 885 + $signature: 712 }; A._SimpleUri.prototype = { get$hasScheme() { @@ -190518,7 +190919,7 @@ call$1(value) { this.completer.complete$1(0, value); }, - $signature: 1739 + $signature: 1741 }; A.CanvasRenderingContext2D.prototype = {$isCanvasRenderingContext2D: 1}; A.CharacterData.prototype = { @@ -190911,7 +191312,7 @@ call$1(e) { return !this.test.call$1(e); }, - $signature: 1741 + $signature: 1743 }; A.Element2.prototype = { get$children(receiver) { @@ -191279,13 +191680,13 @@ call$2(k, v) { return this.keys.push(k); }, - $signature: 162 + $signature: 169 }; A.MidiInputMap_values_closure.prototype = { call$2(k, v) { return this.values.push(v); }, - $signature: 162 + $signature: 169 }; A.MidiOutputMap.prototype = { containsKey$1(receiver, key) { @@ -191348,13 +191749,13 @@ call$2(k, v) { return this.keys.push(k); }, - $signature: 162 + $signature: 169 }; A.MidiOutputMap_values_closure.prototype = { call$2(k, v) { return this.values.push(v); }, - $signature: 162 + $signature: 169 }; A.MidiPort.prototype = { get$id(receiver) { @@ -191845,13 +192246,13 @@ call$2(k, v) { return this.keys.push(k); }, - $signature: 162 + $signature: 169 }; A.RtcStatsReport_values_closure.prototype = { call$2(k, v) { return this.values.push(v); }, - $signature: 162 + $signature: 169 }; A.SelectElement.prototype = { get$length(receiver) { @@ -192036,13 +192437,13 @@ call$2(k, v) { return this.keys.push(k); }, - $signature: 189 + $signature: 178 }; A.Storage_values_closure.prototype = { call$2(k, v) { return this.values.push(v); }, - $signature: 189 + $signature: 178 }; A.StyleSheet.prototype = {$isStyleSheet: 1}; A.TextAreaElement.prototype = { @@ -192744,21 +193145,21 @@ if (B.JSString_methods.startsWith$1(key, "data-")) this.f.call$2(this.$this._toCamelCase$1(B.JSString_methods.substring$1(key, 5)), value); }, - $signature: 189 + $signature: 178 }; A._DataAttributeMap_keys_closure.prototype = { call$2(key, value) { if (B.JSString_methods.startsWith$1(key, "data-")) this.keys.push(this.$this._toCamelCase$1(B.JSString_methods.substring$1(key, 5))); }, - $signature: 189 + $signature: 178 }; A._DataAttributeMap_values_closure.prototype = { call$2(key, value) { if (B.JSString_methods.startsWith$1(key, "data-")) this.values.push(value); }, - $signature: 189 + $signature: 178 }; A.EventStreamProvider.prototype = {}; A._EventStream.prototype = { @@ -192833,13 +193234,13 @@ call$1(e) { return this.onData.call$1(e); }, - $signature: 547 + $signature: 534 }; A._EventStreamSubscription_onData_closure.prototype = { call$1(e) { return this.handleData.call$1(e); }, - $signature: 547 + $signature: 534 }; A.ImmutableListMixin.prototype = { get$iterator(receiver) { @@ -193031,7 +193432,7 @@ this.map.$indexSet(0, key, t1); return t1; }, - $signature: 1904 + $signature: 1905 }; A._AcceptStructuredCloneDart2Js.prototype = { forEachJsField$2(object, action) { @@ -193156,19 +193557,19 @@ call$1(n) { return type$.Element._is(n); }, - $signature: 1935 + $signature: 1936 }; A.FilteredElementList__iterable_closure0.prototype = { call$1(n) { return type$.Element._as(n); }, - $signature: 1983 + $signature: 1984 }; A.FilteredElementList_removeRange_closure0.prototype = { call$1(el) { return J.remove$0$ax(el); }, - $signature: 2055 + $signature: 2057 }; A.Cursor.prototype = {}; A.CursorWithValue.prototype = { @@ -193329,7 +193730,7 @@ t1._unsubscribed = true; return t1._closeFile$0(); }, - $signature: 265 + $signature: 259 }; A._FileStream__closeFile_done.prototype = { call$0() { @@ -193375,7 +193776,7 @@ if (t1._atEnd) t1._closeFile$0(); }, - $signature: 875 + $signature: 704 }; A._FileStream__readBlock_closure0.prototype = { call$2(e, s) { @@ -193389,7 +193790,7 @@ t1._unsubscribed = true; } }, - $signature: 383 + $signature: 356 }; A._FileStream__start_onReady.prototype = { call$1(file) { @@ -193398,7 +193799,7 @@ t1._readInProgress = false; t1._readBlock$0(); }, - $signature: 870 + $signature: 700 }; A._FileStream__start_onOpenFile.prototype = { call$1(file) { @@ -193410,7 +193811,7 @@ else t3.call$1(file); }, - $signature: 870 + $signature: 700 }; A._FileStream__start_onOpenFile_closure.prototype = { call$2(e, s) { @@ -193421,7 +193822,7 @@ t1._readInProgress = false; t1._closeFile$0(); }, - $signature: 383 + $signature: 356 }; A._FileStream__start_openFailed.prototype = { call$2(error, stackTrace) { @@ -193432,7 +193833,7 @@ t1.___FileStream__controller_A.close$0(0); t1._closeCompleter.complete$0(0); }, - $signature: 217 + $signature: 213 }; A._File.prototype = { existsSync$0() { @@ -193466,14 +193867,14 @@ A._checkForErrorResponse(response, "Cannot open file", t1); return A._RandomAccessFile$(response, t1); }, - $signature: 869 + $signature: 694 }; A._File_length_closure.prototype = { call$1(response) { A._checkForErrorResponse(response, "Cannot retrieve length of file", this.$this._path); return response; }, - $signature: 256 + $signature: 251 }; A._File_readAsBytes_readUnsized.prototype = { call$1(file) { @@ -193482,7 +193883,7 @@ new A._File_readAsBytes_readUnsized_read(file, new A._BytesBuilder(t1), new A._AsyncCompleter(t2, type$._AsyncCompleter_Uint8List)).call$0(); return t2; }, - $signature: 868 + $signature: 688 }; A._File_readAsBytes_readUnsized_read.prototype = { call$0() { @@ -193501,7 +193902,7 @@ } else this.completer.complete$1(0, t1.takeBytes$0()); }, - $signature: 875 + $signature: 704 }; A._File_readAsBytes_readSized.prototype = { call$2(file, $length) { @@ -193512,7 +193913,7 @@ new A._File_readAsBytes_readSized_read(t1, file, $length, new A._AsyncCompleter(t2, type$._AsyncCompleter_Uint8List)).call$0(); return t2; }, - $signature: 2154 + $signature: 2180 }; A._File_readAsBytes_readSized_read.prototype = { call$0() { @@ -193546,7 +193947,7 @@ call$1(file) { return file.length$0(0).then$1$1(0, new A._File_readAsBytes__closure(this.readUnsized, file, this.readSized), type$.Uint8List).whenComplete$1(file.get$close(file)); }, - $signature: 868 + $signature: 688 }; A._File_readAsBytes__closure.prototype = { call$1($length) { @@ -193555,7 +193956,7 @@ return _this.readUnsized.call$1(_this.file); return _this.readSized.call$2(_this.file, $length); }, - $signature: 2211 + $signature: 2212 }; A._RandomAccessFile.prototype = { close$0(_) { @@ -193625,7 +194026,7 @@ t1.addRead$1(J.get$length$asx(result)); return result; }, - $signature: 2249 + $signature: 2254 }; A._RandomAccessFile_readInto_closure.prototype = { call$1(response) { @@ -193642,7 +194043,7 @@ t1.addRead$1(read); return read; }, - $signature: 256 + $signature: 251 }; A._RandomAccessFile_setPosition_closure.prototype = { call$1(response) { @@ -193650,14 +194051,14 @@ A._checkForErrorResponse(response, "setPosition failed", t1.path); return t1; }, - $signature: 869 + $signature: 694 }; A._RandomAccessFile_length_closure.prototype = { call$1(response) { A._checkForErrorResponse(response, "length failed", this.$this.path); return A._asInt(response); }, - $signature: 256 + $signature: 251 }; A.FileSystemEntity.prototype = {}; A.SystemEncoding.prototype = {}; @@ -193683,19 +194084,19 @@ call$1(o) { return new A.JsFunction(o); }, - $signature: 2272 + $signature: 2276 }; A._wrapToDart_closure0.prototype = { call$1(o) { return new A.JsArray(o, type$.JsArray_dynamic); }, - $signature: 2276 + $signature: 2396 }; A._wrapToDart_closure1.prototype = { call$1(o) { return new A.JsObject(o); }, - $signature: 2536 + $signature: 2538 }; A.JsObject.prototype = { $index(_, property) { @@ -193842,7 +194243,7 @@ } else return o; }, - $signature: 388 + $signature: 380 }; A.promiseToFuture_closure.prototype = { call$1(r) { @@ -193901,7 +194302,7 @@ } return o; }, - $signature: 388 + $signature: 380 }; A.NullRejectionException.prototype = { toString$0(_) { @@ -194487,13 +194888,13 @@ call$0() { return new A._Channel(A.ListQueue$(1, type$._StoredMessage), 1); }, - $signature: 867 + $signature: 677 }; A.ChannelBuffers_setListener_closure.prototype = { call$0() { return new A._Channel(A.ListQueue$(1, type$._StoredMessage), 1); }, - $signature: 867 + $signature: 677 }; A.OffsetBase.prototype = { $lt(_, other) { @@ -194955,7 +195356,7 @@ call$1(code) { return B.JSString_methods.padLeft$2(B.JSInt_methods.toRadixString$1(code, 16), 2, "0"); }, - $signature: 367 + $signature: 419 }; A.Color.prototype = { $eq(_, other) { @@ -195477,7 +195878,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 2683 + $signature: 2685 }; A.bootstrapEngine_closure0.prototype = { call$0() { @@ -195503,7 +195904,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 70 + $signature: 69 }; A.BrowserPlatformLocation.prototype = { getOrCreateDomEventListener$1(fn) { @@ -195514,7 +195915,7 @@ call$0() { return type$.JavaScriptObject._as(A.allowInterop(this.fn)); }, - $signature: 605 + $signature: 487 }; A.HashUrlStrategy.prototype = { addPopStateListener$1(fn) { @@ -195588,7 +195989,7 @@ } this.fn.call$1(t1); }, - $signature: 2684 + $signature: 2694 }; A.HashUrlStrategy_addPopStateListener_closure.prototype = { call$0() { @@ -195604,7 +196005,7 @@ this.unsubscribe._readLocal$0().call$0(); this.completer.complete$0(0); }, - $signature: 44 + $signature: 45 }; A.PlatformViewRegistry.prototype = {}; A.AudioBuffer.prototype = { @@ -195678,13 +196079,13 @@ call$2(k, v) { return this.keys.push(k); }, - $signature: 162 + $signature: 169 }; A.AudioParamMap_values_closure.prototype = { call$2(k, v) { return this.values.push(v); }, - $signature: 162 + $signature: 169 }; A.AudioTrack.prototype = { get$id(receiver) { @@ -198056,13 +198457,13 @@ var t1 = this.attribution; return t1 == null || marker.attribution.$eq(0, t1); }, - $signature: 59 + $signature: 60 }; A.AttributedSpans__getStartingMarkerAtOrBefore_closure0.prototype = { call$1(marker) { return marker.markerType === B.SpanMarkerType_0 && marker.offset <= this.offset; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans__getEndingMarkerAtOrAfter_closure.prototype = { call$1(marker) { @@ -198075,73 +198476,73 @@ t1 = true; return t1; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans__getEndingMarkerAtOrAfter_closure0.prototype = { call$1(marker) { return marker.markerType === B.SpanMarkerType_1 && marker.offset >= this.offset; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans_addAttribution_closure.prototype = { call$1(attribution) { return attribution.attribution.$eq(0, this.newAttribution); }, - $signature: 59 + $signature: 60 }; A.AttributedSpans_addAttribution_closure0.prototype = { call$1(attribution) { return attribution.offset > this.start; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans_addAttribution_closure1.prototype = { call$1(attribution) { return attribution.offset <= this.end; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans_addAttribution_closure2.prototype = { call$1(element) { return B.JSArray_methods.contains$1(this.markersToDelete, element); }, - $signature: 59 + $signature: 60 }; A.AttributedSpans_removeAttribution_closure.prototype = { call$1(attribution) { return attribution.attribution.$eq(0, this.attributionToRemove); }, - $signature: 59 + $signature: 60 }; A.AttributedSpans_removeAttribution_closure0.prototype = { call$1(attribution) { return attribution.offset >= this.start; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans_removeAttribution_closure1.prototype = { call$1(attribution) { return attribution.offset <= this.end; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans_removeAttribution_closure2.prototype = { call$1(element) { return B.JSArray_methods.contains$1(this.markersToDelete, element); }, - $signature: 59 + $signature: 60 }; A.AttributedSpans_removeAttribution_closure3.prototype = { call$1(element) { return element.attribution.$eq(0, this.attributionToRemove); }, - $signature: 59 + $signature: 60 }; A.AttributedSpans_removeAttribution_closure4.prototype = { call$1(element) { $.$get$_log().log$4(B.Level_FINER_400, " - " + element.toString$0(0), null, null); }, - $signature: 286 + $signature: 275 }; A.AttributedSpans__isContinuousAttribution_closure.prototype = { call$1(marker) { @@ -198149,68 +198550,68 @@ $.$get$_log().log$4(B.Level_FINEST_300, "Comparing start marker " + t1.toString$0(0) + " to another marker " + marker.toString$0(0), null, null); return marker.attribution.$eq(0, this.attribution) && marker.offset >= t1.offset && !marker.$eq(0, t1); }, - $signature: 59 + $signature: 60 }; A.AttributedSpans__getNearestMarkerAtOrBefore_closure.prototype = { call$1(marker) { var t1 = marker.attribution.$eq(0, this.attribution); return t1; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans__getNearestMarkerAtOrBefore_closure0.prototype = { call$1(marker) { return marker.markerType === this.type; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans__getMarkerAt_closure.prototype = { call$1(marker) { return marker.attribution.$eq(0, this.attribution); }, - $signature: 59 + $signature: 60 }; A.AttributedSpans__getMarkerAt_closure0.prototype = { call$1(marker) { return marker.offset === this.offset; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans__getMarkerAt_closure1.prototype = { call$1(marker) { return marker.markerType === this.type; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans__insertMarker_closure.prototype = { call$1(existingMarker) { return existingMarker.compareTo$1(0, this.newMarker) > 0; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans__mergeBackToBackAttributions_closure.prototype = { call$1(marker) { return marker.markerType === B.SpanMarkerType_1 && marker.offset === this.mergePoint - 1; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans__mergeBackToBackAttributions_closure0.prototype = { call$1(marker) { return marker.markerType === B.SpanMarkerType_0 && marker.offset === this.mergePoint; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans__mergeBackToBackAttributions_closure1.prototype = { call$1(marker) { return marker.attribution.$eq(0, this.startMarker.attribution); }, - $signature: 59 + $signature: 60 }; A.AttributedSpans_copyAttributionRegion_closure.prototype = { call$1(marker) { return marker.offset < this.startOffset; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans_copyAttributionRegion_closure0.prototype = { call$1(marker) { @@ -198233,19 +198634,19 @@ t2.$indexSet(0, t3, t1 - 1); } }, - $signature: 286 + $signature: 275 }; A.AttributedSpans_copyAttributionRegion__closure1.prototype = { call$0() { return 0; }, - $signature: 174 + $signature: 181 }; A.AttributedSpans_copyAttributionRegion__closure2.prototype = { call$0() { return 0; }, - $signature: 174 + $signature: 181 }; A.AttributedSpans_copyAttributionRegion_closure1.prototype = { call$2(markerAttribution, count) { @@ -198255,14 +198656,14 @@ } else if (count < 0 || count > 1) throw A.wrapException(A.Exception_Exception("Found an unbalanced number of `start` and `end` markers before offset: " + this.startOffset + " - " + A.S(this.$this._markers))); }, - $signature: 866 + $signature: 676 }; A.AttributedSpans_copyAttributionRegion_closure2.prototype = { call$1(marker) { var t1 = marker.offset; return this.startOffset <= t1 && t1 <= this._box_0.endOffset; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans_copyAttributionRegion_closure3.prototype = { call$1(marker) { @@ -198270,13 +198671,13 @@ $.$get$_log().log$4(B.Level_FINE_500, 'copying "' + marker.attribution.toString$0(0) + '" at ' + t1 + " from original AttributionSpans to copy region.", null, null); this.cutAttributions.push(marker.copyWith$1$offset(t1 - this.startOffset)); }, - $signature: 286 + $signature: 275 }; A.AttributedSpans_copyAttributionRegion_closure4.prototype = { call$1(marker) { return marker.offset > this._box_0.endOffset; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans_copyAttributionRegion_closure5.prototype = { call$1(marker) { @@ -198299,19 +198700,19 @@ t2.$indexSet(0, t3, t1 - 1); } }, - $signature: 286 + $signature: 275 }; A.AttributedSpans_copyAttributionRegion__closure.prototype = { call$0() { return 0; }, - $signature: 174 + $signature: 181 }; A.AttributedSpans_copyAttributionRegion__closure0.prototype = { call$0() { return 0; }, - $signature: 174 + $signature: 181 }; A.AttributedSpans_copyAttributionRegion_closure6.prototype = { call$2(markerAttribution, count) { @@ -198322,19 +198723,19 @@ } else if (count < 0 || count > 1) throw A.wrapException(A.Exception_Exception("Found an unbalanced number of `start` and `end` markers after offset: " + _this._box_0.endOffset + " - " + A.S(_this.$this._markers))); }, - $signature: 866 + $signature: 676 }; A.AttributedSpans_pushAttributionsBack_closure.prototype = { call$1(marker) { return marker.copyWith$1$offset(marker.offset + this.offset); }, - $signature: 864 + $signature: 673 }; A.AttributedSpans_contractAttributions_closure.prototype = { call$1(marker) { return marker.offset < this.startOffset; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans_contractAttributions_closure0.prototype = { call$1(marker) { @@ -198342,7 +198743,7 @@ t2 = marker.offset; return t1 <= t2 && t2 < t1 + this.count; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans_contractAttributions_closure1.prototype = { call$1(marker) { @@ -198365,19 +198766,19 @@ _this.needToEndAttributions.add$1(0, t2); } }, - $signature: 286 + $signature: 275 }; A.AttributedSpans_contractAttributions_closure2.prototype = { call$1(marker) { return marker.offset >= this.startOffset + this.count; }, - $signature: 59 + $signature: 60 }; A.AttributedSpans_contractAttributions_closure3.prototype = { call$1(marker) { return marker.copyWith$1$offset(marker.offset - this.count); }, - $signature: 864 + $signature: 673 }; A.SpanMarker.prototype = { copyWith$1$offset(offset) { @@ -198614,6 +199015,40 @@ t1.log$4(B.Level_FINE_500, contractedAttributions.toString$0(0), _null, _null); return A.AttributedText$(reducedText, contractedAttributions); }, + visitAttributions$1(visitor) { + var t2, currentIndex, _i, marker, currentIndex0, t3, t4, + t1 = type$.Attribution, + startingAttributions = A.LinkedHashSet_LinkedHashSet$_empty(t1), + endingAttributions = A.LinkedHashSet_LinkedHashSet$_empty(t1); + for (t1 = this.spans._markers, t2 = t1.length, currentIndex = -1, _i = 0; _i < t1.length; t1.length === t2 || (0, A.throwConcurrentModificationError)(t1), ++_i) { + marker = t1[_i]; + currentIndex0 = marker.offset; + if (currentIndex0 !== currentIndex) { + if (currentIndex >= 0) + visitor.visitAttributions$4(this, currentIndex, startingAttributions, endingAttributions); + startingAttributions.clear$0(0); + endingAttributions.clear$0(0); + currentIndex = currentIndex0; + } + t3 = marker.markerType; + t4 = marker.attribution; + if (t3 === B.SpanMarkerType_0) + startingAttributions.add$1(0, t4); + else + endingAttributions.add$1(0, t4); + } + if (endingAttributions._collection$_length !== 0) + visitor.visitAttributions$4(this, currentIndex, startingAttributions, endingAttributions); + t1 = visitor.__AttributedTextMarkdownSerializer__bufferCursor_A; + t1 === $ && A.throwUnnamedLateFieldNI(); + t2 = visitor.__AttributedTextMarkdownSerializer__fullText_A; + t2 === $ && A.throwUnnamedLateFieldNI(); + if (t1 <= t2.length - 1) { + t3 = visitor._markdown$_buffer; + t3.toString; + t3._contents += B.JSString_methods.substring$1(t2, t1); + } + }, $eq(_, other) { var t1, _this = this; if (other == null) @@ -198631,6 +199066,12 @@ return '[AttributedText] - "' + this.text + '"\n' + this.spans.toString$0(0); } }; + A.AttributionVisitEvent.prototype = { + _enumToString$0() { + return "AttributionVisitEvent." + this._core$_name; + } + }; + A.AttributionVisitor.prototype = {}; A.NamedAttribution.prototype = { canMergeWith$1(other) { return this.$eq(0, other); @@ -198772,7 +199213,7 @@ call$1(_) { return this.$this.afterFirstLayout$1(this.context); }, - $signature: 12 + $signature: 11 }; A.BoardItemState_build_closure3.prototype = { call$1(otd) { @@ -198981,7 +199422,7 @@ else return t1; }, - $signature: 104 + $signature: 106 }; A._BoardListState_State_AutomaticKeepAliveClientMixin.prototype = { initState$0() { @@ -199859,7 +200300,7 @@ if (_shown !== t1.shown) t1.setState$1(new A.BoardViewState_build__closure5(t1, _shown)); }, - $signature: 12 + $signature: 11 }; A.BoardViewState_build__closure5.prototype = { call$0() { @@ -199900,7 +200341,7 @@ else return temp; }, - $signature: 104 + $signature: 106 }; A.BoardViewState_build_closure1.prototype = { call$0() { @@ -199968,7 +200409,7 @@ if (t1._framework$_element != null) t1.setState$1(new A.BoardViewState_build__closure2()); }, - $signature: 12 + $signature: 11 }; A.BoardViewState_build__closure2.prototype = { call$0() { @@ -199989,7 +200430,7 @@ t1.setState$1(new A.BoardViewState_build__closure0()); } }, - $signature: 3013 + $signature: 3015 }; A.BoardViewState_build__closure0.prototype = { call$0() { @@ -200008,7 +200449,7 @@ if (t1._framework$_element != null) t1.setState$1(new A.BoardViewState_build__closure1()); }, - $signature: 190 + $signature: 165 }; A.BoardViewState_build__closure1.prototype = { call$0() { @@ -200038,7 +200479,7 @@ if (t1._framework$_element != null) t1.setState$1(new A.BoardViewState_build__closure()); }, - $signature: 3025 + $signature: 3033 }; A.BoardViewState_build__closure.prototype = { call$0() { @@ -200402,7 +200843,7 @@ call$2(h, i) { return A._combine(h, J.get$hashCode$(i)); }, - $signature: 3033 + $signature: 3038 }; A.BuiltList.prototype = { rebuild$1(updates) { @@ -201096,14 +201537,14 @@ var t1 = this.$this.$ti; this.replacement.$indexSet(0, t1._precomputed1._as(key), t1._rest[1]._as(value)); }, - $signature: 217 + $signature: 213 }; A.MapBuilder_replace_closure0.prototype = { call$2(key, value) { var t1 = this.$this.$ti; this.replacement.$indexSet(0, t1._precomputed1._as(key), t1._rest[1]._as(value)); }, - $signature: 217 + $signature: 213 }; A.BuiltSet.prototype = { get$hashCode(_) { @@ -201522,7 +201963,7 @@ $._indentingBuiltValueToStringHelperIndent = $._indentingBuiltValueToStringHelperIndent + 2; return new A.IndentingBuiltValueToStringHelper(t1); }, - $signature: 3042 + $signature: 3045 }; A.IndentingBuiltValueToStringHelper.prototype = { add$2(_, field, value) { @@ -201655,34 +202096,34 @@ call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.Object); }, - $signature: 3048 + $signature: 3052 }; A.Serializers_Serializers_closure0.prototype = { call$0() { var t1 = type$.Object; return A.ListMultimapBuilder_ListMultimapBuilder(t1, t1); }, - $signature: 3055 + $signature: 3057 }; A.Serializers_Serializers_closure1.prototype = { call$0() { var t1 = type$.Object; return A.MapBuilder_MapBuilder(t1, t1); }, - $signature: 3077 + $signature: 3079 }; A.Serializers_Serializers_closure2.prototype = { call$0() { return A.SetBuilder_SetBuilder(type$.Object); }, - $signature: 3117 + $signature: 3119 }; A.Serializers_Serializers_closure3.prototype = { call$0() { var t1 = type$.Object; return A.SetMultimapBuilder_SetMultimapBuilder(t1, t1); }, - $signature: 3152 + $signature: 3157 }; A.FullType.prototype = { $eq(_, other) { @@ -202075,13 +202516,13 @@ call$1(value) { return this.serializers.serialize$2$specifiedType(value, this.valueType); }, - $signature: 202 + $signature: 205 }; A.BuiltListMultimapSerializer_deserialize_closure.prototype = { call$1(value) { return this.serializers.deserialize$2$specifiedType(value, this.valueType); }, - $signature: 388 + $signature: 380 }; A.BuiltListSerializer.prototype = { serialize$3$specifiedType(serializers, builtList, specifiedType) { @@ -202121,13 +202562,13 @@ call$1(item) { return this.serializers.serialize$2$specifiedType(item, this.elementType); }, - $signature: 202 + $signature: 205 }; A.BuiltListSerializer_deserialize_closure.prototype = { call$1(item) { return this.serializers.deserialize$2$specifiedType(item, this.elementType); }, - $signature: 202 + $signature: 205 }; A.BuiltMapSerializer.prototype = { serialize$3$specifiedType(serializers, builtMap, specifiedType) { @@ -202262,13 +202703,13 @@ call$1(value) { return this.serializers.serialize$2$specifiedType(value, this.valueType); }, - $signature: 202 + $signature: 205 }; A.BuiltSetMultimapSerializer_deserialize_closure.prototype = { call$1(value) { return this.serializers.deserialize$2$specifiedType(value, this.valueType); }, - $signature: 202 + $signature: 205 }; A.BuiltSetSerializer.prototype = { serialize$3$specifiedType(serializers, builtSet, specifiedType) { @@ -202308,13 +202749,13 @@ call$1(item) { return this.serializers.serialize$2$specifiedType(item, this.elementType); }, - $signature: 202 + $signature: 205 }; A.BuiltSetSerializer_deserialize_closure.prototype = { call$1(item) { return this.serializers.deserialize$2$specifiedType(item, this.elementType); }, - $signature: 202 + $signature: 205 }; A.DateTimeSerializer.prototype = { serialize$3$specifiedType(serializers, dateTime, specifiedType) { @@ -202766,7 +203207,7 @@ call$1(value) { return value == null; }, - $signature: 148 + $signature: 138 }; A.StandardJsonPlugin__toList_closure0.prototype = { call$2(key, value) { @@ -202781,13 +203222,13 @@ t1[t3 + 1] = value; t2.i = t3 + 2; }, - $signature: 217 + $signature: 213 }; A.StandardJsonPlugin__toListUsingDiscriminator_closure.prototype = { call$1(value) { return value == null; }, - $signature: 148 + $signature: 138 }; A.StandardJsonPlugin__toListUsingDiscriminator_closure0.prototype = { call$2(key, value) { @@ -202804,7 +203245,7 @@ t1[t3 + 1] = value; t2.i = t3 + 2; }, - $signature: 217 + $signature: 213 }; A.StringCharacters.prototype = { get$iterator(_) { @@ -203591,13 +204032,13 @@ call$1(_) { return null; }, - $signature: 853 + $signature: 638 }; A.BaseBarRenderer_preprocessSeries__closure1.prototype = { call$0() { return A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.BaseBarRendererElement); }, - $signature: 3164 + $signature: 3167 }; A.BaseBarRenderer_preprocessSeries__closure2.prototype = { call$1(index) { @@ -203607,7 +204048,7 @@ t1.toString; return t1; }, - $signature: 3167 + $signature: 3169 }; A.BaseBarRenderer_preprocessSeries_closure0.prototype = { call$1(series) { @@ -203650,7 +204091,7 @@ call$2(a, b) { return a + b; }, - $signature: 216 + $signature: 236 }; A.BaseBarRenderer_update_closure.prototype = { call$1(series) { @@ -203752,7 +204193,7 @@ call$0() { return A.LinkedHashSet_LinkedHashSet$_empty(type$.String); }, - $signature: 569 + $signature: 550 }; A.BaseBarRenderer_update_closure0.prototype = { call$2(key, barStackList) { @@ -203860,7 +204301,7 @@ allKeys.addAll$1(0, keys); return allKeys; }, - $signature: 3170 + $signature: 3180 }; A.BaseBarRenderer__getSegmentsForDomainValue_closure0.prototype = { call$1(stackKey) { @@ -203933,13 +204374,13 @@ call$0() { return A._setArrayType([], type$.JSArray_int); }, - $signature: 852 + $signature: 664 }; A._ReversedSeriesIterator_closure0.prototype = { call$2(_, indices) { return B.JSArray_methods.addAll$1(this.$this._visitIndex, J.get$reversed$ax(indices)); }, - $signature: 3202 + $signature: 3236 }; A.BaseBarRendererConfig.prototype = { $eq(_, other) { @@ -204773,13 +205214,13 @@ t1.set$textStyle(this.wholeLabel._text_element$_textStyle); return t1; }, - $signature: 3251 + $signature: 3252 }; A.BaseTickDrawStrategy_getLabelWidth_closure.prototype = { call$1(line) { return line.get$measurement().horizontalSliceWidth; }, - $signature: 3289 + $signature: 3293 }; A._PixelVerticalDirection.prototype = { _enumToString$0() { @@ -205808,7 +206249,7 @@ call$1(value) { return value == null ? "" : this.numberFormat.format$1(value); }, - $signature: 848 + $signature: 672 }; A.BaseTickProvider.prototype = { createTicks$8$context$formatter$formatterValueCache$graphicsFactory$scale$stepSize$tickDrawStrategy(domainValues, context, formatter, formatterValueCache, graphicsFactory, scale, stepSize, tickDrawStrategy) { @@ -206355,32 +206796,32 @@ axis.context = t1; axis.tickDrawStrategy = A.NoneDrawStrategy$(t1, this.graphicsFactory, type$.num); }, - $signature: 305 + $signature: 304 }; A.CartesianChart_makeSeries_closure.prototype = { call$1(_) { return 0; }, - $signature: 926 + $signature: 927 }; A.CartesianChart_preprocessSeries_closure.prototype = { call$2(axisId, axis) { this.$this.addView$1(axis); }, - $signature: 305 + $signature: 304 }; A.CartesianChart_preprocessSeries_closure0.prototype = { call$2(axisId, axis) { axis.resetDomains$0(); }, - $signature: 305 + $signature: 304 }; A.CartesianChart_preprocessSeries_closure1.prototype = { call$2(axisId, axis) { axis.axisOrientation = this.reverseAxisDirection ? B.AxisOrientation_3 : B.AxisOrientation_1; axis.reverseOutputRange = false; }, - $signature: 305 + $signature: 304 }; A.CartesianChart_preprocessSeries_closure2.prototype = { call$2(rendererId, seriesList) { @@ -206396,7 +206837,7 @@ call$2(axisId, axis) { axis.updateTicks$0(); }, - $signature: 305 + $signature: 304 }; A.BaseCartesianRenderer.prototype = { onAttach$1(chart) { @@ -206810,7 +207251,7 @@ view.set$graphicsFactory(t1); return t1; }, - $signature: 179 + $signature: 186 }; A.BaseChart_getSelectionModel_closure.prototype = { call$0() { @@ -206828,7 +207269,7 @@ call$1(rendererId) { return this.$this.getSeriesRenderer$1(rendererId)._drawAreaBounds.containsPoint$1(0, this.chartPosition); }, - $signature: 11 + $signature: 12 }; A.BaseChart_getNearestDatumDetailPerSeries_closure.prototype = { call$1(rendererId) { @@ -206969,7 +207410,7 @@ t1 = t1.get$animatingThisDraw() ? t1.animationPercent : 1; view.paint$2(this.canvas, t1); }, - $signature: 179 + $signature: 186 }; A.BaseChart_fireOnDraw_closure.prototype = { call$1(listener) { @@ -207455,7 +207896,7 @@ call$1(id) { return !this.seriesIds.contains$1(0, id); }, - $signature: 11 + $signature: 12 }; A.SeriesLegend_preProcessSeriesList_closure.prototype = { call$1(series) { @@ -207469,7 +207910,7 @@ call$1(id) { return id === this.seriesId; }, - $signature: 11 + $signature: 12 }; A.LinePointHighlighter0.prototype = { attachTo$1(chart) { @@ -208025,7 +208466,7 @@ call$1(i) { return J.toString$0$(this.$this.domainFn.call$1(i)); }, - $signature: 943 + $signature: 976 }; A.ImmutableSeries.prototype = {}; A.SelectionModel.prototype = { @@ -208474,7 +208915,7 @@ t2.toString; return B.JSInt_methods.compareTo$1(t1, t2); }, - $signature: 845 + $signature: 683 }; A.LayoutManagerImpl_positionOrderedViews_closure.prototype = { call$2(v1, v2) { @@ -208485,13 +208926,13 @@ t2.toString; return B.JSInt_methods.compareTo$1(t1, t2); }, - $signature: 845 + $signature: 683 }; A.LayoutManagerImpl_drawableLayoutAreaBounds_closure.prototype = { call$1(view) { return view.get$isSeriesRenderer(); }, - $signature: 844 + $signature: 684 }; A.LayoutManagerImpl_layout_closure.prototype = { call$1(view) { @@ -208499,7 +208940,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return view.layout$2(t1, t1); }, - $signature: 179 + $signature: 186 }; A.LayoutManagerImpl__viewsForPositions_closure.prototype = { call$1(view) { @@ -208511,7 +208952,7 @@ t1 = true; return t1; }, - $signature: 844 + $signature: 684 }; A._MeasuredSizes.prototype = {}; A.SizeList.prototype = { @@ -208581,7 +209022,7 @@ t1.preferredSizes.add$1(0, size.preferredWidth); t1.minimumSizes.add$1(0, size.minWidth); }, - $signature: 179 + $signature: 186 }; A.LeftMarginLayoutStrategy.prototype = { layout$4(views, measuredSizes, fullBounds, drawAreaBounds) { @@ -208604,7 +209045,7 @@ view.layout$2(A.Rectangle$(left, 0 + t3, width, t2 - 0, type$.int), _this.drawAreaBounds); ++t1.i; }, - $signature: 179 + $signature: 186 }; A.RightMarginLayoutStrategy.prototype = { layout$4(views, measuredSizes, fullBounds, drawAreaBounds) { @@ -208627,7 +209068,7 @@ view.layout$2(A.Rectangle$(left, 0 + t3, width, t2 - 0, type$.int), _this.drawAreaBounds); ++t1.i; }, - $signature: 179 + $signature: 186 }; A.HorizontalMarginStrategy.prototype = { measure$4$fullWidth$maxHeight$width(_, views, fullWidth, maxHeight, width) { @@ -208658,7 +209099,7 @@ t1.preferredSizes.add$1(0, size.preferredHeight); t1.minimumSizes.add$1(0, size.minHeight); }, - $signature: 179 + $signature: 186 }; A.TopMarginLayoutStrategy.prototype = { layout$4(views, measuredSizes, fullBounds, drawAreaBounds) { @@ -208681,7 +209122,7 @@ view.layout$2(A.Rectangle$(0 + t3, $top, t2 - 0, height, type$.int), _this.drawAreaBounds); ++t1.i; }, - $signature: 179 + $signature: 186 }; A.BottomMarginLayoutStrategy.prototype = { layout$4(views, measuredSizes, fullBounds, drawAreaBounds) { @@ -208704,7 +209145,7 @@ view.layout$2(A.Rectangle$(0 + t3, $top, t2 - 0, height, type$.int), _this.drawAreaBounds); ++t1.i; }, - $signature: 179 + $signature: 186 }; A.LayoutPosition.prototype = { _enumToString$0() { @@ -209021,7 +209462,7 @@ return _null; return new A.Color0(color.r, color.g, color.b, B.JSNumber_methods.round$0(color.a * 0.1), _null, _null); }, - $signature: 1072 + $signature: 1074 }; A.LineRenderer_preprocessSeries_closure.prototype = { call$1(series) { @@ -209091,7 +209532,7 @@ call$1(_) { return null; }, - $signature: 853 + $signature: 638 }; A.LineRenderer__mergeIntoSeriesMap_closure.prototype = { call$1(series) { @@ -209249,7 +209690,7 @@ animatingElements.allPoints = allPointList; _this.previousPointList[t3] = allPointList; }, - $signature: 1074 + $signature: 1075 }; A.LineRenderer_update___closure.prototype = { call$1(elements) { @@ -209961,79 +210402,79 @@ call$1(_) { return false; }, - $signature: 553 + $signature: 605 }; A.MaterialPalette__orderedPalettes_closure.prototype = { call$0() { return B.C_MaterialBlue; }, - $signature: 140 + $signature: 144 }; A.MaterialPalette__orderedPalettes_closure0.prototype = { call$0() { return B.C_MaterialRed; }, - $signature: 140 + $signature: 144 }; A.MaterialPalette__orderedPalettes_closure1.prototype = { call$0() { return B.C_MaterialYellow; }, - $signature: 140 + $signature: 144 }; A.MaterialPalette__orderedPalettes_closure2.prototype = { call$0() { return B.C_MaterialGreen; }, - $signature: 140 + $signature: 144 }; A.MaterialPalette__orderedPalettes_closure3.prototype = { call$0() { return B.C_MaterialPurple; }, - $signature: 140 + $signature: 144 }; A.MaterialPalette__orderedPalettes_closure4.prototype = { call$0() { return B.C_MaterialCyan; }, - $signature: 140 + $signature: 144 }; A.MaterialPalette__orderedPalettes_closure5.prototype = { call$0() { return B.C_MaterialDeepOrange; }, - $signature: 140 + $signature: 144 }; A.MaterialPalette__orderedPalettes_closure6.prototype = { call$0() { return B.C_MaterialLime; }, - $signature: 140 + $signature: 144 }; A.MaterialPalette__orderedPalettes_closure7.prototype = { call$0() { return B.C_MaterialIndigo; }, - $signature: 140 + $signature: 144 }; A.MaterialPalette__orderedPalettes_closure8.prototype = { call$0() { return B.C_MaterialPink; }, - $signature: 140 + $signature: 144 }; A.MaterialPalette__orderedPalettes_closure9.prototype = { call$0() { return B.C_MaterialTeal; }, - $signature: 140 + $signature: 144 }; A.MaterialPalette__orderedPalettes_closure10.prototype = { call$1(f) { return f.call$0(); }, - $signature: 1106 + $signature: 1108 }; A.MaterialBlue.prototype = { get$shadeDefault() { @@ -210203,7 +210644,7 @@ t1 = t1 == null ? null : t1.call$1(this.localPosition); return t1 == null ? false : t1; }, - $signature: 309 + $signature: 322 }; A.ProxyGestureListener_onTap_closure.prototype = { call$1(listener) { @@ -210211,7 +210652,7 @@ t1 = t1 == null ? null : t1.call$1(this.localPosition); return t1 == null ? false : t1; }, - $signature: 309 + $signature: 322 }; A.ProxyGestureListener_onDragStart_closure.prototype = { call$1(listener) { @@ -210219,7 +210660,7 @@ t1 = t1 == null ? null : t1.call$1(this.localPosition); return t1 == null ? false : t1; }, - $signature: 309 + $signature: 322 }; A.ProxyGestureListener_onDragUpdate_closure.prototype = { call$1(listener) { @@ -210227,7 +210668,7 @@ t1 = t1 == null ? null : t1.call$2(this.localPosition, this.scale); return t1 == null ? false : t1; }, - $signature: 309 + $signature: 322 }; A.ProxyGestureListener_onDragEnd_closure.prototype = { call$1(listener) { @@ -210235,14 +210676,14 @@ t1 = t1 == null ? null : t1.call$3(this.localPosition, this.scale, this.pixelsPerSecond); return t1 == null ? false : t1; }, - $signature: 309 + $signature: 322 }; A.ProxyGestureListener__cancel_closure.prototype = { call$1(listener) { if (!B.JSArray_methods.contains$1(this.keep, listener)) listener.onTapCancel.call$0(); }, - $signature: 842 + $signature: 710 }; A.ProxyGestureListener__populateActiveListeners_closure.prototype = { call$1(listener) { @@ -210255,7 +210696,7 @@ } else if (claimed || !_this._box_0.previouslyClaimed) _this.$this._activeListeners.push(listener); }, - $signature: 842 + $signature: 710 }; A.MaterialStyle.prototype = {}; A.StyleFactory.prototype = {}; @@ -210407,7 +210848,7 @@ index.toString; return this.measureFn.call$2(this.data[index], index); }, - $signature: 841 + $signature: 711 }; A.Series_Series_closure2.prototype = { call$1(index) { @@ -210421,7 +210862,7 @@ index.toString; return this.strokeWidthPxFn.call$2(this.data[index], index); }, - $signature: 841 + $signature: 711 }; A.AttributeKey.prototype = {}; A.SeriesAttributes.prototype = {}; @@ -210570,7 +211011,7 @@ var t1 = this.behavior; return userBehavior.get$role(userBehavior) === t1.get$role(t1); }, - $signature: 840 + $signature: 716 }; A.BaseChart__updateSelectionModel_closure.prototype = { call$1(model) { @@ -210604,19 +211045,19 @@ t2.toString; B.JSArray_methods.remove$1(t1._updatedListeners, t2); }, - $signature: 1133 + $signature: 1134 }; A.BaseChart_getDesiredGestures_closure.prototype = { call$1(behavior) { this.types.addAll$1(0, behavior.get$desiredGestures()); }, - $signature: 839 + $signature: 717 }; A.BaseChart_getDesiredGestures_closure0.prototype = { call$1(behavior) { this.types.addAll$1(0, behavior.get$desiredGestures()); }, - $signature: 839 + $signature: 717 }; A.BaseChartState.prototype = { initState$0() { @@ -210697,13 +211138,13 @@ this.chartWidgets.push(A.LayoutId$(behavior.build$1(this.context), id)); } }, - $signature: 1151 + $signature: 1155 }; A.BaseChartState_dispose_closure.prototype = { call$2(_, controller) { return controller.dispose$0(); }, - $signature: 1166 + $signature: 1167 }; A.BaseChartState__animationTick_closure.prototype = { call$0() { @@ -210816,7 +211257,7 @@ } return A.Row$(rowChildren, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); }, - $signature: 1195 + $signature: 1210 }; A.TabularLegendContentBuilder.prototype = { $eq(_, o) { @@ -210850,7 +211291,7 @@ call$1(d) { this.legend.onLegendEntryTapUp$1(this.legendEntry); }, - $signature: 113 + $signature: 115 }; A.TabularLegendLayout.prototype = { build$2(context, legendEntries) { @@ -210919,25 +211360,25 @@ t1.toString; return new A.Padding(t1, entry, null); }, - $signature: 1290 + $signature: 1291 }; A.TabularLegendLayout__buildTableFromRows_closure.prototype = { call$1(r) { return r.children.length; }, - $signature: 1292 + $signature: 1293 }; A.TabularLegendLayout__buildTableFromRows_closure0.prototype = { call$2(max, current) { return current > max ? current : max; }, - $signature: 520 + $signature: 500 }; A.TabularLegendLayout__buildTableFromRows_closure1.prototype = { call$1(_) { return this.padWidget; }, - $signature: 1296 + $signature: 1297 }; A.SeriesLegend.prototype = { createCommonBehavior$0() { @@ -211519,7 +211960,7 @@ t1.toString; return A.getChartContainerRenderObject(type$.RenderBox._as(t1)); }, - $signature: 1362 + $signature: 1363 }; A.ChartGestureDetector_onTapDown_closure.prototype = { call$0() { @@ -211683,7 +212124,7 @@ call$1(child) { return child instanceof A.RenderSemanticsGestureHandler; }, - $signature: 835 + $signature: 790 }; A.WidgetLayoutDelegate.prototype = { performLayout$1(size) { @@ -213913,13 +214354,13 @@ this.$this.channel._invokeMethod$1$3$arguments$missingOk("performOperation_web", A.List_List$of(new A.MappedListIterable(t1, new A.DesktopDropWeb__registerEvents__closure(), t2), true, t2._eval$1("ListIterable.E")), false, type$.dynamic); } }, - $signature: 416 + $signature: 411 }; A.DesktopDropWeb__registerEvents__closure.prototype = { call$1(e) { return e.toJson$0(); }, - $signature: 1408 + $signature: 1409 }; A.DesktopDropWeb__registerEvents_closure0.prototype = { call$1($event) { @@ -213931,7 +214372,7 @@ t2.toString; this.$this.channel._invokeMethod$1$3$arguments$missingOk("entered", A._setArrayType([t1, t2], type$.JSArray_double), false, type$.dynamic); }, - $signature: 416 + $signature: 411 }; A.DesktopDropWeb__registerEvents_closure1.prototype = { call$1($event) { @@ -213943,7 +214384,7 @@ t2.toString; this.$this.channel._invokeMethod$1$3$arguments$missingOk("updated", A._setArrayType([t1, t2], type$.JSArray_double), false, type$.dynamic); }, - $signature: 416 + $signature: 411 }; A.DesktopDropWeb__registerEvents_closure2.prototype = { call$1($event) { @@ -213955,7 +214396,7 @@ t2.toString; this.$this.channel._invokeMethod$1$3$arguments$missingOk("exited", A._setArrayType([t1, t2], type$.JSArray_double), false, type$.dynamic); }, - $signature: 416 + $signature: 411 }; A.DesktopDrop.prototype = { init$0() { @@ -214103,14 +214544,14 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 441 + $signature: 434 }; A.DesktopDrop__handleMethodChannel_closure.prototype = { call$1(e) { var _null = null; return A.XFile$(e, _null, _null, _null, _null); }, - $signature: 834 + $signature: 918 }; A.DesktopDrop__handleMethodChannel_closure0.prototype = { call$1(e) { @@ -214134,27 +214575,27 @@ call$1(e) { return e.length !== 0; }, - $signature: 11 + $signature: 12 }; A.DesktopDrop__handleMethodChannel_closure2.prototype = { call$1(e) { var _null = null; return A.XFile$(e, _null, _null, _null, _null); }, - $signature: 834 + $signature: 918 }; A.DesktopDrop__handleMethodChannel_closure3.prototype = { call$1(e) { var t1 = J.cast$2$0$ax(e, type$.String, type$.dynamic); return new A.WebDropItem(t1.$index(0, "uri"), t1.$index(0, "name"), t1.$index(0, "type"), t1.$index(0, "size"), t1.$index(0, "relativePath"), A.DateTime$fromMillisecondsSinceEpoch(t1.$index(0, "lastModified"), false)); }, - $signature: 1440 + $signature: 1441 }; A.DesktopDrop__handleMethodChannel_closure4.prototype = { call$1(e) { return A.XFile$(e.uri, e.lastModified, e.size, e.type, e.name); }, - $signature: 1441 + $signature: 1442 }; A.WebDropItem.prototype = { toJson$0() { @@ -214367,19 +214808,19 @@ if (t1.length >= this.files.length) this.filesCompleter.complete$1(0, t1); }, - $signature: 1489 + $signature: 1515 }; A.FilePickerWeb_pickFiles_changeEventListener_closure.prototype = { call$1(e) { this.addPickedFile.call$4(this.file, null, A._asStringQ(B.FileReader_methods.get$result(this.reader)), null); }, - $signature: 513 + $signature: 528 }; A.FilePickerWeb_pickFiles_changeEventListener_closure0.prototype = { call$1(e) { this.addPickedFile.call$4(this.file, type$.nullable_Uint8List._as(B.FileReader_methods.get$result(this.reader)), null, null); }, - $signature: 513 + $signature: 528 }; A.FilePickerWeb_pickFiles_cancelledEventListener.prototype = { call$1(_) { @@ -214404,7 +214845,7 @@ call$2(prev, next) { return (prev.length === 0 ? "" : prev + ",") + " ." + next; }, - $signature: 536 + $signature: 476 }; A.FileType.prototype = { _enumToString$0() { @@ -214604,7 +215045,7 @@ call$1(path) { return path.length !== 0; }, - $signature: 11 + $signature: 12 }; A.FilePickerMacOS_resultStringToFilePaths_closure1.prototype = { call$1(path) { @@ -214621,7 +215062,7 @@ call$1(e) { return e.length !== 0; }, - $signature: 11 + $signature: 12 }; A.FilePickerResult.prototype = { $eq(_, other) { @@ -214926,7 +215367,7 @@ call$1(filePath) { return filePath.length !== 0; }, - $signature: 11 + $signature: 12 }; A.filePathsToPlatformFiles_closure0.prototype = { call$1(filePath) { @@ -214967,7 +215408,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 1546 + $signature: 1547 }; A.Int32.prototype = { _toInt$1(val) { @@ -216776,7 +217217,7 @@ var marker = color.$eq(0, this.$this._effectiveColor) ? "*" : ""; return marker + $name + " = " + color.toString$0(0) + marker; }, - $signature: 1640 + $signature: 1664 }; A._CupertinoDynamicColor_Color_Diagnosticable.prototype = {}; A._CupertinoDesktopTextSelectionHandleControls.prototype = {}; @@ -217407,7 +217848,7 @@ t1.toString; return t1; }, - $signature: 420 + $signature: 442 }; A._CupertinoEdgeShadowDecoration_lerp_closure0.prototype = { call$1(color) { @@ -217415,7 +217856,7 @@ t1.toString; return t1; }, - $signature: 420 + $signature: 442 }; A._CupertinoEdgeShadowPainter.prototype = { paint$3(canvas, offset, configuration) { @@ -217564,7 +218005,7 @@ call$1(_) { return A.HapticFeedback_mediumImpact(); }, - $signature: 506 + $signature: 613 }; A.CupertinoSwitch.prototype = { createState$0() { @@ -218084,43 +218525,43 @@ call$0() { return this._0_0._0; }, - $signature: 832 + $signature: 913 }; A._RenderCupertinoSwitch_paint_closure0.prototype = { call$0() { return this._0_0._1; }, - $signature: 832 + $signature: 913 }; A._RenderCupertinoSwitch_paint_closure1.prototype = { call$0() { return this._1_0._0; }, - $signature: 124 + $signature: 125 }; A._RenderCupertinoSwitch_paint_closure2.prototype = { call$0() { return this._1_0._1; }, - $signature: 124 + $signature: 125 }; A._RenderCupertinoSwitch_paint_closure3.prototype = { call$0() { return this._2_0._0; }, - $signature: 428 + $signature: 436 }; A._RenderCupertinoSwitch_paint_closure4.prototype = { call$0() { return this._2_0._1; }, - $signature: 428 + $signature: 436 }; A._RenderCupertinoSwitch_paint_closure5.prototype = { call$2(innerContext, offset) { this.$this._thumbPainter.paint$2(innerContext.get$canvas(innerContext), this.thumbBounds); }, - $signature: 90 + $signature: 91 }; A.__CupertinoSwitchState_State_TickerProviderStateMixin.prototype = { activate$0() { @@ -218331,19 +218772,19 @@ call$0() { return this._0_0._0; }, - $signature: 428 + $signature: 436 }; A._RenderCupertinoTextSelectionToolbarShape__addRRectToPath_closure0.prototype = { call$0() { return this._0_0._1; }, - $signature: 2062 + $signature: 2086 }; A._RenderCupertinoTextSelectionToolbarShape_paint_closure.prototype = { call$2(innerContext, innerOffset) { return innerContext.paintChild$2(this.child, innerOffset); }, - $signature: 90 + $signature: 91 }; A._CupertinoTextSelectionToolbarContent.prototype = { createState$0() { @@ -218469,7 +218910,7 @@ call$1(child) { return A.Center$(child, 1, 1); }, - $signature: 2086 + $signature: 2087 }; A._LeftCupertinoChevronPainter.prototype = {}; A._RightCupertinoChevronPainter.prototype = {}; @@ -218785,7 +219226,7 @@ if (childHeight > t1.greatestHeight) t1.greatestHeight = childHeight; }, - $signature: 63 + $signature: 67 }; A._RenderCupertinoTextSelectionToolbarItems_performLayout_closure0.prototype = { call$1(renderObjectChild) { @@ -218838,7 +219279,7 @@ if (t1.currentPage === t4._text_selection_toolbar0$_page) _this.toolbarWidth.__late_helper$_value = t1.currentButtonPosition; }, - $signature: 63 + $signature: 67 }; A._RenderCupertinoTextSelectionToolbarItems_paint_closure.prototype = { call$1(renderObjectChild) { @@ -218861,19 +219302,19 @@ } } }, - $signature: 63 + $signature: 67 }; A._RenderCupertinoTextSelectionToolbarItems_hitTestChild_closure.prototype = { call$2(result, transformed) { return this.child.hitTest$2$position(result, transformed); }, - $signature: 72 + $signature: 71 }; A._RenderCupertinoTextSelectionToolbarItems_redepthChildren_closure.prototype = { call$1(renderObjectChild) { this.$this.redepthChild$1(type$.RenderBox._as(renderObjectChild)); }, - $signature: 63 + $signature: 67 }; A._RenderCupertinoTextSelectionToolbarItems_visitChildrenForSemantics_closure.prototype = { call$1(renderObjectChild) { @@ -218884,7 +219325,7 @@ if (type$.ToolbarItemsParentData._as(t1).shouldPaint) this.visitor.call$1(renderObjectChild); }, - $signature: 63 + $signature: 67 }; A._RenderCupertinoTextSelectionToolbarItems_debugDescribeChildren_closure.prototype = { call$1(renderObjectChild) { @@ -218901,7 +219342,7 @@ t2.push(A.DiagnosticableTreeNode$("menu item", null, renderObjectChild)); } }, - $signature: 63 + $signature: 67 }; A._CupertinoTextSelectionToolbarItemsSlot.prototype = { _enumToString$0() { @@ -219237,7 +219678,7 @@ call$1(color) { return A.CupertinoDynamicColor_maybeResolve(color, this.context); }, - $signature: 831 + $signature: 908 }; A.NoDefaultCupertinoThemeData.prototype = { resolveFrom$1(context) { @@ -219276,7 +219717,7 @@ call$1(color) { return A.CupertinoDynamicColor_maybeResolve(color, this.context); }, - $signature: 831 + $signature: 908 }; A._CupertinoThemeDefaults.prototype = { resolveFrom$2(context, resolveTextTheme) { @@ -219301,7 +219742,7 @@ call$1(color) { return color instanceof A.CupertinoDynamicColor ? color.resolveFrom$1(this.context) : color; }, - $signature: 420 + $signature: 442 }; A._CupertinoTextThemeDefaults.prototype = {}; A._DefaultCupertinoTextThemeData.prototype = { @@ -219463,7 +219904,7 @@ call$0() { return null; }, - $signature: 2115 + $signature: 2116 }; A._browserPlatform_closure.prototype = { call$0() { @@ -219481,7 +219922,7 @@ return B.TargetPlatform_3; return B.TargetPlatform_0; }, - $signature: 829 + $signature: 905 }; A._ErrorDiagnostic.prototype = { toString$1$minLevel(_, minLevel) { @@ -219627,7 +220068,7 @@ call$1(node) { return node.get$level(node) === B.DiagnosticLevel_6; }, - $signature: 2120 + $signature: 2121 }; A.FlutterErrorDetails_summary_closure0.prototype = { call$0() { @@ -219639,7 +220080,7 @@ call$1(frame) { return frame.packageScheme === "dart"; }, - $signature: 2147 + $signature: 2148 }; A.FlutterError.prototype = { get$message(_) { @@ -219659,31 +220100,31 @@ call$1(line) { return A.ErrorDescription$(line); }, - $signature: 2152 + $signature: 2153 }; A.FlutterError_defaultStackFilter_closure.prototype = { call$1(value) { return value + 1; }, - $signature: 133 + $signature: 137 }; A.FlutterError_defaultStackFilter_closure0.prototype = { call$1(value) { return value + 1; }, - $signature: 133 + $signature: 137 }; A.FlutterError_toString_closure.prototype = { call$1(node) { return B.JSString_methods.trimRight$0(this.renderer._debugRender$4$parentConfiguration$prefixLineOne$prefixOtherLines(node, null, "", null)); }, - $signature: 2153 + $signature: 2154 }; A.debugPrintStack_closure.prototype = { call$1(line) { return B.JSString_methods.contains$1(line, "StackTrace.current") || B.JSString_methods.contains$1(line, "dart-sdk/lib/_internal") || B.JSString_methods.contains$1(line, "dart:sdk_internal"); }, - $signature: 11 + $signature: 12 }; A.DiagnosticsStackTrace.prototype = { get$allowTruncate() { @@ -219794,7 +220235,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 500 + $signature: 592 }; A.BindingBase_initServiceExtensions_closure0.prototype = { call$1(uri) { @@ -219817,7 +220258,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 373 + $signature: 429 }; A.BindingBase_initServiceExtensions_closure1.prototype = { call$0() { @@ -219843,7 +220284,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 500 + $signature: 592 }; A.BindingBase_initServiceExtensions_closure2.prototype = { call$1(serverAddress) { @@ -219866,7 +220307,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 373 + $signature: 429 }; A.BindingBase_lockEvents_closure.prototype = { call$0() { @@ -219936,7 +220377,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 287 + $signature: 328 }; A.BindingBase_registerNumericServiceExtension_closure.prototype = { call$1(parameters) { @@ -219993,7 +220434,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 287 + $signature: 328 }; A.BindingBase_registerStringServiceExtension_closure.prototype = { call$1(parameters) { @@ -220046,7 +220487,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 287 + $signature: 328 }; A.BindingBase_registerServiceExtension_closure.prototype = { call$2(method, parameters) { @@ -220123,7 +220564,7 @@ }); return A._asyncStartSync($async$call$2, $async$completer); }, - $signature: 905 + $signature: 725 }; A.BindingBase_registerServiceExtension__closure.prototype = { call$0() { @@ -220265,7 +220706,7 @@ t1 = this.$this; return A._setArrayType([A.DiagnosticsProperty$("The " + A.getRuntimeTypeOfDartObject(t1).toString$0(0) + " sending notification was", t1, true, B.C__NoDefaultValue, _null, false, _null, _null, B.DiagnosticLevel_3, _null, false, true, true, B.DiagnosticsTreeStyle_9, _null, type$.ChangeNotifier)], type$.JSArray_DiagnosticsNode); }, - $signature: 143 + $signature: 147 }; A._MergingListenable.prototype = { addListener$1(_, listener) { @@ -220449,7 +220890,7 @@ } return index < t2[t1.currentChunk]; }, - $signature: 146 + $signature: 140 }; A._NoDefaultValue.prototype = {}; A.TextTreeRenderer.prototype = { @@ -220684,14 +221125,14 @@ ++t3.lines; } }, - $signature: 828 + $signature: 901 }; A.TextTreeRenderer__debugRender_closure.prototype = { call$1(n) { var t1 = n.get$level(n); return t1.index >= this.$this._minLevel.index; }, - $signature: 2433 + $signature: 2462 }; A.DiagnosticsNode.prototype = { get$level(_) { @@ -221113,7 +221554,7 @@ B.JSArray_methods.clear$0(t1); return new A.LicenseParagraph(t2, t3); }, - $signature: 2503 + $signature: 2505 }; A.LicenseRegistry_licenses_closure.prototype = { call$0() { @@ -221571,7 +222012,7 @@ call$1(line) { return line.length !== 0; }, - $signature: 11 + $signature: 12 }; A.SynchronousFuture.prototype = { asStream$0() { @@ -221652,7 +222093,7 @@ return member.toString$0(0) + " (eager winner)"; return member.toString$0(0); }, - $signature: 2505 + $signature: 2506 }; A.GestureArenaManager.prototype = { add$2(_, pointer, member) { @@ -221747,7 +222188,7 @@ call$0() { return new A._GestureArena(A._setArrayType([], type$.JSArray_GestureArenaMember)); }, - $signature: 2506 + $signature: 2518 }; A.GestureArenaManager__tryToResolveArena_closure.prototype = { call$0() { @@ -221893,21 +222334,21 @@ var _null = null; return A._setArrayType([A.DiagnosticsProperty$("Event", this.event, true, B.C__NoDefaultValue, _null, false, _null, _null, B.DiagnosticLevel_3, _null, false, true, true, B.DiagnosticsTreeStyle_9, _null, type$.PointerEvent)], type$.JSArray_DiagnosticsNode); }, - $signature: 143 + $signature: 147 }; A.GestureBinding_dispatchEvent_closure0.prototype = { call$0() { var _null = null; return A._setArrayType([A.DiagnosticsProperty$("Event", this.event, true, B.C__NoDefaultValue, _null, false, _null, _null, B.DiagnosticLevel_3, _null, false, true, true, B.DiagnosticsTreeStyle_9, _null, type$.PointerEvent), A.DiagnosticsProperty$("Target", this.entry.target, true, B.C__NoDefaultValue, _null, false, _null, _null, B.DiagnosticLevel_3, _null, false, true, true, B.DiagnosticsTreeStyle_9, _null, type$.HitTestTarget)], type$.JSArray_DiagnosticsNode); }, - $signature: 143 + $signature: 147 }; A.FlutterErrorDetailsForPointerEventDispatcher.prototype = {}; A.PointerEventConverter_expand_closure.prototype = { call$1(datum) { return datum.signalKind !== B.PointerSignalKind_4; }, - $signature: 2540 + $signature: 2541 }; A.PointerEventConverter_expand_closure0.prototype = { call$1(datum) { @@ -221962,7 +222403,7 @@ throw A.wrapException(A.StateError$("Unreachable")); } }, - $signature: 2543 + $signature: 2544 }; A.Drag.prototype = { update$1(_, details) { @@ -223002,7 +223443,7 @@ call$1(c) { return B.JSNumber_methods.toStringAsPrecision$1(c, 3); }, - $signature: 2554 + $signature: 2555 }; A.LeastSquaresSolver.prototype = { solve$1(degree) { @@ -223558,13 +223999,13 @@ call$1(initialPosition) { return this.$this._startDrag$2(initialPosition, this.pointer); }, - $signature: 824 + $signature: 893 }; A.MultiDragGestureRecognizer__startDrag_closure.prototype = { call$0() { return this.$this.onStart.call$1(this.initialPosition); }, - $signature: 2589 + $signature: 2590 }; A._ImmediatePointerState.prototype = { checkForResolutionAfterMove$0() { @@ -223843,14 +224284,14 @@ call$0() { return A.LinkedHashMap_LinkedHashMap$_empty(type$.void_Function_PointerEvent, type$.nullable_Matrix4); }, - $signature: 2591 + $signature: 2593 }; A.PointerRouter__dispatchEventToRoutes_closure.prototype = { call$2(route, transform) { if (J.containsKey$1$x(this.referenceRoutes, route)) this.$this._dispatch$3(this.event, route, transform); }, - $signature: 2593 + $signature: 2598 }; A.PointerSignalResolver.prototype = { register$2(_, $event, callback) { @@ -224512,13 +224953,13 @@ call$1(x) { return x._rotation; }, - $signature: 820 + $signature: 892 }; A.ScaleGestureRecognizer__reconfigure_closure0.prototype = { call$2(a, b) { return a + b; }, - $signature: 216 + $signature: 236 }; A.ScaleGestureRecognizer__reconfigure_closure1.prototype = { call$0() { @@ -224591,13 +225032,13 @@ call$1(x) { return x._rotation; }, - $signature: 820 + $signature: 892 }; A.ScaleGestureRecognizer_acceptGesture_closure0.prototype = { call$2(a, b) { return a + b; }, - $signature: 216 + $signature: 236 }; A.TapDownDetails.prototype = {}; A.TapUpDetails.prototype = {}; @@ -225356,7 +225797,7 @@ call$0() { return new A._CombiningGestureArenaMember(this.$this, A._setArrayType([], type$.JSArray_GestureArenaMember), this.pointer); }, - $signature: 2636 + $signature: 2668 }; A.Velocity.prototype = { $sub(_, other) { @@ -225544,7 +225985,7 @@ var _this = this; return new A.LicensePage(_this.applicationName, _this.applicationVersion, _this.applicationIcon, _this.applicationLegalese, null); }, - $signature: 2664 + $signature: 2684 }; A.LicensePage.prototype = { createState$0() { @@ -225628,20 +226069,20 @@ prev.addLicense$1(license); return prev; }, - $signature: 2691 + $signature: 2695 }; A._PackagesViewState_licenses_closure0.prototype = { call$1(licenseData) { licenseData.sortPackages$0(); return licenseData; }, - $signature: 2694 + $signature: 2701 }; A._PackagesViewState_build_closure.prototype = { call$2(context, snapshot) { return new A.LayoutBuilder(new A._PackagesViewState_build__closure(this.$this, snapshot), new A.ValueKey(snapshot.connectionState, type$.ValueKey_ConnectionState)); }, - $signature: 2698 + $signature: 2704 }; A._PackagesViewState_build__closure.prototype = { call$2(context, constraints) { @@ -225664,7 +226105,7 @@ return A.Material$(B.Duration_200000, true, _null, A.Column$(A._setArrayType([this.$this._widget.about, B.Center_oER], type$.JSArray_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.Clip_0, t1.cardColor, 0, _null, _null, _null, _null, _null, B.MaterialType_0); } }, - $signature: 237 + $signature: 221 }; A._PackagesViewState_build___closure.prototype = { call$3(context, selectedId, _) { @@ -225676,13 +226117,13 @@ t4.toString; return A.Center$(A.Material$(B.Duration_200000, true, _null, A.Container$(_null, t3._packagesList$4(context, selectedId, t4, t3._widget.isLateral), B.Clip_0, _null, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null), B.Clip_0, t1.cardColor, 4, _null, _null, _null, _null, _null, B.MaterialType_0), _null, _null); }, - $signature: 2705 + $signature: 2708 }; A._PackagesViewState__initDefaultDetailPage_closure.prototype = { call$1(i) { return this.data.licenses[i]; }, - $signature: 817 + $signature: 888 }; A._PackagesViewState__packagesList_closure.prototype = { call$2(context, index) { @@ -225701,7 +226142,7 @@ t3 = false; return new A._PackageListTile(packageName, t3, t2.length, new A._PackagesViewState__packagesList__closure(_this.$this, packageIndex, context, packageName, t2, t1), null); }, - $signature: 104 + $signature: 106 }; A._PackagesViewState__packagesList__closure.prototype = { call$0() { @@ -225717,7 +226158,7 @@ call$1(i) { return this.data.licenses[i]; }, - $signature: 817 + $signature: 888 }; A._PackageListTile.prototype = { build$1(context) { @@ -225758,7 +226199,7 @@ return 1; return B.JSString_methods.compareTo$1(a.toLowerCase(), b.toLowerCase()); }, - $signature: 26 + $signature: 25 }; A._DetailArguments.prototype = { $eq(_, other) { @@ -225904,7 +226345,7 @@ call$2(context, index) { return A.Localizations_Localizations$override(this.listWidgets[index], context, B.Locale_en_US); }, - $signature: 2730 + $signature: 2746 }; A._PackageLicensePageTitle.prototype = { build$1(context) { @@ -225987,7 +226428,7 @@ return this.$this._lateralUI$1(context); return this.$this._nestedUI$1(context); }, - $signature: 237 + $signature: 221 }; A._MasterDetailFlowState__nestedUI_closure1.prototype = { call$0() { @@ -226005,7 +226446,7 @@ return A._setArrayType([this.masterPageRoute, t1._detailPageRoute$1(t1._cachedDetailArguments)], type$.JSArray_Route_void); } }, - $signature: 2745 + $signature: 2763 }; A._MasterDetailFlowState__nestedUI_closure0.prototype = { call$1(settings) { @@ -226025,7 +226466,7 @@ throw A.wrapException(A.Exception_Exception("Unknown route " + A.S(t1))); } }, - $signature: 2762 + $signature: 2768 }; A._MasterDetailFlowState__masterPageRoute_closure.prototype = { call$1(c) { @@ -226036,7 +226477,7 @@ t3 = t2.title; return A.BlockSemantics$(new A._MasterPage(t2.masterViewBuilder, t3, t1, _null)); }, - $signature: 2767 + $signature: 2776 }; A._MasterDetailFlowState__masterPageRoute__closure.prototype = { call$0() { @@ -226049,7 +226490,7 @@ var t1 = this.$this; return new A.PopScope(A.BlockSemantics$(t1._widget.detailPageBuilder$3(context, this.$arguments, null)), new A._MasterDetailFlowState__detailPageRoute__closure(t1), true, null); }, - $signature: 2768 + $signature: 2781 }; A._MasterDetailFlowState__detailPageRoute__closure.prototype = { call$1(didPop) { @@ -226061,7 +226502,7 @@ call$2(_, __) { return B.List_empty20; }, - $signature: 2780 + $signature: 2782 }; A._MasterDetailFlowState__lateralUI_closure0.prototype = { call$3(context, args, scrollController) { @@ -226072,13 +226513,13 @@ }, "call*": "call$3", $requiredArgCount: 3, - $signature: 917 + $signature: 891 }; A._MasterDetailFlowState__lateralUI_closure.prototype = { call$2(context, isLateral) { return this.$this._widget.masterViewBuilder$2(context, isLateral); }, - $signature: 818 + $signature: 890 }; A._MasterPage.prototype = { build$1(context) { @@ -226151,7 +226592,7 @@ this.$this._detailArguments.set$value(0, t1); return t1; }, - $signature: 12 + $signature: 11 }; A._MasterDetailScaffoldState_setInitialDetailPage_closure.prototype = { call$1(_) { @@ -226159,7 +226600,7 @@ this.$this._detailArguments.set$value(0, t1); return t1; }, - $signature: 12 + $signature: 11 }; A._MasterDetailScaffoldState_build_closure.prototype = { call$3(context, value, child) { @@ -226170,13 +226611,13 @@ t4 = t3.detailPageBuilder; return A.AnimatedSwitcher$(A.Container$(_null, new A._DetailView(t4, t1 ? t3.initialArguments : value, _null), B.Clip_0, _null, B.BoxConstraints_ALM, _null, _null, _null, new A.ValueKey(t2, type$.ValueKey_nullable_Object), _null, _null, _null, _null, _null), B.Duration_500000, B.C__Linear, B.C__Linear, new A._MasterDetailScaffoldState_build__closure()); }, - $signature: 2781 + $signature: 2795 }; A._MasterDetailScaffoldState_build__closure.prototype = { call$2(child, animation) { return A._FadeUpwardsPageTransition$(child, animation); }, - $signature: 537 + $signature: 571 }; A._DetailView.prototype = { build$1(context) { @@ -226198,7 +226639,7 @@ t3 = type$.Object._as(t3); return A.MouseRegion$(A.Card$(t2._builder.call$3(context, t3, controller), B.Clip_2, t1.cardColor, 4, B.EdgeInsets_4_0_4_0, true, B.RoundedRectangleBorder_27D5), B.C__DeferringMouseCursor, _null, _null, _null, _null, _null); }, - $signature: 2862 + $signature: 2873 }; A._ActionButton.prototype = { build$1(context) { @@ -226254,19 +226695,19 @@ call$1(actionIconTheme) { return actionIconTheme == null ? null : actionIconTheme.backButtonIconBuilder; }, - $signature: 552 + $signature: 569 }; A.BackButtonIcon_build_closure0.prototype = { call$1(context) { return B.IconData_57490_MaterialIcons_null_true; }, - $signature: 557 + $signature: 568 }; A.BackButtonIcon_build_closure1.prototype = { call$1(materialLocalization) { return materialLocalization.get$backButtonTooltip(); }, - $signature: 570 + $signature: 566 }; A.BackButton.prototype = { _onPressedCallback$1(context) { @@ -226287,19 +226728,19 @@ call$1(actionIconTheme) { return actionIconTheme == null ? null : actionIconTheme.drawerButtonIconBuilder; }, - $signature: 552 + $signature: 569 }; A.DrawerButtonIcon_build_closure0.prototype = { call$1(context) { return B.IconData_58332_MaterialIcons_null_false; }, - $signature: 557 + $signature: 568 }; A.DrawerButtonIcon_build_closure1.prototype = { call$1(materialLocalization) { return materialLocalization.get$openAppDrawerTooltip(); }, - $signature: 570 + $signature: 566 }; A.DrawerButton.prototype = { _onPressedCallback$1(context) { @@ -226320,19 +226761,19 @@ call$1(actionIconTheme) { return actionIconTheme == null ? null : actionIconTheme.endDrawerButtonIconBuilder; }, - $signature: 552 + $signature: 569 }; A.EndDrawerButtonIcon_build_closure0.prototype = { call$1(context) { return B.IconData_58332_MaterialIcons_null_false; }, - $signature: 557 + $signature: 568 }; A.EndDrawerButtonIcon_build_closure1.prototype = { call$1(materialLocalization) { return materialLocalization.get$openAppDrawerTooltip(); }, - $signature: 570 + $signature: 566 }; A.EndDrawerButton.prototype = { _onPressedCallback$1(context) { @@ -226396,20 +226837,20 @@ call$1(buttonItem) { return A.CupertinoTextSelectionToolbarButton$buttonItem(buttonItem); }, - $signature: 2903 + $signature: 2905 }; A.AdaptiveTextSelectionToolbar_getAdaptiveButtons_closure0.prototype = { call$1(buttonItem) { var t1 = this.context; return A.DesktopTextSelectionToolbarButton$text(t1, buttonItem.onPressed, A.AdaptiveTextSelectionToolbar_getButtonLabel(t1, buttonItem)); }, - $signature: 2905 + $signature: 2996 }; A.AdaptiveTextSelectionToolbar_getAdaptiveButtons_closure1.prototype = { call$1(buttonItem) { return A.CupertinoDesktopTextSelectionToolbarButton$text(buttonItem.onPressed, A.AdaptiveTextSelectionToolbar_getButtonLabel(this.context, buttonItem)); }, - $signature: 2996 + $signature: 2997 }; A.ThemeMode.prototype = { _enumToString$0() { @@ -226425,7 +226866,7 @@ call$2(begin, end) { return new A.MaterialRectArcTween(begin, end); }, - $signature: 2997 + $signature: 3001 }; A.MaterialScrollBehavior.prototype = { getPlatform$1(context) { @@ -226552,7 +226993,7 @@ call$1(context) { return this.$this._widget.builder.call$2(context, this.child); }, - $signature: 46 + $signature: 44 }; A._MaterialAppState__buildWidgetApp_closure.prototype = { call$1$2(settings, builder, $T) { @@ -226561,7 +227002,7 @@ call$2(settings, builder) { return this.call$1$2(settings, builder, type$.dynamic); }, - $signature: 3010 + $signature: 3013 }; A._MaterialAppState_build_closure.prototype = { call$2(node, $event) { @@ -226569,7 +227010,7 @@ return B.KeyEventResult_1; return A.Tooltip_dismissAllToolTips() ? B.KeyEventResult_0 : B.KeyEventResult_1; }, - $signature: 238 + $signature: 214 }; A._SliverAppVariant.prototype = { _enumToString$0() { @@ -227300,7 +227741,7 @@ t1.toString; return 2 * Math.asin(this.distanceFromAtoB / (2 * t1)); }, - $signature: 124 + $signature: 125 }; A._CornerId.prototype = { _enumToString$0() { @@ -227412,7 +227853,7 @@ $length = delta.get$distance(); return t2._dx * delta._dx / $length + t2._dy * delta._dy / $length; }, - $signature: 3019 + $signature: 3020 }; A.BadgeThemeData.prototype = { get$hashCode(_) { @@ -227820,7 +228261,7 @@ call$1($event) { return this.$this.handleHover.call$1(true); }, - $signature: 132 + $signature: 134 }; A._DragHandle_build_closure0.prototype = { call$1($event) { @@ -227837,7 +228278,7 @@ call$0() { return A.VerticalDragGestureRecognizer$(this.$this, null); }, - $signature: 295 + $signature: 299 }; A._BottomSheetGestureDetector_build_closure0.prototype = { call$1(instance) { @@ -227847,7 +228288,7 @@ instance.onEnd = t1.onVerticalDragEnd; instance.onlyAcceptDragOnThreshold = true; }, - $signature: 296 + $signature: 305 }; A._BottomSheetDefaultsM3.prototype = { get$_bottom_sheet$_colors() { @@ -228114,7 +228555,7 @@ call$2(result, position) { return this.$this.RenderObjectWithChildMixin__child.hitTest$2$position(result, this.center); }, - $signature: 72 + $signature: 71 }; A.__RawMaterialButtonState_State_MaterialStateMixin.prototype = {}; A.ButtonBarThemeData.prototype = { @@ -228536,7 +228977,7 @@ call$1(getProperty) { return this.call$1$1(getProperty, type$.dynamic); }, - $signature: 3038 + $signature: 3040 }; A._ButtonStyleState_build_resolve.prototype = { call$1$1(getProperty, $T) { @@ -228545,7 +228986,7 @@ call$1(getProperty) { return this.call$1$1(getProperty, type$.dynamic); }, - $signature: 3040 + $signature: 3042 }; A._ButtonStyleState_build_resolve_closure.prototype = { call$1(style) { @@ -228560,91 +229001,91 @@ call$1(style) { return style == null ? null : style.get$elevation(style); }, - $signature: 814 + $signature: 876 }; A._ButtonStyleState_build_closure0.prototype = { call$1(style) { return style == null ? null : style.get$textStyle(); }, - $signature: 3045 + $signature: 3048 }; A._ButtonStyleState_build_closure1.prototype = { call$1(style) { return style == null ? null : style.get$backgroundColor(style); }, - $signature: 298 + $signature: 325 }; A._ButtonStyleState_build_closure2.prototype = { call$1(style) { return style == null ? null : style.get$foregroundColor(); }, - $signature: 298 + $signature: 325 }; A._ButtonStyleState_build_closure3.prototype = { call$1(style) { return style == null ? null : style.get$shadowColor(style); }, - $signature: 298 + $signature: 325 }; A._ButtonStyleState_build_closure4.prototype = { call$1(style) { return style == null ? null : style.get$surfaceTintColor(); }, - $signature: 298 + $signature: 325 }; A._ButtonStyleState_build_closure5.prototype = { call$1(style) { return style == null ? null : style.get$padding(style); }, - $signature: 3052 + $signature: 3055 }; A._ButtonStyleState_build_closure6.prototype = { call$1(style) { return style == null ? null : style.get$minimumSize(); }, - $signature: 611 + $signature: 551 }; A._ButtonStyleState_build_closure7.prototype = { call$1(style) { return style == null ? null : style.fixedSize; }, - $signature: 611 + $signature: 551 }; A._ButtonStyleState_build_closure8.prototype = { call$1(style) { return style == null ? null : style.get$maximumSize(); }, - $signature: 611 + $signature: 551 }; A._ButtonStyleState_build_closure9.prototype = { call$1(style) { return style == null ? null : style.iconColor; }, - $signature: 298 + $signature: 325 }; A._ButtonStyleState_build_closure10.prototype = { call$1(style) { return style == null ? null : style.get$iconSize(); }, - $signature: 814 + $signature: 876 }; A._ButtonStyleState_build_closure11.prototype = { call$1(style) { return style == null ? null : style.get$side(); }, - $signature: 3057 + $signature: 3060 }; A._ButtonStyleState_build_closure12.prototype = { call$1(style) { return style == null ? null : style.get$shape(style); }, - $signature: 3060 + $signature: 3071 }; A._ButtonStyleState_build_closure20.prototype = { call$1(states) { return this.effectiveValue.call$1$1(new A._ButtonStyleState_build__closure0(states), type$.MouseCursor); }, - $signature: 3071 + $signature: 3075 }; A._ButtonStyleState_build__closure0.prototype = { call$1(style) { @@ -228657,7 +229098,7 @@ } return t1; }, - $signature: 3075 + $signature: 3077 }; A._ButtonStyleState_build_closure21.prototype = { call$1(states) { @@ -228676,43 +229117,43 @@ } return t1; }, - $signature: 3079 + $signature: 3082 }; A._ButtonStyleState_build_closure13.prototype = { call$1(style) { return style == null ? null : style.get$visualDensity(); }, - $signature: 3082 + $signature: 3085 }; A._ButtonStyleState_build_closure14.prototype = { call$1(style) { return style == null ? null : style.get$tapTargetSize(); }, - $signature: 3085 + $signature: 3097 }; A._ButtonStyleState_build_closure15.prototype = { call$1(style) { return style == null ? null : style.animationDuration; }, - $signature: 3097 + $signature: 3103 }; A._ButtonStyleState_build_closure16.prototype = { call$1(style) { return style == null ? null : style.enableFeedback; }, - $signature: 3103 + $signature: 3108 }; A._ButtonStyleState_build_closure17.prototype = { call$1(style) { return style == null ? null : style.alignment; }, - $signature: 3108 + $signature: 3115 }; A._ButtonStyleState_build_closure18.prototype = { call$1(style) { return style == null ? null : style.get$splashFactory(); }, - $signature: 3115 + $signature: 3117 }; A._ButtonStyleState_build_closure19.prototype = { call$1($status) { @@ -228818,7 +229259,7 @@ call$2(result, position) { return this.$this.RenderObjectWithChildMixin__child.hitTest$2$position(result, this.center); }, - $signature: 72 + $signature: 71 }; A.__ButtonStyleState_State_TickerProviderStateMixin.prototype = { activate$0() { @@ -229644,7 +230085,7 @@ call$1(getProperty) { return this.call$1$1(getProperty, type$.dynamic); }, - $signature: 813 + $signature: 871 }; A._DayState_build_resolve.prototype = { call$1$2(getProperty, states, $T) { @@ -229653,7 +230094,7 @@ call$2(getProperty, states) { return this.call$1$2(getProperty, states, type$.dynamic); }, - $signature: 812 + $signature: 870 }; A._DayState_build_resolve_closure.prototype = { call$1(theme) { @@ -229673,7 +230114,7 @@ t1 = theme.get$dayForegroundColor(); return t1; }, - $signature: 354 + $signature: 412 }; A._DayState_build_closure0.prototype = { call$1(theme) { @@ -229684,7 +230125,7 @@ t1 = theme.get$dayBackgroundColor(); return t1; }, - $signature: 354 + $signature: 412 }; A._DayState_build_closure2.prototype = { call$1(states) { @@ -229698,7 +230139,7 @@ t1 = t1 == null ? null : t1.resolve$1(0, this.states); return t1; }, - $signature: 811 + $signature: 868 }; A._DayState_build_closure1.prototype = { call$0() { @@ -229849,7 +230290,7 @@ call$1(getProperty) { return this.call$1$1(getProperty, type$.dynamic); }, - $signature: 813 + $signature: 871 }; A._YearPickerState__buildYearItem_resolve.prototype = { call$1$2(getProperty, states, $T) { @@ -229858,7 +230299,7 @@ call$2(getProperty, states) { return this.call$1$2(getProperty, states, type$.dynamic); }, - $signature: 812 + $signature: 870 }; A._YearPickerState__buildYearItem_resolve_closure.prototype = { call$1(theme) { @@ -229878,7 +230319,7 @@ t1 = theme.get$yearForegroundColor(); return t1; }, - $signature: 354 + $signature: 412 }; A._YearPickerState__buildYearItem_closure0.prototype = { call$1(theme) { @@ -229889,7 +230330,7 @@ t1 = theme.get$yearBackgroundColor(); return t1; }, - $signature: 354 + $signature: 412 }; A._YearPickerState__buildYearItem_closure2.prototype = { call$1(states) { @@ -229903,7 +230344,7 @@ t1 = t1 == null ? null : t1.resolve$1(0, this.states); return t1; }, - $signature: 811 + $signature: 868 }; A._YearPickerState__buildYearItem_closure1.prototype = { call$0() { @@ -230296,7 +230737,7 @@ t1 = null; return t1 == null ? B._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable.resolve$1(0, states) : t1; }, - $signature: 356 + $signature: 410 }; A._CheckboxPainter.prototype = { set$checkColor(value) { @@ -230490,7 +230931,7 @@ return B.BorderSide_tAf; return new A.BorderSide(this.$this._checkbox$_theme.unselectedWidgetColor, 2, B.BorderStyle_1, -1); }, - $signature: 302 + $signature: 271 }; A._CheckboxDefaultsM2_fillColor_closure.prototype = { call$1(states) { @@ -230503,7 +230944,7 @@ return this.$this._checkbox$_colors.secondary; return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._CheckboxDefaultsM2_overlayColor_closure.prototype = { call$1(states) { @@ -230519,7 +230960,7 @@ return this.$this._checkbox$_theme.focusColor; return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._CheckboxDefaultsM3.prototype = { get$side() { @@ -230570,7 +231011,7 @@ t2 = t1._onSurfaceVariant; return new A.BorderSide(t2 == null ? t1.onSurface : t2, 2, B.BorderStyle_1, -1); }, - $signature: 302 + $signature: 271 }; A._CheckboxDefaultsM3_fillColor_closure.prototype = { call$1(states) { @@ -230589,7 +231030,7 @@ } return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._CheckboxDefaultsM3_checkColor_closure.prototype = { call$1(states) { @@ -230605,7 +231046,7 @@ } return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._CheckboxDefaultsM3_overlayColor_closure.prototype = { call$1(states) { @@ -230653,7 +231094,7 @@ } return B.Color_0; }, - $signature: 25 + $signature: 26 }; A.__CheckboxState_State_TickerProviderStateMixin.prototype = { activate$0() { @@ -231419,19 +231860,19 @@ call$1(row) { return row.onSelectChanged != null; }, - $signature: 577 + $signature: 536 }; A.DataTable_build_closure0.prototype = { call$1(row) { return row.onSelectChanged != null; }, - $signature: 577 + $signature: 536 }; A.DataTable_build_closure1.prototype = { call$1(row) { return row.selected; }, - $signature: 577 + $signature: 536 }; A.DataTable_build_closure2.prototype = { call$1(index) { @@ -231470,7 +231911,7 @@ t2 = rowColor == null ? _this.defaultRowColor._material_state$_resolve.call$1(t3) : rowColor; return new A.TableRow(t1, new A.BoxDecoration(t2, _null, border, _null, _null, _null, B.BoxShape_0), A.List_List$filled(_this.tableColumns.length, B._NullWidget_null2, false, type$.Widget)); }, - $signature: 3180 + $signature: 3181 }; A.DataTable_build_closure4.prototype = { call$1(checked) { @@ -231545,7 +231986,7 @@ } return B.Rect_0_0_0_0; }, - $signature: 361 + $signature: 409 }; A._SortArrow.prototype = { createState$0() { @@ -231770,7 +232211,7 @@ var t1 = this._box_0.dialog; return t1; }, - $signature: 46 + $signature: 44 }; A.DatePickerDialog.prototype = { createState$0() { @@ -232081,7 +232522,7 @@ A.throwExpression(A.argumentErrorValue(t6)); return new A.CalendarDatePicker(t2, new A.DateTime(t4, false), new A.DateTime(t5, false), new A.DateTime(t6, false), t1.get$_handleDateChanged(), t3, t7, t1._calendarPickerKey); }, - $signature: 3236 + $signature: 3246 }; A._DatePickerDialogState_build_inputDatePicker.prototype = { call$0() { @@ -232119,7 +232560,7 @@ A.throwExpression(A.argumentErrorValue(t7)); return A.Form$(t2, A.Container$(_null, A.Shortcuts$(A.Column$(A._setArrayType([B.Spacer_null, new A.InputDatePickerFormField(t4, new A.DateTime(t6, false), new A.DateTime(t7, false), t8, t8, t9, t10, t11, t12, t13, t5, true, _null), B.Spacer_null], type$.JSArray_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, B.Map_gQOxG), B.Clip_0, _null, _null, _null, _null, t3, _null, _null, B.EdgeInsets_24_0_24_0, _null, _null, _null), t1._formKey); }, - $signature: 3246 + $signature: 3250 }; A._DatePickerDialogState_build_closure.prototype = { call$2(context, constraints) { @@ -232144,7 +232585,7 @@ return A.Row$(t3, B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_0, _null); } }, - $signature: 3250 + $signature: 3251 }; A._RestorableDatePickerEntryMode.prototype = { createDefaultValue$0() { @@ -232221,7 +232662,7 @@ if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, - $signature: 129 + $signature: 130 }; A.__DatePickerDialogState_State_RestorationMixin.prototype = { didUpdateWidget$1(oldWidget) { @@ -232498,7 +232939,7 @@ } return this.$this.get$_date_picker_theme$_colors().onSurface; }, - $signature: 25 + $signature: 26 }; A._DatePickerDefaultsM2_dayBackgroundColor_closure.prototype = { call$1(states) { @@ -232559,7 +233000,7 @@ } return this.$this.get$_date_picker_theme$_colors().primary; }, - $signature: 25 + $signature: 26 }; A._DatePickerDefaultsM2_rangeSelectionOverlayColor_closure.prototype = { call$1(states) { @@ -232743,7 +233184,7 @@ } return this.$this.get$_date_picker_theme$_colors().onSurface; }, - $signature: 25 + $signature: 26 }; A._DatePickerDefaultsM3_dayBackgroundColor_closure.prototype = { call$1(states) { @@ -232804,7 +233245,7 @@ } return this.$this.get$_date_picker_theme$_colors().primary; }, - $signature: 25 + $signature: 26 }; A._DatePickerDefaultsM3_yearForegroundColor_closure.prototype = { call$1(states) { @@ -232821,7 +233262,7 @@ t2 = t1._onSurfaceVariant; return t2 == null ? t1.onSurface : t2; }, - $signature: 25 + $signature: 26 }; A._DatePickerDefaultsM3_yearBackgroundColor_closure.prototype = { call$1(states) { @@ -233131,7 +233572,7 @@ }, "call*": "call$3", $requiredArgCount: 3, - $signature: 3252 + $signature: 3289 }; A._DialogDefaultsM2.prototype = { get$iconColor() { @@ -233947,7 +234388,7 @@ var t1 = this.route; return t1.getItemOffset$1(t1.selectedIndex); }, - $signature: 124 + $signature: 125 }; A._DropdownMenuRouteLayout.prototype = { getConstraintsForChild$1(constraints) { @@ -234053,13 +234494,13 @@ call$2(total, height) { return total + height; }, - $signature: 216 + $signature: 236 }; A._DropdownRoute_getMenuLimits_closure.prototype = { call$2(total, height) { return total + height; }, - $signature: 216 + $signature: 236 }; A._DropdownRoutePage.prototype = { createState$0() { @@ -234099,7 +234540,7 @@ t2 = t1._widget; return new A.CustomSingleChildLayout(new A._DropdownMenuRouteLayout(t2.buttonRect, t2.route, this.textDirection, t1.$ti._eval$1("_DropdownMenuRouteLayout<1>")), new A._CaptureAll(t2.capturedThemes._themes, this.menu, null), null); }, - $signature: 809 + $signature: 864 }; A._MenuItem.prototype = { createRenderObject$1(context) { @@ -234489,13 +234930,13 @@ call$1(intent) { return this.$this._dropdown$_handleTap$0(); }, - $signature: 3294 + $signature: 3299 }; A._DropdownButtonState_initState_closure0.prototype = { call$1(intent) { return this.$this._dropdown$_handleTap$0(); }, - $signature: 3299 + $signature: 3318 }; A._DropdownButtonState__updateSelectedIndex_closure.prototype = { call$1(item) { @@ -234513,7 +234954,7 @@ return; t1.itemHeights[this.index] = size._dy; }, - $signature: 490 + $signature: 547 }; A._DropdownButtonState__handleTap_closure0.prototype = { call$1(newValue) { @@ -234534,7 +234975,7 @@ var t1 = this.$this._widget.itemHeight; return t1 != null ? new A.SizedBox(null, t1, item, null) : A.Column$(A._setArrayType([item], type$.JSArray_Widget), B.CrossAxisAlignment_2, null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); }, - $signature: 3314 + $signature: 3345 }; A.DropdownButtonFormField.prototype = { createState$0() { @@ -234603,7 +235044,7 @@ t6 = t5._restoration_properties$_value; return new A.DropdownButtonHideUnderline(new A.DropdownButton(_this.items, t3, _this.hint, _this.disabledHint, t2, _this.onTap, _this.selectedItemBuilder, _this.elevation, _this.style, _this.icon, _this.iconDisabledColor, _this.iconEnabledColor, _this.iconSize, _this.isDense, _this.isExpanded, _this.itemHeight, _this.focusColor, _this.focusNode, _this.autofocus, _this.dropdownColor, _this.padding, _this.menuMaxHeight, _this.enableFeedback, _this.alignment, t4, t1.copyWith$1$errorText(t6 == null ? A._instanceType(t5)._eval$1("RestorableValue.T")._as(t6) : t6), _this.isEmpty, isFocused, null, _this.T._eval$1("DropdownButton<0>")), null); }, - $signature: 3345 + $signature: 3365 }; A.DropdownButtonFormField__closure_resolveInputBorder.prototype = { call$0() { @@ -234620,7 +235061,7 @@ return t1.enabledBorder; return t1.border; }, - $signature: 3372 + $signature: 3428 }; A.DropdownButtonFormField__closure_effectiveBorderRadius.prototype = { call$0() { @@ -234631,7 +235072,7 @@ return inputBorder.borderRadius; return null; }, - $signature: 3438 + $signature: 3448 }; A._DropdownButtonFormFieldState.prototype = { didChange$1(value) { @@ -234813,7 +235254,7 @@ } return this.$this.get$_elevated_button$_colors().surface; }, - $signature: 25 + $signature: 26 }; A._ElevatedButtonDefaultsM3_foregroundColor_closure.prototype = { call$1(states) { @@ -234824,7 +235265,7 @@ } return this.$this.get$_elevated_button$_colors().primary; }, - $signature: 25 + $signature: 26 }; A._ElevatedButtonDefaultsM3_overlayColor_closure.prototype = { call$1(states) { @@ -234857,7 +235298,7 @@ return 1; return 1; }, - $signature: 411 + $signature: 407 }; A._ElevatedButtonDefaultsM3_mouseCursor_closure.prototype = { call$1(states) { @@ -234865,7 +235306,7 @@ return B.SystemMouseCursor_basic; return B.SystemMouseCursor_click; }, - $signature: 235 + $signature: 209 }; A.__ElevatedButtonDefaultColor_MaterialStateProperty_Diagnosticable.prototype = {}; A.__ElevatedButtonDefaultElevation_MaterialStateProperty_Diagnosticable.prototype = {}; @@ -235708,7 +236149,7 @@ return color === $.$get$kDefaultIconLightColor(); return color === $.$get$kDefaultIconDarkColor(); }, - $signature: 927 + $signature: 928 }; A._IconButtonDefaultForeground.prototype = { resolve$1(_, states) { @@ -235847,7 +236288,7 @@ t2 = t1._onSurfaceVariant; return t2 == null ? t1.onSurface : t2; }, - $signature: 25 + $signature: 26 }; A._IconButtonDefaultsM3_overlayColor_closure.prototype = { call$1(states) { @@ -235886,7 +236327,7 @@ } return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._IconButtonDefaultsM3_mouseCursor_closure.prototype = { call$1(states) { @@ -235894,7 +236335,7 @@ return B.SystemMouseCursor_basic; return B.SystemMouseCursor_click; }, - $signature: 235 + $signature: 209 }; A._FilledIconButtonDefaultsM3.prototype = { get$_icon_button$_colors() { @@ -235973,7 +236414,7 @@ } return t1.get$_icon_button$_colors().primary; }, - $signature: 25 + $signature: 26 }; A._FilledIconButtonDefaultsM3_foregroundColor_closure.prototype = { call$1(states) { @@ -235989,7 +236430,7 @@ return t1.get$_icon_button$_colors().primary; return t1.get$_icon_button$_colors().onPrimary; }, - $signature: 25 + $signature: 26 }; A._FilledIconButtonDefaultsM3_overlayColor_closure.prototype = { call$1(states) { @@ -236037,7 +236478,7 @@ } return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._FilledIconButtonDefaultsM3_mouseCursor_closure.prototype = { call$1(states) { @@ -236045,7 +236486,7 @@ return B.SystemMouseCursor_basic; return B.SystemMouseCursor_click; }, - $signature: 235 + $signature: 209 }; A._FilledTonalIconButtonDefaultsM3.prototype = { get$_icon_button$_colors() { @@ -236129,7 +236570,7 @@ t2 = t1._secondaryContainer; return t2 == null ? t1.secondary : t2; }, - $signature: 25 + $signature: 26 }; A._FilledTonalIconButtonDefaultsM3_foregroundColor_closure.prototype = { call$1(states) { @@ -236153,7 +236594,7 @@ t2 = t1._onSecondaryContainer; return t2 == null ? t1.onSecondary : t2; }, - $signature: 25 + $signature: 26 }; A._FilledTonalIconButtonDefaultsM3_overlayColor_closure.prototype = { call$1(states) { @@ -236219,7 +236660,7 @@ } return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._FilledTonalIconButtonDefaultsM3_mouseCursor_closure.prototype = { call$1(states) { @@ -236227,7 +236668,7 @@ return B.SystemMouseCursor_basic; return B.SystemMouseCursor_click; }, - $signature: 235 + $signature: 209 }; A._OutlinedIconButtonDefaultsM3.prototype = { get$_icon_button$_colors() { @@ -236306,7 +236747,7 @@ } return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._OutlinedIconButtonDefaultsM3_foregroundColor_closure.prototype = { call$1(states) { @@ -236324,7 +236765,7 @@ t2 = t1._onSurfaceVariant; return t2 == null ? t1.onSurface : t2; }, - $signature: 25 + $signature: 26 }; A._OutlinedIconButtonDefaultsM3_overlayColor_closure.prototype = { call$1(states) { @@ -236367,7 +236808,7 @@ } return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._OutlinedIconButtonDefaultsM3_side_closure.prototype = { call$1(states) { @@ -236384,7 +236825,7 @@ return new A.BorderSide(t2 == null ? t1.onBackground : t2, 1, B.BorderStyle_1, -1); } }, - $signature: 928 + $signature: 929 }; A._OutlinedIconButtonDefaultsM3_mouseCursor_closure.prototype = { call$1(states) { @@ -236392,7 +236833,7 @@ return B.SystemMouseCursor_basic; return B.SystemMouseCursor_click; }, - $signature: 235 + $signature: 209 }; A.__IconButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable.prototype = {}; A.IconButtonThemeData.prototype = { @@ -236597,7 +237038,7 @@ t1 = t1.get$size(t1); return new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, - $signature: 361 + $signature: 409 }; A._InkRippleFactory.prototype = { create$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection(_, borderRadius, color, containedInkWell, controller, customBorder, onRemoved, position, radius, rectCallback, referenceBox, textDirection) { @@ -236752,7 +237193,7 @@ t1 = t1.get$size(t1); return new A.Rect(0, 0, 0 + t1._dx, 0 + t1._dy); }, - $signature: 361 + $signature: 409 }; A._InkSplashFactory.prototype = { create$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection(_, borderRadius, color, containedInkWell, controller, customBorder, onRemoved, position, radius, rectCallback, referenceBox, textDirection) { @@ -237611,7 +238052,7 @@ call$1(highlight) { return highlight != null; }, - $signature: 934 + $signature: 935 }; A._InkResponseState_activateOnIntent_closure.prototype = { call$0() { @@ -237678,7 +238119,7 @@ return t1 == null ? theme.hoverColor : t1; } }, - $signature: 935 + $signature: 936 }; A.InkWell.prototype = {}; A.__InkResponseState_State_AutomaticKeepAliveClientMixin.prototype = { @@ -238105,7 +238546,7 @@ var t1 = this.$this; t1.setState$1(new A._InputDatePickerFormFieldState_didUpdateWidget__closure(t1)); }, - $signature: 12 + $signature: 11 }; A._InputDatePickerFormFieldState_didUpdateWidget__closure.prototype = { call$0() { @@ -239310,7 +239751,7 @@ type$.BoxParentData._as(t1).offset = new A.Offset(x, (this.height._readLocal$0() - box.get$size(box)._dy) / 2); return box.get$size(box)._dx; }, - $signature: 241 + $signature: 242 }; A._RenderDecoration_performLayout_baselineLayout.prototype = { call$2(box, x) { @@ -239324,7 +239765,7 @@ t1.offset = new A.Offset(x, t2 - t3); return box.get$size(box)._dx; }, - $signature: 241 + $signature: 242 }; A._RenderDecoration_paint_doPaint.prototype = { call$1(child) { @@ -239335,13 +239776,13 @@ this.context.paintChild$2(child, type$.BoxParentData._as(t1).offset.$add(0, this.offset)); } }, - $signature: 805 + $signature: 855 }; A._RenderDecoration_hitTestChildren_closure.prototype = { call$2(result, transformed) { return this.child.hitTest$2$position(result, transformed); }, - $signature: 72 + $signature: 71 }; A._Decorator.prototype = { get$slots() { @@ -240247,7 +240688,7 @@ return A.TextStyle$(_null, _null, A.Theme_of(this.$this.context).disabledColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); return A.TextStyle$(_null, _null, A.Theme_of(this.$this.context).hintColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); }, - $signature: 122 + $signature: 117 }; A._InputDecoratorDefaultsM2_labelStyle_closure.prototype = { call$1(states) { @@ -240256,7 +240697,7 @@ return A.TextStyle$(_null, _null, A.Theme_of(this.$this.context).disabledColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); return A.TextStyle$(_null, _null, A.Theme_of(this.$this.context).hintColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); }, - $signature: 122 + $signature: 117 }; A._InputDecoratorDefaultsM2_floatingLabelStyle_closure.prototype = { call$1(states) { @@ -240269,7 +240710,7 @@ return A.TextStyle$(_null, _null, A.Theme_of(_this.$this.context).colorScheme.primary, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); return A.TextStyle$(_null, _null, A.Theme_of(_this.$this.context).hintColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); }, - $signature: 122 + $signature: 117 }; A._InputDecoratorDefaultsM2_helperStyle_closure.prototype = { call$1(states) { @@ -240278,7 +240719,7 @@ return themeData.textTheme.bodySmall.copyWith$1$color(B.Color_0); return themeData.textTheme.bodySmall.copyWith$1$color(themeData.hintColor); }, - $signature: 122 + $signature: 117 }; A._InputDecoratorDefaultsM2_errorStyle_closure.prototype = { call$1(states) { @@ -240287,7 +240728,7 @@ return themeData.textTheme.bodySmall.copyWith$1$color(B.Color_0); return themeData.textTheme.bodySmall.copyWith$1$color(themeData.colorScheme.error); }, - $signature: 122 + $signature: 117 }; A._InputDecoratorDefaultsM2_fillColor_closure.prototype = { call$1(states) { @@ -240305,7 +240746,7 @@ return B.Color_167772160; } }, - $signature: 25 + $signature: 26 }; A._InputDecoratorDefaultsM2_iconColor_closure.prototype = { call$1(states) { @@ -240320,7 +240761,7 @@ return B.Color_1929379840; } }, - $signature: 25 + $signature: 26 }; A._InputDecoratorDefaultsM2_prefixIconColor_closure.prototype = { call$1(states) { @@ -240335,7 +240776,7 @@ return B.Color_1929379840; } }, - $signature: 25 + $signature: 26 }; A._InputDecoratorDefaultsM2_suffixIconColor_closure.prototype = { call$1(states) { @@ -240350,7 +240791,7 @@ return B.Color_1929379840; } }, - $signature: 25 + $signature: 26 }; A._InputDecoratorDefaultsM3.prototype = { get$_input_decorator$_colors() { @@ -240416,7 +240857,7 @@ return A.TextStyle$(_null, _null, A.Theme_of(this.$this.context).disabledColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); return A.TextStyle$(_null, _null, A.Theme_of(this.$this.context).hintColor, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); }, - $signature: 122 + $signature: 117 }; A._InputDecoratorDefaultsM3_fillColor_closure.prototype = { call$1(states) { @@ -240429,7 +240870,7 @@ t2 = t1._surfaceVariant; return t2 == null ? t1.surface : t2; }, - $signature: 25 + $signature: 26 }; A._InputDecoratorDefaultsM3_activeIndicatorBorder_closure.prototype = { call$1(states) { @@ -240456,7 +240897,7 @@ t2 = t1._onSurfaceVariant; return new A.BorderSide(t2 == null ? t1.onSurface : t2, 1, B.BorderStyle_1, -1); }, - $signature: 302 + $signature: 271 }; A._InputDecoratorDefaultsM3_outlineBorder_closure.prototype = { call$1(states) { @@ -240483,7 +240924,7 @@ t2 = t1._outline; return new A.BorderSide(t2 == null ? t1.onBackground : t2, 1, B.BorderStyle_1, -1); }, - $signature: 302 + $signature: 271 }; A._InputDecoratorDefaultsM3_prefixIconColor_closure.prototype = { call$1(states) { @@ -240491,7 +240932,7 @@ t2 = t1._onSurfaceVariant; return t2 == null ? t1.onSurface : t2; }, - $signature: 25 + $signature: 26 }; A._InputDecoratorDefaultsM3_suffixIconColor_closure.prototype = { call$1(states) { @@ -240506,7 +240947,7 @@ t2 = t1._onSurfaceVariant; return t2 == null ? t1.onSurface : t2; }, - $signature: 25 + $signature: 26 }; A._InputDecoratorDefaultsM3_labelStyle_closure.prototype = { call$1(states) { @@ -240540,7 +240981,7 @@ t2 = t1._onSurfaceVariant; return textStyle.copyWith$1$color(t2 == null ? t1.onSurface : t2); }, - $signature: 122 + $signature: 117 }; A._InputDecoratorDefaultsM3_floatingLabelStyle_closure.prototype = { call$1(states) { @@ -240574,7 +241015,7 @@ t2 = t1._onSurfaceVariant; return textStyle.copyWith$1$color(t2 == null ? t1.onSurface : t2); }, - $signature: 122 + $signature: 117 }; A._InputDecoratorDefaultsM3_helperStyle_closure.prototype = { call$1(states) { @@ -240591,7 +241032,7 @@ t2 = t1._onSurfaceVariant; return textStyle.copyWith$1$color(t2 == null ? t1.onSurface : t2); }, - $signature: 122 + $signature: 117 }; A._InputDecoratorDefaultsM3_errorStyle_closure.prototype = { call$1(states) { @@ -240601,7 +241042,7 @@ textStyle = B.TextStyle_SVP; return textStyle.copyWith$1$color(t1.get$_input_decorator$_colors().error); }, - $signature: 122 + $signature: 117 }; A._InputDecorationTheme_Object_Diagnosticable.prototype = {}; A.__BorderContainerState_State_TickerProviderStateMixin.prototype = { @@ -240859,7 +241300,7 @@ call$3(explicitColor, selectedColor, enabledColor) { return this.call$4(explicitColor, selectedColor, enabledColor, null); }, - $signature: 976 + $signature: 977 }; A._IndividualOverrides.prototype = { resolve$1(_, states) { @@ -241268,13 +241709,13 @@ this.context.paintChild$2(child, type$.BoxParentData._as(t1).offset.$add(0, this.offset)); } }, - $signature: 805 + $signature: 855 }; A._RenderListTile_hitTestChildren_closure.prototype = { call$2(result, transformed) { return this.child.hitTest$2$position(result, transformed); }, - $signature: 72 + $signature: 71 }; A._LisTileDefaultsM2.prototype = { get$_list_tile$_theme() { @@ -241529,7 +241970,7 @@ t3 = $parent.contentPadding; return A.ListTileTheme$(_this.child, A.ListTileThemeData$(t3, $parent.dense, $parent.enableFeedback, $parent.horizontalTitleGap, $parent.iconColor, $parent.leadingAndTrailingTextStyle, $parent.minLeadingWidth, $parent.minVerticalPadding, $parent.mouseCursor, $parent.selectedColor, $parent.selectedTileColor, $parent.shape, t1, $parent.subtitleTextStyle, $parent.textColor, $parent.tileColor, $parent.titleAlignment, t2, $parent.visualDensity), _this.key); }, - $signature: 977 + $signature: 1067 }; A._ListTileThemeData_Object_Diagnosticable.prototype = {}; A.TextMagnifier.prototype = { @@ -241553,7 +241994,7 @@ }, "call*": "call$3", $requiredArgCount: 3, - $signature: 1067 + $signature: 1068 }; A._TextMagnifierState.prototype = { initState$0() { @@ -241766,7 +242207,7 @@ t1.markNeedsPaint$0(); return false; }, - $signature: 1068 + $signature: 1069 }; A._RenderInkFeatures.prototype = { addInkFeature$1(feature) { @@ -241893,25 +242334,25 @@ call$1(value) { return new A.Tween(A._asDouble(value), null, type$.Tween_double); }, - $signature: 181 + $signature: 191 }; A._MaterialInteriorState_forEachTween_closure0.prototype = { call$1(value) { return new A.ColorTween(type$.Color._as(value), null); }, - $signature: 368 + $signature: 404 }; A._MaterialInteriorState_forEachTween_closure1.prototype = { call$1(value) { return new A.ColorTween(type$.Color._as(value), null); }, - $signature: 368 + $signature: 404 }; A._MaterialInteriorState_forEachTween_closure2.prototype = { call$1(value) { return new A.ShapeBorderTween(type$.ShapeBorder._as(value), null); }, - $signature: 1071 + $signature: 1072 }; A._ShapeBorderPaint.prototype = { build$1(context) { @@ -242969,13 +243410,13 @@ call$1(child) { return child.key; }, - $signature: 804 + $signature: 853 }; A._MergeableMaterialState_didUpdateWidget_closure0.prototype = { call$1(child) { return child.key; }, - $signature: 804 + $signature: 853 }; A._MergeableMaterialSliceKey.prototype = { $eq(_, other) { @@ -243241,7 +243682,7 @@ } return this.$this.get$_outlined_button$_colors().primary; }, - $signature: 25 + $signature: 26 }; A._OutlinedButtonDefaultsM3_overlayColor_closure.prototype = { call$1(states) { @@ -243273,7 +243714,7 @@ t2 = t1._outline; return new A.BorderSide(t2 == null ? t1.onBackground : t2, 1, B.BorderStyle_1, -1); }, - $signature: 302 + $signature: 271 }; A._OutlinedButtonDefaultsM3_mouseCursor_closure.prototype = { call$1(states) { @@ -243281,7 +243722,7 @@ return B.SystemMouseCursor_basic; return B.SystemMouseCursor_click; }, - $signature: 235 + $signature: 209 }; A.__OutlinedButtonDefaultColor_MaterialStateProperty_Diagnosticable.prototype = {}; A.__OutlinedButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable.prototype = {}; @@ -243362,7 +243803,7 @@ }, "call*": "call$3", $requiredArgCount: 3, - $signature: 803 + $signature: 852 }; A._ZoomPageTransition_build_closure0.prototype = { call$3(context, animation, child) { @@ -243370,7 +243811,7 @@ }, "call*": "call$3", $requiredArgCount: 3, - $signature: 802 + $signature: 848 }; A._ZoomPageTransition_build_closure1.prototype = { call$3(context, animation, child) { @@ -243378,7 +243819,7 @@ }, "call*": "call$3", $requiredArgCount: 3, - $signature: 803 + $signature: 852 }; A._ZoomPageTransition_build_closure2.prototype = { call$3(context, animation, child) { @@ -243386,7 +243827,7 @@ }, "call*": "call$3", $requiredArgCount: 3, - $signature: 802 + $signature: 848 }; A._ZoomEnterTransition.prototype = { createState$0() { @@ -243572,7 +244013,7 @@ call$1(platform) { return this.builders.$index(0, platform); }, - $signature: 1102 + $signature: 1104 }; A._ZoomTransitionBase.prototype = { onAnimationValueChange$0() { @@ -243701,7 +244142,7 @@ t1 = t1.fade; t2.set$layer(0, context.pushOpacity$4$oldLayer(offset, B.JSNumber_methods.round$0(t1.get$value(t1) * 255), this.painter, t2._layer)); }, - $signature: 90 + $signature: 91 }; A._ZoomExitTransitionPainter.prototype = { _onStatusChange$1(_) { @@ -243761,7 +244202,7 @@ t1 = t1.fade; t2.set$layer(0, context.pushOpacity$4$oldLayer(offset, B.JSNumber_methods.round$0(t1.get$value(t1) * 255), this.painter, t2._layer)); }, - $signature: 90 + $signature: 91 }; A._PageTransitionsTheme_Object_Diagnosticable.prototype = {}; A.__ZoomEnterTransitionState_State__ZoomTransitionBase.prototype = { @@ -243931,7 +244372,7 @@ call$1(size) { this.$this.route.itemSizes[this.i] = size; }, - $signature: 490 + $signature: 547 }; A._PopupMenu_build_closure0.prototype = { call$2(context, child) { @@ -243979,7 +244420,7 @@ t3 = t3._animationProxy; return new A.FadeTransition(new A._AnimatedEvaluation(t4, t1, A._instanceType(t1)._eval$1("_AnimatedEvaluation")), false, A.Material$(B.Duration_200000, true, _null, new A.Align(B.AlignmentDirectional_1_m1, t10, _this.height.transform$1(0, t3.get$value(t3)), child, _null), t2.clipBehavior, t6, t7, _null, t8, t5, t9, _null, B.MaterialType_1), _null); }, - $signature: 1104 + $signature: 1105 }; A._PopupMenuRouteLayout.prototype = { getConstraintsForChild$1(constraints) { @@ -244107,7 +244548,7 @@ t5 = A.DisplayFeatureSubScreen_avoidBounds(t4); return new A.CustomSingleChildLayout(new A._PopupMenuRouteLayout(t1.position, t1.itemSizes, t2, t3.textDirection, t4.padding, A.LinkedHashSet_LinkedHashSet$of(t5, t5.$ti._eval$1("Iterable.E"))), new A._CaptureAll(t1.capturedThemes._themes, _this.menu, null), null); }, - $signature: 809 + $signature: 864 }; A.PopupMenuButton.prototype = { createState$0() { @@ -244316,7 +244757,7 @@ } return t2.apply$1$color(t1.get$_popup_menu$_colors().onSurface); }, - $signature: 122 + $signature: 117 }; A.PopupMenuThemeData.prototype = { get$hashCode(_) { @@ -244440,7 +244881,7 @@ else t2.drawRect$2(rect, t3); }, - $signature: 1105 + $signature: 1106 }; A.LinearProgressIndicator.prototype = { createState$0() { @@ -244539,7 +244980,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); return t1._buildIndicator$3(context, t2, this.textDirection); }, - $signature: 225 + $signature: 212 }; A._CircularProgressIndicatorPainter.prototype = { paint$2(canvas, size) { @@ -244673,7 +245114,7 @@ t6 = t1.___CircularProgressIndicatorState__controller_A; return t1._buildMaterialIndicator$5(context, t3, t4, t5, t2.transform$1(0, t6.get$value(t6))); }, - $signature: 225 + $signature: 212 }; A._RefreshProgressIndicatorPainter.prototype = { paint$2(canvas, size) { @@ -244799,7 +245240,7 @@ t6 = t1.___CircularProgressIndicatorState__controller_A; return t1._buildMaterialIndicator$5(context, 1.05 * t3, t4, t5, t2.transform$1(0, t6.get$value(t6))); }, - $signature: 225 + $signature: 212 }; A._CircularProgressIndicatorDefaultsM2.prototype = { get$color(_) { @@ -245158,7 +245599,7 @@ t1 = null; return t1 == null ? A.MaterialStateProperty_resolveAs(B._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable, states, type$.MouseCursor) : t1; }, - $signature: 356 + $signature: 410 }; A._RadioPainter.prototype = { paint$2(canvas, size) { @@ -245227,7 +245668,7 @@ } return this.$this.get$_radio$_theme().unselectedWidgetColor; }, - $signature: 25 + $signature: 26 }; A._RadioDefaultsM2_overlayColor_closure.prototype = { call$1(states) { @@ -245243,7 +245684,7 @@ return this.$this.get$_radio$_theme().focusColor; return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._RadioDefaultsM3.prototype = { get$_radio$_theme() { @@ -245310,7 +245751,7 @@ t2 = t1._onSurfaceVariant; return t2 == null ? t1.onSurface : t2; }, - $signature: 25 + $signature: 26 }; A._RadioDefaultsM3_overlayColor_closure.prototype = { call$1(states) { @@ -245344,7 +245785,7 @@ } return B.Color_0; }, - $signature: 25 + $signature: 26 }; A.__RadioState_State_TickerProviderStateMixin.prototype = { activate$0() { @@ -245917,7 +246358,7 @@ return materialIndicator; } }, - $signature: 225 + $signature: 212 }; A._RefreshIndicatorState_State_TickerProviderStateMixin.prototype = { activate$0() { @@ -245946,7 +246387,7 @@ call$2(context, index) { return this.children[index]; }, - $signature: 104 + $signature: 106 }; A._ReorderableListViewState.prototype = { _itemBuilder$2(context, index) { @@ -246013,7 +246454,7 @@ t1.toString; return A.Material$(B.Duration_200000, true, _null, child, B.Clip_0, _null, t1, _null, _null, _null, _null, _null, B.MaterialType_0); }, - $signature: 1110 + $signature: 1113 }; A._ReorderableListViewChildGlobalKey.prototype = { $eq(_, other) { @@ -247062,7 +247503,7 @@ t9 = t7.extendBodyBehindMaterialBanner; return A.Actions$(t1, new A.CustomMultiChildLayout(new A._ScaffoldLayout(_this.extendBody, false, _this.minInsets, _this.minViewPadding, _this.textDirection, t6, t2, t3, t4, t5, t8, t7.snackBarWidth, t9), _this.children, null)); }, - $signature: 1113 + $signature: 1114 }; A._DismissDrawerAction.prototype = { isEnabled$1(_, intent) { @@ -247207,7 +247648,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return new A.Align(B.AlignmentDirectional_m1_m1, null, t2.transform$1(0, t1), child, null); }, - $signature: 1115 + $signature: 1116 }; A.PersistentBottomSheetController.prototype = {}; A._ScaffoldScope.prototype = { @@ -247220,7 +247661,7 @@ if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, - $signature: 129 + $signature: 130 }; A._ScaffoldMessengerState_State_TickerProviderStateMixin.prototype = { activate$0() { @@ -247541,7 +247982,7 @@ t1 = t1 == null ? null : t1.resolve$1(0, states); return t1 == null ? false : t1; }, - $signature: 801 + $signature: 845 }; A._MaterialScrollbarState__thumbColor_closure.prototype = { call$1(states) { @@ -247579,7 +248020,7 @@ t1.toString; return t1; }, - $signature: 25 + $signature: 26 }; A._MaterialScrollbarState__trackColor_closure.prototype = { call$1(states) { @@ -247597,7 +248038,7 @@ } return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._MaterialScrollbarState__trackBorderColor_closure.prototype = { call$1(states) { @@ -247615,7 +248056,7 @@ } return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._MaterialScrollbarState__thickness_closure.prototype = { call$1(states) { @@ -247644,7 +248085,7 @@ t1 = t2; return t1; }, - $signature: 411 + $signature: 407 }; A._MaterialScrollbarState_initState_closure.prototype = { call$0() { @@ -248671,7 +249112,7 @@ t1 = null; return t1 == null ? A.MaterialStateProperty_resolveAs(B._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable, states, type$.MouseCursor) : t1; }, - $signature: 356 + $signature: 410 }; A._SwitchPainter.prototype = { set$positionController(value) { @@ -249097,7 +249538,7 @@ t2.toString; return new A._AnimatedEvaluation(t2, t1, t1.$ti._eval$1("_AnimatedEvaluation")); }, - $signature: 1142 + $signature: 1144 }; A._SwitchConfig.prototype = {}; A._SwitchConfigM2.prototype = { @@ -249172,7 +249613,7 @@ return this.$this._switch0$_colors.secondary; return this.isDark ? B.Color_4290624957 : B.Color_4294638330; }, - $signature: 25 + $signature: 26 }; A._SwitchDefaultsM2_trackColor_closure.prototype = { call$1(states) { @@ -249185,13 +249626,13 @@ } return this.isDark ? B.Color_1308622847 : B.Color_1375731712; }, - $signature: 25 + $signature: 26 }; A._SwitchDefaultsM2_mouseCursor_closure.prototype = { call$1(states) { return B._EnabledAndDisabledMouseCursor_SystemMouseCursor_click_clickable.resolve$1(0, states); }, - $signature: 356 + $signature: 410 }; A._SwitchDefaultsM2_overlayColor_closure.prototype = { call$1(states) { @@ -249287,7 +249728,7 @@ t2 = t1._outline; return t2 == null ? t1.onBackground : t2; }, - $signature: 25 + $signature: 26 }; A._SwitchDefaultsM3_trackColor_closure.prototype = { call$1(states) { @@ -249330,7 +249771,7 @@ t2 = t1._surfaceVariant; return t2 == null ? t1.surface : t2; }, - $signature: 25 + $signature: 26 }; A._SwitchDefaultsM3_trackOutlineColor_closure.prototype = { call$1(states) { @@ -249345,7 +249786,7 @@ t2 = t1._outline; return t2 == null ? t1.onBackground : t2; }, - $signature: 25 + $signature: 26 }; A._SwitchDefaultsM3_overlayColor_closure.prototype = { call$1(states) { @@ -249474,7 +249915,7 @@ t2 = t1._surfaceVariant; return t2 == null ? t1.surface : t2; }, - $signature: 25 + $signature: 26 }; A.__MaterialSwitchState_State_TickerProviderStateMixin.prototype = { activate$0() { @@ -250038,7 +250479,7 @@ t2.toString; return t2; }, - $signature: 25 + $signature: 26 }; A._TabLabelBarRenderer.prototype = { performLayout$0() { @@ -250717,7 +251158,7 @@ call$1(tab) { return new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget); }, - $signature: 1148 + $signature: 1149 }; A._TabBarState__handleTabControllerTick_closure.prototype = { call$0() { @@ -250759,7 +251200,7 @@ t2 = t2[index]; return A.Center$(new A.Padding(t3, new A.KeyedSubtree(t1._widget.tabs[index], t2), _null), 1, _null); }, - $signature: 1149 + $signature: 1150 }; A._TabBarState_build_closure0.prototype = { call$1(states) { @@ -251335,7 +251776,7 @@ } return this.$this.get$_text_button$_colors().primary; }, - $signature: 25 + $signature: 26 }; A._TextButtonDefaultsM3_overlayColor_closure.prototype = { call$1(states) { @@ -251362,7 +251803,7 @@ return B.SystemMouseCursor_basic; return B.SystemMouseCursor_click; }, - $signature: 235 + $signature: 209 }; A.__TextButtonDefaultMouseCursor_MaterialStateProperty_Diagnosticable.prototype = {}; A.TextButtonThemeData.prototype = { @@ -252105,13 +252546,13 @@ t8 = this.controller._change_notifier$_value.text; return A.InputDecorator$(t4, child, t2, t1._widget.expands, t8.length === 0, t7, t6, t5, t3); }, - $signature: 1150 + $signature: 1151 }; A._TextFieldState_build_closure7.prototype = { call$1($event) { return this.$this._handleHover$1(true); }, - $signature: 132 + $signature: 134 }; A._TextFieldState_build_closure8.prototype = { call$1($event) { @@ -252133,7 +252574,7 @@ t1 = t1.handleDidLoseAccessibilityFocus; return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, t4, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null, _null, _null, _null, t5, t1, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, false, child, _null); }, - $signature: 800 + $signature: 844 }; A._TextFieldState_build__closure.prototype = { call$0() { @@ -252153,7 +252594,7 @@ t1 = theme.textTheme.titleMedium; return A.TextStyle$(_null, _null, t1 == null ? _null : t1.color, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); }, - $signature: 122 + $signature: 117 }; A._m3StateInputStyle_closure.prototype = { call$1(states) { @@ -252164,14 +252605,14 @@ } return A.TextStyle$(_null, _null, A.Theme_of(this.context).textTheme.bodyLarge.color, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null); }, - $signature: 122 + $signature: 117 }; A.__TextFieldState_State_RestorationMixin_dispose_closure.prototype = { call$2(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, - $signature: 129 + $signature: 130 }; A.__TextFieldState_State_RestorationMixin.prototype = { didUpdateWidget$1(oldWidget) { @@ -252243,7 +252684,7 @@ t2 = !t7 || !t6; return A.UnmanagedRestorationScope$(t4, A.TextField$(_this.autocorrect, _this.autofillHints, _this.autofocus, _this.buildCounter, _this.canRequestFocus, _this.clipBehavior, _this.contentInsertionConfiguration, _this.contextMenuBuilder, t3, _this.cursorColor, _this.cursorHeight, _this.cursorOpacityAnimates, _this.cursorRadius, _this.cursorWidth, t5, _this.dragStartBehavior, _this.enableIMEPersonalizedLearning, t2, _this.enableSuggestions, t1 !== false, _this.expands, _this.focusNode, _this.inputFormatters, _this.keyboardAppearance, _this.keyboardType, _this.magnifierConfiguration, _this.maxLength, _this.maxLengthEnforcement, _this.maxLines, _this.minLines, _this.mouseCursor, t7, _this.obscuringCharacter, _this.onAppPrivateCommand, new A.TextFormField_closure_onChangedHandler(field, _this.onChanged), _this.onEditingComplete, _this.onFieldSubmitted, _this.onTap, _this.onTapOutside, t6, _this.restorationId, _this.scribbleEnabled, _this.scrollController, _this.scrollPadding, _this.scrollPhysics, _this.selectionControls, _this.selectionHeightStyle, _this.selectionWidthStyle, _this.showCursor, t8, t9, _this.spellCheckConfiguration, _this.strutStyle, _this.style, _this.textAlign, _this.textAlignVertical, _this.textCapitalization, _this.textDirection, _this.textInputAction, _this.toolbarOptions, _this.undoController)); }, - $signature: 1155 + $signature: 1156 }; A.TextFormField_closure_onChangedHandler.prototype = { call$1(value) { @@ -252575,7 +253016,7 @@ call$2(result, transformed) { return this.$this.RenderObjectWithChildMixin__child.hitTest$2$position(result, transformed); }, - $signature: 72 + $signature: 71 }; A._TextSelectionToolbarItemsLayout.prototype = { createRenderObject$1(context) { @@ -252718,7 +253159,7 @@ if (width > t4 && t2._lastIndexThatFits === -1) t2._lastIndexThatFits = t1.i - 1; }, - $signature: 63 + $signature: 67 }; A._RenderTextSelectionToolbarItemsLayout__placeChildren_closure.prototype = { call$1(renderObjectChild) { @@ -252750,7 +253191,7 @@ t1.nextSize = new A.Size(Math.max(renderObjectChild.get$size(renderObjectChild)._dx, t1.nextSize._dx), t1.overflowHeight); } }, - $signature: 63 + $signature: 67 }; A._RenderTextSelectionToolbarItemsLayout_paint_closure.prototype = { call$1(renderObjectChild) { @@ -252763,13 +253204,13 @@ return; this.context.paintChild$2(renderObjectChild, t1.offset.$add(0, this.offset)); }, - $signature: 63 + $signature: 67 }; A._RenderTextSelectionToolbarItemsLayout_hitTestChildren_closure.prototype = { call$2(result, transformed) { return this._box_0.child.hitTest$2$position(result, transformed); }, - $signature: 72 + $signature: 71 }; A._RenderTextSelectionToolbarItemsLayout_visitChildrenForSemantics_closure.prototype = { call$1(renderObjectChild) { @@ -252780,7 +253221,7 @@ if (type$.ToolbarItemsParentData._as(t1).shouldPaint) this.visitor.call$1(renderObjectChild); }, - $signature: 63 + $signature: 67 }; A._TextSelectionToolbarContainer.prototype = { build$1(context) { @@ -253069,7 +253510,7 @@ call$1(value) { return new A.ThemeDataTween(type$.ThemeData._as(value), null); }, - $signature: 1156 + $signature: 1157 }; A.MaterialTapTargetSize.prototype = { _enumToString$0() { @@ -253484,19 +253925,19 @@ t2 = this.localTextGeometry; return t1.copyWith$2$primaryTextTheme$textTheme(t2.merge$1(t1.primaryTextTheme), t2.merge$1(t1.textTheme)); }, - $signature: 1157 + $signature: 1158 }; A.ThemeData__lerpThemeExtensions_closure.prototype = { call$2(id, extensionA) { return new A.MapEntry(id, extensionA.lerp$2(this.b.extensions.$index(0, id), this.t), type$.MapEntry_of_Object_and_ThemeExtension_dynamic); }, - $signature: 1158 + $signature: 1160 }; A.ThemeData__lerpThemeExtensions_closure0.prototype = { call$1(entry) { return !this.a.extensions.containsKey$1(0, entry.key); }, - $signature: 1160 + $signature: 1161 }; A.MaterialBasedCupertinoThemeData.prototype = { get$brightness() { @@ -253613,7 +254054,7 @@ return "0" + value; return B.JSInt_methods.toString$0(value); }, - $signature: 367 + $signature: 419 }; A.RestorableTimeOfDay.prototype = { createDefaultValue$0() { @@ -253861,7 +254302,7 @@ return t1.replacing$1$hour(periodOffset + B.JSInt_methods.$mod(t1.get$hourOfPeriod() + hoursToAdd, 12)); } }, - $signature: 1161 + $signature: 1162 }; A._HourControl_build_closure1.prototype = { call$0() { @@ -254288,7 +254729,7 @@ call$2(result, position) { return this.$this.RenderObjectWithChildMixin__child.hitTest$2$position(result, this._box_0.newPosition); }, - $signature: 72 + $signature: 71 }; A._TappableLabel.prototype = { get$value(receiver) { @@ -254352,7 +254793,7 @@ call$2(theta, radius) { return this.center.$add(0, new A.Offset(radius * Math.cos(theta), -radius * Math.sin(theta))); }, - $signature: 1162 + $signature: 1163 }; A._DialPainter_paint_paintLabels.prototype = { call$2(labels, radius) { @@ -254372,7 +254813,7 @@ labelTheta += labelThetaIncrement; } }, - $signature: 1163 + $signature: 1164 }; A._DialPainter_paint_paintInnerOuterLabels.prototype = { call$1(labels) { @@ -254382,19 +254823,19 @@ t1.call$2(A.List_List$of(new A.WhereIterable(labels, new A._DialPainter_paint_paintInnerOuterLabels_closure(), t2), true, t3), this.labelRadius); t1.call$2(A.List_List$of(new A.WhereIterable(labels, new A._DialPainter_paint_paintInnerOuterLabels_closure0(), t2), true, t3), this.innerLabelRadius); }, - $signature: 1164 + $signature: 1166 }; A._DialPainter_paint_paintInnerOuterLabels_closure.prototype = { call$1(label) { return !label.inner; }, - $signature: 799 + $signature: 842 }; A._DialPainter_paint_paintInnerOuterLabels_closure0.prototype = { call$1(label) { return label.inner; }, - $signature: 799 + $signature: 842 }; A._HourDialType.prototype = { _enumToString$0() { @@ -254872,7 +255313,7 @@ controller.set$value(0, 0); controller.forward$0(0); }, - $signature: 1167 + $signature: 1168 }; A._DialState__updateThetaForPan_closure.prototype = { call$0() { @@ -254907,7 +255348,7 @@ return new A.TimeOfDay(this.hour + 12, t1.minute); } }, - $signature: 1168 + $signature: 1195 }; A._DialState__build24HourRing_closure.prototype = { call$0() { @@ -255711,7 +256152,7 @@ t10 = t11 == null ? t10.$ti._eval$1("RestorableValue.T")._as(t11) : t11; return A.SingleChildScrollView$(A.SingleChildScrollView$(A.AnimatedContainer$(_null, A.Column$(A._setArrayType([A.Expanded$(A.Form$(t4, new A._TimePicker(t7, t8, t9, t5, "time_picker", t10, t6, t3.get$_handleTimeChanged(), t3._widget.orientation, t3.get$_handleEntryModeChanged(), _null), t3._time_picker0$_formKey), 1), _this.actions], type$.JSArray_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, _null, B.Cubic_JUR0, _null, B.Duration_200000, t2, _null, _null, _null, t1), _null, B.DragStartBehavior_1, _null, _null, _null, _null, "time_picker_scroll_view_vertical", false, B.Axis_1), _null, B.DragStartBehavior_1, _null, _null, _null, _null, "time_picker_scroll_view_horizontal", false, B.Axis_0); }, - $signature: 1211 + $signature: 1213 }; A._TimePicker.prototype = { createState$0() { @@ -256059,7 +256500,7 @@ var t1 = this.builder.call$2(context, this.dialog); return t1; }, - $signature: 46 + $signature: 44 }; A._TimePickerDefaults.prototype = {}; A._TimePickerDefaultsM2.prototype = { @@ -256216,7 +256657,7 @@ } return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._TimePickerDefaultsM2_dayPeriodTextColor_closure.prototype = { call$1(states) { @@ -256229,7 +256670,7 @@ } return t1; }, - $signature: 25 + $signature: 26 }; A._TimePickerDefaultsM2_dialTextColor_closure.prototype = { call$1(states) { @@ -256237,7 +256678,7 @@ return this.$this.get$_time_picker0$_colors().surface; return this.$this.get$_time_picker0$_colors().onSurface; }, - $signature: 25 + $signature: 26 }; A._TimePickerDefaultsM2_hourMinuteColor_closure.prototype = { call$1(states) { @@ -256253,14 +256694,14 @@ } return t1; }, - $signature: 25 + $signature: 26 }; A._TimePickerDefaultsM2_hourMinuteTextColor_closure.prototype = { call$1(states) { var t1 = this.$this; return states.contains$1(0, B.MaterialState_4) ? t1.get$_time_picker0$_colors().primary : t1.get$_time_picker0$_colors().onSurface; }, - $signature: 25 + $signature: 26 }; A._TimePickerDefaultsM2__hourMinuteInputColor_closure.prototype = { call$1(states) { @@ -256273,7 +256714,7 @@ } return t1; }, - $signature: 25 + $signature: 26 }; A._TimePickerDefaultsM3.prototype = { get$_time_picker0$_colors() { @@ -256436,7 +256877,7 @@ } return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._TimePickerDefaultsM3_dayPeriodTextColor_closure.prototype = { call$1(states) { @@ -256500,7 +256941,7 @@ t2 = t1._onSurfaceVariant; return t2 == null ? t1.onSurface : t2; }, - $signature: 25 + $signature: 26 }; A._TimePickerDefaultsM3_dialTextColor_closure.prototype = { call$1(states) { @@ -256508,7 +256949,7 @@ return this.$this.get$_time_picker0$_colors().onPrimary; return this.$this.get$_time_picker0$_colors().onSurface; }, - $signature: 25 + $signature: 26 }; A._TimePickerDefaultsM3_helpTextStyle_closure.prototype = { call$1(states) { @@ -256520,7 +256961,7 @@ t3 = t1._onSurfaceVariant; return t2.copyWith$1$color(t3 == null ? t1.onSurface : t3); }, - $signature: 122 + $signature: 117 }; A._TimePickerDefaultsM3_hourMinuteColor_closure.prototype = { call$1(states) { @@ -256569,13 +257010,13 @@ return A.Color_alphaBlend(overlayColor, t2 == null ? t1.surface : t2); } }, - $signature: 25 + $signature: 26 }; A._TimePickerDefaultsM3_hourMinuteTextColor_closure.prototype = { call$1(states) { return this.$this.get$_hourMinuteTextColor()._material_state$_resolve.call$1(states); }, - $signature: 25 + $signature: 26 }; A._TimePickerDefaultsM3__hourMinuteTextColor_closure.prototype = { call$1(states) { @@ -256609,7 +257050,7 @@ return _this.$this.get$_time_picker0$_colors().onSurface; } }, - $signature: 25 + $signature: 26 }; A._TimePickerDefaultsM3_hourMinuteTextStyle_closure.prototype = { call$1(states) { @@ -256618,35 +257059,35 @@ t2.toString; return t2.copyWith$1$color(t1.get$_hourMinuteTextColor()._material_state$_resolve.call$1(states)); }, - $signature: 122 + $signature: 117 }; A.__HourMinuteTextFieldState_State_RestorationMixin_dispose_closure.prototype = { call$2(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, - $signature: 129 + $signature: 130 }; A.__TimePickerDialogState_State_RestorationMixin_dispose_closure.prototype = { call$2(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, - $signature: 129 + $signature: 130 }; A.__TimePickerInputState_State_RestorationMixin_dispose_closure.prototype = { call$2(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, - $signature: 129 + $signature: 130 }; A.__TimePickerState_State_RestorationMixin_dispose_closure.prototype = { call$2(property, listener) { if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, - $signature: 129 + $signature: 130 }; A.__DialState_State_SingleTickerProviderStateMixin.prototype = { dispose$0() { @@ -257132,7 +257573,7 @@ t1 = t6[index]; return new A.MergeSemantics(new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, t1, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), true, false, false, false, new A._InputPadding1(minPaddingSize, B.Axis_0, button, _null), _null), _null); }, - $signature: 1214 + $signature: 1216 }; A.ToggleButtons_build__closure.prototype = { call$0() { @@ -257793,7 +258234,7 @@ call$2(result, position) { return this.$this.RenderObjectWithChildMixin__child.hitTest$2$position(result, this._box_0.center); }, - $signature: 72 + $signature: 71 }; A.__DefaultFillColor_MaterialStateProperty_Diagnosticable.prototype = {}; A.__ResolveFillColor_MaterialStateProperty_Diagnosticable.prototype = {}; @@ -258689,31 +259130,31 @@ call$0() { return this._1_0._0; }, - $signature: 1216 + $signature: 1220 }; A.TooltipState__buildTooltipOverlay_closure3.prototype = { call$0() { return this._1_0._1; }, - $signature: 1220 + $signature: 1222 }; A.TooltipState__buildTooltipOverlay_closure.prototype = { call$0() { return this._0_0.colorScheme.brightness; }, - $signature: 1222 + $signature: 1241 }; A.TooltipState__buildTooltipOverlay_closure0.prototype = { call$0() { return this._0_0.textTheme; }, - $signature: 1241 + $signature: 1244 }; A.TooltipState__buildTooltipOverlay_closure1.prototype = { call$0() { return this._0_0.platform; }, - $signature: 829 + $signature: 905 }; A._TooltipPositionDelegate.prototype = { getConstraintsForChild$1(constraints) { @@ -258931,7 +259372,7 @@ call$2(header, value) { this.request.setRequestHeader(header, value); }, - $signature: 189 + $signature: 178 }; A.NetworkImage__loadAsync_closure0.prototype = { call$1(e) { @@ -258948,19 +259389,19 @@ throw A.wrapException(A.NetworkImageLoadException$($status, this.resolved)); } }, - $signature: 125 + $signature: 124 }; A.NetworkImage__loadAsync_closure1.prototype = { call$1(e) { return this.completer.completeError$1(e); }, - $signature: 1244 + $signature: 1245 }; A.NetworkImage__loadAsync_closure2.prototype = { call$2(bytes, total) { this.chunkEvents.add$1(0, new A.ImageChunkEvent(bytes, total)); }, - $signature: 232 + $signature: 223 }; A.AlignmentGeometry.prototype = { toString$0(_) { @@ -259621,25 +260062,25 @@ call$2(previousValue, border) { return previousValue.add$1(0, border.get$dimensions()); }, - $signature: 1250 + $signature: 1251 }; A._CompoundBorder_scale_closure.prototype = { call$1(border) { return border.scale$1(0, this.t); }, - $signature: 1251 + $signature: 1253 }; A._CompoundBorder_preferPaintInterior_closure.prototype = { call$1(border) { return border.get$preferPaintInterior(); }, - $signature: 1253 + $signature: 1254 }; A._CompoundBorder_toString_closure.prototype = { call$1(border) { return border.toString$0(0); }, - $signature: 1254 + $signature: 1255 }; A._BorderSide_Object_Diagnosticable.prototype = {}; A.BoxShape.prototype = { @@ -260586,7 +261027,7 @@ } return Math.max(previousValue, t1); }, - $signature: 1255 + $signature: 1281 }; A.paintImage_closure0.prototype = { call$1(timeStamp) { @@ -260608,7 +261049,7 @@ A.postEvent("Flutter.ImageSizesForFrame", t3, "Extension"); $._pendingImageSizeInfo = A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.ImageSizeInfo); }, - $signature: 12 + $signature: 11 }; A._BlendedDecorationImage.prototype = { createPainter$1(onChanged) { @@ -260900,7 +261341,7 @@ call$1(s) { return s <= this.t; }, - $signature: 1281 + $signature: 1282 }; A._interpolateColorsAndStops_closure.prototype = { call$1($stop) { @@ -260909,7 +261350,7 @@ t1.toString; return t1; }, - $signature: 1282 + $signature: 1283 }; A.Gradient.prototype = { _impliedStops$0() { @@ -260980,7 +261421,7 @@ t1.toString; return t1; }, - $signature: 420 + $signature: 442 }; A.ImageCache.prototype = { clear$0(_) { @@ -261150,7 +261591,7 @@ call$0() { return A._LiveImage$(this.completer, new A.ImageCache__trackLiveImage__closure(this.$this, this.key)); }, - $signature: 1283 + $signature: 1286 }; A.ImageCache__trackLiveImage__closure.prototype = { call$0() { @@ -261197,7 +261638,7 @@ } t1.listenedOnce = true; }, - $signature: 1286 + $signature: 1289 }; A._CachedImageBase.prototype = { dispose$0() { @@ -261212,7 +261653,7 @@ t2.dispose$0(); t1.handle = null; }, - $signature: 12 + $signature: 11 }; A._CachedImage.prototype = {}; A._LiveImage.prototype = { @@ -261470,7 +261911,7 @@ call$2(exception, stack) { return this.$call$body$ImageProvider__createErrorHandlerAndKey_handleError(exception, stack); }, - $signature: 1289 + $signature: 1290 }; A.ImageProvider__createErrorHandlerAndKey_closure.prototype = { call$1(key) { @@ -261494,7 +261935,7 @@ t1.toString; return t1; }, - $signature: 798 + $signature: 841 }; A.ImageProvider_resolveStreamForKey_closure0.prototype = { call$0() { @@ -261503,7 +261944,7 @@ result = t1.loadImage$2(t2, $.PaintingBinding__instance.get$instantiateImageCodecWithSize()); return result instanceof A._AbstractImageStreamCompleter ? t1.loadBuffer$2(t2, $.PaintingBinding__instance.get$instantiateImageCodecFromBuffer()) : result; }, - $signature: 798 + $signature: 841 }; A._AbstractImageStreamCompleter.prototype = {}; A.AssetBundleImageKey.prototype = { @@ -261748,13 +262189,13 @@ else t1.result = new A.SynchronousFuture(key, type$.SynchronousFuture_AssetBundleImageKey); }, - $signature: 1291 + $signature: 1292 }; A.AssetImage_obtainKey_closure0.prototype = { call$2(error, stack) { this._box_0.completer.completeError$2(error, stack); }, - $signature: 175 + $signature: 183 }; A.ImageInfo.prototype = { clone$0(_) { @@ -261975,13 +262416,13 @@ call$1(listener) { return listener.onError; }, - $signature: 1294 + $signature: 1295 }; A.ImageStreamCompleter_reportImageChunkEvent_closure.prototype = { call$1(listener) { return listener.onChunk; }, - $signature: 1295 + $signature: 1296 }; A.MultiFrameImageStreamCompleter.prototype = { MultiFrameImageStreamCompleter$5$chunkEvents$codec$debugLabel$informationCollector$scale(chunkEvents, codec, debugLabel, informationCollector, scale) { @@ -262152,13 +262593,13 @@ call$2(error, stack) { this.$this.reportError$5$context$exception$informationCollector$silent$stack(A.ErrorDescription$("resolving an image codec"), error, this.informationCollector, true, stack); }, - $signature: 175 + $signature: 183 }; A.MultiFrameImageStreamCompleter_closure0.prototype = { call$2(error, stack) { this.$this.reportError$5$context$exception$informationCollector$silent$stack(A.ErrorDescription$("loading an image"), error, this.informationCollector, true, stack); }, - $signature: 175 + $signature: 183 }; A.MultiFrameImageStreamCompleter__handleAppFrame_closure.prototype = { call$0() { @@ -262233,7 +262674,7 @@ this._box_0.result = result; return result == null; }, - $signature: 312 + $signature: 300 }; A.InlineSpan_codeUnitAt_closure.prototype = { call$1(span) { @@ -262241,7 +262682,7 @@ this._box_0.result = result; return result == null; }, - $signature: 312 + $signature: 300 }; A.NotchedShape.prototype = {}; A.CircularNotchedRectangle.prototype = { @@ -262779,19 +263220,19 @@ call$1(shadow) { return shadow.toPaint$0(); }, - $signature: 1297 + $signature: 1298 }; A._ShapeDecorationPainter__precache_closure0.prototype = { call$1(shadow) { return this.rect.shift$1(shadow.offset).inflate$1(shadow.spreadRadius); }, - $signature: 1298 + $signature: 1328 }; A._ShapeDecorationPainter__precache_closure1.prototype = { call$1(shadow) { return this.$this._shape_decoration$_decoration.shape.getOuterPath$2$textDirection(this.rect.shift$1(shadow.offset).inflate$1(shadow.spreadRadius), this.textDirection); }, - $signature: 1328 + $signature: 1338 }; A.StadiumBorder.prototype = { scale$1(_, t) { @@ -263882,19 +264323,19 @@ call$1(box) { return A.TextPainter__shiftTextBox(box, this.offset); }, - $signature: 478 + $signature: 501 }; A.TextPainter__computePaintOffsetFraction_closure.prototype = { call$0() { return this._0_0._0; }, - $signature: 1340 + $signature: 1341 }; A.TextPainter__computePaintOffsetFraction_closure1.prototype = { call$0() { return this._0_0._1; }, - $signature: 795 + $signature: 839 }; A.TextPainter__computePaintOffsetFraction_closure0.prototype = { call$0() { @@ -263930,31 +264371,31 @@ call$0() { return type$._EmptyLineCaretMetrics._as(this._0_0).lineVerticalOffset; }, - $signature: 124 + $signature: 125 }; A.TextPainter_getOffsetForCaret_closure0.prototype = { call$0() { return type$._LineCaretMetrics._as(this._0_0).writingDirection; }, - $signature: 795 + $signature: 839 }; A.TextPainter_getOffsetForCaret_closure1.prototype = { call$0() { return type$._LineCaretMetrics._as(this._0_0).offset; }, - $signature: 428 + $signature: 436 }; A.TextPainter_getFullHeightForCaret_closure.prototype = { call$0() { return type$._LineCaretMetrics._as(this._0_0).fullHeight; }, - $signature: 124 + $signature: 125 }; A.TextPainter_getBoxesForSelection_closure.prototype = { call$1(box) { return A.TextPainter__shiftTextBox(box, this.offset); }, - $signature: 478 + $signature: 501 }; A.TextPainter_computeLineMetrics_closure.prototype = { call$1(metrics) { @@ -263970,7 +264411,7 @@ t10 = metrics.get$lineNumber(metrics); return $.$get$_renderer().createLineMetrics$9$ascent$baseline$descent$hardBreak$height$left$lineNumber$unscaledAscent$width(t3, t9 + t1._dy, t4, t2, t6, t8 + t1._dx, t10, t5, t7); }, - $signature: 1342 + $signature: 1343 }; A._LinearTextScaler.prototype = { scale$1(_, fontSize) { @@ -264212,7 +264653,7 @@ call$1(child) { return A.DiagnosticableTreeNode$(null, null, child); }, - $signature: 1343 + $signature: 1346 }; A.TextStyle.prototype = { get$fontFamilyFallback() { @@ -264500,13 +264941,13 @@ call$0() { return this._1_0._0; }, - $signature: 1346 + $signature: 1347 }; A.TextStyle_getTextStyle_closure0.prototype = { call$0() { return this._1_0._1; }, - $signature: 1347 + $signature: 1348 }; A._TextStyle_Object_Diagnosticable.prototype = {}; A.FrictionSimulation.prototype = { @@ -265012,7 +265453,7 @@ (t1 == null ? $.EngineSemanticsOwner__instance = A.EngineSemanticsOwner$_() : t1).updateSemantics$1(update); } }, - $signature: 794 + $signature: 837 }; A.RendererBinding_pipelineOwner_closure0.prototype = { call$0() { @@ -265028,13 +265469,13 @@ this.$this.hitTestInView$3(result, position, viewId); return result; }, - $signature: 1351 + $signature: 1355 }; A.RendererBinding__scheduleMouseTrackerUpdate_closure.prototype = { call$1(duration) { this.$this.RendererBinding__mouseTracker.updateAllDevices$0(); }, - $signature: 12 + $signature: 11 }; A._BindingPipelineManifold.prototype = { dispose$0() { @@ -265206,7 +265647,7 @@ return dim + "=" + B.JSNumber_methods.toStringAsFixed$1(min, 1); return B.JSNumber_methods.toStringAsFixed$1(min, 1) + "<=" + dim + "<=" + B.JSNumber_methods.toStringAsFixed$1(max, 1); }, - $signature: 1355 + $signature: 1356 }; A.BoxHitTestResult.prototype = { addWithPaintTransform$3$hitTest$position$transform(hitTest, position, transform) { @@ -265486,19 +265927,19 @@ call$0() { return this.computer.call$1(this.argument); }, - $signature: 124 + $signature: 125 }; A.RenderBox_getDryLayout_closure.prototype = { call$0() { return this.$this.computeDryLayout$1(this.constraints); }, - $signature: 1356 + $signature: 1357 }; A.RenderBox_getDistanceToActualBaseline_closure.prototype = { call$0() { return this.$this.computeDistanceToActualBaseline$1(this.baseline); }, - $signature: 376 + $signature: 395 }; A.RenderBoxContainerDefaultsMixin.prototype = { defaultComputeDistanceToFirstActualBaseline$1(baseline) { @@ -265574,7 +266015,7 @@ call$2(result, transformed) { return this._box_0.child.hitTest$2$position(result, transformed); }, - $signature: 72 + $signature: 71 }; A._ContainerBoxParentData_BoxParentData_ContainerParentDataMixin.prototype = { detach$0(_) { @@ -267261,13 +267702,13 @@ var t1 = this.$this; return new A.TextBox(textBox.left + t1.get$_paintOffset()._dx, textBox.top + t1.get$_paintOffset()._dy, textBox.right + t1.get$_paintOffset()._dx, textBox.bottom + t1.get$_paintOffset()._dy, textBox.direction); }, - $signature: 478 + $signature: 501 }; A.RenderEditable_describeSemanticsConfiguration_closure.prototype = { call$1(info) { return info.recognizer != null; }, - $signature: 1359 + $signature: 1360 }; A.RenderEditable__createShowOnScreenFor_closure.prototype = { call$0() { @@ -267283,7 +267724,7 @@ var t1 = accum == null ? null : accum.expandToInclude$1(new A.Rect(incoming.left, incoming.top, incoming.right, incoming.bottom)); return t1 == null ? new A.Rect(incoming.left, incoming.top, incoming.right, incoming.bottom) : t1; }, - $signature: 1360 + $signature: 1362 }; A.RenderEditable__canComputeDryLayoutForInlineWidgets_closure.prototype = { call$1(span) { @@ -267305,7 +267746,7 @@ t1 = true; return t1; }, - $signature: 312 + $signature: 300 }; A._RenderEditableCustomPaint.prototype = { get$parent(_) { @@ -268162,25 +268603,25 @@ call$2(child, extent) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_0, extent, child.get$computeMinIntrinsicWidth()); }, - $signature: 241 + $signature: 242 }; A.RenderFlex_computeMaxIntrinsicWidth_closure.prototype = { call$2(child, extent) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_1, extent, child.get$computeMaxIntrinsicWidth()); }, - $signature: 241 + $signature: 242 }; A.RenderFlex_computeMinIntrinsicHeight_closure.prototype = { call$2(child, extent) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_2, extent, child.get$computeMinIntrinsicHeight()); }, - $signature: 241 + $signature: 242 }; A.RenderFlex_computeMaxIntrinsicHeight_closure.prototype = { call$2(child, extent) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_3, extent, child.get$computeMaxIntrinsicHeight()); }, - $signature: 241 + $signature: 242 }; A._LayoutSizes.prototype = {}; A._RenderFlex_RenderBox_ContainerRenderObjectMixin.prototype = { @@ -269277,49 +269718,49 @@ call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_0, this.height, child.get$computeMinIntrinsicWidth()); }, - $signature: 114 + $signature: 113 }; A.RenderListBody_computeMinIntrinsicWidth_closure0.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_0, this.height, child.get$computeMinIntrinsicWidth()); }, - $signature: 114 + $signature: 113 }; A.RenderListBody_computeMaxIntrinsicWidth_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_1, this.height, child.get$computeMaxIntrinsicWidth()); }, - $signature: 114 + $signature: 113 }; A.RenderListBody_computeMaxIntrinsicWidth_closure0.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_1, this.height, child.get$computeMaxIntrinsicWidth()); }, - $signature: 114 + $signature: 113 }; A.RenderListBody_computeMinIntrinsicHeight_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_2, this.width, child.get$computeMinIntrinsicHeight()); }, - $signature: 114 + $signature: 113 }; A.RenderListBody_computeMinIntrinsicHeight_closure0.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_2, this.width, child.get$computeMinIntrinsicHeight()); }, - $signature: 114 + $signature: 113 }; A.RenderListBody_computeMaxIntrinsicHeight_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_3, this.width, child.get$computeMaxIntrinsicHeight()); }, - $signature: 114 + $signature: 113 }; A.RenderListBody_computeMaxIntrinsicHeight_closure0.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_3, this.width, child.get$computeMaxIntrinsicHeight()); }, - $signature: 114 + $signature: 113 }; A._RenderListBody_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1(owner) { @@ -269430,7 +269871,7 @@ call$1(annotation) { return annotation.get$cursor(annotation); }, - $signature: 1363 + $signature: 1365 }; A.MouseTracker_updateWithEvent_closure.prototype = { call$0() { @@ -269492,13 +269933,13 @@ t1.call$1(this.baseExitEvent.transformed$1(this.lastAnnotations.$index(0, annotation))); } }, - $signature: 1365 + $signature: 1366 }; A.MouseTracker__handleDeviceUpdateMouseEvents_closure0.prototype = { call$1(annotation) { return !this.lastAnnotations.containsKey$1(0, annotation); }, - $signature: 1366 + $signature: 1370 }; A.__MouseTrackerUpdateDetails_Object_Diagnosticable.prototype = {}; A.ParentData.prototype = { @@ -269937,25 +270378,25 @@ call$2(a, b) { return a._depth - b._depth; }, - $signature: 421 + $signature: 392 }; A.PipelineOwner_flushCompositingBits_closure.prototype = { call$2(a, b) { return a._depth - b._depth; }, - $signature: 421 + $signature: 392 }; A.PipelineOwner_flushPaint_closure.prototype = { call$2(a, b) { return b._depth - a._depth; }, - $signature: 421 + $signature: 392 }; A.PipelineOwner_flushSemantics_closure.prototype = { call$2(a, b) { return a._depth - b._depth; }, - $signature: 421 + $signature: 392 }; A.RenderObject.prototype = { RenderObject$0() { @@ -270623,7 +271064,7 @@ t1.push(A.DiagnosticableTreeNode$("RenderObject", B.DiagnosticsTreeStyle_11, t2)); return t1; }, - $signature: 143 + $signature: 147 }; A.RenderObject_invokeLayoutCallback_closure.prototype = { call$0() { @@ -270640,13 +271081,13 @@ if (t1) this.$this.__RenderObject__needsCompositing_A = true; }, - $signature: 63 + $signature: 67 }; A.RenderObject_clearSemantics_closure.prototype = { call$1(child) { child.clearSemantics$0(); }, - $signature: 63 + $signature: 67 }; A.RenderObject__getSemanticsForParent_closure.prototype = { call$1(renderChild) { @@ -270692,7 +271133,7 @@ t3.push(siblingMergeGroup); } }, - $signature: 63 + $signature: 67 }; A.RenderObject__getSemanticsForParent_closure0.prototype = { call$1(config) { @@ -270703,14 +271144,14 @@ } return fragment; }, - $signature: 790 + $signature: 834 }; A.RenderObject__getSemanticsForParent_closure1.prototype = { call$1(config) { var t1 = this.configToFragment.$index(0, config); return t1 == null ? new A._IncompleteSemanticsFragment(config, A._setArrayType([this.$this], type$.JSArray_RenderObject), false) : t1; }, - $signature: 790 + $signature: 834 }; A.RenderObject_toStringDeep_closure.prototype = { call$0() { @@ -270904,7 +271345,7 @@ if (t1._owner != null) t1.systemFontsDidChange$0(); }, - $signature: 12 + $signature: 11 }; A._SemanticsFragment.prototype = {}; A._ContainerSemanticsFragment.prototype = { @@ -271394,7 +271835,7 @@ call$2(result, transformed) { return this._box_0.child.hitTest$2$position(result, transformed); }, - $signature: 72 + $signature: 71 }; A.RenderParagraph.prototype = { set$text(_, value) { @@ -271502,6 +271943,9 @@ _this._textPainter.dispose$0(); _this.super$RenderObject$dispose(); }, + get$textAlign(_) { + return this._textPainter._textAlign; + }, set$textAlign(_, value) { var t1 = this._textPainter; if (t1._textAlign === value) @@ -271791,9 +272235,12 @@ this._layoutTextWithConstraints$1(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(this))); return this._textPainter.getFullHeightForCaret$2(position, B.Rect_0_0_0_0); }, - getBoxesForSelection$1(selection) { + getBoxesForSelection$3$boxHeightStyle$boxWidthStyle(selection, boxHeightStyle, boxWidthStyle) { this._layoutTextWithConstraints$1(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(this))); - return this._textPainter.getBoxesForSelection$3$boxHeightStyle$boxWidthStyle(selection, B.BoxHeightStyle_0, B.BoxWidthStyle_0); + return this._textPainter.getBoxesForSelection$3$boxHeightStyle$boxWidthStyle(selection, boxHeightStyle, boxWidthStyle); + }, + getBoxesForSelection$1(selection) { + return this.getBoxesForSelection$3$boxHeightStyle$boxWidthStyle(selection, B.BoxHeightStyle_0, B.BoxWidthStyle_0); }, getPositionForOffset$1(offset) { this._layoutTextWithConstraints$1(type$.BoxConstraints._as(A.RenderObject.prototype.get$constraints.call(this))); @@ -272082,7 +272529,7 @@ call$1(element) { return element._cachedRect = null; }, - $signature: 1376 + $signature: 1377 }; A.RenderParagraph_selectionColor_closure.prototype = { call$1(fragment) { @@ -272090,19 +272537,19 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.status !== B.SelectionStatus_2; }, - $signature: 1377 + $signature: 1401 }; A.RenderParagraph_computeMinIntrinsicWidth_closure.prototype = { call$2(child, constraints) { return new A.Size(child._computeIntrinsicDimension$3(B._IntrinsicDimension_0, 1 / 0, child.get$computeMinIntrinsicWidth()), 0); }, - $signature: 440 + $signature: 388 }; A.RenderParagraph_computeMaxIntrinsicWidth_closure.prototype = { call$2(child, constraints) { return new A.Size(child._computeIntrinsicDimension$3(B._IntrinsicDimension_1, 1 / 0, child.get$computeMaxIntrinsicWidth()), 0); }, - $signature: 440 + $signature: 388 }; A.RenderParagraph__canComputeDryLayoutForInlineWidgets_closure.prototype = { call$1(span) { @@ -272124,7 +272571,7 @@ t1 = true; return t1; }, - $signature: 312 + $signature: 300 }; A.RenderParagraph__createShowOnScreenFor_closure.prototype = { call$0() { @@ -272824,7 +273271,7 @@ gestureRecognizer.get$onLongPress(); return gestureRecognizer; }, - $signature: 1402 + $signature: 1405 }; A.PlatformViewRenderBox.prototype = { set$controller(_, controller) { @@ -273841,7 +274288,7 @@ } this.$this.super$RenderProxyBoxMixin$paint(context, offset); }, - $signature: 90 + $signature: 91 }; A.RenderPhysicalShape.prototype = { get$_defaultClip() { @@ -273901,7 +274348,7 @@ } this.$this.super$RenderProxyBoxMixin$paint(context, offset); }, - $signature: 90 + $signature: 91 }; A.DecorationPosition.prototype = { _enumToString$0() { @@ -274092,7 +274539,7 @@ call$2(result, position) { return this.$this.super$RenderProxyBoxMixin$hitTestChildren(result, position); }, - $signature: 72 + $signature: 71 }; A.RenderFittedBox.prototype = { _proxy_box$_resolve$0() { @@ -274317,7 +274764,7 @@ call$2(result, position) { return this.$this.super$RenderProxyBoxMixin$hitTestChildren(result, position); }, - $signature: 72 + $signature: 71 }; A.RenderFractionalTranslation.prototype = { set$translation(value) { @@ -274350,7 +274797,7 @@ call$2(result, position) { return this.$this.super$RenderProxyBoxMixin$hitTestChildren(result, position); }, - $signature: 72 + $signature: 71 }; A.RenderPointerListener.prototype = { computeSizeForNoChild$1(constraints) { @@ -275099,7 +275546,7 @@ call$2(result, position) { return this.$this.super$RenderProxyBoxMixin$hitTestChildren(result, position); }, - $signature: 72 + $signature: 71 }; A.RenderAnnotatedRegion.prototype = { get$value(_) { @@ -275326,7 +275773,7 @@ call$2(result, transformed) { return this.child.hitTest$2$position(result, transformed); }, - $signature: 72 + $signature: 71 }; A.RenderPadding.prototype = { _shifted_box$_resolve$0() { @@ -276041,7 +276488,7 @@ call$1(result) { return this.child.hitTest$2$position(result, this._box_0.transformedPosition); }, - $signature: 786 + $signature: 832 }; A._SliverGeometry_Object_Diagnosticable.prototype = {}; A._SliverLogicalContainerParentData_SliverLogicalParentData_ContainerParentDataMixin.prototype = { @@ -277081,7 +277528,7 @@ } else t1._childManager.createChild$2$after(t3, t4); }, - $signature: 450 + $signature: 485 }; A.RenderSliverMultiBoxAdaptor_collectGarbage_closure.prototype = { call$1(constraints) { @@ -277103,7 +277550,7 @@ t3 = A._instanceType(t1)._eval$1("WhereIterable"); B.JSArray_methods.forEach$1(A.List_List$of(new A.WhereIterable(t1, new A.RenderSliverMultiBoxAdaptor_collectGarbage__closure(), t3), true, t3._eval$1("Iterable.E")), t2._childManager.get$removeChild()); }, - $signature: 450 + $signature: 485 }; A.RenderSliverMultiBoxAdaptor_collectGarbage__closure.prototype = { call$1(child) { @@ -277111,7 +277558,7 @@ t1.toString; return !type$.SliverMultiBoxAdaptorParentData._as(t1).KeepAliveParentDataMixin_keepAlive; }, - $signature: 835 + $signature: 790 }; A._RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin.prototype = { attach$1(owner) { @@ -277445,7 +277892,7 @@ call$1(constraints) { this.$this.updateChild$2(this.shrinkOffset, this.overlapsContent); }, - $signature: 450 + $signature: 485 }; A.RenderSliverPinnedPersistentHeader.prototype = { performLayout$0() { @@ -277777,25 +278224,25 @@ call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_0, this.height, child.get$computeMinIntrinsicWidth()); }, - $signature: 114 + $signature: 113 }; A.RenderStack_computeMaxIntrinsicWidth_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_1, this.height, child.get$computeMaxIntrinsicWidth()); }, - $signature: 114 + $signature: 113 }; A.RenderStack_computeMinIntrinsicHeight_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_2, this.width, child.get$computeMinIntrinsicHeight()); }, - $signature: 114 + $signature: 113 }; A.RenderStack_computeMaxIntrinsicHeight_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_3, this.width, child.get$computeMaxIntrinsicHeight()); }, - $signature: 114 + $signature: 113 }; A.RenderIndexedStack.prototype = { visitChildrenForSemantics$1(visitor) { @@ -277862,7 +278309,7 @@ call$2(result, transformed) { return this.child.hitTest$2$position(result, transformed); }, - $signature: 72 + $signature: 71 }; A._RenderStack_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1(owner) { @@ -278540,13 +278987,13 @@ call$2(a, b) { return a + b; }, - $signature: 216 + $signature: 236 }; A.RenderTable_hitTestChildren_closure.prototype = { call$2(result, transformed) { return this.child.hitTest$2$position(result, transformed); }, - $signature: 72 + $signature: 71 }; A.AlignmentGeometryTween.prototype = { lerp$1(t) { @@ -279166,7 +279613,7 @@ var t1 = sliver._geometry; return t1.visible || t1.cacheExtent > 0; }, - $signature: 1409 + $signature: 1410 }; A.RenderViewportBase_hitTestChildren_closure.prototype = { call$1(result) { @@ -279176,7 +279623,7 @@ t3 = _this.$this.computeChildMainAxisPosition$2(t1, t2.mainAxisPosition); return t1.hitTest$3$crossAxisPosition$mainAxisPosition(_this.sliverResult, t2.crossAxisPosition, t3); }, - $signature: 786 + $signature: 832 }; A.RenderViewport.prototype = { setupParentData$1(child) { @@ -280484,7 +280931,7 @@ t1.SchedulerBinding__nextFrameCompleter.complete$0(0); t1.SchedulerBinding__nextFrameCompleter = null; }, - $signature: 12 + $signature: 11 }; A.SchedulerBinding_scheduleWarmUpFrame_closure.prototype = { call$0() { @@ -280534,7 +280981,7 @@ t1.SchedulerBinding__hasScheduledFrame = false; t1.scheduleFrame$0(); }, - $signature: 12 + $signature: 11 }; A.SchedulerBinding_handleBeginFrame_closure.prototype = { call$2(id, callbackEntry) { @@ -280546,7 +280993,7 @@ t1._invokeFrameCallback$3(callbackEntry.callback, t2, callbackEntry.debugStack); } }, - $signature: 1434 + $signature: 1435 }; A.Ticker.prototype = { set$muted(_, value) { @@ -281335,19 +281782,19 @@ t1.thickness = Math.max(t1.thickness, node._semantics$_thickness + node._semantics$_elevation); return true; }, - $signature: 452 + $signature: 474 }; A.SemanticsNode__childrenInTraversalOrder_closure.prototype = { call$1(sortNode) { return sortNode.node; }, - $signature: 1438 + $signature: 1439 }; A.SemanticsNode_debugDescribeChildren_closure.prototype = { call$1(node) { return A._SemanticsDiagnosticableNode$(this.childOrder, null, B.DiagnosticsTreeStyle_1, node); }, - $signature: 1439 + $signature: 1440 }; A._BoxEdge.prototype = { compareTo$1(_, other) { @@ -281442,7 +281889,7 @@ call$1(group) { return group.sortedWithinKnot$0(); }, - $signature: 785 + $signature: 831 }; A._SemanticsSortGroup_sortedWithinKnot_closure.prototype = { call$2(a, b) { @@ -281456,7 +281903,7 @@ return -verticalDiff; return -B.JSNumber_methods.compareTo$1(aTopLeft._dx, bTopLeft._dx); }, - $signature: 454 + $signature: 472 }; A._SemanticsSortGroup_sortedWithinKnot_search.prototype = { call$1(id) { @@ -281473,13 +281920,13 @@ } _this.sortedIds.push(id); }, - $signature: 75 + $signature: 76 }; A._SemanticsSortGroup_sortedWithinKnot_closure0.prototype = { call$1(node) { return node._semantics$_id; }, - $signature: 1442 + $signature: 1444 }; A._SemanticsSortGroup_sortedWithinKnot_closure1.prototype = { call$1(id) { @@ -281487,13 +281934,13 @@ t1.toString; return t1; }, - $signature: 1444 + $signature: 1446 }; A._childrenInDefaultOrder_closure.prototype = { call$1(group) { return group.sortedWithinVerticalGroup$0(); }, - $signature: 785 + $signature: 831 }; A._TraversalSortNode.prototype = { compareTo$1(_, other) { @@ -281597,19 +282044,19 @@ call$1(node) { return !this.$this._detachedNodes.contains$1(0, node); }, - $signature: 452 + $signature: 474 }; A.SemanticsOwner_sendSemanticsUpdate_closure0.prototype = { call$2(a, b) { return a._semantics$_depth - b._semantics$_depth; }, - $signature: 454 + $signature: 472 }; A.SemanticsOwner_sendSemanticsUpdate_closure1.prototype = { call$2(a, b) { return a._semantics$_depth - b._semantics$_depth; }, - $signature: 454 + $signature: 472 }; A.SemanticsOwner__getSemanticsActionHandlerForId_closure.prototype = { call$1(node) { @@ -281619,7 +282066,7 @@ } return true; }, - $signature: 452 + $signature: 474 }; A.SemanticsConfiguration.prototype = { _addAction$2(action, handler) { @@ -281895,35 +282342,35 @@ call$1(args) { this.handler.call$0(); }, - $signature: 44 + $signature: 45 }; A.SemanticsConfiguration_onMoveCursorForwardByCharacter_closure.prototype = { call$1(args) { args.toString; this.value.call$1(A._asBool(args)); }, - $signature: 44 + $signature: 45 }; A.SemanticsConfiguration_onMoveCursorBackwardByCharacter_closure.prototype = { call$1(args) { args.toString; this.value.call$1(A._asBool(args)); }, - $signature: 44 + $signature: 45 }; A.SemanticsConfiguration_onMoveCursorForwardByWord_closure.prototype = { call$1(args) { args.toString; this.value.call$1(A._asBool(args)); }, - $signature: 44 + $signature: 45 }; A.SemanticsConfiguration_onMoveCursorBackwardByWord_closure.prototype = { call$1(args) { args.toString; this.value.call$1(A._asBool(args)); }, - $signature: 44 + $signature: 45 }; A.SemanticsConfiguration_onSetSelection_closure.prototype = { call$1(args) { @@ -281938,21 +282385,21 @@ t3.toString; t1.call$1(A.TextSelection$(B.TextAffinity_1, t2, t3, false)); }, - $signature: 44 + $signature: 45 }; A.SemanticsConfiguration_onSetText_closure.prototype = { call$1(args) { args.toString; this.value.call$1(A._asString(args)); }, - $signature: 44 + $signature: 45 }; A.SemanticsConfiguration_absorb_closure.prototype = { call$2(key, value) { if (($.$get$_kUnblockedUserActions() & key.index) > 0) this.$this._actions.$indexSet(0, key, value); }, - $signature: 1447 + $signature: 1448 }; A.DebugSemanticsDumpOrder.prototype = { _enumToString$0() { @@ -282106,7 +282553,7 @@ call$0() { return this.$this.super$AssetBundle$loadString(this.key, true); }, - $signature: 500 + $signature: 592 }; A.CachingAssetBundle_loadStructuredData_closure.prototype = { call$1(value) { @@ -282128,7 +282575,7 @@ this.$this._structuredDataCache.remove$1(0, this.key); this._box_0.completer.completeError$2(error, stack); }, - $signature: 175 + $signature: 183 }; A.PlatformAssetBundle.prototype = { load$1(_, key) { @@ -282177,7 +282624,7 @@ throw A.wrapException(A.FlutterError$fromParts(A._setArrayType([A._errorSummaryWithKey(this.key), A.ErrorDescription$("The asset does not exist or has empty data.")], type$.JSArray_DiagnosticsNode))); return asset; }, - $signature: 1448 + $signature: 1449 }; A.AssetManifest_loadFromAssetBundle_closure.prototype = { call$1(jsonData) { @@ -282205,7 +282652,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 1449 + $signature: 1477 }; A._AssetManifestBin.prototype = { getAssetVariants$1(key) { @@ -282241,7 +282688,7 @@ A._asString(t1); return new A.AssetMetadata(A._asDoubleQ(dpr), t1); }, - $signature: 1477 + $signature: 1478 }; A.AssetMetadata.prototype = {}; A.AutofillConfiguration.prototype = { @@ -282273,7 +282720,7 @@ call$1(configuration) { return configuration.toJson$0(); }, - $signature: 1478 + $signature: 1479 }; A.AutofillScopeMixin.prototype = { attach$2(trigger, configuration) { @@ -282287,7 +282734,7 @@ call$1(client) { return client.get$textInputConfiguration(); }, - $signature: 1479 + $signature: 1480 }; A.BinaryMessenger.prototype = {}; A.ServicesBinding.prototype = { @@ -282556,7 +283003,7 @@ A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "services library", t1, null, null, false)); } }, - $signature: 152 + $signature: 163 }; A._DefaultBinaryMessenger_setMessageHandler_closure.prototype = { call$2(data, callback) { @@ -282620,7 +283067,7 @@ }); return A._asyncStartSync($async$call$2, $async$completer); }, - $signature: 1483 + $signature: 1484 }; A.BrowserContextMenu.prototype = {}; A.ClipboardData.prototype = {}; @@ -283277,7 +283724,7 @@ t1.writeValue$2(0, t2, key); t1.writeValue$2(0, t2, value); }, - $signature: 306 + $signature: 277 }; A.StandardMethodCodec0.prototype = { encodeMethodCall$1(methodCall) { @@ -283508,7 +283955,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 783 + $signature: 830 }; A.MethodChannel.prototype = { get$binaryMessenger() { @@ -283722,7 +284169,7 @@ call$1(message) { return this.$this._handleAsMethodCall$2(message, this.handler); }, - $signature: 783 + $signature: 830 }; A.OptionalMethodChannel.prototype = { invokeMethod$1$2(method, $arguments, $T) { @@ -283806,7 +284253,7 @@ t1 = A._asIntQ(t2.$index(t1, "keyCode")); return new A.RawKeyEventDataWeb(t4, t3, t5, t6, t1 == null ? 0 : t1); }, - $signature: 1488 + $signature: 1489 }; A.RawKeyDownEvent.prototype = {}; A.RawKeyUpEvent.prototype = {}; @@ -284113,13 +284560,13 @@ call$1(_) { this.$this._isReplacing = false; }, - $signature: 12 + $signature: 11 }; A.RestorationManager_scheduleSerializationFor_closure.prototype = { call$1(_) { return this.$this._doSerialization$0(); }, - $signature: 12 + $signature: 11 }; A.RestorationBucket.prototype = { get$_rawChildren() { @@ -284291,26 +284738,26 @@ var t1 = type$.nullable_Object; return A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); }, - $signature: 779 + $signature: 828 }; A.RestorationBucket__rawValues_closure.prototype = { call$0() { var t1 = type$.nullable_Object; return A.LinkedHashMap_LinkedHashMap$_empty(t1, t1); }, - $signature: 779 + $signature: 828 }; A.RestorationBucket__addChildData_closure.prototype = { call$0() { return A._setArrayType([], type$.JSArray_RestorationBucket); }, - $signature: 1516 + $signature: 1517 }; A.RestorationBucket__visitChildren_closure.prototype = { call$1(buckets) { return buckets; }, - $signature: 1517 + $signature: 1521 }; A.SuggestionSpan.prototype = { $eq(_, other) { @@ -284801,7 +285248,7 @@ replacedLength = originalIndex <= t1 && originalIndex < _this.regionEnd ? 0 : _this.replacementString.length; return replacedLength - (B.JSInt_methods.clamp$2(originalIndex, t1, _this.regionEnd) - t1); }, - $signature: 133 + $signature: 137 }; A.LengthLimitingTextInputFormatter.prototype = { formatEditUpdate$2(oldValue, newValue) { @@ -284994,7 +285441,7 @@ replacedLength = originalIndex <= t2 && originalIndex < t1.end ? 0 : this.replacementString.length; return originalIndex + replacedLength - (B.JSInt_methods.clamp$2(originalIndex, t2, t1.end) - t2); }, - $signature: 133 + $signature: 137 }; A.SelectionChangedCause.prototype = { _enumToString$0() { @@ -285486,13 +285933,13 @@ var _null = null; return A._setArrayType([A.DiagnosticsProperty$("call", this.$call, true, B.C__NoDefaultValue, _null, false, _null, _null, B.DiagnosticLevel_3, _null, false, true, true, B.DiagnosticsTreeStyle_9, _null, type$.MethodCall)], type$.JSArray_DiagnosticsNode); }, - $signature: 143 + $signature: 147 }; A.TextInput__handleTextInputInvocation_closure.prototype = { call$1(value) { return value; }, - $signature: 1521 + $signature: 1522 }; A.TextInput__handleTextInputInvocation_closure0.prototype = { call$1(elementIdentifier) { @@ -285517,7 +285964,7 @@ t1 = true; return !t1; }, - $signature: 11 + $signature: 12 }; A.TextInput__handleTextInputInvocation_closure1.prototype = { call$1(elementIdentifier) { @@ -285530,7 +285977,7 @@ B.JSArray_methods.addAll$1(t1, [t2, t3, bounds.right - t2, bounds.bottom - t3]); return t1; }, - $signature: 1522 + $signature: 1524 }; A.TextInput__scheduleHide_closure.prototype = { call$0() { @@ -285558,7 +286005,7 @@ t3 = t1.top; return A._setArrayType([t2, t3, t1.right - t2, t1.bottom - t3, rect.position, rect.direction.index], type$.JSArray_num); }, - $signature: 1524 + $signature: 1525 }; A.__PlatformTextInputControl_Object_TextInputControl.prototype = {}; A.UndoDirection.prototype = { @@ -285618,13 +286065,13 @@ call$2(context, controller) { return new A.PlatformViewSurface(controller, B.Set_empty, B.PlatformViewHitTestBehavior_0, null); }, - $signature: 1525 + $signature: 1526 }; A.HtmlElementViewImpl_get__createController_closure.prototype = { call$1(params) { return A.HtmlElementViewImpl__createController(this._this, params); }, - $signature: 1526 + $signature: 1544 }; A.HtmlElementViewImpl__createController_closure.prototype = { call$1(_) { @@ -285724,7 +286171,7 @@ this.parent.set$finalLocalValue(ancestor); return false; }, - $signature: 126 + $signature: 128 }; A.Intent.prototype = {}; A.Action.prototype = { @@ -285806,7 +286253,7 @@ type$._ActionsScope._as(t1); return false; }, - $signature: 319 + $signature: 307 }; A.Actions_maybeFind_closure.prototype = { call$1(element) { @@ -285821,7 +286268,7 @@ } return false; }, - $signature: 319 + $signature: 307 }; A.Actions__maybeFindWithoutDependingOn_closure.prototype = { call$1(element) { @@ -285835,7 +286282,7 @@ } return false; }, - $signature: 319 + $signature: 307 }; A.Actions_invoke_closure.prototype = { call$1(element) { @@ -285849,7 +286296,7 @@ _this._box_0.returnValue = A.Actions__findDispatcher(element).invokeAction$3(result, t2, _this.context); return t1; }, - $signature: 319 + $signature: 307 }; A.Actions_maybeInvoke_closure.prototype = { call$1(element) { @@ -285863,7 +286310,7 @@ _this._box_0.returnValue = A.Actions__findDispatcher(element).invokeAction$3(result, t2, _this.context); return t1; }, - $signature: 319 + $signature: 307 }; A._ActionsState.prototype = { initState$0() { @@ -286056,7 +286503,7 @@ t1 = A._HighlightModeManager__defaultModeForPlatform(); this.$this._updateHighlightMode$1(t1); }, - $signature: 12 + $signature: 11 }; A._FocusableActionDetectorState__updateHighlightMode_closure.prototype = { call$0() { @@ -286095,7 +286542,7 @@ var t1 = this.$this; return t1._actions$_hovering && target.enabled && t1._canShowHighlight; }, - $signature: 467 + $signature: 463 }; A._FocusableActionDetectorState__mayTriggerCallback_canRequestFocus.prototype = { call$1(target) { @@ -286111,20 +286558,20 @@ return true; } }, - $signature: 467 + $signature: 463 }; A._FocusableActionDetectorState__mayTriggerCallback_shouldShowFocusHighlight.prototype = { call$1(target) { var t1 = this.$this; return t1._focused && t1._canShowHighlight && this.canRequestFocus.call$1(target); }, - $signature: 467 + $signature: 463 }; A._FocusableActionDetectorState_didUpdateWidget_closure.prototype = { call$1(duration) { this.$this._mayTriggerCallback$1$oldWidget(this.oldWidget); }, - $signature: 12 + $signature: 11 }; A.VoidCallbackAction.prototype = { invoke$1(intent) { @@ -286666,7 +287113,7 @@ call$1(entry) { return entry.transition; }, - $signature: 1591 + $signature: 1592 }; A._AnimatedSwitcherState_build_closure.prototype = { call$1(outgoing) { @@ -286674,7 +287121,7 @@ t1 = t1 == null ? null : t1.transition.key; return !J.$eq$(outgoing.key, t1); }, - $signature: 1592 + $signature: 1597 }; A.__AnimatedSwitcherState_State_TickerProviderStateMixin.prototype = { activate$0() { @@ -286936,7 +287383,7 @@ t1.toString; return t1; }, - $signature: 46 + $signature: 44 }; A._WidgetsAppState_didChangeLocales_closure.prototype = { call$0() { @@ -286948,7 +287395,7 @@ call$1(context) { return this.$this._widget.builder.call$2(context, this._box_0.routing); }, - $signature: 46 + $signature: 44 }; A.__WidgetsAppState_State_WidgetsBindingObserver.prototype = {}; A.StreamBuilderBase.prototype = { @@ -287033,7 +287480,7 @@ var t1 = this.$this; t1.setState$1(new A._StreamBuilderBaseState__subscribe__closure(t1, error, stackTrace)); }, - $signature: 175 + $signature: 183 }; A._StreamBuilderBaseState__subscribe__closure.prototype = { call$0() { @@ -287165,7 +287612,7 @@ if (t1._activeCallbackIdentity === this.callbackIdentity) t1.setState$1(new A._FutureBuilderState__subscribe__closure(t1, error, stackTrace)); }, - $signature: 175 + $signature: 183 }; A._FutureBuilderState__subscribe__closure.prototype = { call$0() { @@ -287483,7 +287930,7 @@ t1._floatingOptionsUpdateScheduled = false; t1._updateOverlay$0(); }, - $signature: 12 + $signature: 11 }; A._RawAutocompleteState__updateOverlay_closure0.prototype = { call$1(context) { @@ -287500,7 +287947,7 @@ } return A.CompositedTransformFollower$(A.TextFieldTapRegion$(new A.AutocompleteHighlightedOption(t1._highlightedOptionIndex, new A.Builder(new A._RawAutocompleteState__updateOverlay__closure(t1), _null), _null), _null, _null), B.Alignment_m1_m1, _null, t1._optionsLayerLink, B.Offset_0_0, false, B.Alignment_m1_1); }, - $signature: 1633 + $signature: 1634 }; A._RawAutocompleteState__updateOverlay__closure.prototype = { call$1(context) { @@ -287509,7 +287956,7 @@ t3 = t1._autocomplete$_options; return t2.optionsViewBuilder.call$3(context, t1.get$_select(), t3); }, - $signature: 46 + $signature: 44 }; A._AutocompleteCallbackAction.prototype = { isEnabled$1(_, intent) { @@ -287566,13 +288013,13 @@ call$1(client) { return client.get$textInputConfiguration().autofillConfiguration.enabled; }, - $signature: 1634 + $signature: 1638 }; A.AutofillGroupState_register_closure.prototype = { call$0() { return this.client; }, - $signature: 1638 + $signature: 1639 }; A._AutofillScope.prototype = { updateShouldNotify$1(old) { @@ -287668,7 +288115,7 @@ childElement.toString; t1._updateParentDataOfChild$1(childElement); }, - $signature: 12 + $signature: 11 }; A._AutomaticKeepAliveState__getChildElement_closure.prototype = { call$1(child) { @@ -287883,7 +288330,7 @@ call$1(context) { return A.ClipPath$(this.child, this.clipBehavior, new A.ShapeBorderClipper(this.shape, A.Directionality_maybeOf(context), null)); }, - $signature: 1664 + $signature: 1665 }; A.PhysicalModel.prototype = { createRenderObject$1(context) { @@ -288460,13 +288907,13 @@ call$0() { return this._0_0._0; }, - $signature: 1665 + $signature: 1666 }; A.RichText__effectiveTextScalerFrom_closure0.prototype = { call$0() { return this._0_0._1; }, - $signature: 124 + $signature: 125 }; A.RawImage.prototype = { createRenderObject$1(context) { @@ -288741,7 +289188,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 322 + $signature: 329 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure0.prototype = { call$1(parameters) { @@ -288769,7 +289216,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 322 + $signature: 329 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure1.prototype = { call$1(parameters) { @@ -288797,7 +289244,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 322 + $signature: 329 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure2.prototype = { call$0() { @@ -288822,7 +289269,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 65 + $signature: 63 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure3.prototype = { call$1(value) { @@ -288846,7 +289293,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 323 + $signature: 342 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure4.prototype = { call$0() { @@ -288871,7 +289318,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 65 + $signature: 63 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure5.prototype = { call$1(value) { @@ -288895,13 +289342,13 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 323 + $signature: 342 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initInstances_closure.prototype = { call$1(timings) { J.forEach$1$ax(timings, this.$this.get$_profileFramePostEvent()); }, - $signature: 451 + $signature: 479 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure.prototype = { call$0() { @@ -288926,7 +289373,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 1670 + $signature: 1672 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure0.prototype = { call$1(value) { @@ -288949,14 +289396,14 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 1672 + $signature: 1673 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_initInstances_closure.prototype = { call$1(message) { var t1 = message == null ? type$.Object._as(message) : message; return this.$this.handleSystemMessage$1(t1); }, - $signature: 1673 + $signature: 1674 }; A.WidgetsBindingObserver.prototype = { didPopRoute$0() { @@ -289252,7 +289699,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 322 + $signature: 329 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure0.prototype = { call$1(parameters) { @@ -289281,7 +289728,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 322 + $signature: 329 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure1.prototype = { call$1(_) { @@ -289309,7 +289756,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 287 + $signature: 328 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure2.prototype = { call$1(_) { @@ -289337,7 +289784,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 287 + $signature: 328 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure3.prototype = { call$0() { @@ -289362,7 +289809,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 65 + $signature: 63 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure4.prototype = { call$1(value) { @@ -289385,7 +289832,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 323 + $signature: 342 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure5.prototype = { call$0() { @@ -289410,7 +289857,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 65 + $signature: 63 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure6.prototype = { call$1(value) { @@ -289433,7 +289880,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 323 + $signature: 342 }; A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_drawFrame_closure.prototype = { call$1(timings) { @@ -289452,7 +289899,7 @@ t2.firstFrameCallback = null; this.$this.WidgetsBinding__firstFrameCompleter.complete$0(0); }, - $signature: 451 + $signature: 479 }; A.WidgetsBinding_scheduleAttachRootWidget_closure.prototype = { call$0() { @@ -289933,7 +290380,7 @@ call$1(context) { return new A._CaptureAll(this.capturedThemes._themes, this.contextMenuBuilder.call$1(context), null); }, - $signature: 46 + $signature: 44 }; A.DefaultSelectionStyle.prototype = { wrap$2(_, context, child) { @@ -289950,7 +290397,7 @@ t1 = B.DefaultSelectionStyle_mt1; return A.DefaultSelectionStyle$(this.child, t1.cursorColor, this.key, this.mouseCursor, t1.selectionColor); }, - $signature: 1674 + $signature: 1701 }; A._NullWidget2.prototype = { build$1(context) { @@ -290007,13 +290454,13 @@ t1 = true; return t1; }, - $signature: 776 + $signature: 819 }; A.DisplayFeatureSubScreen_avoidBounds_closure0.prototype = { call$1(d) { return d.get$bounds(d); }, - $signature: 1702 + $signature: 1707 }; A.DisposableBuildContext.prototype = { get$context(_) { @@ -290167,7 +290614,7 @@ call$3(context, currentSize, child) { return new A.LayoutBuilder(new A._DraggableScrollableSheetState_build__closure(this.$this, currentSize, child), null); }, - $signature: 1707 + $signature: 1708 }; A._DraggableScrollableSheetState_build__closure.prototype = { call$2(context, constraints) { @@ -290181,7 +290628,7 @@ sheet = A.FractionallySizedBox$(B.Alignment_0_1, this.child, this.currentSize, null); return sheet; }, - $signature: 237 + $signature: 221 }; A._DraggableScrollableSheetScrollController.prototype = { createScrollPosition$3(physics, context, oldPosition) { @@ -290207,7 +290654,7 @@ call$0() { return this.$this.extent; }, - $signature: 1708 + $signature: 1709 }; A._DraggableScrollableSheetScrollPosition.prototype = { absorb$1(other) { @@ -293132,7 +293579,7 @@ if (t1._framework$_element != null) t1.bringIntoView$1(t1._widget.controller._change_notifier$_value.selection.get$extent()); }, - $signature: 12 + $signature: 11 }; A.EditableTextState_pasteText_closure.prototype = { call$1(_) { @@ -293140,7 +293587,7 @@ if (t1._framework$_element != null) t1.bringIntoView$1(t1._widget.controller._change_notifier$_value.selection.get$extent()); }, - $signature: 12 + $signature: 11 }; A.EditableTextState_buttonItemsForToolbarOptions_closure.prototype = { call$0() { @@ -293226,19 +293673,19 @@ A.FocusScope_of(t2).autofocus$1(0, t1._widget.focusNode); } }, - $signature: 12 + $signature: 11 }; A.EditableTextState_didUpdateWidget_closure.prototype = { call$1(_) { this.$this._openInputConnection$0(); }, - $signature: 12 + $signature: 11 }; A.EditableTextState__createSelectionOverlay_closure.prototype = { call$1(context) { return this.contextMenuBuilder.call$2(context, this.$this); }, - $signature: 46 + $signature: 44 }; A.EditableTextState__scheduleShowCaretOnScreen_closure.prototype = { call$1(_) { @@ -293289,7 +293736,7 @@ t2.showOnScreen$1$rect(caretPadding.inflateRect$1(rectToReveal)); } }, - $signature: 12 + $signature: 11 }; A.EditableTextState_didChangeMetrics_closure.prototype = { call$1(_) { @@ -293301,19 +293748,19 @@ t1.markNeedsBuild$0(); } }, - $signature: 12 + $signature: 11 }; A.EditableTextState__formatAndSetValue_closure.prototype = { call$2(newValue, formatter) { return formatter.formatEditUpdate$2(this.$this._widget.controller._change_notifier$_value, newValue); }, - $signature: 1831 + $signature: 1832 }; A.EditableTextState__startCursorBlink_closure.prototype = { call$1(timer) { this.$this._onCursorTick$0(); }, - $signature: 229 + $signature: 215 }; A.EditableTextState__onCursorTick_closure.prototype = { call$0() { @@ -293331,7 +293778,7 @@ call$1(timer) { this.$this._onCursorTick$0(); }, - $signature: 229 + $signature: 215 }; A.EditableTextState__didChangeTextEditingValue_closure.prototype = { call$0() { @@ -293348,13 +293795,13 @@ call$0() { return this._0_0._0; }, - $signature: 502 + $signature: 451 }; A.EditableTextState__updateSelectionRects_closure1.prototype = { call$0() { return this._0_0._1; }, - $signature: 376 + $signature: 395 }; A.EditableTextState__updateSelectionRects_closure0.prototype = { call$0() { @@ -293369,7 +293816,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); return t2.spellCheckSuggestionsToolbarBuilder.call$2(context, t1); }, - $signature: 46 + $signature: 44 }; A.EditableTextState_insertTextPlaceholder_closure.prototype = { call$0() { @@ -293416,19 +293863,19 @@ call$1(intent) { return this.$this.pasteText$1(B.SelectionChangedCause_4); }, - $signature: 1860 + $signature: 1890 }; A.EditableTextState_build_closure.prototype = { call$0() { return this._0_0._0; }, - $signature: 502 + $signature: 451 }; A.EditableTextState_build_closure1.prototype = { call$0() { return this._0_0._1; }, - $signature: 376 + $signature: 395 }; A.EditableTextState_build_closure0.prototype = { call$0() { @@ -293440,7 +293887,7 @@ call$1(value) { this.$this.userUpdateTextEditingValue$2(value, B.SelectionChangedCause_4); }, - $signature: 1890 + $signature: 1900 }; A.EditableTextState_build_closure2.prototype = { call$2(oldValue, newValue) { @@ -293464,7 +293911,7 @@ } return oldValue.text !== newValue.text || !oldValue.composing.$eq(0, newValue.composing); }, - $signature: 1900 + $signature: 1901 }; A.EditableTextState_build_closure4.prototype = { call$2(context, offset) { @@ -293549,7 +293996,7 @@ t38 = A.WidgetSpan_extractFromInlineSpan(t7, t20); return new A.CompositedTransformTarget(t1._toolbarLayerLink, new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t3, t4, _null, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, false, new A._ScribbleFocusable(new A._Editable(t7, t9, t10, t1._startHandleLayerLink, t1._endHandleLayerLink, t11, t1._cursorVisibilityNotifier, t12, t13, t8, t15, t16, t17, t14, t18, t20, t19.textAlign, t21, _null, t25, t26, t22, t24, offset, true, t27, t28, t29, t30, t33, t31, t32, t23, t1, t34.devicePixelRatio, t35, t37, t36, t38, t6), t5, t6, new A.EditableTextState_build__closure(t1), true, _null), _null), _null); }, - $signature: 1901 + $signature: 1903 }; A.EditableTextState_build__closure.prototype = { call$0() { @@ -293731,7 +294178,7 @@ call$1(entry) { return entry.target.$eq(0, this.$this.get$renderEditable()); }, - $signature: 1903 + $signature: 1904 }; A._ScribblePlaceholder.prototype = { build$3$dimensions$textScaler(builder, dimensions, textScaler) { @@ -294350,11 +294797,10 @@ } }, attach$3$onKey$onKeyEvent(context, onKey, onKeyEvent) { - var t1, _this = this; + var _this = this; _this._context = context; _this.onKey = onKey == null ? _this.onKey : onKey; - t1 = _this.onKeyEvent; - _this.onKeyEvent = t1; + _this.onKeyEvent = onKeyEvent == null ? _this.onKeyEvent : onKeyEvent; return _this._attachment = new A.FocusAttachment(_this); }, attach$2$onKey(context, onKey) { @@ -294437,13 +294883,13 @@ call$1(node) { return !node.get$skipTraversal() && node.get$canRequestFocus(); }, - $signature: 138 + $signature: 148 }; A.FocusNode_debugDescribeChildren_closure.prototype = { call$1(child) { return A.DiagnosticableTreeNode$("Child " + this._box_0.count++, null, child); }, - $signature: 1905 + $signature: 1906 }; A.FocusScopeNode.prototype = { get$nearestScope() { @@ -294650,7 +295096,7 @@ _this.updateMode$0(); }, handleKeyMessage$1(message) { - var t1, handled, t2, t3, t4, t5, _i, node, results, t6; + var t1, handled, t2, t3, t4, t5, t6, _i, node, results, t7, _i0, $event; this._lastInteractionWasTouch = false; this.updateMode$0(); t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus; @@ -294660,8 +295106,9 @@ B.JSArray_methods.addAll$1(t1, $.WidgetsBinding__instance.WidgetsBinding__buildOwner.focusManager._primaryFocus.get$ancestors()); t2 = t1.length; t3 = type$.JSArray_KeyEventResult; - t4 = message.rawEvent; - t5 = t4 != null; + t4 = message.events; + t5 = message.rawEvent; + t6 = t5 != null; _i = 0; $label0$1: while (true) { @@ -294673,9 +295120,14 @@ c$label0$1: { node = t1[_i]; results = A._setArrayType([], t3); - t6 = node.onKey; - if (t6 != null && t5) - results.push(t6.call$2(node, t4)); + if (node.onKeyEvent != null) + for (t7 = t4.length, _i0 = 0; _i0 < t4.length; t4.length === t7 || (0, A.throwConcurrentModificationError)(t4), ++_i0) { + $event = t4[_i0]; + results.push(node.onKeyEvent.call$2(node, $event)); + } + t7 = node.onKey; + if (t7 != null && t6) + results.push(t7.call$2(node, t5)); switch (A.combineKeyEventResults(results).index) { case 1: break c$label0$1; @@ -294719,9 +295171,11 @@ A._FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier.prototype = {}; A.Focus.prototype = { get$onKeyEvent() { - var t1 = this._onKeyEvent, - t2 = this.focusNode; - t1 = t2 == null ? null : t2.onKeyEvent; + var t1 = this._onKeyEvent; + if (t1 == null) { + t1 = this.focusNode; + t1 = t1 == null ? null : t1.onKeyEvent; + } return t1; }, get$onKey() { @@ -294863,8 +295317,8 @@ if (t1 == t2.focusNode) { if (!J.$eq$(t2.get$onKey(), _this.get$focusNode(_this).onKey)) _this.get$focusNode(_this).onKey = _this._widget.get$onKey(); - _this._widget.get$onKeyEvent(); - _this.get$focusNode(_this); + if (!J.$eq$(_this._widget.get$onKeyEvent(), _this.get$focusNode(_this).onKeyEvent)) + _this.get$focusNode(_this).onKeyEvent = _this._widget.get$onKeyEvent(); _this.get$focusNode(_this).set$skipTraversal(_this._widget.get$skipTraversal()); if (_this._widget._canRequestFocus != null) { t1 = _this.get$focusNode(_this); @@ -294988,7 +295442,7 @@ } return true; }, - $signature: 126 + $signature: 128 }; A._FocusTraversalGroupInfo.prototype = {}; A.TraversalDirection.prototype = { @@ -295100,7 +295554,7 @@ call$1(node) { return node.get$canRequestFocus() && !node.get$skipTraversal(); }, - $signature: 138 + $signature: 148 }; A.FocusTraversalPolicy__sortAllDescendants_visitGroups.prototype = { call$1(info) { @@ -295115,7 +295569,7 @@ t3.push(node); } }, - $signature: 1931 + $signature: 1932 }; A.FocusTraversalPolicy__sortAllDescendants_closure.prototype = { call$1(node) { @@ -295126,7 +295580,7 @@ t1 = false; return t1; }, - $signature: 138 + $signature: 148 }; A._DirectionalPolicyDataEntry.prototype = {}; A._DirectionalPolicyData.prototype = {}; @@ -295350,7 +295804,7 @@ call$1(entry) { return entry.node === this.node; }, - $signature: 1932 + $signature: 1935 }; A.DirectionalFocusTraversalPolicyMixin__sortAndFindInitial_closure.prototype = { call$2(a, b) { @@ -295364,7 +295818,7 @@ else return B.JSNumber_methods.compareTo$1(b.get$rect(b).right, a.get$rect(a).right); }, - $signature: 228 + $signature: 217 }; A.DirectionalFocusTraversalPolicyMixin__sortByDistancePreferVertical_closure.prototype = { call$2(nodeA, nodeB) { @@ -295376,7 +295830,7 @@ return A.DirectionalFocusTraversalPolicyMixin__horizontalCompare(t1, a, b); return vertical; }, - $signature: 228 + $signature: 217 }; A.DirectionalFocusTraversalPolicyMixin__sortByDistancePreferHorizontal_closure.prototype = { call$2(nodeA, nodeB) { @@ -295388,7 +295842,7 @@ return A.DirectionalFocusTraversalPolicyMixin__verticalCompare(t1, a, b); return horizontal; }, - $signature: 228 + $signature: 217 }; A.DirectionalFocusTraversalPolicyMixin__sortClosestEdgesByDistancePreferHorizontal_closure.prototype = { call$2(nodeA, nodeB) { @@ -295408,7 +295862,7 @@ return A.DirectionalFocusTraversalPolicyMixin__verticalCompare(t1, nodeA.get$rect(nodeA).get$center(), nodeB.get$rect(nodeB).get$center()); return horizontal; }, - $signature: 228 + $signature: 217 }; A.DirectionalFocusTraversalPolicyMixin__sortClosestEdgesByDistancePreferVertical_closure.prototype = { call$2(nodeA, nodeB) { @@ -295428,47 +295882,47 @@ return A.DirectionalFocusTraversalPolicyMixin__horizontalCompare(t1, nodeA.get$rect(nodeA).get$center(), nodeB.get$rect(nodeB).get$center()); return vertical; }, - $signature: 228 + $signature: 217 }; A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure.prototype = { call$1(node) { var t1 = this.target; return !node.get$rect(node).$eq(0, t1) && node.get$rect(node).get$center()._dx <= t1.left; }, - $signature: 138 + $signature: 148 }; A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure0.prototype = { call$1(node) { var t1 = this.target; return !node.get$rect(node).$eq(0, t1) && node.get$rect(node).get$center()._dx >= t1.right; }, - $signature: 138 + $signature: 148 }; A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure1.prototype = { call$2(a, b) { return B.JSNumber_methods.compareTo$1(a.get$rect(a).get$center()._dx, b.get$rect(b).get$center()._dx); }, - $signature: 228 + $signature: 217 }; A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure.prototype = { call$1(node) { var t1 = this.target; return !node.get$rect(node).$eq(0, t1) && node.get$rect(node).get$center()._dy <= t1.top; }, - $signature: 138 + $signature: 148 }; A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure0.prototype = { call$1(node) { var t1 = this.target; return !node.get$rect(node).$eq(0, t1) && node.get$rect(node).get$center()._dy >= t1.bottom; }, - $signature: 138 + $signature: 148 }; A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure1.prototype = { call$2(a, b) { return B.JSNumber_methods.compareTo$1(a.get$rect(a).get$center()._dy, b.get$rect(b).get$center()._dy); }, - $signature: 228 + $signature: 217 }; A.DirectionalFocusTraversalPolicyMixin__popPolicyDataIfNeeded_popOrInvalidate.prototype = { call$1(direction) { @@ -295501,7 +295955,7 @@ _this.$this.requestFocusCallback.call$2$alignmentPolicy(lastNode, alignmentPolicy); return true; }, - $signature: 1936 + $signature: 1940 }; A.DirectionalFocusTraversalPolicyMixin_inDirection_closure.prototype = { call$1(node) { @@ -295509,14 +295963,14 @@ t1.toString; return A.Scrollable_maybeOf(t1, null) === this.focusedScrollable; }, - $signature: 138 + $signature: 148 }; A.DirectionalFocusTraversalPolicyMixin_inDirection_closure0.prototype = { call$1(node) { var t1 = node.get$rect(node).intersect$1(this.band); return !t1.get$isEmpty(t1); }, - $signature: 138 + $signature: 148 }; A.DirectionalFocusTraversalPolicyMixin_inDirection_closure1.prototype = { call$1(node) { @@ -295524,14 +295978,14 @@ t1.toString; return A.Scrollable_maybeOf(t1, null) === this.focusedScrollable; }, - $signature: 138 + $signature: 148 }; A.DirectionalFocusTraversalPolicyMixin_inDirection_closure2.prototype = { call$1(node) { var t1 = node.get$rect(node).intersect$1(this.band); return !t1.get$isEmpty(t1); }, - $signature: 138 + $signature: 148 }; A._ReadingOrderSortData.prototype = { get$directionalAncestors() { @@ -295550,7 +296004,7 @@ var t1 = member.get$directionalAncestors(); return A.LinkedHashSet_LinkedHashSet$from(t1, A._arrayInstanceType(t1)._precomputed1); }, - $signature: 1940 + $signature: 1983 }; A._ReadingOrderSortData_sortWithDirectionality_closure.prototype = { call$2(a, b) { @@ -295561,7 +296015,7 @@ return B.JSNumber_methods.compareTo$1(b.rect.right, a.rect.right); } }, - $signature: 773 + $signature: 816 }; A._ReadingOrderSortData_directionalAncestors_getDirectionalityAncestors.prototype = { call$1(context) { @@ -295584,7 +296038,7 @@ } return result; }, - $signature: 1984 + $signature: 1985 }; A._ReadingOrderDirectionalGroupData.prototype = { get$rect(_) { @@ -295610,7 +296064,7 @@ call$1(data) { return data.rect; }, - $signature: 1985 + $signature: 2010 }; A._ReadingOrderDirectionalGroupData_sortWithDirectionality_closure.prototype = { call$2(a, b) { @@ -295621,7 +296075,7 @@ return B.JSNumber_methods.compareTo$1(b.get$rect(b).right, a.get$rect(a).right); } }, - $signature: 2010 + $signature: 2011 }; A.ReadingOrderTraversalPolicy.prototype = { _collectDirectionalityGroups$1(candidates) { @@ -295704,7 +296158,7 @@ call$2(a, b) { return B.JSNumber_methods.compareTo$1(a.rect.top, b.rect.top); }, - $signature: 773 + $signature: 816 }; A.ReadingOrderTraversalPolicy__pickNext_inBand.prototype = { call$2(current, candidates) { @@ -295712,14 +296166,14 @@ t2 = A._arrayInstanceType(candidates)._eval$1("WhereIterable<1>"); return A.List_List$of(new A.WhereIterable(candidates, new A.ReadingOrderTraversalPolicy__pickNext_inBand_closure(new A.Rect(-1 / 0, t1.top, 1 / 0, t1.bottom)), t2), true, t2._eval$1("Iterable.E")); }, - $signature: 2011 + $signature: 2012 }; A.ReadingOrderTraversalPolicy__pickNext_inBand_closure.prototype = { call$1(item) { var t1 = item.rect.intersect$1(this.band); return !t1.get$isEmpty(t1); }, - $signature: 2012 + $signature: 2016 }; A.FocusTraversalGroup.prototype = { createState$0() { @@ -295898,7 +296352,7 @@ t2 = t1._restoration_properties$_value; return t2 == null ? A._instanceType(t1)._eval$1("RestorableValue.T")._as(t2) : t2; }, - $signature: 2016 + $signature: 2017 }; A.FormState__forceRebuild_closure.prototype = { call$0() { @@ -296041,7 +296495,7 @@ if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, - $signature: 129 + $signature: 130 }; A._FormFieldState_State_RestorationMixin.prototype = { didUpdateWidget$1(oldWidget) { @@ -296388,7 +296842,7 @@ J.add$1$ax(t1, A.ErrorHint$(t5 + " of " + t2 + ", but _dirtyElements only had " + t4 + " entries. This suggests some confusion in the framework internals.")); return t1; }, - $signature: 143 + $signature: 147 }; A.NotifiableElementMixin.prototype = { attachNotificationTree$0() { @@ -296965,28 +297419,28 @@ this.ancestors.push(element); return true; }, - $signature: 126 + $signature: 128 }; A.Element_describeElements_closure.prototype = { call$1(element) { var _null = null; return A.DiagnosticsProperty$("", element, true, B.C__NoDefaultValue, _null, false, _null, _null, B.DiagnosticLevel_3, _null, false, true, true, B.DiagnosticsTreeStyle_8, _null, type$.Element_2); }, - $signature: 2017 + $signature: 2018 }; A.Element_updateChildren_replaceWithNullIfForgotten.prototype = { call$1(child) { var t1 = this.forgottenChildren.contains$1(0, child); return t1 ? null : child; }, - $signature: 2018 + $signature: 2053 }; A.Element_updateChildren_slotFor.prototype = { call$2(newChildIndex, previousChild) { var t1 = this.slots; return t1 != null ? t1[newChildIndex] : new A.IndexedSlot(previousChild, newChildIndex, type$.IndexedSlot_nullable_Element); }, - $signature: 2053 + $signature: 2055 }; A.Element_updateSlotForChild_visit.prototype = { call$1(element) { @@ -297084,14 +297538,14 @@ var t1 = A._setArrayType([], type$.JSArray_DiagnosticsNode); return t1; }, - $signature: 143 + $signature: 147 }; A.ComponentElement_performRebuild_closure0.prototype = { call$0() { var t1 = A._setArrayType([], type$.JSArray_DiagnosticsNode); return t1; }, - $signature: 143 + $signature: 147 }; A.StatelessElement.prototype = { build$0() { @@ -297459,7 +297913,7 @@ call$1(child) { return !this.$this._forgottenChildren.contains$1(0, child); }, - $signature: 126 + $signature: 128 }; A.RenderTreeRootElement.prototype = { attachRenderObject$1(newSlot) { @@ -297566,7 +298020,7 @@ call$0() { return A.TapGestureRecognizer$(this.$this, null); }, - $signature: 772 + $signature: 814 }; A.GestureDetector_build_closure0.prototype = { call$1(instance) { @@ -297583,7 +298037,7 @@ instance.gestureSettings = this.gestureSettings; instance.supportedDevices = null; }, - $signature: 771 + $signature: 813 }; A.GestureDetector_build_closure1.prototype = { call$0() { @@ -297591,7 +298045,7 @@ t2 = A.multitap_DoubleTapGestureRecognizer__defaultButtonAcceptBehavior$closure(); return new A.DoubleTapGestureRecognizer(A.LinkedHashMap_LinkedHashMap$_empty(t1, type$._TapTracker), this.$this, null, t2, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, - $signature: 2058 + $signature: 2060 }; A.GestureDetector_build_closure2.prototype = { call$1(instance) { @@ -297601,13 +298055,13 @@ instance.gestureSettings = this.gestureSettings; instance.supportedDevices = null; }, - $signature: 2060 + $signature: 2061 }; A.GestureDetector_build_closure3.prototype = { call$0() { return A.LongPressGestureRecognizer$(this.$this, null, null); }, - $signature: 528 + $signature: 445 }; A.GestureDetector_build_closure4.prototype = { call$1(instance) { @@ -297617,13 +298071,13 @@ instance.gestureSettings = this.gestureSettings; instance.supportedDevices = null; }, - $signature: 530 + $signature: 618 }; A.GestureDetector_build_closure5.prototype = { call$0() { return A.VerticalDragGestureRecognizer$(this.$this, null); }, - $signature: 295 + $signature: 299 }; A.GestureDetector_build_closure6.prototype = { call$1(instance) { @@ -297638,13 +298092,13 @@ instance.gestureSettings = this.gestureSettings; instance.supportedDevices = null; }, - $signature: 296 + $signature: 305 }; A.GestureDetector_build_closure7.prototype = { call$0() { return A.HorizontalDragGestureRecognizer$(this.$this, null); }, - $signature: 531 + $signature: 617 }; A.GestureDetector_build_closure8.prototype = { call$1(instance) { @@ -297658,13 +298112,13 @@ instance.gestureSettings = this.gestureSettings; instance.supportedDevices = null; }, - $signature: 533 + $signature: 607 }; A.GestureDetector_build_closure9.prototype = { call$0() { return A.PanGestureRecognizer$(this.$this, null); }, - $signature: 242 + $signature: 262 }; A.GestureDetector_build_closure10.prototype = { call$1(instance) { @@ -297678,7 +298132,7 @@ instance.gestureSettings = this.gestureSettings; instance.supportedDevices = null; }, - $signature: 243 + $signature: 258 }; A.GestureDetector_build_closure11.prototype = { call$0() { @@ -297687,7 +298141,7 @@ t3 = A.HashSet_HashSet(t1); return new A.ScaleGestureRecognizer(B.DragStartBehavior_0, B._ScaleState_0, B.Offset_O5r, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.Offset), t2, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.VelocityTracker), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$._PointerPanZoomData), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), t3, this.$this, null, A.recognizer_GestureRecognizer__defaultButtonAcceptBehavior$closure(), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, - $signature: 2095 + $signature: 2096 }; A.GestureDetector_build_closure12.prototype = { call$1(instance) { @@ -297701,13 +298155,13 @@ instance.trackpadScrollToScaleFactor = t1.trackpadScrollToScaleFactor; instance.supportedDevices = null; }, - $signature: 2096 + $signature: 2097 }; A.GestureDetector_build_closure13.prototype = { call$0() { return A.ForcePressGestureRecognizer$(this.$this, null); }, - $signature: 770 + $signature: 812 }; A.GestureDetector_build_closure14.prototype = { call$1(instance) { @@ -297715,7 +298169,7 @@ instance.gestureSettings = this.gestureSettings; instance.supportedDevices = null; }, - $signature: 769 + $signature: 811 }; A.RawGestureDetector.prototype = { createState$0() { @@ -297930,7 +298384,7 @@ if (t1 != null) t1.call$1(new A.DragEndDetails(B.Velocity_Offset_0_0, 0)); }, - $signature: 69 + $signature: 70 }; A._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure0.prototype = { call$1(details) { @@ -297948,7 +298402,7 @@ if (t1 != null) t1.call$1(new A.DragEndDetails(B.Velocity_Offset_0_0, null)); }, - $signature: 69 + $signature: 70 }; A._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure1.prototype = { call$1(details) { @@ -297959,7 +298413,7 @@ if (t1 != null) t1.call$1(details); }, - $signature: 69 + $signature: 70 }; A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure.prototype = { call$1(details) { @@ -297977,7 +298431,7 @@ if (t1 != null) t1.call$1(new A.DragEndDetails(B.Velocity_Offset_0_0, 0)); }, - $signature: 69 + $signature: 70 }; A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure0.prototype = { call$1(details) { @@ -297995,7 +298449,7 @@ if (t1 != null) t1.call$1(new A.DragEndDetails(B.Velocity_Offset_0_0, null)); }, - $signature: 69 + $signature: 70 }; A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure1.prototype = { call$1(details) { @@ -298006,7 +298460,7 @@ if (t1 != null) t1.call$1(details); }, - $signature: 69 + $signature: 70 }; A.HeroFlightDirection.prototype = { _enumToString$0() { @@ -298031,7 +298485,7 @@ else t1.endFlight$0(); }, - $signature: 2118 + $signature: 2120 }; A.Hero__allHeroesFor_visitor.prototype = { call$1(element) { @@ -298363,7 +298817,7 @@ t2 = t2.navigatorSize; return A.Positioned$(t2._dy - t3.bottom, A.IgnorePointer$(new A.FadeTransition(t1._heroOpacity, false, child, _null), true, _null), _null, _null, t3.left, t2._dx - t3.right, t3.top, _null); }, - $signature: 767 + $signature: 810 }; A._HeroFlight__handleAnimationUpdate_delayedPerformAnimationUpdate.prototype = { call$0() { @@ -298587,7 +299041,7 @@ t1 = false; return t1; }, - $signature: 2146 + $signature: 2147 }; A.HeroController__maybeStartHeroTransition_closure.prototype = { call$1(value) { @@ -298597,7 +299051,7 @@ return; _this.$this._startHeroTransition$4(t1, _this.to, _this.flightType, _this.isUserGestureTransition); }, - $signature: 12 + $signature: 11 }; A.HeroController__defaultHeroFlightShuttleBuilder_closure.prototype = { call$2(context, child) { @@ -298608,7 +299062,7 @@ t1 = _this.flightDirection === B.HeroFlightDirection_0 ? new A.EdgeInsetsTween(t1, t2).transform$1(0, t3.get$value(t3)) : new A.EdgeInsetsTween(t2, t1).transform$1(0, t3.get$value(t3)); return A.MediaQuery$(_this.toHero.child, _this.toMediaQueryData.copyWith$1$padding(t1), null); }, - $signature: 567 + $signature: 584 }; A.Icon.prototype = { build$1(context) { @@ -298693,7 +299147,7 @@ call$1(context) { return A.IconTheme$(this.child, A.IconTheme__getInheritedIconThemeData(context).merge$1(this.data), this.key); }, - $signature: 2148 + $signature: 2151 }; A.IconThemeData.prototype = { copyWith$8$color$fill$grade$opacity$opticalSize$shadows$size$weight(color, fill, grade, opacity, opticalSize, shadows, size, weight) { @@ -298947,7 +299401,7 @@ t1.image.dispose$0(); return null; }, - $signature: 12 + $signature: 11 }; A._ImageState__updateSourceStream_closure.prototype = { call$0() { @@ -299153,7 +299607,7 @@ this.$this._updateTween$2(tween, targetValue); return tween; }, - $signature: 766 + $signature: 809 }; A.ImplicitlyAnimatedWidgetState__constructTweens_closure.prototype = { call$3(tween, targetValue, $constructor) { @@ -299170,7 +299624,7 @@ tween = null; return tween; }, - $signature: 766 + $signature: 809 }; A.AnimatedWidgetBaseState.prototype = { initState$0() { @@ -299242,49 +299696,49 @@ call$1(value) { return new A.AlignmentGeometryTween(type$.AlignmentGeometry._as(value), null); }, - $signature: 765 + $signature: 807 }; A._AnimatedContainerState_forEachTween_closure0.prototype = { call$1(value) { return new A.EdgeInsetsGeometryTween(type$.EdgeInsetsGeometry._as(value), null); }, - $signature: 582 + $signature: 564 }; A._AnimatedContainerState_forEachTween_closure1.prototype = { call$1(value) { return new A.DecorationTween(type$.Decoration._as(value), null); }, - $signature: 764 + $signature: 806 }; A._AnimatedContainerState_forEachTween_closure2.prototype = { call$1(value) { return new A.DecorationTween(type$.Decoration._as(value), null); }, - $signature: 764 + $signature: 806 }; A._AnimatedContainerState_forEachTween_closure3.prototype = { call$1(value) { return new A.BoxConstraintsTween(type$.BoxConstraints._as(value), null); }, - $signature: 2181 + $signature: 2184 }; A._AnimatedContainerState_forEachTween_closure4.prototype = { call$1(value) { return new A.EdgeInsetsGeometryTween(type$.EdgeInsetsGeometry._as(value), null); }, - $signature: 582 + $signature: 564 }; A._AnimatedContainerState_forEachTween_closure5.prototype = { call$1(value) { return new A.Matrix4Tween(type$.Matrix4._as(value), null); }, - $signature: 2184 + $signature: 2185 }; A._AnimatedContainerState_forEachTween_closure6.prototype = { call$1(value) { return new A.AlignmentGeometryTween(type$.AlignmentGeometry._as(value), null); }, - $signature: 765 + $signature: 807 }; A.AnimatedPadding.prototype = { createState$0() { @@ -299307,7 +299761,7 @@ call$1(value) { return new A.EdgeInsetsGeometryTween(type$.EdgeInsetsGeometry._as(value), null); }, - $signature: 582 + $signature: 564 }; A.AnimatedPositioned.prototype = { createState$0() { @@ -299390,37 +299844,37 @@ call$1(value) { return new A.Tween(A._asDouble(value), null, type$.Tween_double); }, - $signature: 181 + $signature: 191 }; A._AnimatedPositionedState_forEachTween_closure0.prototype = { call$1(value) { return new A.Tween(A._asDouble(value), null, type$.Tween_double); }, - $signature: 181 + $signature: 191 }; A._AnimatedPositionedState_forEachTween_closure1.prototype = { call$1(value) { return new A.Tween(A._asDouble(value), null, type$.Tween_double); }, - $signature: 181 + $signature: 191 }; A._AnimatedPositionedState_forEachTween_closure2.prototype = { call$1(value) { return new A.Tween(A._asDouble(value), null, type$.Tween_double); }, - $signature: 181 + $signature: 191 }; A._AnimatedPositionedState_forEachTween_closure3.prototype = { call$1(value) { return new A.Tween(A._asDouble(value), null, type$.Tween_double); }, - $signature: 181 + $signature: 191 }; A._AnimatedPositionedState_forEachTween_closure4.prototype = { call$1(value) { return new A.Tween(A._asDouble(value), null, type$.Tween_double); }, - $signature: 181 + $signature: 191 }; A.AnimatedOpacity.prototype = { createState$0() { @@ -299447,7 +299901,7 @@ call$1(value) { return new A.Tween(A._asDouble(value), null, type$.Tween_double); }, - $signature: 181 + $signature: 191 }; A.AnimatedDefaultTextStyle.prototype = { createState$0() { @@ -299473,7 +299927,7 @@ call$1(value) { return new A.TextStyleTween(type$.TextStyle._as(value), null); }, - $signature: 2185 + $signature: 2186 }; A.AnimatedPhysicalModel.prototype = { createState$0() { @@ -299517,25 +299971,25 @@ call$1(value) { return new A.BorderRadiusTween(type$.BorderRadius._as(value), null); }, - $signature: 2186 + $signature: 2211 }; A._AnimatedPhysicalModelState_forEachTween_closure0.prototype = { call$1(value) { return new A.Tween(A._asDouble(value), null, type$.Tween_double); }, - $signature: 181 + $signature: 191 }; A._AnimatedPhysicalModelState_forEachTween_closure1.prototype = { call$1(value) { return new A.ColorTween(type$.Color._as(value), null); }, - $signature: 368 + $signature: 404 }; A._AnimatedPhysicalModelState_forEachTween_closure2.prototype = { call$1(value) { return new A.ColorTween(type$.Color._as(value), null); }, - $signature: 368 + $signature: 404 }; A._ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin.prototype = { dispose$0() { @@ -299665,7 +300119,7 @@ } return true; }, - $signature: 126 + $signature: 128 }; A.CapturedThemes.prototype = {}; A._CaptureAll.prototype = { @@ -300363,14 +300817,14 @@ var t1 = A._setArrayType([], type$.JSArray_DiagnosticsNode); return t1; }, - $signature: 143 + $signature: 147 }; A._LayoutBuilderElement__layout_layoutCallback_closure0.prototype = { call$0() { var t1 = A._setArrayType([], type$.JSArray_DiagnosticsNode); return t1; }, - $signature: 143 + $signature: 147 }; A.RenderConstrainedLayoutBuilder.prototype = { updateCallback$1(value) { @@ -300470,7 +300924,7 @@ call$1(p) { return p.futureValue; }, - $signature: 2212 + $signature: 2213 }; A._loadAll_closure1.prototype = { call$1(values) { @@ -300479,7 +300933,7 @@ t3.$indexSet(0, A.createRuntimeType(A._instanceType(t2.pendingList[i].delegate)._eval$1("LocalizationsDelegate.T")), t1.$index(values, i)); return t3; }, - $signature: 2213 + $signature: 2241 }; A.LocalizationsDelegate.prototype = { toString$0(_) { @@ -300603,7 +301057,7 @@ call$1(value) { return this._box_0.typeToResources = value; }, - $signature: 2241 + $signature: 2243 }; A._LocalizationsState_load_closure0.prototype = { call$1(value) { @@ -300612,7 +301066,7 @@ t1.setState$1(new A._LocalizationsState_load__closure(t1, value, this.locale)); $.RendererBinding__instance.allowFirstFrame$0(); }, - $signature: 2243 + $signature: 2248 }; A._LocalizationsState_load__closure.prototype = { call$0() { @@ -300637,7 +301091,7 @@ } return A.getRuntimeTypeOfDartObject(ancestor.get$widget()) !== B.Type_LookupBoundary_SxG; }, - $signature: 126 + $signature: 128 }; A.LookupBoundary_findRootAncestorStateOfType_closure.prototype = { call$1(ancestor) { @@ -300652,7 +301106,7 @@ this._box_0.target = ancestor; return A.getRuntimeTypeOfDartObject(ancestor.get$widget()) !== B.Type_LookupBoundary_SxG; }, - $signature: 126 + $signature: 128 }; A.LookupBoundary_findAncestorRenderObjectOfType_closure.prototype = { call$1(ancestor) { @@ -300662,7 +301116,7 @@ } return A.getRuntimeTypeOfDartObject(ancestor.get$widget()) !== B.Type_LookupBoundary_SxG; }, - $signature: 126 + $signature: 128 }; A.MagnifierInfo.prototype = { $eq(_, other) { @@ -300693,7 +301147,7 @@ }, "call*": "call$3", $requiredArgCount: 3, - $signature: 2248 + $signature: 2249 }; A.MagnifierController.prototype = { get$shown() { @@ -300812,7 +301266,7 @@ call$1(context) { return new A._CaptureAll(this.capturedThemes._themes, this.builder.call$1(context), null); }, - $signature: 46 + $signature: 44 }; A.MagnifierDecoration.prototype = { $eq(_, other) { @@ -301069,7 +301523,7 @@ call$1(displayFeature) { return this.subScreen.overlaps$1(displayFeature.get$bounds(displayFeature)); }, - $signature: 776 + $signature: 819 }; A.MediaQuery.prototype = { updateShouldNotify$1(oldWidget) { @@ -301171,14 +301625,14 @@ call$1(context) { return A.MediaQuery$(this.child, A.InheritedModel_inheritFrom(context, null, type$.MediaQuery).data.copyWith$1$textScaler(B._LinearTextScaler_1), null); }, - $signature: 763 + $signature: 805 }; A.MediaQuery_withClampedTextScaling_closure.prototype = { call$1(context) { var data = A.InheritedModel_inheritFrom(context, null, type$.MediaQuery).data; return A.MediaQuery$(this.child, data.copyWith$1$textScaler(data.get$textScaler().clamp$2$maxScaleFactor$minScaleFactor(0, this.maxScaleFactor, this.minScaleFactor)), null); }, - $signature: 763 + $signature: 805 }; A.NavigationMode.prototype = { _enumToString$0() { @@ -301711,7 +302165,7 @@ call$1(route) { return route == null; }, - $signature: 2254 + $signature: 2255 }; A._RouteLifecycle.prototype = { _enumToString$0() { @@ -301844,7 +302298,7 @@ call$1(e) { return e.get$mounted(); }, - $signature: 2255 + $signature: 2272 }; A._RouteEntry_dispose_closure0.prototype = { call$0() { @@ -301871,7 +302325,7 @@ call$1(entry) { return entry.route === this.route; }, - $signature: 346 + $signature: 324 }; A._NavigatorObservation.prototype = {}; A._NavigatorPushObservation.prototype = { @@ -302667,7 +303121,7 @@ return; t1.dispatchNotification$1(this.notification); }, - $signature: 12 + $signature: 11 }; A.NavigatorState_restoreState_closure.prototype = { call$1(route) { @@ -302684,7 +303138,7 @@ t1 = null; return A._RouteEntry$(route, B._RouteLifecycle_1, false, t1); }, - $signature: 2396 + $signature: 2397 }; A.NavigatorState__forcedDisposeAllRouteEntries_closure.prototype = { call$1(entry) { @@ -302692,13 +303146,13 @@ entry.route.dispose$0(); return true; }, - $signature: 346 + $signature: 324 }; A.NavigatorState__afterNavigation_closure.prototype = { call$1(object) { return A.S(object); }, - $signature: 464 + $signature: 578 }; A.NavigatorState__cancelActivePointers_closure.prototype = { call$0() { @@ -302715,7 +303169,7 @@ this.context.dispatchNotification$1(B.NavigationNotification_true); return true; }, - $signature: 468 + $signature: 458 }; A._RouteRestorationType.prototype = { _enumToString$0() { @@ -302903,7 +303357,7 @@ call$2(key, value) { return new A.MapEntry(A._asStringQ(key), A.List_List$from(type$.List_dynamic._as(value), true, type$.Object), type$.MapEntry_of_nullable_String_and_List_Object); }, - $signature: 2397 + $signature: 2398 }; A.NavigationNotification.prototype = { toString$0(_) { @@ -302915,7 +303369,7 @@ if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, - $signature: 129 + $signature: 130 }; A._NavigatorState_State_TickerProviderStateMixin.prototype = { activate$0() { @@ -302995,7 +303449,7 @@ t1.setState$1(new A._NavigatorPopHandlerState_build__closure(t1, nextCanPop)); return false; }, - $signature: 468 + $signature: 458 }; A._NavigatorPopHandlerState_build__closure.prototype = { call$0() { @@ -303393,7 +303847,7 @@ } return t1; }, - $signature: 2398 + $signature: 2425 }; A.__RenderOverflowBar_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1(owner) { @@ -303495,7 +303949,7 @@ call$1(duration) { this.overlay._markDirty$0(); }, - $signature: 12 + $signature: 11 }; A._OverlayEntryWidget.prototype = { createState$0() { @@ -303872,7 +304326,7 @@ call$2(result, position) { return this.localChild.hitTest$2$position(result, position); }, - $signature: 72 + $signature: 71 }; A._TheaterParentData.prototype = { visitChildrenOfOverlayEntry$1(visitor) { @@ -304269,25 +304723,25 @@ call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_0, this.height, child.get$computeMinIntrinsicWidth()); }, - $signature: 114 + $signature: 113 }; A._RenderTheater_computeMaxIntrinsicWidth_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_1, this.height, child.get$computeMaxIntrinsicWidth()); }, - $signature: 114 + $signature: 113 }; A._RenderTheater_computeMinIntrinsicHeight_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_2, this.width, child.get$computeMinIntrinsicHeight()); }, - $signature: 114 + $signature: 113 }; A._RenderTheater_computeMaxIntrinsicHeight_closure.prototype = { call$1(child) { return child._computeIntrinsicDimension$3(B._IntrinsicDimension_3, this.width, child.get$computeMaxIntrinsicHeight()); }, - $signature: 114 + $signature: 113 }; A._RenderTheater_debugDescribeChildren_closure.prototype = { call$1(renderObject) { @@ -304304,7 +304758,7 @@ _this.offstageChildren.push(A.DiagnosticableTreeNode$("offstage " + t1 + " - " + t4, B.DiagnosticsTreeStyle_2, renderObject)); ++t3.subcount; }, - $signature: 63 + $signature: 67 }; A.OverlayPortalController.prototype = { show$0(_) { @@ -304422,7 +304876,7 @@ t1.toString; return A._RenderTheaterMarker_of(t1, this.targetRootOverlay); }, - $signature: 2425 + $signature: 2426 }; A._OverlayPortalState_show_closure.prototype = { call$0() { @@ -304667,7 +305121,7 @@ call$1(i) { return this.child; }, - $signature: 2426 + $signature: 2427 }; A._RenderDeferredLayoutBox_layout_closure.prototype = { call$1(constraints) { @@ -304675,7 +305129,7 @@ t1._overlay$_needsLayout = true; t1.super$RenderBox$markNeedsLayout(); }, - $signature: 2427 + $signature: 2428 }; A._RenderLayoutSurrogateProxyBox.prototype = { redepthChildren$0() { @@ -305283,7 +305737,7 @@ transform = A.Transform$(alignment, t1.child, t4, t2, true); return A.ClipRect$(transform, !t3 && viewportDimension !== _this._box_0.mainAxisSize ? t1.clipBehavior : B.Clip_0, null); }, - $signature: 2428 + $signature: 2430 }; A._StretchState.prototype = { _enumToString$0() { @@ -305455,7 +305909,7 @@ call$1(element) { return A.PageStorageBucket__maybeAddKey(element, this.keys); }, - $signature: 126 + $signature: 128 }; A.PageStorage.prototype = { build$1(context) { @@ -305816,14 +306270,14 @@ } return false; }, - $signature: 171 + $signature: 173 }; A._PageViewState_build_closure0.prototype = { call$2(context, position) { var t1 = this.$this._widget; return A.Viewport$(0, this.axisDirection, 0, B.CacheExtentStyle_1, null, t1.clipBehavior, position, A._setArrayType([new A.SliverFillViewport(t1.controller.viewportFraction, true, t1.childrenDelegate, null)], type$.JSArray_Widget)); }, - $signature: 2430 + $signature: 2431 }; A.PageRoute.prototype = { get$opaque() { @@ -306002,7 +306456,7 @@ A._PlatformViewLinkState_build_closure.prototype = { call$2(size, position) { }, - $signature: 2431 + $signature: 2432 }; A._PlatformViewLinkState__onPlatformViewCreated_closure.prototype = { call$0() { @@ -306037,7 +306491,7 @@ t3 = A.MatrixUtils_transformPoint(t1.getTransformTo$1(0, null), B.Offset_0_0); t1.onLayout.call$2(t2, t3); }, - $signature: 12 + $signature: 11 }; A._PlatformViewPlaceHolder.prototype = { createRenderObject$1(context) { @@ -306054,7 +306508,7 @@ call$1(_) { this._this.dispose$0(); }, - $signature: 12 + $signature: 11 }; A.PopScope.prototype = { createState$0() { @@ -306605,7 +307059,7 @@ call$1(duration) { this.$this._dragStartTransitionComplete = true; }, - $signature: 12 + $signature: 11 }; A.SliverReorderableListState__dragUpdate_closure.prototype = { call$0() { @@ -306684,7 +307138,7 @@ if (startIndex !== endIndex) this.$this._widget.onReorder$2(startIndex, endIndex); }, - $signature: 232 + $signature: 223 }; A.SliverReorderableListState__wrapWithSemantics_moveToStart.prototype = { call$0() { @@ -306877,7 +307331,7 @@ } return null; }, - $signature: 190 + $signature: 165 }; A.ReorderableDelayedDragStartListener.prototype = { createRecognizer$0() { @@ -306989,7 +307443,7 @@ t1 = t1.size; return A.Positioned$(_null, new A.SizedBox(t1._dx, t1._dy, child, _null), _null, _null, effectivePosition._dx, _null, effectivePosition._dy, _null); }, - $signature: 767 + $signature: 810 }; A._ReorderableItemGlobalKey.prototype = { $eq(_, other) { @@ -307119,7 +307573,7 @@ } $.RendererBinding__instance.allowFirstFrame$0(); }, - $signature: 2462 + $signature: 2463 }; A._RootRestorationScopeState__loadRootBucketIfNecessary__closure.prototype = { call$0() { @@ -307285,7 +307739,7 @@ if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, - $signature: 129 + $signature: 130 }; A.__RestorationScopeState_State_RestorationMixin.prototype = { didUpdateWidget$1(oldWidget) { @@ -307489,7 +307943,7 @@ if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, - $signature: 129 + $signature: 130 }; A.RouteInformation.prototype = { get$uri() { @@ -307757,7 +308211,7 @@ t1._router$_rebuild$0(); return new A.SynchronousFuture(data, type$.SynchronousFuture_bool); }, - $signature: 2464 + $signature: 2471 }; A._RouterState__rebuild_closure.prototype = { call$0() { @@ -308148,7 +308602,7 @@ if (t1.get$isActive()) t1.changedInternalState$0(); }, - $signature: 12 + $signature: 11 }; A._DismissModalAction.prototype = { isEnabled$1(_, intent) { @@ -308258,7 +308712,7 @@ child.toString; return new A.RestorationScope(child, t1, null); }, - $signature: 2471 + $signature: 2472 }; A._ModalScopeState_build_closure0.prototype = { call$1(context) { @@ -308272,7 +308726,7 @@ t4 = t2._routes$_page = new A.RepaintBoundary(new A.Builder(new A._ModalScopeState_build__closure(t2), _null), t2._widget.route._subtreeKey); return A.Actions$(t1, A.PrimaryScrollController$(A.FocusScope$(false, new A.RepaintBoundary(A.AnimatedBuilder$(t3, new A._ModalScopeState_build__closure0(t2), t4), _null), _null, _null, t2.focusScopeNode), t2.primaryScrollController)); }, - $signature: 2472 + $signature: 2473 }; A._ModalScopeState_build__closure0.prototype = { call$2(context, child) { @@ -308289,7 +308743,7 @@ t5 = new A.ValueNotifier(false, $.$get$ChangeNotifier__emptyListeners(), type$.ValueNotifier_bool); return t2.buildTransitions$4(context, t3, t4, A.AnimatedBuilder$(t5, new A._ModalScopeState_build___closure(t1), child)); }, - $signature: 225 + $signature: 212 }; A._ModalScopeState_build___closure.prototype = { call$2(context, child) { @@ -308298,7 +308752,7 @@ t1.focusScopeNode.set$canRequestFocus(!ignoreEvents); return A.IgnorePointer$(child, ignoreEvents, null); }, - $signature: 2473 + $signature: 2497 }; A._ModalScopeState_build__closure.prototype = { call$1(context) { @@ -308310,7 +308764,7 @@ t3.toString; return t1.buildPage$3(context, t2, t3); }, - $signature: 46 + $signature: 44 }; A.ModalRoute.prototype = { setState$1(fn) { @@ -308551,7 +309005,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1._change_notifier$_value; }, - $signature: 2497 + $signature: 2498 }; A.ModalRoute__handlePopEntryChange_closure.prototype = { call$1(timeStamp) { @@ -308564,7 +309018,7 @@ if (t1 != null) t1.dispatchNotification$1(this.notification); }, - $signature: 12 + $signature: 11 }; A.ModalRoute_changedInternalState_closure.prototype = { call$0() { @@ -309012,7 +309466,7 @@ var _this = this; A.scheduleMicrotask(new A.ScrollAwareImageProvider_resolveStreamForKey__closure(_this.$this, _this.configuration, _this.stream, _this.key, _this.handleError)); }, - $signature: 12 + $signature: 11 }; A.ScrollAwareImageProvider_resolveStreamForKey__closure.prototype = { call$0() { @@ -309042,6 +309496,9 @@ copyWith$1$overscroll(overscroll) { return this.copyWith$6$dragDevices$overscroll$physics$platform$pointerAxisModifiers$scrollbars(null, overscroll, null, null, null, null); }, + copyWith$3$overscroll$physics$scrollbars(overscroll, physics, $scrollbars) { + return this.copyWith$6$dragDevices$overscroll$physics$platform$pointerAxisModifiers$scrollbars(null, overscroll, physics, null, null, $scrollbars); + }, getPlatform$1(context) { return A.defaultTargetPlatform(); }, @@ -309113,7 +309570,7 @@ call$1($event) { return A.IOSScrollViewFlingVelocityTracker$($event.get$kind($event)); }, - $signature: 2498 + $signature: 2499 }; A.ScrollBehavior_velocityTrackerBuilder_closure0.prototype = { call$1($event) { @@ -309123,7 +309580,7 @@ $.$get$Stopwatch__frequency(); return new A.MacOSScrollViewFlingVelocityTracker(t3, t1, new A.Stopwatch(), A.List_List$filled(20, null, false, t2)); }, - $signature: 2499 + $signature: 2503 }; A.ScrollBehavior_velocityTrackerBuilder_closure1.prototype = { call$1($event) { @@ -309131,7 +309588,7 @@ $.$get$Stopwatch__frequency(); return new A.VelocityTracker(t1, new A.Stopwatch(), A.List_List$filled(20, null, false, type$.nullable__PointAtTime)); }, - $signature: 761 + $signature: 803 }; A._WrappedScrollBehavior.prototype = { get$dragDevices() { @@ -309174,6 +309631,9 @@ copyWith$1$overscroll(overscroll) { return this.copyWith$6$dragDevices$overscroll$physics$platform$pointerAxisModifiers$scrollbars(null, overscroll, null, null, null, null); }, + copyWith$3$overscroll$physics$scrollbars(overscroll, physics, $scrollbars) { + return this.copyWith$6$dragDevices$overscroll$physics$platform$pointerAxisModifiers$scrollbars(null, overscroll, physics, null, null, $scrollbars); + }, getPlatform$1(context) { var t1 = this.platform; return t1 == null ? this.delegate.getPlatform$1(context) : t1; @@ -309722,21 +310182,21 @@ t1 = this.$this; return A._setArrayType([A.DiagnosticsProperty$("The " + A.getRuntimeTypeOfDartObject(t1).toString$0(0) + " sending notification was", t1, true, B.C__NoDefaultValue, _null, false, _null, _null, B.DiagnosticLevel_3, _null, false, true, true, B.DiagnosticsTreeStyle_9, _null, type$.ScrollNotificationObserverState)], type$.JSArray_DiagnosticsNode); }, - $signature: 143 + $signature: 147 }; A.ScrollNotificationObserverState_build_closure.prototype = { call$1(notification) { this.$this._notifyListeners$1(notification.asScrollUpdate$0()); return false; }, - $signature: 412 + $signature: 368 }; A.ScrollNotificationObserverState_build_closure0.prototype = { call$1(notification) { this.$this._notifyListeners$1(notification); return false; }, - $signature: 171 + $signature: 173 }; A.ScrollDecelerationRate.prototype = { _enumToString$0() { @@ -310613,7 +311073,7 @@ call$1(timeStamp) { this.$this._impliedVelocity = 0; }, - $signature: 12 + $signature: 11 }; A.ScrollMetricsNotification.prototype = { asScrollUpdate$0() { @@ -310881,7 +311341,7 @@ call$2(context, offset) { return this.$this.buildViewport$4(context, offset, this.axisDirection, this.slivers); }, - $signature: 2518 + $signature: 2519 }; A.ScrollView_build_closure0.prototype = { call$1(notification) { @@ -310890,7 +311350,7 @@ focusScope.unfocus$0(); return false; }, - $signature: 2519 + $signature: 2521 }; A.CustomScrollView.prototype = { buildSlivers$1(context) { @@ -310928,13 +311388,13 @@ return this.itemBuilder.call$2(context, itemIndex); return this.separatorBuilder.call$2(context, itemIndex); }, - $signature: 2521 + $signature: 2522 }; A.ListView$separated_closure0.prototype = { call$2(widget, index) { return (index & 1) === 0 ? B.JSInt_methods._tdivFast$1(index, 2) : null; }, - $signature: 2522 + $signature: 2526 }; A.GridView.prototype = { buildChildLayout$1(context) { @@ -310946,7 +311406,7 @@ if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, - $signature: 129 + $signature: 130 }; A.Scrollable.prototype = { createState$0() { @@ -310962,7 +311422,7 @@ call$1(_) { return null; }, - $signature: 2526 + $signature: 2532 }; A._ScrollableScope.prototype = { updateShouldNotify$1(old) { @@ -311392,7 +311852,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return A.VerticalDragGestureRecognizer$(null, t1.get$dragDevices()); }, - $signature: 295 + $signature: 299 }; A.ScrollableState_setCanDrag_closure0.prototype = { call$1(instance) { @@ -311418,7 +311878,7 @@ instance.gestureSettings = t1._mediaQueryGestureSettings; instance.supportedDevices = t1.__ScrollableState__configuration_A.get$dragDevices(); }, - $signature: 296 + $signature: 305 }; A.ScrollableState_setCanDrag_closure1.prototype = { call$0() { @@ -311426,7 +311886,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return A.HorizontalDragGestureRecognizer$(null, t1.get$dragDevices()); }, - $signature: 531 + $signature: 617 }; A.ScrollableState_setCanDrag_closure2.prototype = { call$1(instance) { @@ -311452,7 +311912,7 @@ instance.gestureSettings = t1._mediaQueryGestureSettings; instance.supportedDevices = t1.__ScrollableState__configuration_A.get$dragDevices(); }, - $signature: 533 + $signature: 607 }; A._ScrollableSelectionHandler.prototype = { createState$0() { @@ -311802,19 +312262,19 @@ t1._scheduledLayoutChange = false; t1._updateSelectionGeometry$0(); }, - $signature: 12 + $signature: 11 }; A._ScrollableSelectionContainerDelegate_didChangeSelectables_closure.prototype = { call$2(key, value) { return !this.selectableSet.contains$1(0, key); }, - $signature: 760 + $signature: 802 }; A._ScrollableSelectionContainerDelegate_didChangeSelectables_closure0.prototype = { call$2(key, value) { return !this.selectableSet.contains$1(0, key); }, - $signature: 760 + $signature: 802 }; A._ScrollSemantics.prototype = { createRenderObject$1(context) { @@ -312025,7 +312485,7 @@ if (value != null) this.description.push(prefix + value.toString$0(0)); }, - $signature: 759 + $signature: 801 }; A.EdgeDraggingAutoScroller.prototype = { _offsetExtent$2(offset, scrollDirection) { @@ -312864,7 +313324,7 @@ t1 = false; return t1; }, - $signature: 758 + $signature: 800 }; A.RawScrollbar.prototype = { createState$0() { @@ -313428,7 +313888,7 @@ t5 = A.long_press_LongPressGestureRecognizer__defaultButtonAcceptBehavior$closure(); return new A._ThumbPressGestureRecognizer(t1._scrollbarPainterKey, t2, null, B.GestureRecognizerState_0, A.LinkedHashMap_LinkedHashMap$_empty(t3, type$.GestureArenaEntry), t4, t1, null, t5, A.LinkedHashMap_LinkedHashMap$_empty(t3, type$.PointerDeviceKind)); }, - $signature: 2538 + $signature: 2539 }; A.RawScrollbarState__gestures_closure0.prototype = { call$1(instance) { @@ -313438,19 +313898,19 @@ instance.onLongPressMoveUpdate = new A.RawScrollbarState__gestures__closure0(t1); instance.onLongPressEnd = new A.RawScrollbarState__gestures__closure1(t1); }, - $signature: 2539 + $signature: 2540 }; A.RawScrollbarState__gestures__closure.prototype = { call$1(details) { return this.$this.handleThumbPressStart$1(details.localPosition); }, - $signature: 233 + $signature: 225 }; A.RawScrollbarState__gestures__closure0.prototype = { call$1(details) { return this.$this.handleThumbPressUpdate$1(details.localPosition); }, - $signature: 307 + $signature: 313 }; A.RawScrollbarState__gestures__closure1.prototype = { call$1(details) { @@ -313465,13 +313925,13 @@ t3 = A.HashSet_HashSet(t2); return new A._TrackTapGestureRecognizer(t1._scrollbarPainterKey, B.Duration_100000, 18, B.GestureRecognizerState_0, A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.GestureArenaEntry), t3, t1, null, A.recognizer_GestureRecognizer__defaultButtonAcceptBehavior$closure(), A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.PointerDeviceKind)); }, - $signature: 2541 + $signature: 2542 }; A.RawScrollbarState__gestures_closure2.prototype = { call$1(instance) { instance.onTapDown = this.$this.get$_handleTrackTapDown(); }, - $signature: 2542 + $signature: 2543 }; A.RawScrollbarState_build_closure.prototype = { call$1($event) { @@ -313509,7 +313969,7 @@ break; } }, - $signature: 247 + $signature: 240 }; A._ThumbPressGestureRecognizer.prototype = { isPointerAllowed$1($event) { @@ -314152,7 +314612,7 @@ $defaultValues() { return [null]; }, - $signature: 775 + $signature: 818 }; A.MultiSelectableSelectionContainerDelegate_getSelectionGeometry_closure.prototype = { call$1(selectionRect) { @@ -314167,37 +314627,37 @@ return t1.intersect$1(localRect); return localRect; }, - $signature: 2547 + $signature: 2551 }; A.MultiSelectableSelectionContainerDelegate_getSelectionGeometry_closure0.prototype = { call$1(selectionRect) { return selectionRect.get$isFinite(selectionRect) && !selectionRect.get$isEmpty(selectionRect); }, - $signature: 2551 + $signature: 2554 }; A.MultiSelectableSelectionContainerDelegate__flushInactiveSelections_closure.prototype = { call$1(target) { return target !== this.$this.selectables[this.skipIndex]; }, - $signature: 757 + $signature: 799 }; A.MultiSelectableSelectionContainerDelegate__flushInactiveSelections_closure0.prototype = { call$1(target) { return this.$this.dispatchSelectionEventToChild$2(target, B.ClearSelectionEvent_SelectionEventType_2); }, - $signature: 246 + $signature: 248 }; A.MultiSelectableSelectionContainerDelegate_handleSelectWord_closure.prototype = { call$1(target) { return target !== this.$this.selectables[this.index]; }, - $signature: 757 + $signature: 799 }; A.MultiSelectableSelectionContainerDelegate_handleSelectWord_closure0.prototype = { call$1(target) { return this.$this.dispatchSelectionEventToChild$2(target, B.ClearSelectionEvent_SelectionEventType_2); }, - $signature: 246 + $signature: 248 }; A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure.prototype = { call$0() { @@ -314474,7 +314934,7 @@ var t1 = $.$get$LogicalKeySet__unmapSynonyms().$index(0, key); return t1 == null ? A._setArrayType([key], type$.JSArray_LogicalKeyboardKey) : t1; }, - $signature: 2555 + $signature: 2556 }; A.SingleActivator.prototype = { get$triggers() { @@ -314579,13 +315039,13 @@ for (; t1.moveNext$0();) J.add$1$ax(t2.putIfAbsent$2(0, t1.get$current(t1), new A.ShortcutManager__indexShortcuts__closure()), new A._ActivatorIntentPair(activator, intent)); }, - $signature: 2556 + $signature: 2557 }; A.ShortcutManager__indexShortcuts__closure.prototype = { call$0() { return A._setArrayType([], type$.JSArray__ActivatorIntentPair); }, - $signature: 2557 + $signature: 2563 }; A.ShortcutManager_handleKeypress_closure.prototype = { call$0() { @@ -314597,7 +315057,7 @@ call$0() { return this._0_0._1; }, - $signature: 2563 + $signature: 2566 }; A.Shortcuts.prototype = { get$shortcuts() { @@ -314686,7 +315146,7 @@ result = B.KeyEventResult_0; return result; }, - $signature: 238 + $signature: 214 }; A.ShortcutRegistry.prototype = { dispose$0() { @@ -314763,7 +315223,7 @@ call$2(context, offset) { return new A._SingleChildViewport(this.axisDirection, offset, B.Clip_1, this._box_0.contents, null); }, - $signature: 2566 + $signature: 2569 }; A._SingleChildViewport.prototype = { createRenderObject$1(context) { @@ -315098,13 +315558,13 @@ t1.toString; context.paintChild$2(t1, offset.$add(0, this.paintOffset)); }, - $signature: 90 + $signature: 91 }; A._RenderSingleChildViewport_hitTestChildren_closure.prototype = { call$2(result, transformed) { return this.$this.RenderObjectWithChildMixin__child.hitTest$2$position(result, transformed); }, - $signature: 72 + $signature: 71 }; A.__RenderSingleChildViewport_RenderBox_RenderObjectWithChildMixin.prototype = { attach$1(owner) { @@ -315374,7 +315834,7 @@ t2.remove$1(0, index); } }, - $signature: 75 + $signature: 76 }; A.SliverMultiBoxAdaptorElement_performRebuild_closure.prototype = { call$0() { @@ -315386,7 +315846,7 @@ call$0() { return this.$this._childElements.$index(0, this.index); }, - $signature: 2570 + $signature: 2571 }; A.SliverMultiBoxAdaptorElement_createChild_closure.prototype = { call$0() { @@ -316054,13 +316514,13 @@ call$1(row) { return row.decoration != null; }, - $signature: 2571 + $signature: 2574 }; A.Table_closure0.prototype = { call$1(row) { return row.decoration; }, - $signature: 2574 + $signature: 2576 }; A._TableElement.prototype = { get$renderObject() { @@ -316169,32 +316629,32 @@ t4 = A._arrayInstanceType(t3)._eval$1("MappedListIterable<1,Element0>"); return new A._TableElementRow(row.key, A.List_List$of(new A.MappedListIterable(t3, new A._TableElement_mount__closure(t1, t2, this.$this), t4), false, t4._eval$1("ListIterable.E"))); }, - $signature: 2576 + $signature: 2577 }; A._TableElement_mount__closure.prototype = { call$1(child) { return this.$this.inflateWidget$2(child, new A._TableSlot(this._box_0.columnIndex++, this._box_1.rowIndex)); }, - $signature: 2577 + $signature: 2578 }; A._TableElement_update_closure.prototype = { call$1(row) { return row.key == null; }, - $signature: 2578 + $signature: 2579 }; A._TableElement_update_closure0.prototype = { call$1(list) { return !this.taken.contains$1(0, list); }, - $signature: 2579 + $signature: 2581 }; A._TableElement__updateRenderObjectChildren_closure.prototype = { call$1(row) { var t1 = row.children; return new A.MappedListIterable(t1, new A._TableElement__updateRenderObjectChildren__closure(), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,RenderBox>")); }, - $signature: 2581 + $signature: 2584 }; A._TableElement__updateRenderObjectChildren__closure.prototype = { call$1(child) { @@ -316202,13 +316662,13 @@ t1.toString; return type$.RenderBox._as(t1); }, - $signature: 2584 + $signature: 2585 }; A._TableElement_visitChildren_closure.prototype = { call$1(row) { return row.children; }, - $signature: 2585 + $signature: 2586 }; A.TableCell.prototype = { applyParentData$1(renderObject) { @@ -316501,13 +316961,13 @@ call$0() { return this._0_0._0; }, - $signature: 502 + $signature: 451 }; A.Text_build_closure1.prototype = { call$0() { return this._0_0._1; }, - $signature: 376 + $signature: 395 }; A.Text_build_closure0.prototype = { call$0() { @@ -317110,21 +317570,21 @@ call$1(_) { return this.builtMagnifier; }, - $signature: 46 + $signature: 44 }; A.SelectionOverlay_showToolbar_closure.prototype = { call$1(context) { var t1 = A.MatrixUtils_transformPoint(this.renderBox.getTransformTo$1(0, null), B.Offset_0_0); return new A._SelectionToolbarWrapper(this.contextMenuBuilder.call$1(context), new A.Offset(-t1._dx, -t1._dy), this.$this.toolbarLayerLink, null, null); }, - $signature: 756 + $signature: 798 }; A.SelectionOverlay_showSpellCheckSuggestionsToolbar_closure.prototype = { call$1(context) { var t1 = A.MatrixUtils_transformPoint(this.renderBox.getTransformTo$1(0, null), B.Offset_0_0); return new A._SelectionToolbarWrapper(this.builder.call$1(context), new A.Offset(-t1._dx, -t1._dy), this.$this.toolbarLayerLink, null, null); }, - $signature: 756 + $signature: 798 }; A.SelectionOverlay_markNeedsBuild_closure.prototype = { call$1(duration) { @@ -317150,14 +317610,14 @@ t1.markNeedsBuild$0(); } }, - $signature: 12 + $signature: 11 }; A.SelectionOverlay__buildToolbar_closure.prototype = { call$1(context) { this.$this.selectionControls.toString; return B.SizedBox_0_0_null_null; }, - $signature: 46 + $signature: 44 }; A._SelectionToolbarWrapper.prototype = { createState$0() { @@ -317297,7 +317757,7 @@ call$0() { return A.PanGestureRecognizer$(this.$this, A.LinkedHashSet_LinkedHashSet$_literal([B.PointerDeviceKind_0, B.PointerDeviceKind_2, B.PointerDeviceKind_5], type$.PointerDeviceKind)); }, - $signature: 242 + $signature: 262 }; A._SelectionHandleOverlayState_build_closure0.prototype = { call$1(instance) { @@ -317307,7 +317767,7 @@ instance.onUpdate = t1.onSelectionHandleDragUpdate; instance.onEnd = t1.onSelectionHandleDragEnd; }, - $signature: 243 + $signature: 258 }; A.TextSelectionGestureDetectorBuilder.prototype = { _showMagnifierIfSupportedByPlatform$1(positionToShow) { @@ -318338,7 +318798,7 @@ call$0() { return A.TapGestureRecognizer$(this.$this, null); }, - $signature: 772 + $signature: 814 }; A._TextSelectionGestureDetectorState_build_closure0.prototype = { call$1(instance) { @@ -318346,13 +318806,13 @@ instance.onSecondaryTap = t1.onSecondaryTap; instance.onSecondaryTapDown = t1.onSecondaryTapDown; }, - $signature: 771 + $signature: 813 }; A._TextSelectionGestureDetectorState_build_closure1.prototype = { call$0() { return A.LongPressGestureRecognizer$(this.$this, null, A.LinkedHashSet_LinkedHashSet$_literal([B.PointerDeviceKind_0], type$.PointerDeviceKind)); }, - $signature: 528 + $signature: 445 }; A._TextSelectionGestureDetectorState_build_closure2.prototype = { call$1(instance) { @@ -318361,7 +318821,7 @@ instance.onLongPressMoveUpdate = t1.get$_handleLongPressMoveUpdate(); instance.onLongPressEnd = t1.get$_handleLongPressEnd(); }, - $signature: 530 + $signature: 618 }; A._TextSelectionGestureDetectorState_build_closure3.prototype = { call$0() { @@ -318370,7 +318830,7 @@ t2 = A.HashSet_HashSet(t1); return new A.TapAndHorizontalDragGestureRecognizer(B.DragStartBehavior_1, B._DragState_00, A.LinkedHashSet_LinkedHashSet$_empty(t1), _null, _null, 0, _null, _null, _null, _null, _null, _null, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), t2, this.$this, _null, A.recognizer_GestureRecognizer__defaultButtonAcceptBehavior$closure(), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, - $signature: 2598 + $signature: 2599 }; A._TextSelectionGestureDetectorState_build_closure4.prototype = { call$1(instance) { @@ -318386,7 +318846,7 @@ instance.onTapUp = t1.get$_text_selection$_handleTapUp(); instance.onCancel = t1.get$_text_selection$_handleTapCancel(); }, - $signature: 2599 + $signature: 2604 }; A._TextSelectionGestureDetectorState_build_closure5.prototype = { call$0() { @@ -318395,7 +318855,7 @@ t2 = A.HashSet_HashSet(t1); return new A.TapAndPanGestureRecognizer(B.DragStartBehavior_1, B._DragState_00, A.LinkedHashSet_LinkedHashSet$_empty(t1), _null, _null, 0, _null, _null, _null, _null, _null, _null, A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.GestureArenaEntry), t2, this.$this, _null, A.recognizer_GestureRecognizer__defaultButtonAcceptBehavior$closure(), A.LinkedHashMap_LinkedHashMap$_empty(t1, type$.PointerDeviceKind)); }, - $signature: 2604 + $signature: 2605 }; A._TextSelectionGestureDetectorState_build_closure6.prototype = { call$1(instance) { @@ -318411,13 +318871,13 @@ instance.onTapUp = t1.get$_text_selection$_handleTapUp(); instance.onCancel = t1.get$_text_selection$_handleTapCancel(); }, - $signature: 2605 + $signature: 2606 }; A._TextSelectionGestureDetectorState_build_closure7.prototype = { call$0() { return A.ForcePressGestureRecognizer$(this.$this, null); }, - $signature: 770 + $signature: 812 }; A._TextSelectionGestureDetectorState_build_closure8.prototype = { call$1(instance) { @@ -318426,7 +318886,7 @@ instance.onStart = t2.onForcePressStart != null ? t1.get$_forcePressStarted() : null; instance.onEnd = t2.onForcePressEnd != null ? t1.get$_forcePressEnded() : null; }, - $signature: 769 + $signature: 811 }; A.ClipboardStatusNotifier.prototype = { addListener$1(_, listener) { @@ -319139,7 +319599,7 @@ t2 = t1.view; return new A._ViewScope(t2, new A._PipelineOwnerScope(owner, new A._MediaQueryFromView(t2, t1.child, null), null), null); }, - $signature: 2611 + $signature: 2613 }; A._RawView.prototype = { createElement$0(_) { @@ -319422,7 +319882,7 @@ this._box_0.ancestorContext = $parent; return false; }, - $signature: 126 + $signature: 128 }; A._VisibilityScope.prototype = { updateShouldNotify$1(old) { @@ -319567,7 +320027,7 @@ _this.fontSizeStack.pop(); return true; }, - $signature: 312 + $signature: 300 }; A._WidgetSpanParentData.prototype = { applyParentData$1(renderObject) { @@ -319698,13 +320158,13 @@ call$2(context, offset) { return context.paintChild$2(this.child, offset); }, - $signature: 90 + $signature: 91 }; A._RenderScaledInlineWidget_hitTestChildren_closure.prototype = { call$2(result, transformedOffset) { return this.child.hitTest$2$position(result, transformedOffset); }, - $signature: 72 + $signature: 71 }; A.__RenderScaledInlineWidget_RenderBox_RenderObjectWithChildMixin.prototype = { attach$1(owner) { @@ -319798,7 +320258,7 @@ t3 = false; return t2.itemBuilder$3(color, t3, new A._BlockPickerState_build__closure(t1, color)); }, - $signature: 2613 + $signature: 2619 }; A._BlockPickerState_build__closure.prototype = { call$0() { @@ -320092,7 +320552,7 @@ t1.toString; return new A.SynchronousFuture(t1, type$.SynchronousFuture_CupertinoLocalizations); }, - $signature: 2619 + $signature: 2623 }; A._GlobalCupertinoLocalizationsDelegate_load_closure_loadFormats.prototype = { call$1(locale) { @@ -320106,7 +320566,7 @@ _this.singleDigitSecondFormat.__late_helper$_value = A.DateFormat$s(locale); _this.decimalFormat.__late_helper$_value = A.NumberFormat_NumberFormat$decimalPattern(locale); }, - $signature: 99 + $signature: 100 }; A.CupertinoLocalizationAf.prototype = { get$copyButtonLabel() { @@ -342641,7 +343101,7 @@ t1.toString; return new A.SynchronousFuture(t1, type$.SynchronousFuture_MaterialLocalizations); }, - $signature: 2623 + $signature: 2624 }; A.loadDateIntlDataIfNotLoaded_closure.prototype = { call$2(locale, symbols) { @@ -342661,7 +343121,7 @@ J.$indexSet$ax($.$get$_dateTimeSymbols(), t2, symbols); J.$indexSet$ax($.$get$dateTimePatterns(), t2, t1); }, - $signature: 2624 + $signature: 2629 }; A.GlobalWidgetsLocalizations.prototype = {$isWidgetsLocalizations: 1, get$textDirection() { @@ -342688,7 +343148,7 @@ t1.toString; return new A.SynchronousFuture(t1, type$.SynchronousFuture_WidgetsLocalizations); }, - $signature: 2629 + $signature: 2633 }; A.StoreProvider.prototype = { updateShouldNotify$1(oldWidget) { @@ -342886,7 +343346,7 @@ call$1(child) { return new A.Flexible(1, B.FlexFit_1, child, null); }, - $signature: 4269 + $signature: 2637 }; A.SlidableAutoCloseBehaviorInteractor.prototype = { build$1(context) { @@ -342912,7 +343372,7 @@ call$1(notification) { notification.get$groupTag(); }, - $signature: 2637 + $signature: 2643 }; A.SlidableAutoCloseNotificationSender.prototype = { build$1(context) { @@ -342980,7 +343440,7 @@ call$1(_) { this.$this.dispatchSlidableAutoCloseBarrierNotification$1$enabled(false); }, - $signature: 12 + $signature: 11 }; A.SlidableAutoCloseBarrierBehaviorListener.prototype = { createState$0() { @@ -342998,7 +343458,7 @@ this.$this._widget.toString; notification.get$groupTag(); }, - $signature: 2643 + $signature: 2647 }; A._SlidableNotificationSender.prototype = { createState$0() { @@ -343430,7 +343890,7 @@ t3.toString; t1.totalFlex = t2 + t3; }, - $signature: 63 + $signature: 67 }; A._RenderFlexEntranceTransition_performLayout_closure.prototype = { call$1(child) { @@ -343464,13 +343924,13 @@ t1.updateChildOffsets$1(child); t2.totalMainAxisExtent = t2.totalMainAxisExtent + mainAxisExtent; }, - $signature: 63 + $signature: 67 }; A._RenderFlexEntranceTransition_hitTestChildren_closure.prototype = { call$2(result, transformed) { return this._box_0.child.hitTest$2$position(result, transformed); }, - $signature: 72 + $signature: 71 }; A.__RenderFlexEntranceTransition_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1(owner) { @@ -344131,7 +344591,7 @@ call$2(childParentData, crossAxisCount) { return Math.min(1, crossAxisCount); }, - $signature: 2647 + $signature: 2648 }; A._TileOrigin.prototype = {}; A._RenderStaggeredGrid_RenderBox_ContainerRenderObjectMixin.prototype = { @@ -344235,7 +344695,7 @@ t1.toString; return A.IgnorePointer$(new A._StyledToastWidget(A.Directionality$(A.Material$(B.Duration_200000, true, _null, this.widget, B.Clip_0, B.Color_0, 0, _null, _null, _null, _null, _null, B.MaterialType_0), t1), t3, t4, t14, t15, t5, t8, t9, t10, t11, t12, t13, t6, t7, t16, t17, t18, this.key), t2, _null); }, - $signature: 2648 + $signature: 2649 }; A.StyledToast.prototype = { createState$0() { @@ -344260,7 +344720,7 @@ $.currentContext = context; return this.$this._widget.child; }, - $signature: 46 + $signature: 44 }; A._StyledToastWidget.prototype = { createState$0() { @@ -345091,7 +345551,7 @@ call$1(v) { v.dismiss$1$showAnim(this.showAnim); }, - $signature: 2649 + $signature: 2656 }; A.StyledToastTheme.prototype = { updateShouldNotify$1(oldWidget) { @@ -345193,7 +345653,7 @@ A.FlutterError_reportError(new A.FlutterErrorDetails(exception, stack, "flutter web plugins", t1, null, null, false)); } }, - $signature: 152 + $signature: 163 }; A.PluginRegistry.prototype = {}; A.BuildInOrder.prototype = { @@ -345277,6 +345737,11 @@ return new A.FollowerAlignment(this._follower$_leaderAnchor, this._follower$_followerAnchor, this._follower$_offset); } }; + A.FunctionalAligner.prototype = { + align$2(_, globalLeaderRect, followerSize) { + return this.delegate.call$2(globalLeaderRect, followerSize); + } + }; A.FollowerAlignment.prototype = { $eq(_, other) { var t1, _this = this; @@ -345591,7 +346056,7 @@ call$2(result, position) { return this.$this.super$RenderProxyBoxMixin$hitTestChildren(result, position); }, - $signature: 72 + $signature: 71 }; A.RenderFollower_paint_closure.prototype = { call$1(timeStamp) { @@ -345599,7 +346064,7 @@ if (t1._follower$_link._leader_link$_leader != null) t1.super$RenderObject$markNeedsPaint(); }, - $signature: 12 + $signature: 11 }; A.RenderFollower_paint_closure0.prototype = { call$2(context, offset) { @@ -345609,13 +346074,13 @@ t1.super$RenderProxyBoxMixin$paint(context, offset); t1._paintDebugVisuals$1(context); }, - $signature: 90 + $signature: 91 }; A.RenderFollower_paint_closure1.prototype = { call$1(timeStamp) { this.$this.super$RenderObject$markNeedsPaint(); }, - $signature: 12 + $signature: 11 }; A.FollowerLayer.prototype = { set$link(newLink) { @@ -345862,7 +346327,7 @@ t2 = t1._isContentVisible$0() || false ? 1 : 0; return A.AnimatedOpacity$(t1.child, B.C__Linear, B.Duration_250000, t2); }, - $signature: 2657 + $signature: 2659 }; A.Leader.prototype = { createRenderObject$1(context) { @@ -345963,7 +346428,7 @@ $.$get$FtlLogs_leader().log$4(B.Level_FINER_400, "Painting leader content within LeaderLayer. Paint offset: " + offset.toString$0(0), null, null); this.$this.super$RenderProxyBoxMixin$paint(paintContext, offset); }, - $signature: 90 + $signature: 91 }; A.LeaderLayer.prototype = { set$link(value) { @@ -346090,7 +346555,7 @@ call$1(timeStamp) { this.$this.super$ChangeNotifier$notifyListeners(); }, - $signature: 12 + $signature: 11 }; A.CustomLayerLinkHandle.prototype = { dispose$0() { @@ -346324,13 +346789,13 @@ return _this.$this._currentUser; return _this.$this._callMethod$1(_this.method); }, - $signature: 2659 + $signature: 2664 }; A.GoogleSignIn_signIn_isCanceled.prototype = { call$1(error) { return error instanceof A.PlatformException && error.code === "sign_in_canceled"; }, - $signature: 148 + $signature: 138 }; A.GoogleSignIn_signIn_closure.prototype = { call$1(_) { @@ -346368,7 +346833,7 @@ t1 = J.getInterceptor$asx(result); return new A.GoogleSignInTokenData(A._asStringQ(t1.$index(result, "idToken")), A._asStringQ(t1.$index(result, "accessToken")), A._asStringQ(t1.$index(result, "serverAuthCode"))); }, - $signature: 2668 + $signature: 2669 }; A.SignInOption.prototype = { _enumToString$0() { @@ -346672,20 +347137,20 @@ call$1(_) { return A.init(); }, - $signature: 506 + $signature: 613 }; A.GoogleSignInPlugin_initWithParams_closure.prototype = { call$1(initializedAuth) { this.isAuthInitialized.complete$0(0); }, - $signature: 2669 + $signature: 2678 }; A.GoogleSignInPlugin_initWithParams_closure0.prototype = { call$1(reason) { var t1 = J.getInterceptor$x(reason); this.isAuthInitialized.completeError$1(new A.PlatformException(t1.get$error(reason), t1.get$details(reason), "https://developers.google.com/identity/sign-in/web/reference#error_codes", null)); }, - $signature: 2678 + $signature: 2683 }; A.LoadConfig.prototype = {}; A.GoogleAuthInitFailureError.prototype = {}; @@ -346984,7 +347449,7 @@ t2 = t1._contents += A.htmlSerializeEscape(v, true); t1._contents = t2 + '"'; }, - $signature: 595 + $signature: 486 }; A.Comment.prototype = { get$nodeType(_) { @@ -347117,7 +347582,7 @@ call$1(n) { return !this.test.call$1(n); }, - $signature: 589 + $signature: 480 }; A.FilteredElementList.prototype = { forEach$1(_, action) { @@ -347331,7 +347796,7 @@ call$1(el) { return el.remove$0(0); }, - $signature: 2685 + $signature: 2686 }; A._ConcatTextVisitor.prototype = { toString$0(_) { @@ -347945,7 +348410,7 @@ call$2(attr, value) { this.$this.tree.openElements[0].attributes.putIfAbsent$2(0, attr, new A.Phase_startTagHtml__closure(value)); }, - $signature: 595 + $signature: 486 }; A.Phase_startTagHtml__closure.prototype = { call$0() { @@ -349437,7 +349902,7 @@ call$2(attr, value) { this.$this.tree.openElements[1].attributes.putIfAbsent$2(0, attr, new A.InBodyPhase_startTagBody__closure(value)); }, - $signature: 595 + $signature: 486 }; A.InBodyPhase_startTagBody__closure.prototype = { call$0() { @@ -349711,7 +350176,7 @@ call$1(t) { return t.get$data(t); }, - $signature: 2686 + $signature: 2687 }; A.InCaptionPhase.prototype = { processStartTag$1(token) { @@ -350759,7 +351224,7 @@ call$1(s) { return s.add$1(0, this.value); }, - $signature: 2687 + $signature: 2689 }; A.EncodingBytes.prototype = { set$_encoding_parser$_position(_, value) { @@ -351244,7 +351709,7 @@ t1 = true; return !t1; }, - $signature: 589 + $signature: 480 }; A.SelectorEvaluator_visitPseudoClassSelector_closure0.prototype = { call$1(n) { @@ -351260,19 +351725,19 @@ t1 = true; return !t1; }, - $signature: 589 + $signature: 480 }; A.SelectorEvaluator_visitPseudoClassSelector__closure.prototype = { call$1(r) { return !A.isWhitespaceCC(r); }, - $signature: 146 + $signature: 140 }; A.SelectorEvaluator_visitAttributeSelector_closure.prototype = { call$1(v) { return v.length !== 0 && v === this.select; }, - $signature: 11 + $signature: 12 }; A.Token0.prototype = {}; A.TagToken.prototype = {}; @@ -351339,13 +351804,13 @@ } return result; }, - $signature: 2690 + $signature: 2691 }; A.entitiesByFirstChar__closure.prototype = { call$0() { return A._setArrayType([], type$.JSArray_String); }, - $signature: 750 + $signature: 785 }; A.HtmlTokenizer.prototype = { get$state(_) { @@ -353255,7 +353720,7 @@ call$1(e) { return B.JSString_methods.startsWith$1(e, this.name); }, - $signature: 11 + $signature: 12 }; A.HtmlTokenizer_emitCurrentToken_closure.prototype = { call$0() { @@ -353592,7 +354057,7 @@ t2 = result._contents = t4 + B.JSString_methods.substring$2(t5, last, t5.length); t1.format = t2.charCodeAt(0) == 0 ? t2 : t2; }, - $signature: 759 + $signature: 801 }; A._escape_closure.prototype = { call$1(match) { @@ -353684,7 +354149,7 @@ var t1 = this._box_0; t1.input = A._join(t1.input, rule.append.call$0()); }, - $signature: 2695 + $signature: 2698 }; A._separatingNewlines_closure.prototype = { call$2(a, b) { @@ -353692,7 +354157,7 @@ b.toString; return B.JSString_methods.compareTo$1(a, b); }, - $signature: 151 + $signature: 143 }; A.Node.prototype = { get$firstChild(_) { @@ -353851,26 +354316,26 @@ var t1 = rule._realFilterFn; return t1 == null ? false : t1.call$1(this.node); }, - $signature: 749 + $signature: 783 }; A.Rule_findRule_closure0.prototype = { call$1(rule) { var t1 = rule._realFilterFn; return t1 == null ? false : t1.call$1(this.node); }, - $signature: 749 + $signature: 783 }; A.Rule_findRule_closure1.prototype = { call$0() { return $.$get$_BaseRules_defaultRule(); }, - $signature: 2704 + $signature: 2705 }; A.Rule__buildFilterFn_closure.prototype = { call$1(node) { return B.JSArray_methods.contains$1(this.filters, node.get$nodeName(node).toLowerCase()); }, - $signature: 248 + $signature: 244 }; A._BaseRules_defaultRule_closure.prototype = { call$2($content, node) { @@ -353881,19 +354346,19 @@ t1 = A.isBlock(node._el) ? "\n\n" + $content + "\n\n" : $content; return t1; }, - $signature: 89 + $signature: 90 }; A._CommonRules_paragraph_closure.prototype = { call$2($content, node) { return "\n\n" + $content + "\n\n"; }, - $signature: 89 + $signature: 90 }; A._CommonRules_lineBreak_closure.prototype = { call$2($content, node) { return A.getStyleOption("br") + "\n"; }, - $signature: 89 + $signature: 90 }; A._CommonRules_heading_closure.prototype = { call$2($content, node) { @@ -353905,7 +354370,7 @@ } else return "\n\n" + B.JSArray_methods.join$0(A.List_List$filled(hLevel, "#", false, type$.String)) + " " + $content + "\n\n"; }, - $signature: 89 + $signature: 90 }; A._CommonRules_blockquote_closure.prototype = { call$2($content, node) { @@ -353915,7 +354380,7 @@ t2 = A.RegExp_RegExp("^", true, false, true, false); return "\n\n" + A.stringReplaceAllUnchecked(t1, t2, "> ") + "\n\n"; }, - $signature: 89 + $signature: 90 }; A._CommonRules_list_closure.prototype = { call$2($content, node) { @@ -353933,7 +354398,7 @@ else return "\n\n" + $content + "\n\n"; }, - $signature: 89 + $signature: 90 }; A._CommonRules_listItem_closure.prototype = { call$2($content, node) { @@ -353966,13 +354431,13 @@ postfix = t1 ? "\n" : ""; return prefix + convertContent + postfix; }, - $signature: 89 + $signature: 90 }; A._CommonRules_indentedCodeBlock_closure.prototype = { call$1(node) { return A.getStyleOption("codeBlockStyle") === "indented" && node.get$nodeName(node) === "code" && node.get$parentElName() === "pre"; }, - $signature: 248 + $signature: 244 }; A._CommonRules_indentedCodeBlock_closure0.prototype = { call$2($content, node) { @@ -353997,13 +354462,13 @@ return result + "\n\n"; } }, - $signature: 89 + $signature: 90 }; A._CommonRules_fencedCodeBlock_closure.prototype = { call$1(node) { return A.getStyleOption("codeBlockStyle") === "fenced" && node.get$nodeName(node) === "code" && node.get$parentElName() === "pre"; }, - $signature: 248 + $signature: 244 }; A._CommonRules_fencedCodeBlock_closure0.prototype = { call$2($content, node) { @@ -354021,19 +354486,19 @@ language = className; return "\n\n" + A.getStyleOption("fence") + language + "\n" + node.get$firstChild(node).get$textContent() + "\n" + A.getStyleOption("fence") + "\n\n"; }, - $signature: 89 + $signature: 90 }; A._CommonRules_horizontalRule_closure.prototype = { call$2($content, node) { return A.getStyleOption("hr") + "\n"; }, - $signature: 89 + $signature: 90 }; A._CommonRules_inlineLink_closure.prototype = { call$1(node) { return A.getStyleOption("linkStyle") === "inlined" && node.get$nodeName(node) === "a" && node._el.attributes.$index(0, "href") != null; }, - $signature: 248 + $signature: 244 }; A._CommonRules_inlineLink_closure0.prototype = { call$2($content, node) { @@ -354047,13 +354512,13 @@ renderedTitle = title.length === 0 ? title : ' "' + title + '"'; return "[" + $content + "](" + t2 + renderedTitle + ")"; }, - $signature: 89 + $signature: 90 }; A._CommonRules_referenceLink_closure0.prototype = { call$1(node) { return A.getStyleOption("linkStyle") === "referenced" && node.get$nodeName(node) === "a" && node._el.attributes.$index(0, "href") != null; }, - $signature: 248 + $signature: 244 }; A._CommonRules_referenceLink_closure1.prototype = { call$2($content, node) { @@ -354086,7 +354551,7 @@ $._linkReferences.push(reference); return result; }, - $signature: 89 + $signature: 90 }; A._CommonRules_referenceLink_closure.prototype = { call$0() { @@ -354106,7 +354571,7 @@ return ""; return A.getStyleOption(_s11_) + $content + A.getStyleOption(_s11_); }, - $signature: 89 + $signature: 90 }; A._CommonRules_strong_closure.prototype = { call$2($content, node) { @@ -354115,7 +354580,7 @@ return ""; return A.getStyleOption(_s15_) + $content + A.getStyleOption(_s15_); }, - $signature: 89 + $signature: 90 }; A._CommonRules_strike_closure.prototype = { call$2($content, node) { @@ -354123,7 +354588,7 @@ return ""; return "~~" + $content + "~~"; }, - $signature: 89 + $signature: 90 }; A._CommonRules_code_closure.prototype = { call$1(node) { @@ -354135,7 +354600,7 @@ isCodeBlock = false; return node.get$nodeName(node) === "code" && !isCodeBlock; }, - $signature: 248 + $signature: 244 }; A._CommonRules_code_closure0.prototype = { call$2($content, node) { @@ -354159,13 +354624,13 @@ } return delimiter + leadingSpace + $content + trailingSpace + delimiter; }, - $signature: 89 + $signature: 90 }; A._CommonRules_code__closure.prototype = { call$1(match) { return match._match[0]; }, - $signature: 2708 + $signature: 2709 }; A._CommonRules_image_closure.prototype = { call$2($content, node) { @@ -354183,13 +354648,13 @@ titlePart = title.length !== 0 ? ' "' + title + '"' : ""; return src.length !== 0 ? "![" + alt + "](" + src + titlePart + ")" : ""; }, - $signature: 89 + $signature: 90 }; A._TableRules_tableCell_closure.prototype = { call$2($content, node) { return A._TableRules_cell($content, node) + A._TableRules_spannedCells(node, ""); }, - $signature: 89 + $signature: 90 }; A._TableRules_tableRow_closure.prototype = { call$2($content, node) { @@ -354236,7 +354701,7 @@ t1 = borderCells.length !== 0 ? "\n" + borderCells : ""; return "\n" + $content + t1; }, - $signature: 89 + $signature: 90 }; A._TableRules_table_closure.prototype = { call$2($content, node) { @@ -354255,13 +354720,13 @@ } return "\n\n" + A.stringReplaceAllUnchecked($content, "\n\n", "\n") + "\n\n"; }, - $signature: 89 + $signature: 90 }; A._TableRules_tableSection_closure.prototype = { call$2($content, node) { return $content; }, - $signature: 89 + $signature: 90 }; A._TableRules_captionSection_closure.prototype = { call$2($content, node) { @@ -354278,13 +354743,13 @@ return $content; return ""; }, - $signature: 89 + $signature: 90 }; A.get_closure.prototype = { call$1(client) { return client._sendUnstreamed$3("GET", this.url, this.headers); }, - $signature: 2709 + $signature: 2717 }; A.BaseClient.prototype = { _sendUnstreamed$5(method, url, headers, body, encoding) { @@ -354417,13 +354882,13 @@ call$2(key1, key2) { return key1.toLowerCase() === key2.toLowerCase(); }, - $signature: 2717 + $signature: 2723 }; A.BaseRequest_closure0.prototype = { call$1(key) { return B.JSString_methods.get$hashCode(key.toLowerCase()); }, - $signature: 2723 + $signature: 2724 }; A.BaseResponse.prototype = { BaseResponse$7$contentLength$headers$isRedirect$persistentConnection$reasonPhrase$request(statusCode, contentLength, headers, isRedirect, persistentConnection, reasonPhrase, request) { @@ -354530,13 +354995,13 @@ t3.toString; this.completer.complete$1(0, A.StreamedResponse$(new A.ByteStream(t2), t3, J.get$length$asx(body), B.HttpRequest_methods.get$responseHeaders(t1), false, true, t1.statusText, this.request)); }, - $signature: 748 + $signature: 781 }; A.BrowserClient_send_closure0.prototype = { call$1(_) { this.completer.completeError$2(new A.ClientException("XMLHttpRequest error."), A.StackTrace_current()); }, - $signature: 748 + $signature: 781 }; A.ByteStream.prototype = { toBytes$0() { @@ -354551,7 +355016,7 @@ call$1(bytes) { return this.completer.complete$1(0, new Uint8Array(A._ensureNativeList(bytes))); }, - $signature: 2725 + $signature: 2728 }; A.ClientException.prototype = { toString$0(_) { @@ -354776,14 +355241,14 @@ t2 = A._Uri__uriEncode(B.List_M1A, key, t1, true); return this.pairs.push(A._setArrayType([t2, A._Uri__uriEncode(B.List_M1A, value, t1, true)], type$.JSArray_String)); }, - $signature: 189 + $signature: 178 }; A.mapToQuery_closure0.prototype = { call$1(pair) { var t1 = J.getInterceptor$asx(pair); return A.S(t1.$index(pair, 0)) + "=" + A.S(t1.$index(pair, 1)); }, - $signature: 2728 + $signature: 2729 }; A.onDone_closure.prototype = { call$1(sink) { @@ -354886,7 +355351,7 @@ scanner.expectDone$0(); return A.MediaType$(t4, t5, parameters); }, - $signature: 2729 + $signature: 2730 }; A.MediaType_toString_closure.prototype = { call$2(attribute, value) { @@ -354903,7 +355368,7 @@ } else t1._contents = t3 + value; }, - $signature: 189 + $signature: 178 }; A.MediaType_toString__closure.prototype = { call$1(match) { @@ -355987,7 +356452,7 @@ this.$this.directories.$indexSet(0, key, t1); return t1; }, - $signature: 747 + $signature: 780 }; A.IfdDirectory.prototype = { get$isEmpty(_) { @@ -356063,7 +356528,7 @@ this.$this.data.$indexSet(0, tag, t1); return t1; }, - $signature: 2733 + $signature: 2740 }; A.IfdDirectory_copy_closure0.prototype = { call$2(tag, value) { @@ -356071,7 +356536,7 @@ this.$this.sub.directories.$indexSet(0, tag, t1); return t1; }, - $signature: 747 + $signature: 780 }; A.IfdValueType.prototype = { _enumToString$0() { @@ -361269,7 +361734,7 @@ call$1(product) { return A._$ProductWrapperToJson(product); }, - $signature: 2741 + $signature: 2742 }; A.BillingResponse.prototype = { _enumToString$0() { @@ -361370,19 +361835,19 @@ call$1(e) { return A._$SubscriptionOfferDetailsWrapperFromJson(A.LinkedHashMap_LinkedHashMap$from(type$.Map_dynamic_dynamic._as(e), type$.String, type$.dynamic)); }, - $signature: 2742 + $signature: 2745 }; A._$ProductDetailsResponseWrapperFromJson_closure.prototype = { call$2(k, e) { return new A.MapEntry(A._asString(k), e, type$.MapEntry_String_dynamic); }, - $signature: 231 + $signature: 235 }; A._$ProductDetailsResponseWrapperFromJson_closure0.prototype = { call$1(e) { return A._$ProductDetailsWrapperFromJson(A.LinkedHashMap_LinkedHashMap$from(type$.Map_dynamic_dynamic._as(e), type$.String, type$.dynamic)); }, - $signature: 2746 + $signature: 2762 }; A.ProductWrapper.prototype = { toJson$0() { @@ -361471,13 +361936,13 @@ call$2(k, e) { return new A.MapEntry(A._asString(k), e, type$.MapEntry_String_dynamic); }, - $signature: 231 + $signature: 235 }; A._$PurchasesResultWrapperFromJson_closure0.prototype = { call$1(e) { return A._$PurchaseWrapperFromJson(A.LinkedHashMap_LinkedHashMap$from(type$.Map_dynamic_dynamic._as(e), type$.String, type$.dynamic)); }, - $signature: 2763 + $signature: 2764 }; A.SubscriptionOfferDetailsWrapper.prototype = { $eq(_, other) { @@ -361535,7 +362000,7 @@ t6 = ""; return new A.PricingPhaseWrapper(t2, t3, t4, t5, t6, t1.$index(0, _s14_) == null ? B.RecurrenceMode_2 : B.C_RecurrenceModeConverter.fromJson$1(A._asIntQ(t1.$index(0, _s14_)))); }, - $signature: 2764 + $signature: 2765 }; A.InAppPurchaseAndroidPlatform.prototype = { get$purchaseStream() { @@ -361862,7 +362327,7 @@ call$1(client) { return client.isReady$0(); }, - $signature: 2766 + $signature: 2767 }; A.InAppPurchaseAndroidPlatform_queryProductDetails_closure.prototype = { call$1(client) { @@ -361870,13 +362335,13 @@ t2 = A._instanceType(t1)._eval$1("EfficientLengthMappedIterable"); return client.queryProductDetails$1$productList(A.List_List$of(new A.EfficientLengthMappedIterable(t1, new A.InAppPurchaseAndroidPlatform_queryProductDetails__closure0(), t2), true, t2._eval$1("Iterable.E"))); }, - $signature: 746 + $signature: 777 }; A.InAppPurchaseAndroidPlatform_queryProductDetails__closure0.prototype = { call$1(productId) { return new A.ProductWrapper(productId, B.ProductType_0); }, - $signature: 745 + $signature: 776 }; A.InAppPurchaseAndroidPlatform_queryProductDetails_closure0.prototype = { call$1(client) { @@ -361884,31 +362349,31 @@ t2 = A._instanceType(t1)._eval$1("EfficientLengthMappedIterable"); return client.queryProductDetails$1$productList(A.List_List$of(new A.EfficientLengthMappedIterable(t1, new A.InAppPurchaseAndroidPlatform_queryProductDetails__closure(), t2), true, t2._eval$1("Iterable.E"))); }, - $signature: 746 + $signature: 777 }; A.InAppPurchaseAndroidPlatform_queryProductDetails__closure.prototype = { call$1(productId) { return new A.ProductWrapper(productId, B.ProductType_1); }, - $signature: 745 + $signature: 776 }; A.InAppPurchaseAndroidPlatform_queryProductDetails_closure1.prototype = { call$1(response) { return response.productDetailsList; }, - $signature: 2776 + $signature: 2778 }; A.InAppPurchaseAndroidPlatform_queryProductDetails_closure2.prototype = { call$1(productDetailWrapper) { return A.GooglePlayProductDetails_fromProductDetails(productDetailWrapper); }, - $signature: 2778 + $signature: 2779 }; A.InAppPurchaseAndroidPlatform_queryProductDetails_closure3.prototype = { call$1(productDetails) { return productDetails.id; }, - $signature: 2779 + $signature: 2780 }; A.InAppPurchaseAndroidPlatform_buyNonConsumable_closure.prototype = { call$1(client) { @@ -361916,62 +362381,62 @@ t2 = this._box_0.offerToken; return client.launchBillingFlow$6$accountId$offerToken$oldProduct$product$prorationMode$purchaseToken(t1.applicationUserName, t2, null, t1.productDetails.id, null, null); }, - $signature: 612 + $signature: 446 }; A.InAppPurchaseAndroidPlatform_completePurchase_closure.prototype = { call$1(client) { return client.acknowledgePurchase$1(this.purchase.verificationData.serverVerificationData); }, - $signature: 612 + $signature: 446 }; A.InAppPurchaseAndroidPlatform_restorePurchases_closure.prototype = { call$1(client) { return client.queryPurchases$1(B.ProductType_0); }, - $signature: 744 + $signature: 775 }; A.InAppPurchaseAndroidPlatform_restorePurchases_closure0.prototype = { call$1(client) { return client.queryPurchases$1(B.ProductType_1); }, - $signature: 744 + $signature: 775 }; A.InAppPurchaseAndroidPlatform_restorePurchases_closure1.prototype = { call$1(response) { return response.responseCode !== B.BillingResponse_3; }, - $signature: 2782 + $signature: 2788 }; A.InAppPurchaseAndroidPlatform_restorePurchases_closure2.prototype = { call$1(response) { return response.responseCode._enumToString$0(); }, - $signature: 2788 + $signature: 2789 }; A.InAppPurchaseAndroidPlatform_restorePurchases_closure3.prototype = { call$1(response) { return response.purchasesList; }, - $signature: 2789 + $signature: 2790 }; A.InAppPurchaseAndroidPlatform_restorePurchases_closure4.prototype = { call$1(purchaseWrapper) { return A.GooglePlayPurchaseDetails_fromPurchase(purchaseWrapper); }, - $signature: 743 + $signature: 774 }; A.InAppPurchaseAndroidPlatform_restorePurchases_closure5.prototype = { call$1(details) { details.status = B.PurchaseStatus_3; return details; }, - $signature: 2795 + $signature: 2800 }; A.InAppPurchaseAndroidPlatform__getPurchaseDetailsFromResult_closure.prototype = { call$1(purchase) { return A.GooglePlayPurchaseDetails_fromPurchase(purchase); }, - $signature: 743 + $signature: 774 }; A.InAppPurchaseAndroidPlatform__getPurchaseDetailsFromResult_closure0.prototype = { call$1(purchaseDetails) { @@ -361980,7 +362445,7 @@ purchaseDetails.status = B.PurchaseStatus_4; return this.$this._maybeAutoConsumePurchase$1(purchaseDetails); }, - $signature: 2800 + $signature: 2801 }; A.InAppPurchaseAndroidPlatformAddition.prototype = { consumePurchase$1(purchase) { @@ -361991,7 +362456,7 @@ call$1(client) { return client.consumeAsync$1(this.purchase.verificationData.serverVerificationData); }, - $signature: 612 + $signature: 446 }; A.GooglePlayProductDetails.prototype = {}; A.GooglePlayPurchaseDetails.prototype = {}; @@ -362006,7 +362471,7 @@ purchaseDetails.error = new A.IAPError("google_play", "purchase_error", "", null); return purchaseDetails; }, - $signature: 2801 + $signature: 2802 }; A.GooglePlayPurchaseParam.prototype = {}; A.IAPError.prototype = { @@ -362247,7 +362712,7 @@ t2 = A.double_parse(t1); return new A.AppStoreProductDetails(productWrapper.productIdentifier, productWrapper.localizedDescription, productWrapper.priceLocale.currencySymbol + t1, t2); }, - $signature: 2802 + $signature: 2803 }; A._TransactionRestoreState.prototype = { _enumToString$0() { @@ -362347,7 +362812,7 @@ call$1(transaction) { return transaction.transactionState === B.SKPaymentTransactionStateWrapper_3; }, - $signature: 2803 + $signature: 2805 }; A._TransactionObserver__handleTransationUpdates_closure0.prototype = { call$1(transaction) { @@ -362368,7 +362833,7 @@ } return purchaseDetails; }, - $signature: 2805 + $signature: 2810 }; A.InAppPurchaseStoreKitPlatformAddition.prototype = {}; A.SKTransactionStatusConverter.prototype = { @@ -362717,7 +363182,7 @@ var t1 = type$.dynamic; return A._$SKPaymentTransactionWrapperFromJson(A.Map_castFrom(type$.Map_dynamic_dynamic._as(map), t1, t1, type$.String, t1)); }, - $signature: 2810 + $signature: 2811 }; A.SKError.prototype = { $eq(_, other) { @@ -362758,7 +363223,7 @@ call$2(k, e) { return new A.MapEntry(A._asString(k), e, type$.MapEntry_String_dynamic); }, - $signature: 231 + $signature: 235 }; A.SKPaymentTransactionStateWrapper.prototype = { _enumToString$0() { @@ -362886,7 +363351,7 @@ call$1(e) { return A._$SKProductWrapperFromJson(A.LinkedHashMap_LinkedHashMap$from(type$.Map_dynamic_dynamic._as(e), type$.String, type$.dynamic)); }, - $signature: 2811 + $signature: 2812 }; A._$SkProductResponseWrapperFromJson_closure0.prototype = { call$1(e) { @@ -362898,31 +363363,31 @@ call$2(k, e) { return new A.MapEntry(A._asString(k), e, type$.MapEntry_String_dynamic); }, - $signature: 231 + $signature: 235 }; A._$SKProductDiscountWrapperFromJson_closure0.prototype = { call$2(k, e) { return new A.MapEntry(A._asString(k), e, type$.MapEntry_String_dynamic); }, - $signature: 231 + $signature: 235 }; A._$SKProductWrapperFromJson_closure.prototype = { call$2(k, e) { return new A.MapEntry(A._asString(k), e, type$.MapEntry_String_dynamic); }, - $signature: 231 + $signature: 235 }; A._$SKProductWrapperFromJson_closure0.prototype = { call$2(k, e) { return new A.MapEntry(A._asString(k), e, type$.MapEntry_String_dynamic); }, - $signature: 231 + $signature: 235 }; A._$SKProductWrapperFromJson_closure1.prototype = { call$1(e) { return A._$SKProductDiscountWrapperFromJson(A.LinkedHashMap_LinkedHashMap$from(type$.Map_dynamic_dynamic._as(e), type$.String, type$.dynamic)); }, - $signature: 2812 + $signature: 2816 }; A.SKRequestMaker.prototype = { startProductRequest$1(productIdentifiers) { @@ -363359,25 +363824,25 @@ }, "call*": "call$8", $requiredArgCount: 8, - $signature: 2824 + $signature: 2844 }; A.DateFormat__checkDateOnly_closure.prototype = { call$1(each) { return each.get$forDate(); }, - $signature: 2844 + $signature: 2845 }; A.DateFormat__initDigitMatcher_closure.prototype = { call$1(i) { return i; }, - $signature: 133 + $signature: 137 }; A.DateFormat__initDigitMatcher_closure0.prototype = { call$1(i) { return this.$this.get$localeZeroCodeUnit() + i; }, - $signature: 133 + $signature: 137 }; A.DateFormat__fieldConstructors_closure.prototype = { call$2(pattern, $parent) { @@ -363743,7 +364208,7 @@ call$1(x) { return x; }, - $signature: 75 + $signature: 76 }; A.NumberFormat.prototype = { format$1(number) { @@ -364269,7 +364734,7 @@ var t1 = this.$this; return B.JSString_methods.compareTo$1(a.localizedName$1(t1._widget.languageCode), b.localizedName$1(t1._widget.languageCode)); }, - $signature: 742 + $signature: 773 }; A._CountryPickerDialogState_build_closure.prototype = { call$1(value) { @@ -364287,7 +364752,7 @@ var t1 = this.$this; return B.JSString_methods.compareTo$1(a.localizedName$1(t1._widget.languageCode), b.localizedName$1(t1._widget.languageCode)); }, - $signature: 742 + $signature: 773 }; A._CountryPickerDialogState_build__closure1.prototype = { call$0() { @@ -364341,13 +364806,13 @@ t1 = true; return t1; }, - $signature: 741 + $signature: 772 }; A.CountryExtensions_stringSearch__closure.prototype = { call$1(element) { return B.JSString_methods.contains$1(A.removeDiacritics(element.toLowerCase()), this._box_0.search); }, - $signature: 11 + $signature: 12 }; A.IntlPhoneField.prototype = { createState$0() { @@ -364432,7 +364897,7 @@ var t1 = this.$this._widget.initialCountryCode; return item.code === t1; }, - $signature: 741 + $signature: 772 }; A._IntlPhoneFieldState_initState_closure0.prototype = { call$0() { @@ -364486,7 +364951,7 @@ call$1(value) { this.$this._widget.toString; }, - $signature: 99 + $signature: 100 }; A._IntlPhoneFieldState_build_closure.prototype = { call$1(value) { @@ -364522,7 +364987,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 373 + $signature: 429 }; A._IntlPhoneFieldState_build_closure1.prototype = { call$1(value) { @@ -364541,7 +365006,7 @@ t1._widget.toString; return t1.validatorMessage; }, - $signature: 150 + $signature: 142 }; A.IconPosition.prototype = { _enumToString$0() { @@ -366131,43 +366596,43 @@ b.get$_client_model$_$this()._client_model$_isPrimary = true; return b; }, - $signature: 364 + $signature: 360 }; A.ClientEntity_primaryContact_closure.prototype = { call$1(contact) { return contact.isPrimary; }, - $signature: 192 + $signature: 172 }; A.ClientEntity_primaryContact_closure0.prototype = { call$0() { return A.ClientContactEntity_ClientContactEntity(); }, - $signature: 458 + $signature: 594 }; A.ClientEntity_emailContacts_closure.prototype = { call$1(contact) { return contact.sendEmail; }, - $signature: 192 + $signature: 172 }; A.ClientEntity_hasEmailAddress_closure.prototype = { call$1(contact) { return contact.email.length !== 0; }, - $signature: 192 + $signature: 172 }; A.ClientEntity_getContact_closure.prototype = { call$1(contact) { return contact.id === this.contactId; }, - $signature: 192 + $signature: 172 }; A.ClientEntity_getContact_closure0.prototype = { call$0() { return A.ClientContactEntity_ClientContactEntity(); }, - $signature: 458 + $signature: 594 }; A.ClientContactEntity.prototype = { get$fullName() { @@ -367775,7 +368240,7 @@ b.get$_company_gateway_model$_$this()._config = t1; return b; }, - $signature: 66 + $signature: 65 }; A.FeesAndLimitsSettings.prototype = {}; A._$CompanyGatewayListResponseSerializer.prototype = { @@ -368975,7 +369440,7 @@ call$1(data) { return data.length !== 0; }, - $signature: 11 + $signature: 12 }; A.CompanyEntity_coreCompany_closure.prototype = { call$1(b) { @@ -369094,19 +369559,19 @@ call$1(typeId) { return this.$this.options._map$_map.$index(0, typeId).supportTokenBilling; }, - $signature: 11 + $signature: 12 }; A.GatewayEntity_matchesFilter_closure.prototype = { call$1(option) { return option.supportTokenBilling; }, - $signature: 740 + $signature: 920 }; A.GatewayEntity_matchesFilterValue_closure.prototype = { call$1(option) { return option.supportTokenBilling; }, - $signature: 740 + $signature: 920 }; A.GatewayEntity_supportedEvents_closure.prototype = { call$2(key, option) { @@ -369160,14 +369625,14 @@ b.$indexSet(0, "email", A.BuiltList_BuiltList$from(A._setArrayType(["all_notifications"], type$.JSArray_String), type$.String)); return b; }, - $signature: 739 + $signature: 771 }; A.UserCompanyEntity__initializeBuilder_closure.prototype = { call$1(b) { b.$indexSet(0, "email", A.BuiltList_BuiltList$from(A._setArrayType(["all_notifications"], type$.JSArray_String), type$.String)); return b; }, - $signature: 739 + $signature: 771 }; A.UserSettingsEntity.prototype = { getTableColumns$1(entityType) { @@ -373212,7 +373677,7 @@ b.get$_design_model$_$this()._design_model$_isDeleted = false; return b; }, - $signature: 249 + $signature: 255 }; A._$DesignListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { @@ -374951,7 +375416,7 @@ return false; return true; }, - $signature: 372 + $signature: 355 }; A.BelongsToClient.prototype = {}; A.BelongsToVendor.prototype = {}; @@ -381384,13 +381849,13 @@ call$1(contact) { return A.InvitationEntity_InvitationEntity(contact.id, null); }, - $signature: 212 + $signature: 226 }; A.InvoiceEntity_InvoiceEntity_closure0.prototype = { call$1(contact) { return A.InvitationEntity_InvitationEntity(null, contact.id); }, - $signature: 445 + $signature: 516 }; A.InvoiceEntity_moveLineItem_closure.prototype = { call$1(b) { @@ -381421,7 +381886,7 @@ call$1(contact) { return A.InvitationEntity_InvitationEntity(null, contact.id); }, - $signature: 445 + $signature: 516 }; A.InvoiceEntity_recreateInvitations_closure.prototype = { call$1(b) { @@ -381434,7 +381899,7 @@ call$1(contact) { return A.InvitationEntity_InvitationEntity(contact.id, null); }, - $signature: 212 + $signature: 226 }; A.InvoiceEntity_recreateInvitations_closure1.prototype = { call$1(b) { @@ -381495,7 +381960,7 @@ b.get$_invoice_model$_$this()._invoice_model$_typeId = "1"; return b; }, - $signature: 55 + $signature: 56 }; A.InvoiceEntity_clone__closure1.prototype = { call$1(invitation) { @@ -381561,7 +382026,7 @@ var t1 = activity.history; return t1 != null && t1.id.length !== 0 && t1.createdAt > 0 && !B.JSArray_methods.contains$1(A._setArrayType(["7", "21", "60", "136"], type$.JSArray_String), activity.activityTypeId); }, - $signature: 372 + $signature: 355 }; A.InvoiceEntity_balanceHistory_closure0.prototype = { call$1(activity) { @@ -381618,19 +382083,19 @@ call$1(invitation) { return invitation.viewedDate.length !== 0; }, - $signature: 461 + $signature: 459 }; A.InvoiceEntity_getInvitationForClientContact_closure.prototype = { call$1(invitation) { return invitation.clientContactId === this.contact.id; }, - $signature: 461 + $signature: 459 }; A.InvoiceEntity_getInvitationForVendorContact_closure.prototype = { call$1(invitation) { return invitation.vendorContactId === this.contact.id; }, - $signature: 461 + $signature: 459 }; A.InvoiceEntity_getTaxes_calculateAmount.prototype = { call$2(taxable, rate) { @@ -381640,7 +382105,7 @@ else return A.round(taxable * t1, 2); }, - $signature: 216 + $signature: 236 }; A.InvoiceEntity__calculateTax_closure.prototype = { call$0() { @@ -381732,7 +382197,7 @@ b.get$_invoice_model$_$this()._taxName3 = t1; return b; }, - $signature: 55 + $signature: 56 }; A.InvoiceItemEntity_applyTax_closure0.prototype = { call$1(b) { @@ -381743,7 +382208,7 @@ b.get$_invoice_model$_$this()._taxName2 = t1; return b; }, - $signature: 55 + $signature: 56 }; A.InvoiceItemEntity_applyTax_closure1.prototype = { call$1(b) { @@ -381754,7 +382219,7 @@ b.get$_invoice_model$_$this()._taxName1 = t1; return b; }, - $signature: 55 + $signature: 56 }; A.InvitationEntity.prototype = { get$latestEmailStatus() { @@ -384126,7 +384591,7 @@ t1.update$3$ifAbsent(t1, item.taxName3, new A.CalculateInvoiceTotal_calculateTaxes__closure3(t2), new A.CalculateInvoiceTotal_calculateTaxes__closure4(t2)); } }, - $signature: 288 + $signature: 318 }; A.CalculateInvoiceTotal_calculateTaxes__closure.prototype = { call$1(value) { @@ -384138,7 +384603,7 @@ call$0() { return this._box_0.taxAmount; }, - $signature: 124 + $signature: 125 }; A.CalculateInvoiceTotal_calculateTaxes__closure1.prototype = { call$1(value) { @@ -384150,7 +384615,7 @@ call$0() { return this._box_0.taxAmount; }, - $signature: 124 + $signature: 125 }; A.CalculateInvoiceTotal_calculateTaxes__closure3.prototype = { call$1(value) { @@ -384162,7 +384627,7 @@ call$0() { return this._box_0.taxAmount; }, - $signature: 124 + $signature: 125 }; A.CalculateInvoiceTotal_calculateTaxes_closure0.prototype = { call$1(value) { @@ -384174,7 +384639,7 @@ call$0() { return this._box_0.taxAmount; }, - $signature: 124 + $signature: 125 }; A.CalculateInvoiceTotal_calculateTaxes_closure2.prototype = { call$1(value) { @@ -384186,7 +384651,7 @@ call$0() { return this._box_0.taxAmount; }, - $signature: 124 + $signature: 125 }; A.CalculateInvoiceTotal_calculateTaxes_closure4.prototype = { call$1(value) { @@ -384198,7 +384663,7 @@ call$0() { return this._box_0.taxAmount; }, - $signature: 124 + $signature: 125 }; A.CalculateInvoiceTotal_getTaxable_closure.prototype = { call$1(invoiceItem) { @@ -384208,7 +384673,7 @@ lineTotal = this.$this.isAmountDiscount ? lineTotal - t1 : lineTotal - A.round(lineTotal * t1 / 100, this.precision); this._box_0.total += lineTotal; }, - $signature: 288 + $signature: 318 }; A.CalculateInvoiceTotal_calculateTotal_closure.prototype = { call$1(item) { @@ -384244,7 +384709,7 @@ t1.itemTax = t1.itemTax + A.round(lineTotal * taxRate3 / 100, _this.precision); } }, - $signature: 288 + $signature: 318 }; A.CalculateInvoiceTotal_calculateSubtotal_closure.prototype = { call$1(item) { @@ -384258,7 +384723,7 @@ t1 = _this._box_0; t1.total = t1.total + A.round(lineTotal, _this.precision); }, - $signature: 288 + $signature: 318 }; A.EntityAction.prototype = { toString$0(_) { @@ -384567,19 +385032,19 @@ call$1(p) { return p.get$entityType() === B.EntityType_invoice; }, - $signature: 251 + $signature: 261 }; A.PaymentEntity_creditPaymentables_closure.prototype = { call$1(p) { return p.get$entityType() === B.EntityType_credit; }, - $signature: 251 + $signature: 261 }; A.PaymentEntity_invoiceId_closure.prototype = { call$1(p) { return p.get$entityType() === B.EntityType_invoice; }, - $signature: 251 + $signature: 261 }; A.PaymentableEntity.prototype = { get$isEmpty(_) { @@ -386333,7 +386798,7 @@ b.get$_product_model$_$this()._product_model$_isDeleted = false; return b; }, - $signature: 185 + $signature: 180 }; A._$ProductListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { @@ -387297,7 +387762,7 @@ b.get$_project_model$_$this()._project_model$_isDeleted = false; return b; }, - $signature: 196 + $signature: 201 }; A._$ProjectListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { @@ -388800,7 +389265,7 @@ call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.BankAccountEntity); }, - $signature: 738 + $signature: 769 }; A._$serializers_closure0.prototype = { call$0() { @@ -388812,7 +389277,7 @@ call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.ActivityEntity); }, - $signature: 423 + $signature: 353 }; A._$serializers_closure2.prototype = { call$0() { @@ -388824,67 +389289,67 @@ call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.GatewayTokenEntity); }, - $signature: 737 + $signature: 768 }; A._$serializers_closure4.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.DocumentEntity); }, - $signature: 159 + $signature: 164 }; A._$serializers_closure5.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.SystemLogEntity); }, - $signature: 504 + $signature: 543 }; A._$serializers_closure6.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.ClientEntity); }, - $signature: 736 + $signature: 766 }; A._$serializers_closure7.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.CompanyGatewayEntity); }, - $signature: 735 + $signature: 765 }; A._$serializers_closure8.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.CountryEntity); }, - $signature: 734 + $signature: 764 }; A._$serializers_closure9.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.CurrencyEntity); }, - $signature: 733 + $signature: 763 }; A._$serializers_closure10.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.CurrencyEntity); }, - $signature: 733 + $signature: 763 }; A._$serializers_closure11.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.SizeEntity); }, - $signature: 731 + $signature: 762 }; A._$serializers_closure12.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.IndustryEntity); }, - $signature: 729 + $signature: 761 }; A._$serializers_closure13.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.TimezoneEntity); }, - $signature: 728 + $signature: 759 }; A._$serializers_closure14.prototype = { call$0() { @@ -388896,31 +389361,31 @@ call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.DateFormatEntity); }, - $signature: 726 + $signature: 758 }; A._$serializers_closure16.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.DatetimeFormatEntity); }, - $signature: 725 + $signature: 757 }; A._$serializers_closure17.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.LanguageEntity); }, - $signature: 724 + $signature: 756 }; A._$serializers_closure18.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.PaymentTypeEntity); }, - $signature: 723 + $signature: 755 }; A._$serializers_closure19.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.CountryEntity); }, - $signature: 734 + $signature: 764 }; A._$serializers_closure20.prototype = { call$0() { @@ -388932,61 +389397,61 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.TemplateEntity); }, - $signature: 722 + $signature: 753 }; A._$serializers_closure22.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.DateFormatEntity); }, - $signature: 726 + $signature: 758 }; A._$serializers_closure23.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.DatetimeFormatEntity); }, - $signature: 725 + $signature: 757 }; A._$serializers_closure24.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.DesignEntity); }, - $signature: 623 + $signature: 752 }; A._$serializers_closure25.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.DocumentEntity); }, - $signature: 159 + $signature: 164 }; A._$serializers_closure26.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.DocumentEntity); }, - $signature: 159 + $signature: 164 }; A._$serializers_closure27.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.DocumentEntity); }, - $signature: 159 + $signature: 164 }; A._$serializers_closure28.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.DocumentEntity); }, - $signature: 159 + $signature: 164 }; A._$serializers_closure29.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.DocumentEntity); }, - $signature: 159 + $signature: 164 }; A._$serializers_closure30.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.DocumentEntity); }, - $signature: 159 + $signature: 164 }; A._$serializers_closure31.prototype = { call$0() { @@ -389052,230 +389517,230 @@ call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.ExpenseCategoryEntity); }, - $signature: 720 + $signature: 750 }; A._$serializers_closure42.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.ExpenseEntity); }, - $signature: 590 + $signature: 612 }; A._$serializers_closure43.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.GatewayTokenEntity); }, - $signature: 737 + $signature: 768 }; A._$serializers_closure44.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.GroupEntity); }, - $signature: 719 + $signature: 749 }; A._$serializers_closure45.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.GroupEntity); }, - $signature: 719 + $signature: 749 }; A._$serializers_closure46.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.ActivityEntity); }, - $signature: 423 + $signature: 353 }; A._$serializers_closure47.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.TaxRateEntity); }, - $signature: 718 + $signature: 748 }; A._$serializers_closure48.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.TaskStatusEntity); }, - $signature: 717 + $signature: 747 }; A._$serializers_closure49.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.TaskStatusEntity); }, - $signature: 716 + $signature: 746 }; A._$serializers_closure50.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.CompanyGatewayEntity); }, - $signature: 735 + $signature: 765 }; A._$serializers_closure51.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.ExpenseCategoryEntity); }, - $signature: 720 + $signature: 750 }; A._$serializers_closure52.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.UserEntity); }, - $signature: 715 + $signature: 745 }; A._$serializers_closure53.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.ClientEntity); }, - $signature: 736 + $signature: 766 }; A._$serializers_closure54.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.ProductEntity); }, - $signature: 714 + $signature: 744 }; A._$serializers_closure55.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.InvoiceEntity); }, - $signature: 211 + $signature: 224 }; A._$serializers_closure56.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.InvoiceEntity); }, - $signature: 211 + $signature: 224 }; A._$serializers_closure57.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.ExpenseEntity); }, - $signature: 590 + $signature: 612 }; A._$serializers_closure58.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.PaymentEntity); }, - $signature: 713 + $signature: 743 }; A._$serializers_closure59.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.InvoiceEntity); }, - $signature: 211 + $signature: 224 }; A._$serializers_closure60.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.InvoiceEntity); }, - $signature: 211 + $signature: 224 }; A._$serializers_closure61.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.InvoiceEntity); }, - $signature: 211 + $signature: 224 }; A._$serializers_closure62.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.BankAccountEntity); }, - $signature: 738 + $signature: 769 }; A._$serializers_closure63.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.TransactionEntity); }, - $signature: 712 + $signature: 742 }; A._$serializers_closure64.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.TransactionRuleEntity); }, - $signature: 711 + $signature: 741 }; A._$serializers_closure65.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.TaskEntity); }, - $signature: 709 + $signature: 740 }; A._$serializers_closure66.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.ProjectEntity); }, - $signature: 705 + $signature: 739 }; A._$serializers_closure67.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.ExpenseEntity); }, - $signature: 590 + $signature: 612 }; A._$serializers_closure68.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.VendorEntity); }, - $signature: 704 + $signature: 738 }; A._$serializers_closure69.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.DesignEntity); }, - $signature: 623 + $signature: 752 }; A._$serializers_closure70.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.DocumentEntity); }, - $signature: 159 + $signature: 164 }; A._$serializers_closure71.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.ScheduleEntity); }, - $signature: 702 + $signature: 737 }; A._$serializers_closure72.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.TokenEntity); }, - $signature: 701 + $signature: 736 }; A._$serializers_closure73.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.WebhookEntity); }, - $signature: 697 + $signature: 735 }; A._$serializers_closure74.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.SubscriptionEntity); }, - $signature: 695 + $signature: 734 }; A._$serializers_closure75.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.PaymentTermEntity); }, - $signature: 694 + $signature: 733 }; A._$serializers_closure76.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.SystemLogEntity); }, - $signature: 504 + $signature: 543 }; A._$serializers_closure77.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.RegistrationFieldEntity); }, - $signature: 3298 + $signature: 3295 }; A._$serializers_closure78.prototype = { call$0() { var t1 = type$.String; return A.MapBuilder_MapBuilder(t1, t1); }, - $signature: 210 + $signature: 238 }; A._$serializers_closure79.prototype = { call$0() { @@ -389287,115 +389752,115 @@ call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.IndustryEntity); }, - $signature: 729 + $signature: 761 }; A._$serializers_closure81.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.InvoiceEntity); }, - $signature: 211 + $signature: 224 }; A._$serializers_closure82.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.InvoiceEntity); }, - $signature: 211 + $signature: 224 }; A._$serializers_closure83.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.InvoiceScheduleEntity); }, - $signature: 3302 + $signature: 3303 }; A._$serializers_closure84.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.InvoiceItemEntity); }, - $signature: 3309 + $signature: 3307 }; A._$serializers_closure85.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.InvitationEntity); }, - $signature: 3313 + $signature: 3314 }; A._$serializers_closure86.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.DocumentEntity); }, - $signature: 159 + $signature: 164 }; A._$serializers_closure87.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.ActivityEntity); }, - $signature: 423 + $signature: 353 }; A._$serializers_closure88.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.LanguageEntity); }, - $signature: 724 + $signature: 756 }; A._$serializers_closure89.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.PaymentEntity); }, - $signature: 713 + $signature: 743 }; A._$serializers_closure90.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.PaymentTermEntity); }, - $signature: 694 + $signature: 733 }; A._$serializers_closure91.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.PaymentTypeEntity); }, - $signature: 723 + $signature: 755 }; A._$serializers_closure92.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.PaymentableEntity); }, - $signature: 598 + $signature: 475 }; A._$serializers_closure93.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.PaymentableEntity); }, - $signature: 598 + $signature: 475 }; A._$serializers_closure94.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.PaymentableEntity); }, - $signature: 598 + $signature: 475 }; A._$serializers_closure95.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.ProductEntity); }, - $signature: 714 + $signature: 744 }; A._$serializers_closure96.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.ProjectEntity); }, - $signature: 705 + $signature: 739 }; A._$serializers_closure97.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.ScheduleEntity); }, - $signature: 702 + $signature: 737 }; A._$serializers_closure98.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.SizeEntity); }, - $signature: 731 + $signature: 762 }; A._$serializers_closure99.prototype = { call$0() { @@ -389425,135 +389890,135 @@ call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.BuiltList_String); }, - $signature: 3316 + $signature: 3319 }; A._$serializers_closure104.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.SubscriptionEntity); }, - $signature: 695 + $signature: 734 }; A._$serializers_closure105.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.TaskEntity); }, - $signature: 709 + $signature: 740 }; A._$serializers_closure106.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.TaskStatusEntity); }, - $signature: 717 + $signature: 747 }; A._$serializers_closure107.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.TaxRateEntity); }, - $signature: 718 + $signature: 748 }; A._$serializers_closure108.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.TimezoneEntity); }, - $signature: 728 + $signature: 759 }; A._$serializers_closure109.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.TokenEntity); }, - $signature: 701 + $signature: 736 }; A._$serializers_closure110.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.TransactionEntity); }, - $signature: 712 + $signature: 742 }; A._$serializers_closure111.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.TransactionRuleCriteriaEntity); }, - $signature: 3329 + $signature: 3321 }; A._$serializers_closure112.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.TransactionRuleEntity); }, - $signature: 711 + $signature: 741 }; A._$serializers_closure113.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.UserCompanyEntity); }, - $signature: 3331 + $signature: 3334 }; A._$serializers_closure114.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.UserCompanyState); }, - $signature: 3332 + $signature: 3336 }; A._$serializers_closure115.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.UserEntity); }, - $signature: 715 + $signature: 745 }; A._$serializers_closure116.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.VendorContactEntity); }, - $signature: 3340 + $signature: 3337 }; A._$serializers_closure117.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.ActivityEntity); }, - $signature: 423 + $signature: 353 }; A._$serializers_closure118.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.DocumentEntity); }, - $signature: 159 + $signature: 164 }; A._$serializers_closure119.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.VendorEntity); }, - $signature: 704 + $signature: 738 }; A._$serializers_closure120.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.WebhookEntity); }, - $signature: 697 + $signature: 735 }; A._$serializers_closure121.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.EntityType, type$.bool); }, - $signature: 691 + $signature: 732 }; A._$serializers_closure122.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.EntityType, type$.bool); }, - $signature: 691 + $signature: 732 }; A._$serializers_closure123.prototype = { call$0() { var t1 = type$.String; return A.MapBuilder_MapBuilder(t1, t1); }, - $signature: 210 + $signature: 238 }; A._$serializers_closure124.prototype = { call$0() { var t1 = type$.String; return A.MapBuilder_MapBuilder(t1, t1); }, - $signature: 210 + $signature: 238 }; A._$serializers_closure125.prototype = { call$0() { @@ -389565,19 +390030,19 @@ call$0() { return A.MapBuilder_MapBuilder(type$.EntityType, type$.PrefStateSortField); }, - $signature: 3358 + $signature: 3350 }; A._$serializers_closure127.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.CompanyPrefState); }, - $signature: 3359 + $signature: 3363 }; A._$serializers_closure128.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.BankAccountEntity); }, - $signature: 3362 + $signature: 3364 }; A._$serializers_closure129.prototype = { call$0() { @@ -389589,25 +390054,25 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.BuiltList_String); }, - $signature: 592 + $signature: 488 }; A._$serializers_closure131.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.BuiltList_String); }, - $signature: 592 + $signature: 488 }; A._$serializers_closure132.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.ReportSettingsEntity); }, - $signature: 3396 + $signature: 3367 }; A._$serializers_closure133.prototype = { call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.DashboardField); }, - $signature: 3401 + $signature: 3377 }; A._$serializers_closure134.prototype = { call$0() { @@ -389625,7 +390090,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.CompanyGatewayEntity); }, - $signature: 3403 + $signature: 3407 }; A._$serializers_closure137.prototype = { call$0() { @@ -389637,43 +390102,43 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.CurrencyEntity); }, - $signature: 3404 + $signature: 3408 }; A._$serializers_closure139.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.SizeEntity); }, - $signature: 3405 + $signature: 3409 }; A._$serializers_closure140.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.GatewayEntity); }, - $signature: 3407 + $signature: 3410 }; A._$serializers_closure141.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.IndustryEntity); }, - $signature: 3408 + $signature: 3411 }; A._$serializers_closure142.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.TimezoneEntity); }, - $signature: 3409 + $signature: 3412 }; A._$serializers_closure143.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.DateFormatEntity); }, - $signature: 3411 + $signature: 3413 }; A._$serializers_closure144.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.LanguageEntity); }, - $signature: 3415 + $signature: 3414 }; A._$serializers_closure145.prototype = { call$0() { @@ -389691,13 +390156,13 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.TemplateEntity); }, - $signature: 722 + $signature: 753 }; A._$serializers_closure148.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.DesignEntity); }, - $signature: 3422 + $signature: 3421 }; A._$serializers_closure149.prototype = { call$0() { @@ -389709,7 +390174,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.DocumentEntity); }, - $signature: 3423 + $signature: 3425 }; A._$serializers_closure151.prototype = { call$0() { @@ -389721,7 +390186,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.ExpenseCategoryEntity); }, - $signature: 3425 + $signature: 3427 }; A._$serializers_closure153.prototype = { call$0() { @@ -389733,7 +390198,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.ExpenseEntity); }, - $signature: 689 + $signature: 730 }; A._$serializers_closure155.prototype = { call$0() { @@ -389745,7 +390210,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.ExpenseEntity); }, - $signature: 689 + $signature: 730 }; A._$serializers_closure157.prototype = { call$0() { @@ -389757,13 +390222,13 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.GatewayOptionsEntity); }, - $signature: 3440 + $signature: 3430 }; A._$serializers_closure159.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.GroupEntity); }, - $signature: 3441 + $signature: 3445 }; A._$serializers_closure160.prototype = { call$0() { @@ -389775,13 +390240,13 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.ImportRequestMapping); }, - $signature: 3450 + $signature: 3447 }; A._$serializers_closure162.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.InvoiceEntity); }, - $signature: 301 + $signature: 316 }; A._$serializers_closure163.prototype = { call$0() { @@ -389793,7 +390258,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.InvoiceEntity); }, - $signature: 301 + $signature: 316 }; A._$serializers_closure165.prototype = { call$0() { @@ -389805,7 +390270,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.InvoiceEntity); }, - $signature: 301 + $signature: 316 }; A._$serializers_closure167.prototype = { call$0() { @@ -389817,7 +390282,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.InvoiceEntity); }, - $signature: 301 + $signature: 316 }; A._$serializers_closure169.prototype = { call$0() { @@ -389829,7 +390294,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.InvoiceEntity); }, - $signature: 301 + $signature: 316 }; A._$serializers_closure171.prototype = { call$0() { @@ -389841,7 +390306,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.PaymentEntity); }, - $signature: 3465 + $signature: 3449 }; A._$serializers_closure173.prototype = { call$0() { @@ -389853,7 +390318,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.PaymentTermEntity); }, - $signature: 3481 + $signature: 3458 }; A._$serializers_closure175.prototype = { call$0() { @@ -389865,13 +390330,13 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.PreImportResponseEntityDetails); }, - $signature: 3485 + $signature: 3460 }; A._$serializers_closure177.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.ProductEntity); }, - $signature: 3486 + $signature: 3473 }; A._$serializers_closure178.prototype = { call$0() { @@ -389883,7 +390348,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.ProjectEntity); }, - $signature: 3560 + $signature: 3489 }; A._$serializers_closure180.prototype = { call$0() { @@ -389895,7 +390360,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.ScheduleEntity); }, - $signature: 3561 + $signature: 3493 }; A._$serializers_closure182.prototype = { call$0() { @@ -389908,34 +390373,34 @@ var t1 = type$.String; return A.MapBuilder_MapBuilder(t1, t1); }, - $signature: 210 + $signature: 238 }; A._$serializers_closure184.prototype = { call$0() { var t1 = type$.String; return A.MapBuilder_MapBuilder(t1, t1); }, - $signature: 210 + $signature: 238 }; A._$serializers_closure185.prototype = { call$0() { var t1 = type$.String; return A.MapBuilder_MapBuilder(t1, t1); }, - $signature: 210 + $signature: 238 }; A._$serializers_closure186.prototype = { call$0() { var t1 = type$.String; return A.MapBuilder_MapBuilder(t1, t1); }, - $signature: 210 + $signature: 238 }; A._$serializers_closure187.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.SubscriptionEntity); }, - $signature: 3627 + $signature: 3494 }; A._$serializers_closure188.prototype = { call$0() { @@ -389947,7 +390412,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.TaskEntity); }, - $signature: 3628 + $signature: 3568 }; A._$serializers_closure190.prototype = { call$0() { @@ -389959,7 +390424,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.TaskStatusEntity); }, - $signature: 716 + $signature: 746 }; A._$serializers_closure192.prototype = { call$0() { @@ -389971,19 +390436,19 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.TaxConfigRegionEntity); }, - $signature: 4248 + $signature: 3569 }; A._$serializers_closure194.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.TaxConfigSubregionEntity); }, - $signature: 4252 + $signature: 3635 }; A._$serializers_closure195.prototype = { call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.TaxRateEntity); }, - $signature: 4257 + $signature: 3636 }; A._$serializers_closure196.prototype = { call$0() { @@ -389995,7 +390460,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.TokenEntity); }, - $signature: 4258 + $signature: 4256 }; A._$serializers_closure198.prototype = { call$0() { @@ -390007,7 +390472,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.TransactionEntity); }, - $signature: 4259 + $signature: 4260 }; A._$serializers_closure200.prototype = { call$0() { @@ -390019,7 +390484,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.TransactionRuleEntity); }, - $signature: 4260 + $signature: 4267 }; A._$serializers_closure202.prototype = { call$0() { @@ -390031,7 +390496,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.UserEntity); }, - $signature: 919 + $signature: 4268 }; A._$serializers_closure204.prototype = { call$0() { @@ -390043,7 +390508,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.VendorEntity); }, - $signature: 920 + $signature: 4269 }; A._$serializers_closure206.prototype = { call$0() { @@ -390055,7 +390520,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.WebhookEntity); }, - $signature: 921 + $signature: 4270 }; A._$serializers_closure208.prototype = { call$0() { @@ -390085,7 +390550,7 @@ call$0() { return A.ListBuilder_ListBuilder(B.List_empty, type$.SystemLogEntity); }, - $signature: 504 + $signature: 543 }; A._$serializers_closure213.prototype = { call$0() { @@ -390097,7 +390562,7 @@ call$0() { return A.MapBuilder_MapBuilder(type$.String, type$.BuiltList_String); }, - $signature: 592 + $signature: 488 }; A.SettingsEntity.prototype = { getFieldsForSection$1(section) { @@ -399557,7 +400022,7 @@ b.get$_task_model$_$this()._task_model$_endDate = t1; return b; }, - $signature: 260 + $signature: 256 }; A.TaskEntity.prototype = { get$clone(_) { @@ -399975,7 +400440,7 @@ B.JSArray_methods.clear$0(b.get$documents().get$_safeList()); return b; }, - $signature: 76 + $signature: 75 }; A.TaskEntity_areTimesValid_closure.prototype = { call$1(time) { @@ -400002,7 +400467,7 @@ t1.lastDateTime = t3 > t4 ? lastDateTime : endDate; } }, - $signature: 220 + $signature: 229 }; A.TaskEntity_getInvalidTimeIndices_closure.prototype = { call$1(time) { @@ -400028,19 +400493,19 @@ } ++t1.counter; }, - $signature: 220 + $signature: 229 }; A.TaskEntity_isRunning_closure.prototype = { call$1(taskTime) { return taskTime.endDate == null; }, - $signature: 215 + $signature: 208 }; A.TaskEntity_isBetween_closure.prototype = { call$1(element) { return element.endDate != null; }, - $signature: 215 + $signature: 208 }; A.TaskEntity_getTaskTimes_closure.prototype = { call$1(detail) { @@ -400072,7 +400537,7 @@ b.get$_task_model$_$this()._timeLog = t1; return b; }, - $signature: 76 + $signature: 75 }; A.TaskEntity_updateTaskTime_closure.prototype = { call$1(b) { @@ -400082,7 +400547,7 @@ b.get$_task_model$_$this()._timeLog = t1; return b; }, - $signature: 76 + $signature: 75 }; A.TaskEntity_deleteTaskTime_closure.prototype = { call$1(b) { @@ -400092,7 +400557,7 @@ b.get$_task_model$_$this()._timeLog = t1; return b; }, - $signature: 76 + $signature: 75 }; A.TaskEntity_calculateDuration_closure.prototype = { call$1(taskTime) { @@ -400102,7 +400567,7 @@ t1.seconds = t1.seconds + B.JSInt_methods._tdivFast$1(taskTime.get$duration(taskTime)._duration, 1000000); } }, - $signature: 220 + $signature: 229 }; A._$TaskListResponseSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { @@ -403296,7 +403761,7 @@ var t1 = this.state; return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].bankAccountState.map._map$_map.$index(0, bankAccountId); }, - $signature: 357 + $signature: 358 }; A.TransactionEntity_TransactionEntity_closure0.prototype = { call$1(bankAccount) { @@ -406281,43 +406746,43 @@ b.get$_vendor_model$_$this()._isPrimary = true; return b; }, - $signature: 358 + $signature: 359 }; A.VendorEntity_emailContacts_closure.prototype = { call$1(contact) { return contact.sendEmail; }, - $signature: 194 + $signature: 197 }; A.VendorEntity_primaryContact_closure.prototype = { call$1(contact) { return contact.isPrimary; }, - $signature: 194 + $signature: 197 }; A.VendorEntity_primaryContact_closure0.prototype = { call$0() { return A.VendorContactEntity_VendorContactEntity(); }, - $signature: 585 + $signature: 590 }; A.VendorEntity_hasEmailAddress_closure.prototype = { call$1(contact) { return contact.email.length !== 0; }, - $signature: 194 + $signature: 197 }; A.VendorEntity_getContact_closure.prototype = { call$1(contact) { return contact.id === this.contactId; }, - $signature: 194 + $signature: 197 }; A.VendorEntity_getContact_closure0.prototype = { call$0() { return A.VendorContactEntity_VendorContactEntity(); }, - $signature: 585 + $signature: 590 }; A.VendorContactEntity.prototype = { get$entityType() { @@ -411264,7 +411729,7 @@ B.JSArray_methods.clear$0(b.get$documents().get$_safeList()); return b; }, - $signature: 185 + $signature: 180 }; A.ProjectRepository.prototype = { loadItem$2(credentials, entityId) { @@ -411302,31 +411767,31 @@ }); return A._asyncStartSync($async$loadItem$2, $async$completer); }, - loadList$3(credentials, createdAt, filterDeleted) { - return this.loadList$body$ProjectRepository(credentials, createdAt, filterDeleted); + loadList$2(credentials, filterDeleted) { + return this.loadList$body$ProjectRepository(credentials, filterDeleted); }, - loadList$body$ProjectRepository(credentials, createdAt, filterDeleted) { + loadList$body$ProjectRepository(credentials, filterDeleted) { var $async$goto = 0, $async$completer = A._makeAsyncAwaitCompleter(type$.BuiltList_ProjectEntity), $async$returnValue, response, t1, url; - var $async$loadList$3 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { + var $async$loadList$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) { if ($async$errorCode === 1) return A._asyncRethrow($async$result, $async$completer); while (true) switch ($async$goto) { case 0: // Function start - url = credentials.url + ("/projects?created_at=" + createdAt); + url = credentials.url + "/projects?"; if (filterDeleted) url += "&filter_deleted_clients=true"; $async$goto = 3; - return A._asyncAwait(B.C_WebClient.$get$2(0, url, credentials.token), $async$loadList$3); + return A._asyncAwait(B.C_WebClient.$get$2(0, url, credentials.token), $async$loadList$2); case 3: // returning from await. response = $async$result; t1 = type$.dynamic; $async$goto = 4; - return A._asyncAwait(A.compute(A.serialization0_SerializationUtils_deserializeWith$closure(), [$.$get$_$projectListResponseSerializer(), response], null, t1, t1), $async$loadList$3); + return A._asyncAwait(A.compute(A.serialization0_SerializationUtils_deserializeWith$closure(), [$.$get$_$projectListResponseSerializer(), response], null, t1, t1), $async$loadList$2); case 4: // returning from await. $async$returnValue = $async$result.data; @@ -411338,7 +411803,7 @@ return A._asyncReturn($async$returnValue, $async$completer); } }); - return A._asyncStartSync($async$loadList$3, $async$completer); + return A._asyncStartSync($async$loadList$2, $async$completer); }, bulkAction$3(credentials, ids, action) { return this.bulkAction$body$ProjectRepository(credentials, ids, action); @@ -414970,7 +415435,7 @@ b.get$_pref_state$_$this()._enableDarkModeSystem = t1.platformBrightness === B.Brightness_0; return b; }, - $signature: 579 + $signature: 601 }; A._initialState_closure0.prototype = { call$1(b) { @@ -414978,7 +415443,7 @@ b.get$useSidebarEditor().$indexSet(0, B.EntityType_task, true); return b; }, - $signature: 579 + $signature: 601 }; A._registerErrorHandlers_closure.prototype = { call$1(details) { @@ -415105,19 +415570,19 @@ t1[0].call$1(new A.RefreshData(null, false, false, false)); } }, - $signature: 229 + $signature: 215 }; A.InvoiceNinjaAppState_generateRoute_closure.prototype = { call$1(_) { return new A.LoginScreen(null); }, - $signature: 688 + $signature: 727 }; A.InvoiceNinjaAppState_generateRoute_closure0.prototype = { call$1(_) { return new A.MainScreen(null); }, - $signature: 687 + $signature: 724 }; A.InvoiceNinjaAppState_build_closure.prototype = { call$1(context) { @@ -415247,7 +415712,7 @@ child.toString; return A.MediaQuery$(child, t1, null); }, - $signature: 567 + $signature: 584 }; A.InvoiceNinjaAppState_build__closure.prototype = { call$1(locale) { @@ -415259,13 +415724,13 @@ call$1(context) { return new A.LoginScreen(null); }, - $signature: 688 + $signature: 727 }; A.InvoiceNinjaAppState_build__closure1.prototype = { call$1(context) { return new A.MainScreen(null); }, - $signature: 687 + $signature: 724 }; A.InvoiceNinjaAppState_build__closure2.prototype = { call$1(context) { @@ -415451,13 +415916,13 @@ call$1(context) { return new A.PaymentEditScreen(null); }, - $signature: 686 + $signature: 723 }; A.InvoiceNinjaAppState_build__closure33.prototype = { call$1(context) { return new A.PaymentRefundScreen(null); }, - $signature: 685 + $signature: 722 }; A.InvoiceNinjaAppState_build__closure34.prototype = { call$1(context) { @@ -416478,7 +416943,7 @@ var t1 = this.state; return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].userCompany.company.isModuleEnabled$1(entityType); }, - $signature: 267 + $signature: 246 }; A.createEntityByType_closure.prototype = { call$0() { @@ -417409,7 +417874,7 @@ b.get$_ui_state$_$this()._currentRoute = this.state.uiState.currentRoute; return b; }, - $signature: 684 + $signature: 721 }; A._createLoadState__closure0.prototype = { call$1(b) { @@ -417433,7 +417898,7 @@ b.get$userCompanyStates().replace$1(0, this.companyStates); return b; }, - $signature: 303 + $signature: 284 }; A._createLoadState__closure1.prototype = { call$1(_) { @@ -417464,13 +417929,13 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.ViewDashboard(false, null)); }, - $signature: 12 + $signature: 11 }; A._getRoutes_closure.prototype = { call$1(part) { return part.length !== 0; }, - $signature: 11 + $signature: 12 }; A._getRoutes_closure0.prototype = { call$1(part) { @@ -417865,7 +418330,7 @@ call$1(repo) { return repo.delete$0(0); }, - $signature: 683 + $signature: 720 }; A._createViewMainScreen_closure.prototype = { call$3(store, dynamicAction, next) { @@ -417893,7 +418358,7 @@ call$1(duration) { $.$get$navigatorKey().get$currentState().pushNamed$1$1("/main", type$.nullable_Object); }, - $signature: 12 + $signature: 11 }; A._createClearData_closure.prototype = { call$3(store, action, next) { @@ -417929,7 +418394,7 @@ call$1(repo) { return repo.delete$0(0); }, - $signature: 683 + $signature: 720 }; A.appReducer_closure.prototype = { call$1(b) { @@ -417941,7 +418406,7 @@ b.get$_$this()._isTesting = t2.isTesting; return b; }, - $signature: 303 + $signature: 284 }; A.appReducer__closure.prototype = { call$1(b) { @@ -417949,7 +418414,7 @@ b.get$_auth_state$_$this()._lastEnteredPasswordAt = 0; return b; }, - $signature: 184 + $signature: 185 }; A.appReducer_closure0.prototype = { call$1(b) { @@ -417957,7 +418422,7 @@ b.get$_$this()._isSaving = false; return b; }, - $signature: 303 + $signature: 284 }; A.appReducer_closure1.prototype = { call$1(b) { @@ -417969,7 +418434,7 @@ t1.get$_safeList()[t3] = t2; return b; }, - $signature: 303 + $signature: 284 }; A.appReducer_closure2.prototype = { call$1(b) { @@ -418009,7 +418474,7 @@ t4._pref_state$_$v = t5; return b; }, - $signature: 303 + $signature: 284 }; A.lastErrorReducer_closure.prototype = { call$2(state, action) { @@ -418171,7 +418636,7 @@ call$2(state, action) { return true; }, - $signature: 682 + $signature: 719 }; A.AppState.prototype = { get$company() { @@ -418248,7 +418713,7 @@ var version = "v" + this.userCompanyStates._list$_list[this.uiState.selectedCompanyIndex].userCompany.account.currentVersion; if (version.length !== 0) version += "-"; - return B.JSString_methods.$add(version + A.getPlatformLetter(), B.JSArray_methods.get$last("5.0.146".split("."))); + return B.JSString_methods.$add(version + A.getPlatformLetter(), B.JSArray_methods.get$last("5.0.147".split("."))); }, get$historyList() { var _this = this, @@ -418700,7 +419165,7 @@ call$1(company) { return company.id.length !== 0; }, - $signature: 680 + $signature: 718 }; A.AppState_historyList_closure.prototype = { call$1($history) { @@ -418713,13 +419178,13 @@ } return true; }, - $signature: 679 + $signature: 715 }; A.AppState_getEntityMap_closure.prototype = { call$1(item) { return J.get$id$x(item); }, - $signature: 218 + $signature: 237 }; A.AppState_getEntityMap_closure0.prototype = { call$1(item) { @@ -419161,7 +419626,7 @@ t2[0].call$1(new A.LoadAccountSuccess(t1.completer, data)); t2[0].call$1(new A.UserVerifiedPassword()); }, - $signature: 244 + $signature: 239 }; A._createLoginRequest__closure0.prototype = { call$1(error) { @@ -419198,7 +419663,7 @@ t1[0].call$1(new A.LoadAccountSuccess(this.action.completer, data)); t1[0].call$1(new A.UserVerifiedPassword()); }, - $signature: 244 + $signature: 239 }; A._createSignUpRequest__closure0.prototype = { call$1(error) { @@ -419233,7 +419698,7 @@ t2[0].call$1(new A.LoadAccountSuccess(t1.completer, data)); t2[0].call$1(new A.UserVerifiedPassword()); }, - $signature: 244 + $signature: 239 }; A._createOAuthLoginRequest__closure0.prototype = { call$1(error) { @@ -419270,7 +419735,7 @@ t1[0].call$1(new A.LoadAccountSuccess(this.action.completer, data)); t1[0].call$1(new A.UserVerifiedPassword()); }, - $signature: 244 + $signature: 239 }; A._createOAuthSignUpRequest__closure0.prototype = { call$1(error) { @@ -419392,7 +419857,7 @@ t1 = $.$get$navigatorKey(); $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).findAncestorStateOfType$1$0(type$.AppBuilderState).rebuild$0(); }, - $signature: 244 + $signature: 239 }; A._createRefreshRequest___closure.prototype = { call$1(userCompany) { @@ -419450,7 +419915,7 @@ t1[0].call$1(new A.RecoverPasswordSuccess()); this.action.completer.complete$1(0, null); }, - $signature: 244 + $signature: 239 }; A._createRecoverRequest__closure0.prototype = { call$1(error) { @@ -419724,7 +420189,7 @@ b.get$_auth_state$_$this()._auth_state$_url = t1; return b; }, - $signature: 184 + $signature: 185 }; A.userSignUpRequestReducer_closure.prototype = { call$1(b) { @@ -419732,7 +420197,7 @@ b.get$_auth_state$_$this()._auth_state$_url = t1; return b; }, - $signature: 184 + $signature: 185 }; A.userLoginRequestReducer_closure.prototype = { call$1(b) { @@ -419742,7 +420207,7 @@ b.get$_auth_state$_$this()._auth_state$_email = t1.email; return b; }, - $signature: 184 + $signature: 185 }; A.oauthLoginRequestReducer_closure.prototype = { call$1(b) { @@ -419750,7 +420215,7 @@ b.get$_auth_state$_$this()._auth_state$_url = t1; return b; }, - $signature: 184 + $signature: 185 }; A.oauthSignUpRequestReducer_closure.prototype = { call$1(b) { @@ -419758,14 +420223,14 @@ b.get$_auth_state$_$this()._auth_state$_url = t1; return b; }, - $signature: 184 + $signature: 185 }; A.userLoginSuccessReducer_closure.prototype = { call$1(b) { b.get$_auth_state$_$this()._isAuthenticated = true; return b; }, - $signature: 184 + $signature: 185 }; A.userVerifiedPasswordReducer_closure.prototype = { call$1(b) { @@ -419773,14 +420238,14 @@ b.get$_auth_state$_$this()._lastEnteredPasswordAt = t1; return b; }, - $signature: 184 + $signature: 185 }; A.userUnverifiedPasswordReducer_closure.prototype = { call$1(b) { b.get$_auth_state$_$this()._lastEnteredPasswordAt = 0; return b; }, - $signature: 184 + $signature: 185 }; A.AuthState.prototype = { get$isHosted() { @@ -420046,7 +420511,7 @@ b.get$_transaction_model$_$this()._bankAccountId = this.bankAccount.id; return b; }, - $signature: 137 + $signature: 132 }; A._editBankAccount_closure.prototype = { call$3(store, dynamicAction, next) { @@ -420148,7 +420613,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].bankAccountState.map._map$_map.$index(0, id); }, - $signature: 357 + $signature: 358 }; A._archiveBankAccount__closure0.prototype = { call$1(bankAccounts) { @@ -420157,7 +420622,7 @@ t1[0].call$1(new A.ArchiveBankAccountsSuccess(bankAccounts)); this.action.completer.complete$1(0, null); }, - $signature: 550 + $signature: 511 }; A._archiveBankAccount__closure1.prototype = { call$1(error) { @@ -420192,7 +420657,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].bankAccountState.map._map$_map.$index(0, id); }, - $signature: 357 + $signature: 358 }; A._deleteBankAccount__closure0.prototype = { call$1(bankAccounts) { @@ -420201,7 +420666,7 @@ t1[0].call$1(new A.DeleteBankAccountsSuccess(bankAccounts)); this.action.completer.complete$1(0, null); }, - $signature: 550 + $signature: 511 }; A._deleteBankAccount__closure1.prototype = { call$1(error) { @@ -420236,7 +420701,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].bankAccountState.map._map$_map.$index(0, id); }, - $signature: 357 + $signature: 358 }; A._restoreBankAccount__closure0.prototype = { call$1(bankAccounts) { @@ -420245,7 +420710,7 @@ t1[0].call$1(new A.RestoreBankAccountsSuccess(bankAccounts)); this.action.completer.complete$1(0, null); }, - $signature: 550 + $signature: 511 }; A._restoreBankAccount__closure1.prototype = { call$1(error) { @@ -420288,7 +420753,7 @@ } t1.completer.complete$1(0, bankAccount); }, - $signature: 369 + $signature: 367 }; A._saveBankAccount__closure0.prototype = { call$1(error) { @@ -420324,7 +420789,7 @@ t1[0].call$1(new A.LoadBankAccountSuccess(bankAccount)); this.action.completer.complete$1(0, null); }, - $signature: 369 + $signature: 367 }; A._loadBankAccount__closure0.prototype = { call$1(error) { @@ -420482,25 +420947,25 @@ call$2(selectedId, action) { return action.get$bankAccountId(); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure342.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$bankAccount()); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure343.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure344.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure345.prototype = { call$2(selectedId, action) { @@ -420555,7 +421020,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure114.prototype = { call$2(bankAccount, action) { @@ -420568,7 +421033,7 @@ b.get$_bank_account_model$_$this()._bank_account_model$_isChanged = true; return b; }, - $signature: 266 + $signature: 249 }; A.editingReducer_closure115.prototype = { call$2(bankAccounts, action) { @@ -420592,7 +421057,7 @@ call$2(state, action) { return state.rebuild$1(new A.bankAccountListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.bankAccountListReducer__closure.prototype = { call$1(b) { @@ -420745,7 +421210,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 510 + $signature: 540 }; A._deleteBankAccountSuccess_closure.prototype = { call$1(b) { @@ -420767,7 +421232,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 510 + $signature: 540 }; A._restoreBankAccountSuccess_closure.prototype = { call$1(b) { @@ -420789,7 +421254,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 510 + $signature: 540 }; A._addBankAccount_closure.prototype = { call$1(b) { @@ -420844,7 +421309,7 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A.dropdownBankAccountsSelector_closure0.prototype = { call$2(bankAccountAId, bankAccountBId) { @@ -420853,7 +421318,7 @@ t2.toString; return t2.compareTo$3(0, t1.$index(0, bankAccountBId), "name", true); }, - $signature: 26 + $signature: 25 }; A.memoizedFilteredBankAccountList_closure.prototype = { call$4(selectionState, bankAccountMap, bankAccountList, bankAccountListState) { @@ -420872,7 +421337,7 @@ return false; return A.matchesStrings(A._setArrayType([bankAccount.name, bankAccount.type], type$.JSArray_nullable_String), t1.filter); }, - $signature: 11 + $signature: 12 }; A.filteredBankAccountsSelector_closure0.prototype = { call$2(bankAccountAId, bankAccountBId) { @@ -420883,7 +421348,7 @@ t3 = this.bankAccountListState; return t2.compareTo$3(0, t1.$index(0, bankAccountBId), t3.sortField, t3.sortAscending); }, - $signature: 26 + $signature: 25 }; A.BankAccountState.prototype = { $get$1(_, bankAccountId) { @@ -421459,19 +421924,19 @@ b.get$_task_model$_$this()._task_model$_clientId = this.client.id; return b; }, - $signature: 76 + $signature: 75 }; A.handleClientAction_closure1.prototype = { call$1(b) { return b.get$_payment_model$_$this()._payment_model$_clientId = this.client.id; }, - $signature: 678 + $signature: 703 }; A.handleClientAction_closure2.prototype = { call$1(b) { return b.get$_project_model$_$this()._project_model$_clientId = this.client.id; }, - $signature: 677 + $signature: 701 }; A.handleClientAction_closure3.prototype = { call$1(_) { @@ -421499,7 +421964,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.PurgeClientRequest(t1, this.client.id, password, idToken)); }, - $signature: 79 + $signature: 80 }; A.handleClientAction___closure.prototype = { call$0() { @@ -421517,7 +421982,7 @@ call$1(context) { return new A.RunTemplateDialog(B.EntityType_client, this.clients, null); }, - $signature: 310 + $signature: 319 }; A.StartClientMultiselect.prototype = {}; A.AddToClientMultiselect.prototype = {}; @@ -421577,7 +422042,7 @@ var t1 = this.$this; return t1.setState$1(new A.__MergClientPickerState_build__closure0(t1, client)); }, - $signature: 371 + $signature: 373 }; A.__MergClientPickerState_build__closure0.prototype = { call$0() { @@ -421625,7 +422090,7 @@ t4[0].call$1(new A.MergeClientsRequest(t3, t2.id, t1, password, idToken)); A.Navigator_of(_this.context, false).pop$0(); }, - $signature: 79 + $signature: 80 }; A._editClient_closure.prototype = { call$3(store, dynamicAction, next) { @@ -421726,7 +422191,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].clientState.map._map$_map.$index(0, id); }, - $signature: 493 + $signature: 561 }; A._archiveClient__closure0.prototype = { call$1(clients) { @@ -421735,7 +422200,7 @@ t1[0].call$1(new A.ArchiveClientsSuccess(clients)); this.action.completer.complete$1(0, null); }, - $signature: 492 + $signature: 562 }; A._archiveClient__closure1.prototype = { call$1(error) { @@ -421770,7 +422235,7 @@ t2[0].call$1(new A.RefreshData(null, false, false, false)); t1.completer.complete$1(0, null); }, - $signature: 311 + $signature: 317 }; A._mergeClients__closure0.prototype = { call$1(error) { @@ -421805,7 +422270,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].clientState.map._map$_map.$index(0, id); }, - $signature: 493 + $signature: 561 }; A._deleteClient__closure0.prototype = { call$1(clients) { @@ -421814,7 +422279,7 @@ t1[0].call$1(new A.DeleteClientsSuccess(clients)); this.action.completer.complete$1(0, null); }, - $signature: 492 + $signature: 562 }; A._deleteClient__closure1.prototype = { call$1(error) { @@ -421848,7 +422313,7 @@ t2[0].call$1(new A.PurgeClientSuccess(t1.clientId)); t1.completer.complete$1(0, null); }, - $signature: 188 + $signature: 175 }; A._purgeClient__closure0.prototype = { call$1(error) { @@ -421883,7 +422348,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].clientState.map._map$_map.$index(0, id); }, - $signature: 493 + $signature: 561 }; A._restoreClient__closure0.prototype = { call$1(clients) { @@ -421892,7 +422357,7 @@ t1[0].call$1(new A.RestoreClientSuccess(clients)); this.action.completer.complete$1(0, null); }, - $signature: 492 + $signature: 562 }; A._restoreClient__closure1.prototype = { call$1(error) { @@ -421938,7 +422403,7 @@ if (t1 != null) t1.complete$1(0, client); }, - $signature: 311 + $signature: 317 }; A._saveClient__closure0.prototype = { call$1(error) { @@ -421976,7 +422441,7 @@ if (t1 != null) t1.complete$1(0, null); }, - $signature: 311 + $signature: 317 }; A._loadClient__closure0.prototype = { call$1(error) { @@ -422029,13 +422494,13 @@ call$1(client) { B.JSArray_methods.forEach$1(client.documents._list$_list, new A._loadClients____closure(this.documents, client)); }, - $signature: 675 + $signature: 696 }; A._loadClients____closure.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._loadClients_____closure(this.client))); }, - $signature: 42 + $signature: 41 }; A._loadClients_____closure.prototype = { call$1(b) { @@ -422086,13 +422551,13 @@ t1[0].call$1(new A.LoadDocumentsSuccess(documents)); this.action.completer.complete$1(0, documents); }, - $signature: 311 + $signature: 317 }; A._saveDocument___closure11.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._saveDocument____closure11(this.client))); }, - $signature: 42 + $signature: 41 }; A._saveDocument____closure11.prototype = { call$1(b) { @@ -422305,13 +422770,13 @@ call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure425.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure426.prototype = { call$2(selectedId, action) { @@ -422359,7 +422824,7 @@ call$2(selectedId, action) { return action.entityType === B.EntityType_client ? "" : selectedId; }, - $signature: 183 + $signature: 176 }; A.selectedIdReducer_closure434.prototype = { call$2(selectedId, action) { @@ -422372,7 +422837,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure141.prototype = { call$2(client, action) { @@ -422502,7 +422967,7 @@ call$2(state, action) { return state.rebuild$1(new A.clientListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.clientListReducer__closure.prototype = { call$1(b) { @@ -422687,7 +423152,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 481 + $signature: 580 }; A._deleteClientSuccess_closure.prototype = { call$1(b) { @@ -422709,7 +423174,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 481 + $signature: 580 }; A._restoreClientSuccess_closure.prototype = { call$1(b) { @@ -422731,7 +423196,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 481 + $signature: 580 }; A._addClient_closure.prototype = { call$1(b) { @@ -422827,7 +423292,7 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A.dropdownClientsSelector_closure0.prototype = { call$2(clientAId, clientBId) { @@ -422836,13 +423301,13 @@ t2.toString; return t2.compareTo$5(0, t1.$index(0, clientBId), "name", true, this.userMap, this.staticState); }, - $signature: 26 + $signature: 25 }; A.memoizedClientStatsForUser_closure.prototype = { call$2(userId, clientMap) { return A.clientStatsForUser(userId, clientMap); }, - $signature: 674 + $signature: 693 }; A.clientStatsForUser_closure.prototype = { call$2(clientId, client) { @@ -422916,13 +423381,13 @@ return false; return true; }, - $signature: 11 + $signature: 12 }; A.filteredClientsSelector__closure.prototype = { call$1(token) { return token.companyGatewayId === this.filterEntityId; }, - $signature: 673 + $signature: 690 }; A.filteredClientsSelector_closure0.prototype = { call$2(clientAId, clientBId) { @@ -422933,7 +423398,7 @@ t3 = _this.clientListState; return t2.compareTo$5(0, t1.$index(0, clientBId), t3.sortField, t3.sortAscending, _this.userMap, _this.staticState); }, - $signature: 26 + $signature: 25 }; A.ClientState.prototype = { $get$1(_, clientId) { @@ -423604,7 +424069,7 @@ b.get$company().get$_company_model$_$this()._hasEInvoiceCertificatePassphrase = t1.hasEInvoiceCertificatePassphrase; return b; }, - $signature: 101 + $signature: 104 }; A.userCompanyEntityReducer_closure0.prototype = { call$2(userCompany, action) { @@ -423624,7 +424089,7 @@ b.get$settings().get$reportSettings().$indexSet(0, t1.report, t2.rebuild$1(new A.userCompanyEntityReducer___closure(t1, t2))); return b; }, - $signature: 101 + $signature: 104 }; A.userCompanyEntityReducer___closure.prototype = { call$1(b) { @@ -423661,7 +424126,7 @@ b.get$_company_model$_$this()._sortTotalsIndex = t1; return b; }, - $signature: 672 + $signature: 687 }; A.userCompanyEntityReducer__closure11.prototype = { call$1(b) { @@ -423669,7 +424134,7 @@ b.get$settings().get$reportSettings().$indexSet(0, t1.report, A.ReportSettingsEntity_ReportSettingsEntity(t1.sortColumn, t1.sortTotalsIndex)); return b; }, - $signature: 101 + $signature: 104 }; A.userCompanyEntityReducer_closure1.prototype = { call$2(userCompany, action) { @@ -423689,7 +424154,7 @@ t1._company_model$_$v = t2; return b; }, - $signature: 101 + $signature: 104 }; A.userCompanyEntityReducer_closure2.prototype = { call$2(userCompany, action) { @@ -423705,7 +424170,7 @@ t1._user_model$_$v = t2; return b; }, - $signature: 101 + $signature: 104 }; A.userCompanyEntityReducer_closure3.prototype = { call$2(userCompany, action) { @@ -423721,7 +424186,7 @@ t1._user_model$_$v = t2; return b; }, - $signature: 101 + $signature: 104 }; A.userCompanyEntityReducer_closure4.prototype = { call$2(userCompany, action) { @@ -423737,7 +424202,7 @@ t1._user_model$_$v = t2; return b; }, - $signature: 101 + $signature: 104 }; A.userCompanyEntityReducer_closure5.prototype = { call$2(userCompany, action) { @@ -423753,7 +424218,7 @@ t1._user_model$_$v = t2; return b; }, - $signature: 101 + $signature: 104 }; A.userCompanyEntityReducer_closure6.prototype = { call$2(userCompany, action) { @@ -423766,7 +424231,7 @@ b.get$user(b).get$_user_model$_$this()._isTwoFactorEnabled = false; return b; }, - $signature: 101 + $signature: 104 }; A.userCompanyEntityReducer_closure7.prototype = { call$2(userCompany, action) { @@ -423782,7 +424247,7 @@ t1._company_model$_$v = t2; return b; }, - $signature: 101 + $signature: 104 }; A.userCompanyEntityReducer_closure8.prototype = { call$2(userCompany, action) { @@ -423795,7 +424260,7 @@ b.get$company().get$settings().get$_settings_model$_$this()._settings_model$_languageId = this.action.languageId; return b; }, - $signature: 101 + $signature: 104 }; A.userCompanyEntityReducer_closure9.prototype = { call$2(userCompany, action) { @@ -423808,7 +424273,7 @@ b.get$settings().get$dashboardFields().replace$1(0, this.action.dashboardFields); return b; }, - $signature: 101 + $signature: 104 }; A.userCompanyEntityReducer_closure10.prototype = { call$2(userCompany, action) { @@ -423825,14 +424290,14 @@ b.get$settings().get$_company_model$_$this()._dashboardFieldsPerRowDesktop = this.action.numberFieldsPerRowDesktop; return b; }, - $signature: 101 + $signature: 104 }; A.userCompanyEntityReducer__closure0.prototype = { call$1(b) { b.get$settings().get$_company_model$_$this()._dashboardFieldsPerRowMobile = this.action.numberFieldsPerRowMobile; return b; }, - $signature: 101 + $signature: 104 }; A.loadCompanySuccessReducer_closure.prototype = { call$1(b) { @@ -423852,7 +424317,7 @@ t1._company_model$_$v = t2; return b; }, - $signature: 101 + $signature: 104 }; A.saveCompanySuccessReducer_closure.prototype = { call$1(b) { @@ -423874,7 +424339,7 @@ t1._company_model$_$v = t2; return b; }, - $signature: 101 + $signature: 104 }; A.lastUpdatedReducer_closure.prototype = { call$2(state, action) { @@ -423912,7 +424377,7 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A.dropdownExpenseCategoriesSelector_closure2.prototype = { call$2(categoryAId, categoryBId) { @@ -423921,7 +424386,7 @@ t2.toString; return t2.compareTo$3$expenseCategory$sortAscending$sortField(0, t1.$index(0, categoryBId), true, "name"); }, - $signature: 26 + $signature: 25 }; A.memoizedHasMultipleCurrencies_closure.prototype = { call$3(company, clientMap, groupMap) { @@ -423970,7 +424435,7 @@ call$1(product) { return product.matchesFilter$1(this.filter); }, - $signature: 671 + $signature: 686 }; A.filteredSelector_closure1.prototype = { call$1(clientId) { @@ -423992,13 +424457,13 @@ t1.toString; return t1; }, - $signature: 471 + $signature: 600 }; A.filteredSelector_closure4.prototype = { call$1(quote) { return quote.matchesFilter$1(this.filter); }, - $signature: 197 + $signature: 194 }; A.filteredSelector_closure5.prototype = { call$1(paymentId) { @@ -424012,7 +424477,7 @@ call$1(payment) { return payment.matchesFilter$1(this.filter); }, - $signature: 463 + $signature: 602 }; A.filteredSelector_closure7.prototype = { call$1(projectId) { @@ -424026,7 +424491,7 @@ call$1(project) { return project.matchesFilter$1(this.filter); }, - $signature: 670 + $signature: 685 }; A.filteredSelector_closure9.prototype = { call$1(taskId) { @@ -424034,13 +424499,13 @@ t1.toString; return t1; }, - $signature: 669 + $signature: 682 }; A.filteredSelector_closure10.prototype = { call$1(task) { return task.matchesFilter$1(this.filter); }, - $signature: 668 + $signature: 681 }; A.filteredSelector_closure11.prototype = { call$1(invoiceId) { @@ -424048,13 +424513,13 @@ t1.toString; return t1; }, - $signature: 471 + $signature: 600 }; A.filteredSelector_closure12.prototype = { call$1(invoice) { return invoice.matchesFilter$1(this.filter); }, - $signature: 197 + $signature: 194 }; A.filteredSelector_closure13.prototype = { call$2(entityA, entityB) { @@ -425041,7 +425506,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.DisconnectCompanyGatewayRequest(this.completer, t1, password, idToken)); }, - $signature: 79 + $signature: 80 }; A.StartCompanyGatewayMultiselect.prototype = {}; A.AddToCompanyGatewayMultiselect.prototype = {}; @@ -425147,7 +425612,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].companyGatewayState.map._map$_map.$index(0, id); }, - $signature: 448 + $signature: 611 }; A._archiveCompanyGateway__closure0.prototype = { call$1(companyGateways) { @@ -425156,7 +425621,7 @@ t1[0].call$1(new A.ArchiveCompanyGatewaySuccess(companyGateways)); this.action.completer.complete$1(0, null); }, - $signature: 446 + $signature: 444 }; A._archiveCompanyGateway__closure1.prototype = { call$1(error) { @@ -425191,7 +425656,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].companyGatewayState.map._map$_map.$index(0, id); }, - $signature: 448 + $signature: 611 }; A._deleteCompanyGateway__closure0.prototype = { call$1(companyGateways) { @@ -425200,7 +425665,7 @@ t1[0].call$1(new A.DeleteCompanyGatewaySuccess(companyGateways)); this.action.completer.complete$1(0, null); }, - $signature: 446 + $signature: 444 }; A._deleteCompanyGateway__closure1.prototype = { call$1(error) { @@ -425235,7 +425700,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].companyGatewayState.map._map$_map.$index(0, id); }, - $signature: 448 + $signature: 611 }; A._restoreCompanyGateway__closure0.prototype = { call$1(companyGateways) { @@ -425244,7 +425709,7 @@ t1[0].call$1(new A.RestoreCompanyGatewaySuccess(companyGateways)); this.action.completer.complete$1(0, null); }, - $signature: 446 + $signature: 444 }; A._restoreCompanyGateway__closure1.prototype = { call$1(error) { @@ -425513,13 +425978,13 @@ call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure127.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure128.prototype = { call$2(selectedId, action) { @@ -425574,7 +426039,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure37.prototype = { call$2(companyGateways, action) { @@ -425605,13 +426070,13 @@ b.get$_company_gateway_model$_$this()._company_gateway_model$_isChanged = true; return b; }, - $signature: 66 + $signature: 65 }; A.companyGatewayListReducer_closure.prototype = { call$2(state, action) { return state.rebuild$1(new A.companyGatewayListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.companyGatewayListReducer__closure.prototype = { call$1(b) { @@ -425751,7 +426216,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 444 + $signature: 616 }; A._deleteCompanyGatewaySuccess_closure.prototype = { call$1(b) { @@ -425773,7 +426238,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 444 + $signature: 616 }; A._restoreCompanyGatewaySuccess_closure.prototype = { call$1(b) { @@ -425795,7 +426260,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 444 + $signature: 616 }; A._addCompanyGateway_closure.prototype = { call$1(b) { @@ -425807,7 +426272,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 214 + $signature: 218 }; A._addCompanyGateway__closure.prototype = { call$1(b) { @@ -425815,7 +426280,7 @@ b.get$_company_gateway_model$_$this()._company_gateway_model$_loadedAt = t1; return b; }, - $signature: 66 + $signature: 65 }; A._updateCompanyGateway_closure.prototype = { call$1(b) { @@ -425823,7 +426288,7 @@ b.get$map(b).$indexSet(0, t1.id, t1.rebuild$1(new A._updateCompanyGateway__closure())); return b; }, - $signature: 214 + $signature: 218 }; A._updateCompanyGateway__closure.prototype = { call$1(b) { @@ -425831,7 +426296,7 @@ b.get$_company_gateway_model$_$this()._company_gateway_model$_loadedAt = t1; return b; }, - $signature: 66 + $signature: 65 }; A._setLoadedCompanyGateway_closure.prototype = { call$1(b) { @@ -425839,7 +426304,7 @@ b.get$map(b).$indexSet(0, t1.id, t1.rebuild$1(new A._setLoadedCompanyGateway__closure())); return b; }, - $signature: 214 + $signature: 218 }; A._setLoadedCompanyGateway__closure.prototype = { call$1(b) { @@ -425847,14 +426312,14 @@ b.get$_company_gateway_model$_$this()._company_gateway_model$_loadedAt = t1; return b; }, - $signature: 66 + $signature: 65 }; A._setLoadedCompany_closure1.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.userCompany.company.companyGateways, new A._setLoadedCompany__closure1(), new A._setLoadedCompany__closure2(), type$.String, type$.CompanyGatewayEntity)); return b; }, - $signature: 214 + $signature: 218 }; A._setLoadedCompany__closure1.prototype = { call$1(item) { @@ -425866,7 +426331,7 @@ call$1(item) { return item; }, - $signature: 667 + $signature: 679 }; A._setLoadedCompany_closure2.prototype = { call$1(b) { @@ -425874,14 +426339,14 @@ b.get$list(b).replace$1(0, t1.get$keys(t1)); return b; }, - $signature: 214 + $signature: 218 }; A._setLoadedCompanyGateways_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.companyGateways, new A._setLoadedCompanyGateways__closure(), new A._setLoadedCompanyGateways__closure0(), type$.String, type$.CompanyGatewayEntity)); return b; }, - $signature: 214 + $signature: 218 }; A._setLoadedCompanyGateways__closure.prototype = { call$1(item) { @@ -425893,7 +426358,7 @@ call$1(item) { return item; }, - $signature: 667 + $signature: 679 }; A._setLoadedCompanyGateways_closure0.prototype = { call$1(b) { @@ -425901,7 +426366,7 @@ b.get$list(b).replace$1(0, t1.get$keys(t1)); return b; }, - $signature: 214 + $signature: 218 }; A.memoizedFilteredCompanyGatewayList_closure.prototype = { call$5(companyGatewayMap, companyGatewayList, companyGatewayListState, companyGatewayIds, includeAll) { @@ -425917,7 +426382,7 @@ return false; return true; }, - $signature: 11 + $signature: 12 }; A.filteredCompanyGatewaysSelector_closure0.prototype = { call$1(id) { @@ -425929,7 +426394,7 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A.filteredCompanyGatewaysSelector_closure1.prototype = { call$1(id) { @@ -425953,13 +426418,13 @@ t1.total = t1.total + payment.get$completedAmount() * payment.exchangeRate; } }, - $signature: 198 + $signature: 195 }; A.memoizedClientStatsForCompanyGateway_closure.prototype = { call$2(companyGatewayId, clientMap) { return A.clientStatsForCompanyGateway(companyGatewayId, clientMap); }, - $signature: 674 + $signature: 693 }; A.clientStatsForCompanyGateway_closure.prototype = { call$2(clientId, client) { @@ -426000,7 +426465,7 @@ call$1(token) { return token.companyGatewayId === this.companyGatewayId; }, - $signature: 673 + $signature: 690 }; A.memoizedPaymentStatsForCompanyGateway_closure.prototype = { call$2(companyGatewayId, paymentMap) { @@ -426039,7 +426504,7 @@ } } }, - $signature: 198 + $signature: 195 }; A.getUnconnectedStripeAccount_closure.prototype = { call$2(id, gateway) { @@ -426658,7 +427123,7 @@ if (!t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].clientState.$get$1(0, type$.InvoiceEntity._as(credit).clientId).get$hasEmailAddress()) this._box_0.emailValid = false; }, - $signature: 153 + $signature: 157 }; A.handleCreditAction_closure1.prototype = { call$0() { @@ -426762,7 +427227,7 @@ t1 = credit.statusId !== "1" ? credit.balance : credit.amount; return A.PaymentableEntity_PaymentableEntity(t1, credit.id, null); }, - $signature: 665 + $signature: 678 }; A.handleCreditAction_closure10.prototype = { call$1(response) { @@ -427327,7 +427792,7 @@ this.action.toString; t1[0].call$1(new A.LoadProjects()); }, - $signature: 315 + $signature: 347 }; A._loadCredits___closure.prototype = { call$1(credit) { @@ -427339,7 +427804,7 @@ call$1($document) { this.documents.push($document.rebuild$1(new A._loadCredits_____closure(this.credit))); }, - $signature: 42 + $signature: 41 }; A._loadCredits_____closure.prototype = { call$1(b) { @@ -427463,7 +427928,7 @@ call$1($document) { this.documents.push($document.rebuild$1(new A._saveDocument____closure0(this.credit))); }, - $signature: 42 + $signature: 41 }; A._saveDocument____closure0.prototype = { call$1(b) { @@ -427641,13 +428106,13 @@ call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure170.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure171.prototype = { call$2(selectedId, action) { @@ -427701,7 +428166,7 @@ call$2(selectedId, action) { return action.entityType === B.EntityType_credit ? "" : selectedId; }, - $signature: 183 + $signature: 176 }; A.selectedIdReducer_closure180.prototype = { call$2(selectedId, action) { @@ -427714,7 +428179,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure49.prototype = { call$2(credit, action) { @@ -427733,7 +428198,7 @@ call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure21()); }, - $signature: 664 + $signature: 674 }; A.editingReducer__closure21.prototype = { call$1(b) { @@ -427804,7 +428269,7 @@ call$1(contact) { return A.InvitationEntity_InvitationEntity(contact.id, null); }, - $signature: 212 + $signature: 226 }; A.editingReducer_closure55.prototype = { call$2(credits, action) { @@ -427892,7 +428357,7 @@ call$2(state, action) { return state.rebuild$1(new A.creditListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.creditListReducer__closure.prototype = { call$1(b) { @@ -428082,13 +428547,13 @@ call$1(each) { return each.clientId === this.action.clientId; }, - $signature: 197 + $signature: 194 }; A._purgeClientSuccess_closure10.prototype = { call$1(each) { return each.id; }, - $signature: 271 + $signature: 320 }; A._purgeClientSuccess_closure8.prototype = { call$1(b) { @@ -428101,19 +428566,19 @@ B.JSArray_methods._removeWhere$2(t2, new A._purgeClientSuccess__closure6(t1), true); return b; }, - $signature: 317 + $signature: 311 }; A._purgeClientSuccess__closure5.prototype = { call$2(p0, p1) { return B.JSArray_methods.contains$1(this.ids, p0); }, - $signature: 437 + $signature: 381 }; A._purgeClientSuccess__closure6.prototype = { call$1(p0) { return B.JSArray_methods.contains$1(this.ids, p0); }, - $signature: 11 + $signature: 12 }; A._markSentCreditSuccess_closure0.prototype = { call$1(item) { @@ -428132,7 +428597,7 @@ b.get$map(b).addAll$1(0, this.creditMap); return b; }, - $signature: 317 + $signature: 311 }; A._archiveCreditSuccess_closure.prototype = { call$1(b) { @@ -428154,7 +428619,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 462 + $signature: 461 }; A._deleteCreditSuccess_closure.prototype = { call$1(b) { @@ -428176,7 +428641,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 462 + $signature: 461 }; A._restoreCreditSuccess_closure.prototype = { call$1(b) { @@ -428198,7 +428663,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 462 + $signature: 461 }; A._addCredit_closure.prototype = { call$1(b) { @@ -428210,7 +428675,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 317 + $signature: 311 }; A._addCredit__closure.prototype = { call$1(b) { @@ -428226,7 +428691,7 @@ b.get$map(b).$indexSet(0, t1.id, t1.rebuild$1(new A._updateCredit__closure())); return b; }, - $signature: 317 + $signature: 311 }; A._updateCredit__closure.prototype = { call$1(b) { @@ -428240,13 +428705,13 @@ call$1(invitation) { return invitation.clientContactId; }, - $signature: 436 + $signature: 382 }; A.creditContactSelector_closure0.prototype = { call$1(contact) { return B.JSArray_methods.contains$1(this._box_0.contactIds, contact.id); }, - $signature: 192 + $signature: 172 }; A.memoizedDropdownCreditList_closure.prototype = { call$7(creditMap, clientMap, vendorMap, creditList, clientId, userMap, excludedIds) { @@ -428300,7 +428765,7 @@ t1 = false; return t1 && credit.get$isUnpaid(); }, - $signature: 11 + $signature: 12 }; A.dropdownCreditSelector_closure0.prototype = { call$2(creditAId, creditBId) { @@ -428310,7 +428775,7 @@ t2.toString; return t2.compareTo$6$clientMap$invoice$sortAscending$sortField$userMap$vendorMap(0, _this.clientMap, t1.$index(0, creditBId), true, "number", _this.userMap, _this.vendorMap); }, - $signature: 26 + $signature: 25 }; A.memoizedFilteredCreditList_closure.prototype = { call$8(selectionState, creditMap, creditList, clientMap, vendorMap, paymentMap, creditListState, userMap) { @@ -428322,7 +428787,7 @@ call$2(paymentId, payment) { B.JSArray_methods.forEach$1(payment.get$creditPaymentables(), new A.filteredCreditsSelector__closure0(this.creditPaymentMap, payment)); }, - $signature: 198 + $signature: 195 }; A.filteredCreditsSelector__closure0.prototype = { call$1(creditPaymentable) { @@ -428334,7 +428799,7 @@ paymentIds.push(this.payment.id); t1.$indexSet(0, t2, paymentIds); }, - $signature: 139 + $signature: 150 }; A.filteredCreditsSelector_closure0.prototype = { call$1(creditId) { @@ -428413,7 +428878,7 @@ } return true; }, - $signature: 11 + $signature: 12 }; A.filteredCreditsSelector__closure.prototype = { call$1(paymentId) { @@ -428431,7 +428896,7 @@ t3 = _this.creditListState; return J.compareTo$6$clientMap$invoice$sortAscending$sortField$userMap$vendorMap$ns(t2, _this.clientMap, t1.$index(0, creditBId), t3.sortAscending, t3.sortField, _this.userMap, _this.vendorMap); }, - $signature: 26 + $signature: 25 }; A.memoizedCreditStatsForDesign_closure.prototype = { call$2(designId, creditMap) { @@ -428470,7 +428935,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.memoizedCreditStatsForClient_closure.prototype = { call$2(clientId, creditMap) { @@ -428509,7 +428974,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.memoizedCreditStatsForUser_closure.prototype = { call$2(userId, creditMap) { @@ -428548,7 +429013,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.CreditState.prototype = { $get$1(_, creditId) { @@ -428593,7 +429058,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 317 + $signature: 311 }; A.CreditUIState.prototype = { get$isCreatingNew() { @@ -429108,7 +429573,7 @@ b.$indexSet(0, t1.entityType, A.BuiltList_BuiltList$from(t2, type$.String)); return b; }, - $signature: 663 + $signature: 670 }; A.selectedEntitiesReducer_closure0.prototype = { call$2(state, action) { @@ -429121,7 +429586,7 @@ b.get$_safeMap().clear$0(0); return b; }, - $signature: 663 + $signature: 670 }; A.selectedEntityTypeReducer_closure.prototype = { call$2(state, action) { @@ -429155,14 +429620,14 @@ b.get$_dashboard_state$_$this()._dashboard_state$_offset = 0; return b; }, - $signature: 158 + $signature: 170 }; A.dashboardSettingsReducer_closure0.prototype = { call$1(b) { b.get$_dashboard_state$_$this()._includeTaxes = this.action.includeTaxes; return b; }, - $signature: 158 + $signature: 170 }; A.dashboardSettingsReducer_closure1.prototype = { call$1(b) { @@ -429171,21 +429636,21 @@ b.get$_dashboard_state$_$this()._dashboard_state$_offset = this.state.offset + t1; return b; }, - $signature: 158 + $signature: 170 }; A.dashboardSettingsReducer_closure2.prototype = { call$1(b) { b.get$_dashboard_state$_$this()._dashboard_state$_currencyId = this.action.currencyId; return b; }, - $signature: 158 + $signature: 170 }; A.dashboardSettingsReducer_closure3.prototype = { call$1(b) { b.get$_dashboard_state$_$this()._groupBy = this.action.groupBy; return b; }, - $signature: 158 + $signature: 170 }; A.ChartDataGroup.prototype = {}; A.ChartMoneyData.prototype = { @@ -429201,21 +429666,21 @@ company.toString; return A._chartInvoices(clientMap, company, currencyMap, invoiceMap, settings); }, - $signature: 469 + $signature: 468 }; A.memoizedChartOverviewInvoices_closure.prototype = { call$5(currencyMap, company, settings, invoiceMap, clientMap) { company.toString; return A._chartInvoices(clientMap, company, currencyMap, invoiceMap, settings); }, - $signature: 469 + $signature: 468 }; A.memoizedPreviousChartInvoices_closure.prototype = { call$5(currencyMap, company, settings, invoiceMap, clientMap) { company.toString; return A._chartInvoices(clientMap, company, currencyMap, invoiceMap, settings); }, - $signature: 469 + $signature: 468 }; A._chartInvoices_closure.prototype = { call$2(int, invoice) { @@ -429321,19 +429786,19 @@ } } }, - $signature: 71 + $signature: 74 }; A.memoizedChartQuotes_closure.prototype = { call$6(currencyMap, company, settings, quoteMap, clientMap, invoiceMap) { return A.chartQuotes(clientMap, company, currencyMap, invoiceMap, quoteMap, settings); }, - $signature: 661 + $signature: 669 }; A.memoizedPreviousChartQuotes_closure.prototype = { call$6(currencyMap, company, settings, quoteMap, clientMap, invoiceMap) { return A.chartQuotes(clientMap, company, currencyMap, invoiceMap, quoteMap, settings); }, - $signature: 661 + $signature: 669 }; A.chartQuotes_closure.prototype = { call$2(int, quote) { @@ -429491,19 +429956,19 @@ } } }, - $signature: 71 + $signature: 74 }; A.memoizedChartPayments_closure.prototype = { call$6(currencyMap, company, settings, invoiceMap, clientMap, paymentMap) { return A.chartPayments(currencyMap, company, settings, invoiceMap, clientMap, paymentMap); }, - $signature: 660 + $signature: 668 }; A.memoizedPreviousChartPayments_closure.prototype = { call$6(currencyMap, company, settings, invoiceMap, clientMap, paymentMap) { return A.chartPayments(currencyMap, company, settings, invoiceMap, clientMap, paymentMap); }, - $signature: 660 + $signature: 668 }; A.chartPayments_closure.prototype = { call$2(int, payment) { @@ -429625,19 +430090,19 @@ } } }, - $signature: 198 + $signature: 195 }; A.memoizedChartTasks_closure.prototype = { call$8(currencyMap, company, settings, taskMap, invoiceMap, projectMap, clientMap, groupMap) { return A.chartTasks(currencyMap, company, settings, taskMap, invoiceMap, projectMap, clientMap, groupMap); }, - $signature: 658 + $signature: 667 }; A.memoizedPreviousChartTasks_closure.prototype = { call$8(currencyMap, company, settings, taskMap, invoiceMap, projectMap, clientMap, groupMap) { return A.chartTasks(currencyMap, company, settings, taskMap, invoiceMap, projectMap, clientMap, groupMap); }, - $signature: 658 + $signature: 667 }; A.chartTasks_closure.prototype = { call$2(int, task) { @@ -429703,14 +430168,14 @@ } } }, - $signature: 165 + $signature: 152 }; A.chartTasks__closure.prototype = { call$1(taskTime) { var _this = this; taskTime.getParts$0().forEach$1(0, new A.chartTasks___closure(_this.settings, _this.company, _this.project, _this.client, _this.task, _this.group, _this.invoice, _this.currencyMap, _this.invoiceMap, _this.paidData, _this.invoicedData, _this.loggedData, _this.totals)); }, - $signature: 220 + $signature: 229 }; A.chartTasks___closure.prototype = { call$2(date, duration) { @@ -429966,21 +430431,21 @@ } } }, - $signature: 130 + $signature: 126 }; A.memoizedChartExpenses_closure.prototype = { call$5(currencyMap, company, settings, invoiceMap, expenseMap) { company.toString; return A.chartExpenses(currencyMap, company, settings, invoiceMap, expenseMap); }, - $signature: 656 + $signature: 666 }; A.memoizedPreviousChartExpenses_closure.prototype = { call$5(currencyMap, company, settings, invoiceMap, expenseMap) { company.toString; return A.chartExpenses(currencyMap, company, settings, invoiceMap, expenseMap); }, - $signature: 656 + $signature: 666 }; A.memoizedRunningTasks_closure0.prototype = { call$2(taskMap, userId) { @@ -430004,13 +430469,13 @@ if (t1) this.tasks.push(task); }, - $signature: 165 + $signature: 152 }; A.memoizedUpcomingInvoices_closure.prototype = { call$2(invoiceMap, clientMap) { return A._upcomingInvoices(clientMap, invoiceMap); }, - $signature: 432 + $signature: 383 }; A._upcomingInvoices_closure.prototype = { call$2(index, invoice) { @@ -430050,19 +430515,19 @@ if (invoice.get$isUpcoming()) this.invoices.push(invoice); }, - $signature: 71 + $signature: 74 }; A._upcomingInvoices_closure0.prototype = { call$2(invoiceA, invoiceB) { return B.JSString_methods.compareTo$1(invoiceA.get$primaryDate(), invoiceB.get$primaryDate()); }, - $signature: 430 + $signature: 384 }; A.memoizedPastDueInvoices_closure.prototype = { call$2(invoiceMap, clientMap) { return A._pastDueInvoices(clientMap, invoiceMap); }, - $signature: 432 + $signature: 383 }; A._pastDueInvoices_closure.prototype = { call$2(index, invoice) { @@ -430102,13 +430567,13 @@ if (invoice.get$isPastDue()) this.invoices.push(invoice); }, - $signature: 71 + $signature: 74 }; A._pastDueInvoices_closure0.prototype = { call$2(invoiceA, invoiceB) { return B.JSString_methods.compareTo$1(invoiceA.get$primaryDate(), invoiceB.get$primaryDate()); }, - $signature: 430 + $signature: 384 }; A.memoizedRecentPayments_closure.prototype = { call$2(paymentMap, clientMap) { @@ -430166,7 +430631,7 @@ this.payments.push(payment); } }, - $signature: 198 + $signature: 195 }; A._recentPayments_closure0.prototype = { call$2(paymentA, paymentB) { @@ -430183,7 +430648,7 @@ call$2(quoteMap, clientMap) { return A._upcomingQuotes(clientMap, quoteMap); }, - $signature: 432 + $signature: 383 }; A._upcomingQuotes_closure.prototype = { call$2(index, quote) { @@ -430220,19 +430685,19 @@ if (quote.get$isUpcoming()) this.quotes.push(quote); }, - $signature: 71 + $signature: 74 }; A._upcomingQuotes_closure0.prototype = { call$2(quoteA, quoteB) { return B.JSString_methods.compareTo$1(quoteA.get$primaryDate(), quoteB.get$primaryDate()); }, - $signature: 430 + $signature: 384 }; A.memoizedExpiredQuotes_closure.prototype = { call$2(quoteMap, clientMap) { return A._expiredQuotes(clientMap, quoteMap); }, - $signature: 432 + $signature: 383 }; A._expiredQuotes_closure.prototype = { call$2(index, quote) { @@ -430269,13 +430734,13 @@ if (quote.get$isPastDue()) this.quotes.push(quote); }, - $signature: 71 + $signature: 74 }; A._expiredQuotes_closure0.prototype = { call$2(quoteA, quoteB) { return B.JSString_methods.compareTo$1(quoteA.get$primaryDate(), quoteB.get$primaryDate()); }, - $signature: 430 + $signature: 384 }; A.memoizedRunningTasks_closure.prototype = { call$2(taskMap, clientMap) { @@ -430318,13 +430783,13 @@ if (task.get$isRunning()) this.tasks.push(task); }, - $signature: 165 + $signature: 152 }; A._runningTasks_closure0.prototype = { call$2(taskA, taskB) { return B.JSInt_methods.compareTo$1(taskB.updatedAt, taskA.updatedAt); }, - $signature: 655 + $signature: 663 }; A.memoizedRecentTasks_closure.prototype = { call$2(taskMap, clientMap) { @@ -430367,13 +430832,13 @@ if (!task.get$isRunning()) this.tasks.push(task); }, - $signature: 165 + $signature: 152 }; A._recentTasks_closure0.prototype = { call$2(taskA, taskB) { return B.JSInt_methods.compareTo$1(taskB.updatedAt, taskA.updatedAt); }, - $signature: 655 + $signature: 663 }; A.memoizedRecentExpenses_closure.prototype = { call$2(expenseMap, clientMap) { @@ -430420,7 +430885,7 @@ if (!t1) this.expenses.push(expense); }, - $signature: 130 + $signature: 126 }; A._recentExpenses_closure0.prototype = { call$2(expenseA, expenseB) { @@ -430436,7 +430901,7 @@ else return B.JSString_methods.compareTo$1(expenseBdate, expenseAdate); }, - $signature: 479 + $signature: 478 }; A.DashboardUIState.prototype = {}; A.DashboardUISettings.prototype = { @@ -430922,25 +431387,25 @@ call$1(b) { return b.get$_invoice_model$_$this()._designId = this.design.id; }, - $signature: 169 + $signature: 154 }; A.handleDesignAction_closure1.prototype = { call$1(b) { return b.get$_invoice_model$_$this()._designId = this.design.id; }, - $signature: 169 + $signature: 154 }; A.handleDesignAction_closure2.prototype = { call$1(b) { return b.get$_invoice_model$_$this()._designId = this.design.id; }, - $signature: 169 + $signature: 154 }; A.handleDesignAction_closure3.prototype = { call$1(b) { return b.get$_invoice_model$_$this()._designId = this.design.id; }, - $signature: 169 + $signature: 154 }; A.StartDesignMultiselect.prototype = {}; A.AddToDesignMultiselect.prototype = {}; @@ -431046,7 +431511,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].designState.map._map$_map.$index(0, id); }, - $signature: 426 + $signature: 386 }; A._archiveDesign__closure0.prototype = { call$1(designs) { @@ -431055,7 +431520,7 @@ t1[0].call$1(new A.ArchiveDesignsSuccess(designs)); this.action.completer.complete$1(0, null); }, - $signature: 482 + $signature: 481 }; A._archiveDesign__closure1.prototype = { call$1(error) { @@ -431090,7 +431555,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].designState.map._map$_map.$index(0, id); }, - $signature: 426 + $signature: 386 }; A._deleteDesign__closure0.prototype = { call$1(designs) { @@ -431099,7 +431564,7 @@ t1[0].call$1(new A.DeleteDesignsSuccess(designs)); this.action.completer.complete$1(0, null); }, - $signature: 482 + $signature: 481 }; A._deleteDesign__closure1.prototype = { call$1(error) { @@ -431134,7 +431599,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].designState.map._map$_map.$index(0, id); }, - $signature: 426 + $signature: 386 }; A._restoreDesign__closure0.prototype = { call$1(designs) { @@ -431143,7 +431608,7 @@ t1[0].call$1(new A.RestoreDesignsSuccess(designs)); this.action.completer.complete$1(0, null); }, - $signature: 482 + $signature: 481 }; A._restoreDesign__closure1.prototype = { call$1(error) { @@ -431186,7 +431651,7 @@ } t1.completer.complete$1(0, design); }, - $signature: 483 + $signature: 482 }; A._saveDesign__closure0.prototype = { call$1(error) { @@ -431222,7 +431687,7 @@ t1[0].call$1(new A.LoadDesignSuccess(design)); this.action.completer.complete$1(0, null); }, - $signature: 483 + $signature: 482 }; A._loadDesign__closure0.prototype = { call$1(error) { @@ -431366,25 +431831,25 @@ call$2(selectedId, action) { return action.get$designId(); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure185.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$design()); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure186.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure187.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure188.prototype = { call$2(selectedId, action) { @@ -431457,13 +431922,13 @@ b.get$_design_model$_$this()._design_model$_isChanged = true; return b; }, - $signature: 249 + $signature: 255 }; A.designListReducer_closure.prototype = { call$2(state, action) { return state.rebuild$1(new A.designListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.designListReducer__closure.prototype = { call$1(b) { @@ -431616,7 +432081,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 484 + $signature: 483 }; A._deleteDesignSuccess_closure.prototype = { call$1(b) { @@ -431638,7 +432103,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 484 + $signature: 483 }; A._restoreDesignSuccess_closure.prototype = { call$1(b) { @@ -431660,7 +432125,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 484 + $signature: 483 }; A._addDesign_closure.prototype = { call$1(b) { @@ -431672,7 +432137,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 424 + $signature: 387 }; A._updateDesign_closure.prototype = { call$1(b) { @@ -431680,7 +432145,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 424 + $signature: 387 }; A._setLoadedDesign_closure.prototype = { call$1(b) { @@ -431688,7 +432153,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 424 + $signature: 387 }; A.memoizedFilteredDesignList_closure.prototype = { call$3(designMap, designList, designListState) { @@ -431708,7 +432173,7 @@ return false; return A.matchesStrings(A._setArrayType([t1.name], type$.JSArray_nullable_String), t2.filter); }, - $signature: 11 + $signature: 12 }; A.filteredDesignsSelector_closure0.prototype = { call$2(designAId, designBId) { @@ -431719,7 +432184,7 @@ t3 = this.designListState; return t2.compareTo$3(0, t1.$index(0, designBId), t3.sortField, t3.sortAscending); }, - $signature: 26 + $signature: 25 }; A.DesignState.prototype = { get$cleanDesign() { @@ -431744,19 +432209,19 @@ var t1 = this.$this.map._map$_map; return !t1.$index(0, id).isCustom && t1.$index(0, id).name === "Clean"; }, - $signature: 11 + $signature: 12 }; A.DesignState_customDesigns_closure.prototype = { call$1(designId) { return this.$this.map._map$_map.$index(0, designId).isCustom; }, - $signature: 11 + $signature: 12 }; A.DesignState_customDesigns_closure0.prototype = { call$1(designId) { return this.$this.map._map$_map.$index(0, designId); }, - $signature: 426 + $signature: 386 }; A.DesignState_loadDesigns_closure0.prototype = { call$1(item) { @@ -431783,7 +432248,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 424 + $signature: 387 }; A.DesignUIState.prototype = { get$isCreatingNew() { @@ -432323,7 +432788,7 @@ t1 = new A.SizedBox(600, _null, A.PdfPreview$(false, false, new A.handleDocumentAction_showDocument__closure0(t1), false, false, false, _null, _null, _null), _null); return A.AlertDialog$(t2, _null, _null, t1, _null, _null, _null); }, - $signature: 167 + $signature: 155 }; A.handleDocumentAction_showDocument__closure.prototype = { call$0() { @@ -432343,7 +432808,7 @@ call$1(value) { return this.showDocument.call$0(); }, - $signature: 654 + $signature: 662 }; A.handleDocumentAction_downloadDocument.prototype = { call$0() { @@ -432375,7 +432840,7 @@ call$1(value) { return this.downloadDocument.call$0(); }, - $signature: 654 + $signature: 662 }; A.handleDocumentAction_closure2.prototype = { call$1(_) { @@ -432447,7 +432912,7 @@ t3 === $ && A.throwUnnamedLateFieldNI(); t3[0].call$1(new A.DeleteDocumentRequest(completer, t1, password, idToken)); }, - $signature: 79 + $signature: 80 }; A.handleDocumentAction___closure.prototype = { call$1(_) { @@ -432455,7 +432920,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.LoadClient(null, this.document.parentId)); }, - $signature: 103 + $signature: 101 }; A.handleDocumentAction___closure0.prototype = { call$1(_) { @@ -432463,7 +432928,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.LoadCredit(null, this.document.parentId)); }, - $signature: 103 + $signature: 101 }; A.handleDocumentAction___closure1.prototype = { call$1(_) { @@ -432471,7 +432936,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.LoadExpense(null, this.document.parentId)); }, - $signature: 103 + $signature: 101 }; A.handleDocumentAction___closure2.prototype = { call$1(_) { @@ -432479,7 +432944,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.LoadGroup(null, this.document.parentId)); }, - $signature: 103 + $signature: 101 }; A.handleDocumentAction___closure3.prototype = { call$1(_) { @@ -432487,7 +432952,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.LoadInvoice(null, this.document.parentId)); }, - $signature: 103 + $signature: 101 }; A.handleDocumentAction___closure4.prototype = { call$1(_) { @@ -432495,7 +432960,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.LoadProduct(null, this.document.parentId)); }, - $signature: 103 + $signature: 101 }; A.handleDocumentAction___closure5.prototype = { call$1(_) { @@ -432503,7 +432968,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.LoadProject(null, this.document.parentId)); }, - $signature: 103 + $signature: 101 }; A.handleDocumentAction___closure6.prototype = { call$1(_) { @@ -432511,7 +432976,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.LoadPurchaseOrder(null, this.document.parentId)); }, - $signature: 103 + $signature: 101 }; A.handleDocumentAction___closure7.prototype = { call$1(_) { @@ -432519,7 +432984,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.LoadQuote(null, this.document.parentId)); }, - $signature: 103 + $signature: 101 }; A.handleDocumentAction___closure8.prototype = { call$1(_) { @@ -432527,7 +432992,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.LoadRecurringExpense(null, this.document.parentId)); }, - $signature: 103 + $signature: 101 }; A.handleDocumentAction___closure9.prototype = { call$1(_) { @@ -432535,7 +433000,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.LoadRecurringInvoice(null, this.document.parentId)); }, - $signature: 103 + $signature: 101 }; A.handleDocumentAction___closure10.prototype = { call$1(_) { @@ -432543,7 +433008,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.LoadTask(null, this.document.parentId)); }, - $signature: 103 + $signature: 101 }; A.handleDocumentAction___closure11.prototype = { call$1(_) { @@ -432551,7 +433016,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.LoadVendor(null, this.document.parentId)); }, - $signature: 103 + $signature: 101 }; A.handleDocumentAction___closure12.prototype = { call$1(_) { @@ -432559,7 +433024,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.RefreshData(null, false, false, false)); }, - $signature: 103 + $signature: 101 }; A.handleDocumentAction___closure13.prototype = { call$1(_) { @@ -432567,7 +433032,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.RefreshData(null, false, false, false)); }, - $signature: 103 + $signature: 101 }; A.StartDocumentMultiselect.prototype = {}; A.AddToDocumentMultiselect.prototype = {}; @@ -432685,7 +433150,7 @@ t2[0].call$1(new A.SaveDocumentSuccess($document)); t1.completer.complete$1(0, $document); }, - $signature: 324 + $signature: 314 }; A._saveDocument___closure13.prototype = { call$1(b) { @@ -432731,7 +433196,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].documentState.map._map$_map.$index(0, id); }, - $signature: 653 + $signature: 660 }; A._archiveDocument__closure0.prototype = { call$1(documents) { @@ -432740,7 +433205,7 @@ t1[0].call$1(new A.ArchiveDocumentSuccess(documents)); this.action.completer.complete$1(0, null); }, - $signature: 80 + $signature: 82 }; A._archiveDocument__closure1.prototype = { call$1(error) { @@ -432773,7 +433238,7 @@ t1[0].call$1(new A.DownloadDocumentsSuccess()); this.action.completer.complete$1(0, null); }, - $signature: 80 + $signature: 82 }; A._downloadDocuments__closure0.prototype = { call$1(error) { @@ -432807,7 +433272,7 @@ t1[0].call$1(new A.DeleteDocumentSuccess(this.documentId)); this.action.completer.complete$1(0, null); }, - $signature: 188 + $signature: 175 }; A._deleteDocument__closure0.prototype = { call$1(error) { @@ -432842,7 +433307,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].documentState.map._map$_map.$index(0, id); }, - $signature: 653 + $signature: 660 }; A._restoreDocument__closure0.prototype = { call$1(documents) { @@ -432851,7 +433316,7 @@ t1[0].call$1(new A.RestoreDocumentSuccess(documents)); this.action.completer.complete$1(0, null); }, - $signature: 80 + $signature: 82 }; A._restoreDocument__closure1.prototype = { call$1(error) { @@ -432887,7 +433352,7 @@ t1[0].call$1(new A.LoadDocumentSuccess($document)); this.action.completer.complete$1(0, null); }, - $signature: 324 + $signature: 314 }; A._loadDocument__closure0.prototype = { call$1(error) { @@ -433035,7 +433500,7 @@ call$2(completer, action) { return ""; }, - $signature: 918 + $signature: 1423 }; A.selectedIdReducer_closure97.prototype = { call$2(selectedId, action) { @@ -433053,13 +433518,13 @@ call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure100.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure101.prototype = { call$2(selectedId, action) { @@ -433071,7 +433536,7 @@ call$2(selectedId, action) { return ""; }, - $signature: 1426 + $signature: 921 }; A.selectedIdReducer_closure103.prototype = { call$2(selectedId, action) { @@ -433126,7 +433591,7 @@ call$2(state, action) { return state.rebuild$1(new A.documentListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.documentListReducer__closure.prototype = { call$1(b) { @@ -433300,7 +433765,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 652 + $signature: 655 }; A._deleteDocumentSuccess_closure.prototype = { call$1(b) { @@ -433309,7 +433774,7 @@ B.JSArray_methods.remove$1(b.get$list(b).get$_safeList(), t1); return b; }, - $signature: 173 + $signature: 187 }; A._restoreDocumentSuccess_closure.prototype = { call$1(b) { @@ -433331,14 +433796,14 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 652 + $signature: 655 }; A._addDocument_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.get$documents(), new A._addDocument__closure(), new A._addDocument__closure0(), type$.String, type$.DocumentEntity)); return b; }, - $signature: 173 + $signature: 187 }; A._addDocument__closure.prototype = { call$1(item) { @@ -433350,7 +433815,7 @@ call$1(item) { return item; }, - $signature: 495 + $signature: 494 }; A._addDocument_closure0.prototype = { call$1(b) { @@ -433358,7 +433823,7 @@ b.get$list(b).replace$1(0, t1.get$keys(t1)); return b; }, - $signature: 173 + $signature: 187 }; A._updateDocument_closure.prototype = { call$1(b) { @@ -433366,7 +433831,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 173 + $signature: 187 }; A._setLoadedDocument_closure.prototype = { call$1(b) { @@ -433374,14 +433839,14 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 173 + $signature: 187 }; A._setLoadedDocuments_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.documents, new A._setLoadedDocuments__closure(), new A._setLoadedDocuments__closure0(), type$.String, type$.DocumentEntity)); return b; }, - $signature: 173 + $signature: 187 }; A._setLoadedDocuments__closure.prototype = { call$1(item) { @@ -433393,7 +433858,7 @@ call$1(item) { return item; }, - $signature: 495 + $signature: 494 }; A._setLoadedDocuments_closure0.prototype = { call$1(b) { @@ -433401,13 +433866,13 @@ b.get$list(b).replace$1(0, t1.get$keys(t1)); return b; }, - $signature: 173 + $signature: 187 }; A._setLoadedCompany_closure9.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._setLoadedCompany__closure24(this.company))); }, - $signature: 42 + $signature: 41 }; A._setLoadedCompany__closure24.prototype = { call$1(b) { @@ -433421,13 +433886,13 @@ call$1(client) { B.JSArray_methods.forEach$1(client.documents._list$_list, new A._setLoadedCompany__closure23(this.documents, client)); }, - $signature: 675 + $signature: 696 }; A._setLoadedCompany__closure23.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._setLoadedCompany___closure11(this.client))); }, - $signature: 42 + $signature: 41 }; A._setLoadedCompany___closure11.prototype = { call$1(b) { @@ -433447,7 +433912,7 @@ call$1($document) { this.documents.push($document.rebuild$1(new A._setLoadedCompany___closure10(this.credit))); }, - $signature: 42 + $signature: 41 }; A._setLoadedCompany___closure10.prototype = { call$1(b) { @@ -433461,13 +433926,13 @@ call$1(expense) { B.JSArray_methods.forEach$1(expense.documents._list$_list, new A._setLoadedCompany__closure21(this.documents, expense)); }, - $signature: 326 + $signature: 287 }; A._setLoadedCompany__closure21.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._setLoadedCompany___closure9(this.expense))); }, - $signature: 42 + $signature: 41 }; A._setLoadedCompany___closure9.prototype = { call$1(b) { @@ -433481,13 +433946,13 @@ call$1(group) { B.JSArray_methods.forEach$1(group.documents._list$_list, new A._setLoadedCompany__closure20(this.documents, group)); }, - $signature: 651 + $signature: 654 }; A._setLoadedCompany__closure20.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._setLoadedCompany___closure8(this.group))); }, - $signature: 42 + $signature: 41 }; A._setLoadedCompany___closure8.prototype = { call$1(b) { @@ -433507,7 +433972,7 @@ call$1($document) { this.documents.push($document.rebuild$1(new A._setLoadedCompany___closure7(this.invoice))); }, - $signature: 42 + $signature: 41 }; A._setLoadedCompany___closure7.prototype = { call$1(b) { @@ -433521,13 +433986,13 @@ call$1(product) { B.JSArray_methods.forEach$1(product.documents._list$_list, new A._setLoadedCompany__closure18(this.documents, product)); }, - $signature: 498 + $signature: 497 }; A._setLoadedCompany__closure18.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._setLoadedCompany___closure6(this.product))); }, - $signature: 42 + $signature: 41 }; A._setLoadedCompany___closure6.prototype = { call$1(b) { @@ -433541,13 +434006,13 @@ call$1(project) { B.JSArray_methods.forEach$1(project.documents._list$_list, new A._setLoadedCompany__closure17(this.documents, project)); }, - $signature: 650 + $signature: 653 }; A._setLoadedCompany__closure17.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._setLoadedCompany___closure5(this.project))); }, - $signature: 42 + $signature: 41 }; A._setLoadedCompany___closure5.prototype = { call$1(b) { @@ -433567,7 +434032,7 @@ call$1($document) { this.documents.push($document.rebuild$1(new A._setLoadedCompany___closure4(this.purchaseOrder))); }, - $signature: 42 + $signature: 41 }; A._setLoadedCompany___closure4.prototype = { call$1(b) { @@ -433587,7 +434052,7 @@ call$1($document) { this.documents.push($document.rebuild$1(new A._setLoadedCompany___closure3(this.quote))); }, - $signature: 42 + $signature: 41 }; A._setLoadedCompany___closure3.prototype = { call$1(b) { @@ -433601,13 +434066,13 @@ call$1(recurringExpense) { B.JSArray_methods.forEach$1(recurringExpense.documents._list$_list, new A._setLoadedCompany__closure14(this.documents, recurringExpense)); }, - $signature: 326 + $signature: 287 }; A._setLoadedCompany__closure14.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._setLoadedCompany___closure2(this.recurringExpense))); }, - $signature: 42 + $signature: 41 }; A._setLoadedCompany___closure2.prototype = { call$1(b) { @@ -433627,7 +434092,7 @@ call$1($document) { this.documents.push($document.rebuild$1(new A._setLoadedCompany___closure1(this.recurringInvoice))); }, - $signature: 42 + $signature: 41 }; A._setLoadedCompany___closure1.prototype = { call$1(b) { @@ -433641,13 +434106,13 @@ call$1(task) { B.JSArray_methods.forEach$1(task.documents._list$_list, new A._setLoadedCompany__closure12(this.documents, task)); }, - $signature: 649 + $signature: 652 }; A._setLoadedCompany__closure12.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._setLoadedCompany___closure0(this.task))); }, - $signature: 42 + $signature: 41 }; A._setLoadedCompany___closure0.prototype = { call$1(b) { @@ -433661,13 +434126,13 @@ call$1(vendor) { B.JSArray_methods.forEach$1(vendor.documents._list$_list, new A._setLoadedCompany__closure11(this.documents, vendor)); }, - $signature: 648 + $signature: 651 }; A._setLoadedCompany__closure11.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._setLoadedCompany___closure(this.vendor))); }, - $signature: 42 + $signature: 41 }; A._setLoadedCompany___closure.prototype = { call$1(b) { @@ -433682,7 +434147,7 @@ b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.documents, new A._setLoadedCompany__closure9(), new A._setLoadedCompany__closure10(), type$.String, type$.DocumentEntity)); return b; }, - $signature: 173 + $signature: 187 }; A._setLoadedCompany__closure9.prototype = { call$1(item) { @@ -433694,7 +434159,7 @@ call$1(item) { return item; }, - $signature: 495 + $signature: 494 }; A._setLoadedCompany_closure24.prototype = { call$1(b) { @@ -433702,7 +434167,7 @@ b.get$list(b).replace$1(0, t1.get$keys(t1)); return b; }, - $signature: 173 + $signature: 187 }; A.memoizedFilteredDocumentList_closure.prototype = { call$4(selectionState, documentMap, documentList, documentListState) { @@ -433727,7 +434192,7 @@ return false; return $document.matchesFilter$1(t1.filter); }, - $signature: 11 + $signature: 12 }; A.filteredDocumentsSelector_closure0.prototype = { call$2(documentAId, documentBId) { @@ -433738,7 +434203,7 @@ t3 = this.documentListState; return t2.compareTo$3(0, t1.$index(0, documentBId), t3.sortField, t3.sortAscending); }, - $signature: 26 + $signature: 25 }; A.DocumentState.prototype = { map$1($receiver, arg0) { @@ -434291,7 +434756,7 @@ t1 = false; return t1; }, - $signature: 234 + $signature: 220 }; A.handleExpenseAction_closure3.prototype = { call$1(expense) { @@ -434423,7 +434888,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].expenseState.map._map$_map.$index(0, id); }, - $signature: 226 + $signature: 233 }; A._archiveExpense__closure0.prototype = { call$1(expenses) { @@ -434432,7 +434897,7 @@ t1[0].call$1(new A.ArchiveExpenseSuccess(expenses)); this.action.completer.complete$1(0, null); }, - $signature: 201 + $signature: 198 }; A._archiveExpense__closure1.prototype = { call$1(error) { @@ -434467,7 +434932,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].expenseState.map._map$_map.$index(0, id); }, - $signature: 226 + $signature: 233 }; A._deleteExpense__closure0.prototype = { call$1(expenses) { @@ -434476,7 +434941,7 @@ t1[0].call$1(new A.DeleteExpenseSuccess(expenses)); this.action.completer.complete$1(0, null); }, - $signature: 201 + $signature: 198 }; A._deleteExpense__closure1.prototype = { call$1(error) { @@ -434511,7 +434976,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].expenseState.map._map$_map.$index(0, id); }, - $signature: 226 + $signature: 233 }; A._restoreExpense__closure0.prototype = { call$1(expenses) { @@ -434520,7 +434985,7 @@ t1[0].call$1(new A.RestoreExpenseSuccess(expenses)); this.action.completer.complete$1(0, null); }, - $signature: 201 + $signature: 198 }; A._restoreExpense__closure1.prototype = { call$1(error) { @@ -434560,7 +435025,7 @@ } t1.completer.complete$1(0, expense); }, - $signature: 157 + $signature: 158 }; A._saveExpense__closure0.prototype = { call$1(error) { @@ -434598,7 +435063,7 @@ if (t1 != null) t1.complete$1(0, null); }, - $signature: 157 + $signature: 158 }; A._loadExpense__closure0.prototype = { call$1(error) { @@ -434645,19 +435110,19 @@ } else t1[0].call$1(new A.LoadRecurringExpenses()); }, - $signature: 647 + $signature: 650 }; A._loadExpenses___closure.prototype = { call$1(expense) { B.JSArray_methods.forEach$1(expense.documents._list$_list, new A._loadExpenses____closure(this.documents, expense)); }, - $signature: 326 + $signature: 287 }; A._loadExpenses____closure.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._loadExpenses_____closure(this.expense))); }, - $signature: 42 + $signature: 41 }; A._loadExpenses_____closure.prototype = { call$1(b) { @@ -434708,13 +435173,13 @@ t1[0].call$1(new A.LoadDocumentsSuccess(documents)); this.action.completer.complete$1(0, documents); }, - $signature: 157 + $signature: 158 }; A._saveDocument___closure9.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._saveDocument____closure9(this.expense))); }, - $signature: 42 + $signature: 41 }; A._saveDocument____closure9.prototype = { call$1(b) { @@ -434858,13 +435323,13 @@ call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure86.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure87.prototype = { call$2(selectedId, action) { @@ -434949,7 +435414,7 @@ call$2(state, action) { return state.rebuild$1(new A.expenseListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.expenseListReducer__closure.prototype = { call$1(b) { @@ -435134,13 +435599,13 @@ call$1(each) { return each.clientId === this.action.clientId; }, - $signature: 507 + $signature: 506 }; A._purgeClientSuccess_closure22.prototype = { call$1(each) { return each.id; }, - $signature: 414 + $signature: 398 }; A._purgeClientSuccess_closure20.prototype = { call$1(b) { @@ -435153,19 +435618,19 @@ B.JSArray_methods._removeWhere$2(t2, new A._purgeClientSuccess__closure14(t1), true); return b; }, - $signature: 329 + $signature: 321 }; A._purgeClientSuccess__closure13.prototype = { call$2(p0, p1) { return B.JSArray_methods.contains$1(this.ids, p0); }, - $signature: 646 + $signature: 649 }; A._purgeClientSuccess__closure14.prototype = { call$1(p0) { return B.JSArray_methods.contains$1(this.ids, p0); }, - $signature: 11 + $signature: 12 }; A._archiveExpenseSuccess_closure.prototype = { call$1(b) { @@ -435187,7 +435652,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 511 + $signature: 510 }; A._deleteExpenseSuccess_closure.prototype = { call$1(b) { @@ -435209,7 +435674,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 511 + $signature: 510 }; A._restoreExpenseSuccess_closure.prototype = { call$1(b) { @@ -435231,7 +435696,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 511 + $signature: 510 }; A._addExpense_closure.prototype = { call$1(b) { @@ -435243,7 +435708,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 329 + $signature: 321 }; A._updateExpense_closure.prototype = { call$1(b) { @@ -435251,7 +435716,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 329 + $signature: 321 }; A._setLoadedExpense_closure.prototype = { call$1(b) { @@ -435259,7 +435724,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 329 + $signature: 321 }; A.memoizedExpensePurchaseOrderSelector_closure.prototype = { call$2(expense, purchaseOrderMap) { @@ -435270,7 +435735,7 @@ A.expensePurchaseOrderSelector_closure.prototype = { call$2(purchaseOrderId, purchaseOrder) { }, - $signature: 71 + $signature: 74 }; A.convertExpenseToInvoiceItem_closure.prototype = { call$1(b) { @@ -435325,13 +435790,13 @@ b.get$_invoice_model$_$this()._taxRate3 = t1; return b; }, - $signature: 55 + $signature: 56 }; A.memoizedFilteredExpenseList_closure.prototype = { call$9(selectionState, expenseMap, clientMap, vendorMap, userMap, expenseListState, invoiceMap, expenseCategoryMap, staticState) { return A.filteredExpensesSelector(selectionState, expenseMap, clientMap, vendorMap, userMap, expenseListState, invoiceMap, expenseCategoryMap, staticState); }, - $signature: 645 + $signature: 648 }; A.filteredExpensesSelector_closure.prototype = { call$1(expenseId) { @@ -435438,7 +435903,7 @@ t2 = t2.filter; return t1.matchesFilter$1(t2) || expenseCategory.matchesFilter$1(t2) || client.matchesNameOrEmail$1(t2) || vendor.matchesNameOrEmail$1(t2); }, - $signature: 11 + $signature: 12 }; A.filteredExpensesSelector_closure0.prototype = { call$2(expenseAId, expenseBId) { @@ -435449,13 +435914,13 @@ t3 = _this.expenseListState; return t2.compareTo$9(0, t1.$index(0, expenseBId), t3.sortField, t3.sortAscending, _this.clientMap, _this.userMap, _this.vendorMap, _this.invoiceMap, _this.expenseCategoryMap, _this.staticState); }, - $signature: 26 + $signature: 25 }; A.memoizedExpenseStatsForVendor_closure.prototype = { call$2(vendorId, expenseMap) { return A.expenseStatsForVendor(vendorId, expenseMap); }, - $signature: 178 + $signature: 174 }; A.expenseStatsForVendor_closure.prototype = { call$2(expenseId, expense) { @@ -435488,13 +435953,13 @@ } } }, - $signature: 130 + $signature: 126 }; A.memoizedExpenseStatsForClient_closure.prototype = { call$2(clientId, expenseMap) { return A.expenseStatsForClient(clientId, expenseMap); }, - $signature: 178 + $signature: 174 }; A.expenseStatsForClient_closure.prototype = { call$2(expenseId, expense) { @@ -435527,7 +435992,7 @@ } } }, - $signature: 130 + $signature: 126 }; A.memoizedClientExpenseList_closure.prototype = { call$2(expenseMap, clientId) { @@ -435566,20 +436031,20 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A.clientExpenseList_closure0.prototype = { call$2(idA, idB) { var t1 = this.expenseMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).number, t1.$index(0, idB).number); }, - $signature: 26 + $signature: 25 }; A.memoizedExpenseStatsForProject_closure.prototype = { call$2(projectId, expenseMap) { return A.expenseStatsForProject(projectId, expenseMap); }, - $signature: 178 + $signature: 174 }; A.expenseStatsForProject_closure.prototype = { call$2(expenseId, expense) { @@ -435612,13 +436077,13 @@ } } }, - $signature: 130 + $signature: 126 }; A.memoizedExpenseStatsForUser_closure.prototype = { call$2(userId, expenseMap) { return A.expenseStatsForUser(userId, expenseMap); }, - $signature: 178 + $signature: 174 }; A.expenseStatsForUser_closure.prototype = { call$2(expenseId, expense) { @@ -435651,7 +436116,7 @@ } } }, - $signature: 130 + $signature: 126 }; A.ExpenseState.prototype = { $get$1(_, expenseId) { @@ -435681,7 +436146,7 @@ call$1(item) { return item; }, - $signature: 644 + $signature: 647 }; A.ExpenseState_loadExpenses_closure.prototype = { call$1(b) { @@ -435696,7 +436161,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 329 + $signature: 321 }; A.ExpenseUIState.prototype = { get$isCreatingNew() { @@ -436234,7 +436699,7 @@ b.get$_transaction_model$_$this()._transaction_model$_categoryId = this.expenseCategory.id; return b; }, - $signature: 137 + $signature: 132 }; A._editExpenseCategory_closure.prototype = { call$3(store, dynamicAction, next) { @@ -436336,7 +436801,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].expenseCategoryState.map._map$_map.$index(0, id); }, - $signature: 515 + $signature: 514 }; A._archiveExpenseCategory__closure0.prototype = { call$1(expenseCategories) { @@ -436345,7 +436810,7 @@ t1[0].call$1(new A.ArchiveExpenseCategoriesSuccess(expenseCategories)); this.action.completer.complete$1(0, null); }, - $signature: 516 + $signature: 515 }; A._archiveExpenseCategory__closure1.prototype = { call$1(error) { @@ -436380,7 +436845,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].expenseCategoryState.map._map$_map.$index(0, id); }, - $signature: 515 + $signature: 514 }; A._deleteExpenseCategory__closure0.prototype = { call$1(expenseCategories) { @@ -436389,7 +436854,7 @@ t1[0].call$1(new A.DeleteExpenseCategoriesSuccess(expenseCategories)); this.action.completer.complete$1(0, null); }, - $signature: 516 + $signature: 515 }; A._deleteExpenseCategory__closure1.prototype = { call$1(error) { @@ -436424,7 +436889,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].expenseCategoryState.map._map$_map.$index(0, id); }, - $signature: 515 + $signature: 514 }; A._restoreExpenseCategory__closure0.prototype = { call$1(expenseCategories) { @@ -436433,7 +436898,7 @@ t1[0].call$1(new A.RestoreExpenseCategoriesSuccess(expenseCategories)); this.action.completer.complete$1(0, null); }, - $signature: 516 + $signature: 515 }; A._restoreExpenseCategory__closure1.prototype = { call$1(error) { @@ -436482,7 +436947,7 @@ if (t1 != null) t1.complete$1(0, expenseCategory); }, - $signature: 410 + $signature: 400 }; A._saveExpenseCategory__closure0.prototype = { call$1(error) { @@ -436518,7 +436983,7 @@ t1[0].call$1(new A.LoadExpenseCategorySuccess(expenseCategory)); this.action.completer.complete$1(0, null); }, - $signature: 410 + $signature: 400 }; A._loadExpenseCategory__closure0.prototype = { call$1(error) { @@ -436678,25 +437143,25 @@ call$2(selectedId, action) { return action.get$expenseCategoryId(); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure262.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$expenseCategory()); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure263.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure264.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure265.prototype = { call$2(selectedId, action) { @@ -436751,7 +437216,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure87.prototype = { call$2(expenseCategories, action) { @@ -436782,13 +437247,13 @@ b.get$_expense_category_model$_$this()._expense_category_model$_isChanged = true; return b; }, - $signature: 331 + $signature: 301 }; A.expenseCategoryListReducer_closure.prototype = { call$2(state, action) { return state.rebuild$1(new A.expenseCategoryListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.expenseCategoryListReducer__closure.prototype = { call$1(b) { @@ -436930,7 +437395,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 519 + $signature: 518 }; A._deleteExpenseCategorySuccess_closure.prototype = { call$1(b) { @@ -436952,7 +437417,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 519 + $signature: 518 }; A._restoreExpenseCategorySuccess_closure.prototype = { call$1(b) { @@ -436974,7 +437439,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 519 + $signature: 518 }; A._addExpenseCategory_closure.prototype = { call$1(b) { @@ -436986,7 +437451,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 409 + $signature: 401 }; A._updateExpenseCategory_closure.prototype = { call$1(b) { @@ -436994,7 +437459,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 409 + $signature: 401 }; A._setLoadedExpenseCategory_closure.prototype = { call$1(b) { @@ -437002,7 +437467,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 409 + $signature: 401 }; A.memoizedDropdownExpenseCategoryList_closure.prototype = { call$5(expenseCategoryMap, expenseCategoryList, staticState, userMap, categoryId) { @@ -437029,7 +437494,7 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A.dropdownExpenseCategoriesSelector_closure0.prototype = { call$2(expenseCategoryAId, expenseCategoryBId) { @@ -437038,7 +437503,7 @@ t2.toString; return t2.compareTo$3$expenseCategory$sortAscending$sortField(0, t1.$index(0, expenseCategoryBId), true, "name"); }, - $signature: 26 + $signature: 25 }; A.memoizedFilteredExpenseCategoryList_closure.prototype = { call$4(selectionState, expenseCategoryMap, expenseCategoryList, expenseCategoryListState) { @@ -437058,7 +437523,7 @@ return false; return t1.matchesFilter$1(t2.filter); }, - $signature: 11 + $signature: 12 }; A.filteredExpenseCategoriesSelector_closure0.prototype = { call$2(expenseCategoryAId, expenseCategoryBId) { @@ -437069,7 +437534,7 @@ t3 = this.expenseCategoryListState; return J.compareTo$3$expenseCategory$sortAscending$sortField$ns(t2, t1.$index(0, expenseCategoryBId), t3.sortAscending, t3.sortField); }, - $signature: 26 + $signature: 25 }; A.memoizedCalculateExpenseCategoryAmount_closure.prototype = { call$2(categoryId, expenseMap) { @@ -437085,13 +437550,13 @@ t1.total = t1.total + expense.get$grossAmount(); } }, - $signature: 130 + $signature: 126 }; A.memoizedExpenseStatsForExpenseCategory_closure.prototype = { call$2(companyGatewayId, expenseMap) { return A.expenseStatsForExpenseCategory(companyGatewayId, expenseMap); }, - $signature: 178 + $signature: 174 }; A.expenseStatsForExpenseCategory_closure.prototype = { call$2(expenseId, expense) { @@ -437124,13 +437589,13 @@ } } }, - $signature: 130 + $signature: 126 }; A.memoizedTransactionStatsForExpenseCategory_closure.prototype = { call$2(companyGatewayId, transactionMap) { return A.transactionStatsForExpenseCategory(companyGatewayId, transactionMap); }, - $signature: 408 + $signature: 402 }; A.transactionStatsForExpenseCategory_closure.prototype = { call$2(transactionId, transaction) { @@ -437163,7 +437628,7 @@ } } }, - $signature: 407 + $signature: 403 }; A.ExpenseCategoryState.prototype = { $get$1(_, categoryId) { @@ -437207,7 +437672,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 409 + $signature: 401 }; A.ExpenseCategoryUIState.prototype = { get$isCreatingNew() { @@ -437806,7 +438271,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].groupState.map._map$_map.$index(0, id); }, - $signature: 523 + $signature: 522 }; A._archiveGroup__closure0.prototype = { call$1(groups) { @@ -437815,7 +438280,7 @@ t1[0].call$1(new A.ArchiveGroupSuccess(groups)); this.action.completer.complete$1(0, null); }, - $signature: 524 + $signature: 523 }; A._archiveGroup__closure1.prototype = { call$1(error) { @@ -437850,7 +438315,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].groupState.map._map$_map.$index(0, id); }, - $signature: 523 + $signature: 522 }; A._deleteGroup__closure0.prototype = { call$1(groups) { @@ -437859,7 +438324,7 @@ t1[0].call$1(new A.DeleteGroupSuccess(groups)); this.action.completer.complete$1(0, null); }, - $signature: 524 + $signature: 523 }; A._deleteGroup__closure1.prototype = { call$1(error) { @@ -437894,7 +438359,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].groupState.map._map$_map.$index(0, id); }, - $signature: 523 + $signature: 522 }; A._restoreGroup__closure0.prototype = { call$1(groups) { @@ -437903,7 +438368,7 @@ t1[0].call$1(new A.RestoreGroupSuccess(groups)); this.action.completer.complete$1(0, null); }, - $signature: 524 + $signature: 523 }; A._restoreGroup__closure1.prototype = { call$1(error) { @@ -437946,7 +438411,7 @@ } t1.completer.complete$1(0, group); }, - $signature: 332 + $signature: 346 }; A._saveGroup__closure0.prototype = { call$1(error) { @@ -437984,7 +438449,7 @@ if (t1 != null) t1.complete$1(0, null); }, - $signature: 332 + $signature: 346 }; A._loadGroup__closure0.prototype = { call$1(error) { @@ -438034,13 +438499,13 @@ call$1(group) { B.JSArray_methods.forEach$1(group.documents._list$_list, new A._loadGroups____closure(this.documents, group)); }, - $signature: 651 + $signature: 654 }; A._loadGroups____closure.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._loadGroups_____closure(this.group))); }, - $signature: 42 + $signature: 41 }; A._loadGroups_____closure.prototype = { call$1(b) { @@ -438094,13 +438559,13 @@ t1[0].call$1(new A.LoadDocumentsSuccess(documents)); this.action.completer.complete$1(0, documents); }, - $signature: 332 + $signature: 346 }; A._saveDocument___closure.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._saveDocument____closure(this.group))); }, - $signature: 42 + $signature: 41 }; A._saveDocument____closure.prototype = { call$1(b) { @@ -438200,13 +438665,13 @@ call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure115.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure116.prototype = { call$2(selectedId, action) { @@ -438230,7 +438695,7 @@ call$2(selectedId, action) { return action.entityType === B.EntityType_group ? "" : selectedId; }, - $signature: 183 + $signature: 176 }; A.selectedIdReducer_closure120.prototype = { call$2(selectedId, action) { @@ -438243,7 +438708,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure33.prototype = { call$2(groups, action) { @@ -438274,13 +438739,13 @@ b.get$_group_model$_$this()._group_model$_isChanged = true; return b; }, - $signature: 526 + $signature: 525 }; A.groupListReducer_closure.prototype = { call$2(state, action) { return state.rebuild$1(new A.groupListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.groupListReducer__closure.prototype = { call$1(b) { @@ -438401,7 +438866,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 527 + $signature: 526 }; A._deleteGroupSuccess_closure.prototype = { call$1(b) { @@ -438423,7 +438888,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 527 + $signature: 526 }; A._restoreGroupSuccess_closure.prototype = { call$1(b) { @@ -438445,7 +438910,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 527 + $signature: 526 }; A._addGroup_closure.prototype = { call$1(b) { @@ -438457,7 +438922,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 221 + $signature: 234 }; A._updateGroup_closure.prototype = { call$1(b) { @@ -438465,7 +438930,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 221 + $signature: 234 }; A._setLoadedGroup_closure.prototype = { call$1(b) { @@ -438473,14 +438938,14 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 221 + $signature: 234 }; A._setLoadedGroups_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.groups, new A._setLoadedGroups__closure(), new A._setLoadedGroups__closure0(), type$.String, type$.GroupEntity)); return b; }, - $signature: 221 + $signature: 234 }; A._setLoadedGroups__closure.prototype = { call$1(item) { @@ -438492,7 +438957,7 @@ call$1(item) { return item; }, - $signature: 643 + $signature: 646 }; A._setLoadedGroups_closure0.prototype = { call$1(b) { @@ -438500,14 +438965,14 @@ b.get$list(b).replace$1(0, t1.get$keys(t1)); return b; }, - $signature: 221 + $signature: 234 }; A._setLoadedCompany_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.userCompany.company.groups, new A._setLoadedCompany__closure(), new A._setLoadedCompany__closure0(), type$.String, type$.GroupEntity)); return b; }, - $signature: 221 + $signature: 234 }; A._setLoadedCompany__closure.prototype = { call$1(item) { @@ -438519,7 +438984,7 @@ call$1(item) { return item; }, - $signature: 643 + $signature: 646 }; A._setLoadedCompany_closure0.prototype = { call$1(b) { @@ -438527,7 +438992,7 @@ b.get$list(b).replace$1(0, t1.get$keys(t1)); return b; }, - $signature: 221 + $signature: 234 }; A.memoizedFilteredGroupList_closure.prototype = { call$4(selectionState, groupMap, groupList, groupListState) { @@ -438547,7 +439012,7 @@ return false; return A.matchesStrings(A._setArrayType([t1.name], type$.JSArray_nullable_String), t2.filter); }, - $signature: 11 + $signature: 12 }; A.filteredGroupsSelector_closure0.prototype = { call$2(groupAId, groupBId) { @@ -438558,7 +439023,7 @@ t3 = this.groupListState; return t2.compareTo$3(0, t1.$index(0, groupBId), t3.sortField, t3.sortAscending); }, - $signature: 26 + $signature: 25 }; A.memoizedClientStatsForGroup_closure.prototype = { call$2(clientMap, groupId) { @@ -439287,7 +439752,7 @@ if (!t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].clientState.$get$1(0, type$.InvoiceEntity._as(invoice).clientId).get$hasEmailAddress()) this._box_0.emailValid = false; }, - $signature: 153 + $signature: 157 }; A.handleInvoiceAction_closure4.prototype = { call$0() { @@ -439399,7 +439864,7 @@ t3 = A.MappedIterable_MappedIterable(new A.LinkedHashMapKeyIterable(t1, t3), new A.handleInvoiceAction__closure1(t1, context), t3._eval$1("Iterable.E"), type$.SimpleDialogOption); return A.SimpleDialog$(A.List_List$of(t3, true, A._instanceType(t3)._eval$1("Iterable.E")), t2); }, - $signature: 182 + $signature: 190 }; A.handleInvoiceAction__closure1.prototype = { call$1(template) { @@ -439462,7 +439927,7 @@ type$.InvoiceEntity._as(invoice); return !(invoice.entityType === B.EntityType_invoice && invoice.statusId === "4"); }, - $signature: 234 + $signature: 220 }; A.handleInvoiceAction__closure0.prototype = { call$1(invoice) { @@ -439473,7 +439938,7 @@ t1 = invoice.statusId !== "1" ? invoice.balance : invoice.amount; return A.PaymentableEntity_PaymentableEntity(t1, null, invoice.id); }, - $signature: 665 + $signature: 678 }; A.handleInvoiceAction_closure13.prototype = { call$1(response) { @@ -439541,7 +440006,7 @@ call$1(context) { return new A.RunTemplateDialog(B.EntityType_invoice, this.invoices, null); }, - $signature: 310 + $signature: 319 }; A._viewInvoiceList_closure0.prototype = { call$3(store, dynamicAction, next) { @@ -440211,7 +440676,7 @@ } else t1[0].call$1(new A.LoadRecurringInvoices(null, 1)); }, - $signature: 315 + $signature: 347 }; A._loadInvoices___closure.prototype = { call$1(invoice) { @@ -440223,7 +440688,7 @@ call$1($document) { this.documents.push($document.rebuild$1(new A._loadInvoices_____closure(this.invoice))); }, - $signature: 42 + $signature: 41 }; A._loadInvoices_____closure.prototype = { call$1(b) { @@ -440280,7 +440745,7 @@ call$1($document) { this.documents.push($document.rebuild$1(new A._saveDocument____closure10(this.invoice))); }, - $signature: 42 + $signature: 41 }; A._saveDocument____closure10.prototype = { call$1(b) { @@ -440458,13 +440923,13 @@ call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure407.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure408.prototype = { call$2(selectedId, action) { @@ -440518,7 +440983,7 @@ call$2(selectedId, action) { return action.entityType === B.EntityType_invoice ? "" : selectedId; }, - $signature: 183 + $signature: 176 }; A.selectedIdReducer_closure417.prototype = { call$2(selectedId, action) { @@ -440531,7 +440996,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure130.prototype = { call$2(invoice, action) { @@ -440550,7 +441015,7 @@ call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure54()); }, - $signature: 641 + $signature: 645 }; A.editingReducer__closure54.prototype = { call$1(b) { @@ -440621,7 +441086,7 @@ call$1(contact) { return A.InvitationEntity_InvitationEntity(contact.id, null); }, - $signature: 212 + $signature: 226 }; A.editingReducer_closure136.prototype = { call$2(invoices, action) { @@ -440728,7 +441193,7 @@ call$2(state, action) { return state.rebuild$1(new A.invoiceListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.invoiceListReducer__closure.prototype = { call$1(b) { @@ -440913,13 +441378,13 @@ call$1(each) { return each.clientId === this.action.clientId; }, - $signature: 197 + $signature: 194 }; A._purgeClientSuccess_closure25.prototype = { call$1(each) { return each.id; }, - $signature: 271 + $signature: 320 }; A._purgeClientSuccess_closure23.prototype = { call$1(b) { @@ -440932,19 +441397,19 @@ B.JSArray_methods._removeWhere$2(t2, new A._purgeClientSuccess__closure16(t1), true); return b; }, - $signature: 333 + $signature: 276 }; A._purgeClientSuccess__closure15.prototype = { call$2(p0, p1) { return B.JSArray_methods.contains$1(this.ids, p0); }, - $signature: 437 + $signature: 381 }; A._purgeClientSuccess__closure16.prototype = { call$1(p0) { return B.JSArray_methods.contains$1(this.ids, p0); }, - $signature: 11 + $signature: 12 }; A._markInvoicesSentSuccess_closure.prototype = { call$1(b) { @@ -440966,7 +441431,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 250 + $signature: 245 }; A._markInvoicesPaidSuccess_closure.prototype = { call$1(b) { @@ -440988,7 +441453,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 250 + $signature: 245 }; A._cancelInvoicesSuccess_closure.prototype = { call$1(b) { @@ -441010,7 +441475,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 250 + $signature: 245 }; A._archiveInvoiceSuccess_closure.prototype = { call$1(b) { @@ -441032,7 +441497,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 250 + $signature: 245 }; A._deleteInvoiceSuccess_closure.prototype = { call$1(b) { @@ -441054,7 +441519,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 250 + $signature: 245 }; A._emailInvoiceSuccess_closure.prototype = { call$1(b) { @@ -441062,7 +441527,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 333 + $signature: 276 }; A._restoreInvoiceSuccess_closure.prototype = { call$1(b) { @@ -441084,7 +441549,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 250 + $signature: 245 }; A._addInvoice_closure.prototype = { call$1(b) { @@ -441096,7 +441561,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 333 + $signature: 276 }; A._addInvoice__closure.prototype = { call$1(b) { @@ -441111,7 +441576,7 @@ b.get$map(b).$indexSet(0, J.get$id$x(this.action.get$invoice()), this.invoice.rebuild$1(new A._updateInvoice__closure())); return b; }, - $signature: 333 + $signature: 276 }; A._updateInvoice__closure.prototype = { call$1(b) { @@ -441138,19 +441603,19 @@ if (quote.invoiceId === this.invoice.id) this._box_0.invoiceQuote = quote; }, - $signature: 71 + $signature: 74 }; A.invoiceContactSelector_closure.prototype = { call$1(invitation) { return invitation.clientContactId; }, - $signature: 436 + $signature: 382 }; A.invoiceContactSelector_closure0.prototype = { call$1(contact) { return B.JSArray_methods.contains$1(this._box_0.contactIds, contact.id); }, - $signature: 192 + $signature: 172 }; A.memoizedDropdownInvoiceList_closure.prototype = { call$8(invoiceMap, clientMap, vendorMap, invoiceList, clientId, userMap, excludedIds, recurringPrefix) { @@ -441202,7 +441667,7 @@ t1 = false; return t1 && invoice.get$isUnpaid() && !invoice.get$isCancelledOrReversed(); }, - $signature: 11 + $signature: 12 }; A.dropdownInvoiceSelector_closure0.prototype = { call$2(invoiceAId, invoiceBId) { @@ -441212,7 +441677,7 @@ t2.toString; return t2.compareTo$7$clientMap$invoice$recurringPrefix$sortAscending$sortField$userMap$vendorMap(0, _this.clientMap, t1.$index(0, invoiceBId), _this.recurringPrefix, true, "number", _this.userMap, _this.vendorMap); }, - $signature: 26 + $signature: 25 }; A.memoizedFilteredInvoiceList_closure.prototype = { call$9(selectionState, invoiceMap, invoiceList, clientMap, vendorMap, paymentMap, invoiceListState, userMap, recurringPrefix) { @@ -441224,7 +441689,7 @@ call$2(paymentId, payment) { B.JSArray_methods.forEach$1(payment.get$invoicePaymentables(), new A.filteredInvoicesSelector__closure0(this.invoicePaymentMap, payment)); }, - $signature: 198 + $signature: 195 }; A.filteredInvoicesSelector__closure0.prototype = { call$1(invoicePaymentable) { @@ -441236,7 +441701,7 @@ paymentIds.push(this.payment.id); t1.$indexSet(0, t2, paymentIds); }, - $signature: 139 + $signature: 150 }; A.filteredInvoicesSelector_closure0.prototype = { call$1(invoiceId) { @@ -441321,7 +441786,7 @@ } return true; }, - $signature: 11 + $signature: 12 }; A.filteredInvoicesSelector__closure.prototype = { call$1(paymentId) { @@ -441339,7 +441804,7 @@ t3 = _this.invoiceListState; return J.compareTo$7$clientMap$invoice$recurringPrefix$sortAscending$sortField$userMap$vendorMap$ns(t2, _this.clientMap, t1.$index(0, invoiceBId), _this.recurringPrefix, t3.sortAscending, t3.sortField, _this.userMap, _this.vendorMap); }, - $signature: 26 + $signature: 25 }; A.memoizedInvoiceStatsForClient_closure.prototype = { call$2(clientId, invoiceMap) { @@ -441378,7 +441843,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.memoizedInvoiceStatsForDesign_closure.prototype = { call$2(designId, invoiceMap) { @@ -441417,7 +441882,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.memoizedInvoiceStatsForSubscription_closure.prototype = { call$2(subscriptionId, invoiceMap) { @@ -441456,7 +441921,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.memoizedInvoiceStatsForProject_closure.prototype = { call$2(projectId, invoiceMap) { @@ -441495,7 +441960,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.memoizedQuoteStatsForProject_closure.prototype = { call$2(projectId, quoteMap) { @@ -441534,7 +441999,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.memoizedInvoiceStatsForUser_closure.prototype = { call$2(userId, invoiceMap) { @@ -441568,7 +442033,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.InvoiceState.prototype = { $get$1(_, invoiceId) { @@ -441613,7 +442078,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 333 + $signature: 276 }; A.InvoiceUIState.prototype = { get$isCreatingNew() { @@ -442172,7 +442637,7 @@ call$1(duration) { A.editEntity(null, this._box_0.payment.rebuild$1(new A.handlePaymentAction__closure1()), true, null); }, - $signature: 12 + $signature: 11 }; A.handlePaymentAction__closure1.prototype = { call$1(b) { @@ -442192,7 +442657,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.ViewRefundPayment(t1)); }, - $signature: 12 + $signature: 11 }; A.handlePaymentAction__closure.prototype = { call$1(b) { @@ -442217,7 +442682,7 @@ call$1(context) { return new A.RunTemplateDialog(B.EntityType_payment, this.payments, null); }, - $signature: 310 + $signature: 319 }; A._editPayment_closure.prototype = { call$3(store, dynamicAction, next) { @@ -442248,7 +442713,7 @@ call$1(context) { return new A.PaymentEditScreen(null); }, - $signature: 686 + $signature: 723 }; A._viewRefundPayment_closure.prototype = { call$3(store, dynamicAction, next) { @@ -442277,7 +442742,7 @@ call$1(context) { return new A.PaymentRefundScreen(null); }, - $signature: 685 + $signature: 722 }; A._viewPayment_closure.prototype = { call$3(store, action, next) { @@ -442362,7 +442827,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].paymentState.map._map$_map.$index(0, id); }, - $signature: 334 + $signature: 344 }; A._archivePayment__closure0.prototype = { call$1(payments) { @@ -442371,7 +442836,7 @@ t1[0].call$1(new A.ArchivePaymentsSuccess(payments)); this.action.completer.complete$1(0, null); }, - $signature: 406 + $signature: 408 }; A._archivePayment__closure1.prototype = { call$1(error) { @@ -442406,7 +442871,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].paymentState.map._map$_map.$index(0, id); }, - $signature: 334 + $signature: 344 }; A._deletePayment__closure0.prototype = { call$1(payments) { @@ -442416,7 +442881,7 @@ t1[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, - $signature: 406 + $signature: 408 }; A._deletePayment__closure1.prototype = { call$1(error) { @@ -442451,7 +442916,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].paymentState.map._map$_map.$index(0, id); }, - $signature: 334 + $signature: 344 }; A._restorePayment__closure0.prototype = { call$1(payments) { @@ -442461,7 +442926,7 @@ t1[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, - $signature: 406 + $signature: 408 }; A._restorePayment__closure1.prototype = { call$1(error) { @@ -442507,7 +442972,7 @@ t2[0].call$1(new A.RefreshData(null, false, false, false)); t1.completer.complete$1(0, payment); }, - $signature: 204 + $signature: 199 }; A._savePayment__closure0.prototype = { call$1(error) { @@ -442542,7 +443007,7 @@ t1[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, payment); }, - $signature: 204 + $signature: 199 }; A._refundPayment__closure0.prototype = { call$1(error) { @@ -442575,7 +443040,7 @@ t1[0].call$1(new A.EmailPaymentSuccess()); this.action.completer.complete$1(0, null); }, - $signature: 406 + $signature: 408 }; A._emailPayment__closure0.prototype = { call$1(error) { @@ -442611,7 +443076,7 @@ t1[0].call$1(new A.LoadPaymentSuccess(payment)); this.action.completer.complete$1(0, null); }, - $signature: 204 + $signature: 199 }; A._loadPayment__closure0.prototype = { call$1(error) { @@ -442787,13 +443252,13 @@ call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure24.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure25.prototype = { call$2(selectedId, action) { @@ -442847,7 +443312,7 @@ call$2(selectedId, action) { return action.entityType === B.EntityType_payment ? "" : selectedId; }, - $signature: 183 + $signature: 176 }; A.selectedIdReducer_closure34.prototype = { call$2(selectedId, action) { @@ -442860,7 +443325,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure10.prototype = { call$2(payments, action) { @@ -442897,7 +443362,7 @@ call$2(state, action) { return state.rebuild$1(new A.paymentListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.paymentListReducer__closure.prototype = { call$1(b) { @@ -443082,7 +443547,7 @@ call$1(each) { return each.clientId === this.action.clientId; }, - $signature: 463 + $signature: 602 }; A._purgeClientSuccess_closure4.prototype = { call$1(each) { @@ -443101,7 +443566,7 @@ B.JSArray_methods._removeWhere$2(t2, new A._purgeClientSuccess__closure2(t1), true); return b; }, - $signature: 335 + $signature: 312 }; A._purgeClientSuccess__closure1.prototype = { call$2(p0, p1) { @@ -443113,7 +443578,7 @@ call$1(p0) { return B.JSArray_methods.contains$1(this.ids, p0); }, - $signature: 11 + $signature: 12 }; A._archivePaymentSuccess_closure.prototype = { call$1(b) { @@ -443135,7 +443600,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 538 + $signature: 537 }; A._deletePaymentSuccess_closure.prototype = { call$1(b) { @@ -443157,7 +443622,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 538 + $signature: 537 }; A._restorePaymentSuccess_closure.prototype = { call$1(b) { @@ -443179,7 +443644,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 538 + $signature: 537 }; A._addPayment_closure.prototype = { call$1(b) { @@ -443191,7 +443656,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 335 + $signature: 312 }; A._updatePayment_closure.prototype = { call$1(b) { @@ -443199,7 +443664,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 335 + $signature: 312 }; A._setLoadedPayment_closure.prototype = { call$1(b) { @@ -443207,19 +443672,19 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 335 + $signature: 312 }; A.memoizedPaymentsByInvoice_closure.prototype = { call$3(invoiceId, paymentMap, paymentList) { return A.paymentsByInvoiceSelector(invoiceId, paymentMap, paymentList); }, - $signature: 640 + $signature: 644 }; A.paymentsByInvoiceSelector_closure.prototype = { call$1(paymentId) { return this.paymentMap._map$_map.$index(0, paymentId); }, - $signature: 334 + $signature: 344 }; A.paymentsByInvoiceSelector_closure0.prototype = { call$1(payment) { @@ -443232,25 +443697,25 @@ t1 = false; return t1; }, - $signature: 639 + $signature: 643 }; A.paymentsByInvoiceSelector__closure.prototype = { call$1(p) { return p.invoiceId; }, - $signature: 253 + $signature: 257 }; A.memoizedPaymentsByCredit_closure.prototype = { call$3(invoiceId, paymentMap, paymentList) { return A.paymentsByCreditSelector(invoiceId, paymentMap, paymentList); }, - $signature: 640 + $signature: 644 }; A.paymentsByCreditSelector_closure.prototype = { call$1(paymentId) { return this.paymentMap._map$_map.$index(0, paymentId); }, - $signature: 334 + $signature: 344 }; A.paymentsByCreditSelector_closure0.prototype = { call$1(payment) { @@ -443263,13 +443728,13 @@ t1 = false; return t1; }, - $signature: 639 + $signature: 643 }; A.paymentsByCreditSelector__closure.prototype = { call$1(p) { return p.creditId; }, - $signature: 253 + $signature: 257 }; A.memoizedFilteredPaymentList_closure.prototype = { call$8(selectionState, paymentMap, paymentList, invoiceMap, clientMap, userMap, paymentTypeMap, paymentListState) { @@ -443327,13 +443792,13 @@ return false; return true; }, - $signature: 11 + $signature: 12 }; A.filteredPaymentsSelector__closure.prototype = { call$1(p) { return p.invoiceId; }, - $signature: 253 + $signature: 257 }; A.filteredPaymentsSelector_closure0.prototype = { call$2(paymentAId, paymentBId) { @@ -443344,7 +443809,7 @@ t3 = _this.paymentListState; return t2.compareTo$7$clientMap$invoiceMap$payment$paymentTypeMap$sortAscending$sortField$userMap(0, _this.clientMap, _this.invoiceMap, t1.$index(0, paymentBId), _this.paymentTypeMap, t3.sortAscending, t3.sortField, _this.userMap); }, - $signature: 26 + $signature: 25 }; A.memoizedPaymentStatsForClient_closure.prototype = { call$3(clientId, paymentMap, invoiceMap) { @@ -443383,7 +443848,7 @@ } } }, - $signature: 198 + $signature: 195 }; A.PaymentState.prototype = { $get$1(_, paymentId) { @@ -443427,7 +443892,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 335 + $signature: 312 }; A.PaymentUIState.prototype = { get$isCreatingNew() { @@ -444054,7 +444519,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].paymentTermState.map._map$_map.$index(0, id); }, - $signature: 542 + $signature: 541 }; A._archivePaymentTerm__closure0.prototype = { call$1(paymentTerms) { @@ -444063,7 +444528,7 @@ t1[0].call$1(new A.ArchivePaymentTermsSuccess(paymentTerms)); this.action.completer.complete$1(0, null); }, - $signature: 543 + $signature: 542 }; A._archivePaymentTerm__closure1.prototype = { call$1(error) { @@ -444098,7 +444563,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].paymentTermState.map._map$_map.$index(0, id); }, - $signature: 542 + $signature: 541 }; A._deletePaymentTerm__closure0.prototype = { call$1(paymentTerms) { @@ -444107,7 +444572,7 @@ t1[0].call$1(new A.DeletePaymentTermsSuccess(paymentTerms)); this.action.completer.complete$1(0, null); }, - $signature: 543 + $signature: 542 }; A._deletePaymentTerm__closure1.prototype = { call$1(error) { @@ -444142,7 +444607,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].paymentTermState.map._map$_map.$index(0, id); }, - $signature: 542 + $signature: 541 }; A._restorePaymentTerm__closure0.prototype = { call$1(paymentTerms) { @@ -444151,7 +444616,7 @@ t1[0].call$1(new A.RestorePaymentTermsSuccess(paymentTerms)); this.action.completer.complete$1(0, null); }, - $signature: 543 + $signature: 542 }; A._restorePaymentTerm__closure1.prototype = { call$1(error) { @@ -444194,7 +444659,7 @@ } t1.completer.complete$1(0, paymentTerm); }, - $signature: 404 + $signature: 443 }; A._savePaymentTerm__closure0.prototype = { call$1(error) { @@ -444230,7 +444695,7 @@ t1[0].call$1(new A.LoadPaymentTermSuccess(paymentTerm)); this.action.completer.complete$1(0, null); }, - $signature: 404 + $signature: 443 }; A._loadPaymentTerm__closure0.prototype = { call$1(error) { @@ -444374,25 +444839,25 @@ call$2(selectedId, action) { return action.get$paymentTermId(); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure199.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$paymentTerm()); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure200.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure201.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure202.prototype = { call$2(selectedId, action) { @@ -444465,13 +444930,13 @@ b.get$_payment_term_model$_$this()._payment_term_model$_isChanged = true; return b; }, - $signature: 638 + $signature: 642 }; A.paymentTermListReducer_closure.prototype = { call$2(state, action) { return state.rebuild$1(new A.paymentTermListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.paymentTermListReducer__closure.prototype = { call$1(b) { @@ -444624,7 +445089,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 546 + $signature: 545 }; A._deletePaymentTermSuccess_closure.prototype = { call$1(b) { @@ -444646,7 +445111,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 546 + $signature: 545 }; A._restorePaymentTermSuccess_closure.prototype = { call$1(b) { @@ -444668,7 +445133,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 546 + $signature: 545 }; A._addPaymentTerm_closure.prototype = { call$1(b) { @@ -444680,7 +445145,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 254 + $signature: 265 }; A._updatePaymentTerm_closure.prototype = { call$1(b) { @@ -444688,7 +445153,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 254 + $signature: 265 }; A._setLoadedPaymentTerm_closure.prototype = { call$1(b) { @@ -444696,14 +445161,14 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 254 + $signature: 265 }; A._setLoadedCompany_closure7.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.userCompany.company.paymentTerms, new A._setLoadedCompany__closure7(), new A._setLoadedCompany__closure8(), type$.String, type$.PaymentTermEntity)); return b; }, - $signature: 254 + $signature: 265 }; A._setLoadedCompany__closure7.prototype = { call$1(item) { @@ -444715,7 +445180,7 @@ call$1(item) { return item; }, - $signature: 637 + $signature: 640 }; A._setLoadedCompany_closure8.prototype = { call$1(b) { @@ -444723,7 +445188,7 @@ b.get$list(b).replace$1(0, t1.get$keys(t1)); return b; }, - $signature: 254 + $signature: 265 }; A.memoizedDropdownPaymentTermList_closure.prototype = { call$2(paymentTermMap, paymentTermList) { @@ -444757,7 +445222,7 @@ t2.$indexSet(0, t1, true); return true; }, - $signature: 11 + $signature: 12 }; A.dropdownPaymentTermsSelector_closure0.prototype = { call$2(paymentTermAId, paymentTermBId) { @@ -444768,7 +445233,7 @@ t1.toString; return B.JSInt_methods.compareTo$1(t2.numDays, t1.numDays); }, - $signature: 26 + $signature: 25 }; A.memoizedFilteredPaymentTermList_closure.prototype = { call$4(selectionState, paymentTermMap, paymentTermList, paymentTermListState) { @@ -444788,7 +445253,7 @@ return false; return A.matchesStrings(A._setArrayType(["" + t1.numDays], type$.JSArray_nullable_String), t2.filter); }, - $signature: 11 + $signature: 12 }; A.filteredPaymentTermsSelector_closure0.prototype = { call$2(paymentTermAId, paymentTermBId) { @@ -444799,7 +445264,7 @@ t1.toString; return B.JSInt_methods.compareTo$1(t2.numDays, t1.numDays); }, - $signature: 26 + $signature: 25 }; A.PaymentTermState.prototype = { loadPaymentTerms$1(clients) { @@ -444819,7 +445284,7 @@ call$1(item) { return item; }, - $signature: 637 + $signature: 640 }; A.PaymentTermState_loadPaymentTerms_closure.prototype = { call$1(b) { @@ -444834,7 +445299,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 254 + $signature: 265 }; A.PaymentTermUIState.prototype = { get$isCreatingNew() { @@ -445357,7 +445822,7 @@ t2 = t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex]; return A.convertProductToInvoiceItem(null, t2.userCompany.company, t1.staticState.currencyMap, this.invoice, t2.productState.map._map$_map.$index(0, productId)); }, - $signature: 636 + $signature: 639 }; A.handleProductAction_closure1.prototype = { call$1(b) { @@ -445373,7 +445838,7 @@ t2 = t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex]; return A.convertProductToInvoiceItem(null, t2.userCompany.company, t1.staticState.currencyMap, this.invoice, t2.productState.map._map$_map.$index(0, productId)); }, - $signature: 636 + $signature: 639 }; A.handleProductAction_closure2.prototype = { call$1(context) { @@ -445395,7 +445860,7 @@ t2 = A.Text$(t2, _null, _null, _null, _null, _null, _null, _null, _null, _null); return A.SimpleDialog$(J.map$1$1$ax(B.Map_k38sM.get$keys(B.Map_k38sM), new A.handleProductAction__closure(t1, context, this.store, this.productIds), type$.SimpleDialogOption).toList$0(0), t2); }, - $signature: 182 + $signature: 190 }; A.handleProductAction__closure.prototype = { call$1(taxCategoryId) { @@ -445554,7 +446019,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].productState.map._map$_map.$index(0, id); }, - $signature: 400 + $signature: 413 }; A._archiveProduct__closure0.prototype = { call$1(products) { @@ -445563,7 +446028,7 @@ t1[0].call$1(new A.ArchiveProductsSuccess(products)); this.action.completer.complete$1(0, null); }, - $signature: 399 + $signature: 414 }; A._archiveProduct__closure1.prototype = { call$1(error) { @@ -445596,7 +446061,7 @@ t1[0].call$1(new A.SetTaxCategoryProductsSuccess(products)); this.action.completer.complete$1(0, null); }, - $signature: 399 + $signature: 414 }; A._setTaxCategoryProducts__closure0.prototype = { call$1(error) { @@ -445631,7 +446096,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].productState.map._map$_map.$index(0, id); }, - $signature: 400 + $signature: 413 }; A._deleteProduct__closure0.prototype = { call$1(products) { @@ -445640,7 +446105,7 @@ t1[0].call$1(new A.DeleteProductsSuccess(products)); this.action.completer.complete$1(0, null); }, - $signature: 399 + $signature: 414 }; A._deleteProduct__closure1.prototype = { call$1(error) { @@ -445675,7 +446140,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].productState.map._map$_map.$index(0, id); }, - $signature: 400 + $signature: 413 }; A._restoreProduct__closure0.prototype = { call$1(products) { @@ -445684,7 +446149,7 @@ t1[0].call$1(new A.RestoreProductsSuccess(products)); this.action.completer.complete$1(0, null); }, - $signature: 399 + $signature: 414 }; A._restoreProduct__closure1.prototype = { call$1(error) { @@ -445727,7 +446192,7 @@ } t1.completer.complete$1(0, product); }, - $signature: 336 + $signature: 272 }; A._saveProduct__closure0.prototype = { call$1(error) { @@ -445765,7 +446230,7 @@ if (t1 != null) t1.complete$1(0, null); }, - $signature: 336 + $signature: 272 }; A._loadProduct__closure0.prototype = { call$1(error) { @@ -445818,13 +446283,13 @@ call$1(product) { B.JSArray_methods.forEach$1(product.documents._list$_list, new A._loadProducts____closure(this.documents, product)); }, - $signature: 498 + $signature: 497 }; A._loadProducts____closure.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._loadProducts_____closure(this.product))); }, - $signature: 42 + $signature: 41 }; A._loadProducts_____closure.prototype = { call$1(b) { @@ -445875,13 +446340,13 @@ t1[0].call$1(new A.LoadDocumentsSuccess(documents)); this.action.completer.complete$1(0, documents); }, - $signature: 336 + $signature: 272 }; A._saveDocument___closure12.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._saveDocument____closure12(this.product))); }, - $signature: 42 + $signature: 41 }; A._saveDocument____closure12.prototype = { call$1(b) { @@ -445996,7 +446461,7 @@ b.get$_product_model$_$this()._product_model$_isChanged = true; return b; }, - $signature: 185 + $signature: 180 }; A.editingReducer_closure156.prototype = { call$2(products, action) { @@ -446050,13 +446515,13 @@ call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure441.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure442.prototype = { call$2(selectedId, action) { @@ -446104,7 +446569,7 @@ call$2(state, action) { return state.rebuild$1(new A.productListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.productListReducer__closure.prototype = { call$1(b) { @@ -446289,7 +446754,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 397 + $signature: 415 }; A._deleteProductSuccess_closure.prototype = { call$1(b) { @@ -446311,7 +446776,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 397 + $signature: 415 }; A._restoreProductSuccess_closure.prototype = { call$1(b) { @@ -446333,7 +446798,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 397 + $signature: 415 }; A._setTaxCategoryProductsSuccess_closure.prototype = { call$1(b) { @@ -446355,7 +446820,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 397 + $signature: 415 }; A._addProduct_closure.prototype = { call$1(b) { @@ -446367,7 +446832,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 395 + $signature: 416 }; A._updateProduct_closure.prototype = { call$1(b) { @@ -446375,7 +446840,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 395 + $signature: 416 }; A._setLoadedProduct_closure.prototype = { call$1(b) { @@ -446383,7 +446848,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 395 + $signature: 416 }; A.convertProductToInvoiceItem_closure.prototype = { call$1(b) { @@ -446429,7 +446894,7 @@ b.get$_invoice_model$_$this()._taxRate3 = t1; return b; }, - $signature: 55 + $signature: 56 }; A.memoizedDropdownProductList_closure.prototype = { call$3(productMap, productList, userMap) { @@ -446455,7 +446920,7 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A.dropdownProductsSelector_closure0.prototype = { call$2(productAId, productBId) { @@ -446464,7 +446929,7 @@ t2.toString; return t2.compareTo$4(0, t1.$index(0, productBId), "product_key", true, this.userMap); }, - $signature: 26 + $signature: 25 }; A.memoizedProductList_closure.prototype = { call$1(productMap) { @@ -446490,14 +446955,14 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A.productList_closure0.prototype = { call$2(idA, idB) { var t1 = this.productMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).productKey, t1.$index(0, idB).productKey); }, - $signature: 26 + $signature: 25 }; A.memoizedFilteredProductList_closure.prototype = { call$5(selectionState, productMap, productList, productListState, userMap) { @@ -446537,7 +447002,7 @@ } return true; }, - $signature: 11 + $signature: 12 }; A.filteredProductsSelector_closure0.prototype = { call$2(productAId, productBId) { @@ -446548,7 +447013,7 @@ t3 = this.productListState; return t2.compareTo$4(0, t1.$index(0, productBId), t3.sortField, t3.sortAscending, this.userMap); }, - $signature: 26 + $signature: 25 }; A.ProductState.prototype = { $get$1(_, productId) { @@ -446592,7 +447057,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 395 + $signature: 416 }; A.ProductUIState.prototype = { get$isCreatingNew() { @@ -447119,7 +447584,7 @@ b.get$_task_model$_$this()._task_model$_clientId = t1.clientId; return b; }, - $signature: 76 + $signature: 75 }; A.handleProjectAction_closure1.prototype = { call$1(b) { @@ -447147,13 +447612,13 @@ t1.lastClientId = clientId; } }, - $signature: 153 + $signature: 157 }; A.handleProjectAction_closure4.prototype = { call$1(project) { B.JSArray_methods.addAll$1(this.items, A.convertProjectToInvoiceItem(this.context, type$.nullable_ProjectEntity._as(project))); }, - $signature: 153 + $signature: 157 }; A.handleProjectAction_closure5.prototype = { call$1(b) { @@ -447174,7 +447639,7 @@ call$1(context) { return new A.RunTemplateDialog(B.EntityType_project, this.projects, null); }, - $signature: 310 + $signature: 319 }; A.StartProjectMultiselect.prototype = {}; A.AddToProjectMultiselect.prototype = {}; @@ -447287,7 +447752,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].projectState.map._map$_map.$index(0, id); }, - $signature: 555 + $signature: 554 }; A._archiveProject__closure0.prototype = { call$1(projects) { @@ -447296,7 +447761,7 @@ t1[0].call$1(new A.ArchiveProjectSuccess(projects)); this.action.completer.complete$1(0, null); }, - $signature: 556 + $signature: 555 }; A._archiveProject__closure1.prototype = { call$1(error) { @@ -447331,7 +447796,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].projectState.map._map$_map.$index(0, id); }, - $signature: 555 + $signature: 554 }; A._deleteProject__closure0.prototype = { call$1(projects) { @@ -447340,7 +447805,7 @@ t1[0].call$1(new A.DeleteProjectSuccess(projects)); this.action.completer.complete$1(0, null); }, - $signature: 556 + $signature: 555 }; A._deleteProject__closure1.prototype = { call$1(error) { @@ -447375,7 +447840,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].projectState.map._map$_map.$index(0, id); }, - $signature: 555 + $signature: 554 }; A._restoreProject__closure0.prototype = { call$1(projects) { @@ -447384,7 +447849,7 @@ t1[0].call$1(new A.RestoreProjectSuccess(projects)); this.action.completer.complete$1(0, null); }, - $signature: 556 + $signature: 555 }; A._restoreProject__closure1.prototype = { call$1(error) { @@ -447433,7 +447898,7 @@ if (t1 != null) t1.complete$1(0, project); }, - $signature: 337 + $signature: 309 }; A._saveProject__closure0.prototype = { call$1(error) { @@ -447471,7 +447936,7 @@ if (t1 != null) t1.complete$1(0, null); }, - $signature: 337 + $signature: 309 }; A._loadProject__closure0.prototype = { call$1(error) { @@ -447495,7 +447960,7 @@ t2 = store.__Store__dispatchers_F; t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.LoadProjectsRequest()); - this.repository.loadList$3(t1.get$credentials(t1), t1.get$createdAtLimit(), t1.get$filterDeletedClients()).then$1$1(0, new A._loadProjects__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadProjects__closure0(store, dynamicAction)); + this.repository.loadList$2(t1.get$credentials(t1), t1.get$filterDeletedClients()).then$1$1(0, new A._loadProjects__closure(store, dynamicAction), type$.Null).catchError$1(new A._loadProjects__closure0(store, dynamicAction)); next.call$1(dynamicAction); }, "call*": "call$3", @@ -447520,13 +447985,13 @@ call$1(project) { B.JSArray_methods.forEach$1(project.documents._list$_list, new A._loadProjects____closure(this.documents, project)); }, - $signature: 650 + $signature: 653 }; A._loadProjects____closure.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._loadProjects_____closure(this.project))); }, - $signature: 42 + $signature: 41 }; A._loadProjects_____closure.prototype = { call$1(b) { @@ -447578,13 +448043,13 @@ t1[0].call$1(new A.LoadDocumentsSuccess(documents)); this.action.completer.complete$1(0, documents); }, - $signature: 337 + $signature: 309 }; A._saveDocument___closure6.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._saveDocument____closure6(this.project))); }, - $signature: 42 + $signature: 41 }; A._saveDocument____closure6.prototype = { call$1(b) { @@ -447738,13 +448203,13 @@ call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure41.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure42.prototype = { call$2(selectedId, action) { @@ -447799,7 +448264,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure14.prototype = { call$2(projects, action) { @@ -447830,13 +448295,13 @@ b.get$_project_model$_$this()._project_model$_isChanged = true; return b; }, - $signature: 196 + $signature: 201 }; A.projectListReducer_closure.prototype = { call$2(state, action) { return state.rebuild$1(new A.projectListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.projectListReducer__closure.prototype = { call$1(b) { @@ -448005,7 +448470,7 @@ call$1(each) { return each.clientId === this.action.clientId; }, - $signature: 670 + $signature: 685 }; A._purgeClientSuccess_closure7.prototype = { call$1(each) { @@ -448024,7 +448489,7 @@ B.JSArray_methods._removeWhere$2(t2, new A._purgeClientSuccess__closure4(t1), true); return b; }, - $signature: 338 + $signature: 297 }; A._purgeClientSuccess__closure3.prototype = { call$2(p0, p1) { @@ -448036,7 +448501,7 @@ call$1(p0) { return B.JSArray_methods.contains$1(this.ids, p0); }, - $signature: 11 + $signature: 12 }; A._archiveProjectSuccess_closure.prototype = { call$1(b) { @@ -448058,7 +448523,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 559 + $signature: 558 }; A._deleteProjectSuccess_closure.prototype = { call$1(b) { @@ -448080,7 +448545,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 559 + $signature: 558 }; A._restoreProjectSuccess_closure.prototype = { call$1(b) { @@ -448102,7 +448567,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 559 + $signature: 558 }; A._addProject_closure.prototype = { call$1(b) { @@ -448114,7 +448579,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 338 + $signature: 297 }; A._updateProject_closure.prototype = { call$1(b) { @@ -448122,7 +448587,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 338 + $signature: 297 }; A._setLoadedProject_closure.prototype = { call$1(b) { @@ -448130,7 +448595,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 338 + $signature: 297 }; A.convertProjectToInvoiceItem_closure.prototype = { call$2(index, task) { @@ -448150,7 +448615,7 @@ if (t1 && !task.get$isRunning() && task.invoiceId.length === 0 && task.projectId === this.project.id) this.tasks.push(task); }, - $signature: 165 + $signature: 152 }; A.convertProjectToInvoiceItem_closure0.prototype = { call$2(index, expense) { @@ -448170,7 +448635,7 @@ if (t1 && expense.projectId === this.project.id && expense.get$isPending()) this.expenses.push(expense); }, - $signature: 130 + $signature: 126 }; A.convertProjectToInvoiceItem_closure1.prototype = { call$2(taskA, taskB) { @@ -448195,21 +448660,21 @@ t2.toString; return B.JSString_methods.compareTo$1(t1, t2); }, - $signature: 479 + $signature: 478 }; A.convertProjectToInvoiceItem_closure3.prototype = { call$1(b) { var t1 = this._box_0.notes; return b.get$_invoice_model$_$this()._invoice_model$_notes = t1; }, - $signature: 635 + $signature: 637 }; A.convertProjectToInvoiceItem_closure4.prototype = { call$1(b) { var t1 = this._box_1.notes; return b.get$_invoice_model$_$this()._invoice_model$_notes = t1; }, - $signature: 635 + $signature: 637 }; A.memoizedDropdownProjectList_closure.prototype = { call$5(projectMap, projectList, clientMap, userMap, clientId) { @@ -448262,7 +448727,7 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A.dropdownProjectsSelector_closure0.prototype = { call$2(projectAId, projectBId) { @@ -448273,7 +448738,7 @@ t1.toString; return t2.compareTo$5(0, t1, "name", true, this.userMap, this.clientMap); }, - $signature: 26 + $signature: 25 }; A.memoizedFilteredProjectList_closure.prototype = { call$6(selectionState, projectMap, projectList, projectListState, clientMap, userMap) { @@ -448357,7 +448822,7 @@ } return true; }, - $signature: 11 + $signature: 12 }; A.filteredProjectsSelector_closure0.prototype = { call$2(projectAId, projectBId) { @@ -448370,7 +448835,7 @@ t3 = _this.projectListState; return t2.compareTo$5(0, t1, t3.sortField, t3.sortAscending, _this.userMap, _this.clientMap); }, - $signature: 26 + $signature: 25 }; A.taskDurationForProject_closure.prototype = { call$2(index, task) { @@ -448381,13 +448846,13 @@ t1.total = t1.total + B.JSInt_methods._tdivFast$1(task.calculateDuration$0()._duration, 1000000); } }, - $signature: 165 + $signature: 152 }; A.memoizedProjectStatsForClient_closure.prototype = { call$2(clientId, projectMap) { return A.projectStatsForClient(clientId, projectMap); }, - $signature: 633 + $signature: 636 }; A.projectStatsForClient_closure.prototype = { call$2(projectId, project) { @@ -448426,7 +448891,7 @@ call$2(userId, projectMap) { return A.projectStatsForClient(userId, projectMap); }, - $signature: 633 + $signature: 636 }; A.ProjectState.prototype = { $get$1(_, projectId) { @@ -448470,7 +448935,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 338 + $signature: 297 }; A.ProjectUIState.prototype = { get$isCreatingNew() { @@ -449063,7 +449528,7 @@ if (!t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].vendorState.$get$1(0, type$.InvoiceEntity._as(purchaseOrder).vendorId).get$hasEmailAddress()) this._box_0.emailValid = false; }, - $signature: 153 + $signature: 157 }; A.handlePurchaseOrderAction_closure3.prototype = { call$0() { @@ -449901,7 +450366,7 @@ } else t1[0].call$1(new A.LoadExpenses(null, 1)); }, - $signature: 315 + $signature: 347 }; A._loadPurchaseOrders___closure.prototype = { call$1(purchaseOrder) { @@ -449913,7 +450378,7 @@ call$1($document) { this.documents.push($document.rebuild$1(new A._loadPurchaseOrders_____closure(this.purchaseOrder))); }, - $signature: 42 + $signature: 41 }; A._loadPurchaseOrders_____closure.prototype = { call$1(b) { @@ -449970,7 +450435,7 @@ call$1($document) { this.documents.push($document.rebuild$1(new A._saveDocument____closure3(this.purchaseOrder))); }, - $signature: 42 + $signature: 41 }; A._saveDocument____closure3.prototype = { call$1(b) { @@ -450148,13 +450613,13 @@ call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure327.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure328.prototype = { call$2(selectedId, action) { @@ -450208,7 +450673,7 @@ call$2(selectedId, action) { return action.entityType === B.EntityType_purchaseOrder ? "" : selectedId; }, - $signature: 183 + $signature: 176 }; A.selectedIdReducer_closure337.prototype = { call$2(selectedId, action) { @@ -450221,7 +450686,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure103.prototype = { call$2(purchaseOrder, action) { @@ -450240,7 +450705,7 @@ call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure43()); }, - $signature: 631 + $signature: 635 }; A.editingReducer__closure43.prototype = { call$1(b) { @@ -450311,7 +450776,7 @@ call$1(contact) { return A.InvitationEntity_InvitationEntity(null, contact.id); }, - $signature: 445 + $signature: 516 }; A.editingReducer_closure109.prototype = { call$2(purchaseOrders, action) { @@ -450399,7 +450864,7 @@ call$2(state, action) { return state.rebuild$1(new A.purchaseOrderListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.purchaseOrderListReducer__closure.prototype = { call$1(b) { @@ -450597,7 +451062,7 @@ b.get$map(b).addAll$1(0, this.purchaseOrderMap); return b; }, - $signature: 166 + $signature: 161 }; A._convertPurchaseOrdersToExpenses_closure0.prototype = { call$1(item) { @@ -450616,7 +451081,7 @@ b.get$map(b).addAll$1(0, this.purchaseOrderMap); return b; }, - $signature: 166 + $signature: 161 }; A._addPurchaseOrdersToInventorySuccess_closure0.prototype = { call$1(item) { @@ -450635,7 +451100,7 @@ b.get$map(b).addAll$1(0, this.purchaseOrderMap); return b; }, - $signature: 166 + $signature: 161 }; A._acceptPurchaseOrderSuccess_closure0.prototype = { call$1(item) { @@ -450654,7 +451119,7 @@ b.get$map(b).addAll$1(0, this.purchaseOrderMap); return b; }, - $signature: 166 + $signature: 161 }; A._cancelPurchaseOrderSuccess_closure0.prototype = { call$1(item) { @@ -450673,7 +451138,7 @@ b.get$map(b).addAll$1(0, this.purchaseOrderMap); return b; }, - $signature: 166 + $signature: 161 }; A._archivePurchaseOrderSuccess_closure.prototype = { call$1(b) { @@ -450695,7 +451160,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 564 + $signature: 563 }; A._deletePurchaseOrderSuccess_closure.prototype = { call$1(b) { @@ -450717,7 +451182,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 564 + $signature: 563 }; A._restorePurchaseOrderSuccess_closure.prototype = { call$1(b) { @@ -450739,7 +451204,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 564 + $signature: 563 }; A._emailPurchaseOrderSuccess_closure.prototype = { call$1(b) { @@ -450747,7 +451212,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 166 + $signature: 161 }; A._approvePurchaseOrderSuccess_closure0.prototype = { call$1(item) { @@ -450766,7 +451231,7 @@ b.get$map(b).addAll$1(0, this.purchaseOrderMap); return b; }, - $signature: 166 + $signature: 161 }; A._addPurchaseOrder_closure.prototype = { call$1(b) { @@ -450778,7 +451243,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 166 + $signature: 161 }; A._addPurchaseOrder__closure.prototype = { call$1(b) { @@ -450794,7 +451259,7 @@ b.get$map(b).$indexSet(0, t1.id, t1.rebuild$1(new A._updatePurchaseOrder__closure())); return b; }, - $signature: 166 + $signature: 161 }; A._updatePurchaseOrder__closure.prototype = { call$1(b) { @@ -450808,13 +451273,13 @@ call$1(invitation) { return invitation.clientContactId; }, - $signature: 436 + $signature: 382 }; A.purchaseOrderContactSelector_closure0.prototype = { call$1(contact) { return B.JSArray_methods.contains$1(this._box_0.contactIds, contact.id); }, - $signature: 194 + $signature: 197 }; A.memoizedDropdownPurchaseOrderList_closure.prototype = { call$7(purchaseOrderMap, purchaseOrderList, staticState, userMap, clientMap, vendorMap, clientId) { @@ -450841,7 +451306,7 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A.dropdownPurchaseOrdersSelector_closure0.prototype = { call$2(purchaseOrderAId, purchaseOrderBId) { @@ -450851,13 +451316,13 @@ t2.toString; return t2.compareTo$6$clientMap$invoice$sortAscending$sortField$userMap$vendorMap(0, _this.clientMap, t1.$index(0, purchaseOrderBId), false, "number", _this.userMap, _this.vendorMap); }, - $signature: 26 + $signature: 25 }; A.memoizedFilteredPurchaseOrderList_closure.prototype = { call$7(selectionState, invoiceMap, invoiceList, clientMap, vendorMap, invoiceListState, userMap) { return A.filteredPurchaseOrdersSelector(selectionState, invoiceMap, invoiceList, clientMap, vendorMap, invoiceListState, userMap); }, - $signature: 629 + $signature: 634 }; A.filteredPurchaseOrdersSelector_closure.prototype = { call$1(invoiceId) { @@ -450935,7 +451400,7 @@ } return true; }, - $signature: 11 + $signature: 12 }; A.filteredPurchaseOrdersSelector_closure0.prototype = { call$2(invoiceAId, invoiceBId) { @@ -450946,7 +451411,7 @@ t3 = _this.invoiceListState; return J.compareTo$6$clientMap$invoice$sortAscending$sortField$userMap$vendorMap$ns(t2, _this.clientMap, t1.$index(0, invoiceBId), t3.sortAscending, t3.sortField, _this.userMap, _this.vendorMap); }, - $signature: 26 + $signature: 25 }; A.memoizedPurchaseOrderStatsForVendor_closure.prototype = { call$2(vendorId, purchaseOrderMap) { @@ -450985,7 +451450,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.PurchaseOrderState.prototype = { $get$1(_, purchaseOrderId) { @@ -451030,7 +451495,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 166 + $signature: 161 }; A.PurchaseOrderUIState.prototype = { get$isCreatingNew() { @@ -451655,7 +452120,7 @@ if (!t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].clientState.$get$1(0, type$.InvoiceEntity._as(quote).clientId).get$hasEmailAddress()) this._box_0.emailValid = false; }, - $signature: 153 + $signature: 157 }; A.handleQuoteAction_closure3.prototype = { call$0() { @@ -452447,7 +452912,7 @@ } else t1[0].call$1(new A.LoadCredits()); }, - $signature: 315 + $signature: 347 }; A._loadQuotes___closure.prototype = { call$1(quote) { @@ -452459,7 +452924,7 @@ call$1($document) { this.documents.push($document.rebuild$1(new A._loadQuotes_____closure(this.quote))); }, - $signature: 42 + $signature: 41 }; A._loadQuotes_____closure.prototype = { call$1(b) { @@ -452516,7 +452981,7 @@ call$1($document) { this.documents.push($document.rebuild$1(new A._saveDocument____closure5(this.quote))); }, - $signature: 42 + $signature: 41 }; A._saveDocument____closure5.prototype = { call$1(b) { @@ -452694,13 +453159,13 @@ call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure7.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure8.prototype = { call$2(selectedId, action) { @@ -452754,7 +453219,7 @@ call$2(selectedId, action) { return action.entityType === B.EntityType_quote ? "" : selectedId; }, - $signature: 183 + $signature: 176 }; A.selectedIdReducer_closure17.prototype = { call$2(selectedId, action) { @@ -452767,7 +453232,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure.prototype = { call$2(quote, action) { @@ -452786,7 +453251,7 @@ call$2(invoice, action) { return invoice.rebuild$1(new A.editingReducer__closure4()); }, - $signature: 628 + $signature: 632 }; A.editingReducer__closure4.prototype = { call$1(b) { @@ -452857,7 +453322,7 @@ call$1(contact) { return A.InvitationEntity_InvitationEntity(contact.id, null); }, - $signature: 212 + $signature: 226 }; A.editingReducer_closure5.prototype = { call$2(quotes, action) { @@ -452945,7 +453410,7 @@ call$2(state, action) { return state.rebuild$1(new A.quoteListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.quoteListReducer__closure.prototype = { call$1(b) { @@ -453130,13 +453595,13 @@ call$1(each) { return each.clientId === this.action.clientId; }, - $signature: 197 + $signature: 194 }; A._purgeClientSuccess_closure1.prototype = { call$1(each) { return each.id; }, - $signature: 271 + $signature: 320 }; A._purgeClientSuccess_closure.prototype = { call$1(b) { @@ -453149,19 +453614,19 @@ B.JSArray_methods._removeWhere$2(t2, new A._purgeClientSuccess__closure0(t1), true); return b; }, - $signature: 193 + $signature: 203 }; A._purgeClientSuccess__closure.prototype = { call$2(p0, p1) { return B.JSArray_methods.contains$1(this.ids, p0); }, - $signature: 437 + $signature: 381 }; A._purgeClientSuccess__closure0.prototype = { call$1(p0) { return B.JSArray_methods.contains$1(this.ids, p0); }, - $signature: 11 + $signature: 12 }; A._markSentQuoteSuccess_closure0.prototype = { call$1(item) { @@ -453180,7 +453645,7 @@ b.get$map(b).addAll$1(0, this.quoteMap); return b; }, - $signature: 193 + $signature: 203 }; A._archiveQuoteSuccess_closure.prototype = { call$1(b) { @@ -453202,7 +453667,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 568 + $signature: 567 }; A._deleteQuoteSuccess_closure.prototype = { call$1(b) { @@ -453224,7 +453689,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 568 + $signature: 567 }; A._restoreQuoteSuccess_closure.prototype = { call$1(b) { @@ -453246,7 +453711,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 568 + $signature: 567 }; A._emailQuoteSuccess_closure.prototype = { call$1(b) { @@ -453254,7 +453719,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 193 + $signature: 203 }; A._convertQuotesToInvoicesSuccess_closure0.prototype = { call$1(item) { @@ -453273,7 +453738,7 @@ b.get$map(b).addAll$1(0, this.quoteMap); return b; }, - $signature: 193 + $signature: 203 }; A._convertQuotesToProjectsSuccess_closure0.prototype = { call$1(item) { @@ -453292,7 +453757,7 @@ b.get$map(b).addAll$1(0, this.quoteMap); return b; }, - $signature: 193 + $signature: 203 }; A._addQuote_closure.prototype = { call$1(b) { @@ -453304,7 +453769,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 193 + $signature: 203 }; A._addQuote__closure.prototype = { call$1(b) { @@ -453320,7 +453785,7 @@ b.get$map(b).$indexSet(0, t1.id, t1.rebuild$1(new A._updateQuote__closure())); return b; }, - $signature: 193 + $signature: 203 }; A._updateQuote__closure.prototype = { call$1(b) { @@ -453334,13 +453799,13 @@ call$1(invitation) { return invitation.clientContactId; }, - $signature: 436 + $signature: 382 }; A.quoteContactSelector_closure0.prototype = { call$1(contact) { return B.JSArray_methods.contains$1(this._box_0.contactIds, contact.id); }, - $signature: 192 + $signature: 172 }; A.memoizedDropdownQuoteList_closure.prototype = { call$7(quoteMap, clientMap, vendorMap, quoteList, clientId, userMap, excludedIds) { @@ -453392,7 +453857,7 @@ t1 = false; return t1 && !invoice.get$isApproved() && !invoice.get$isCancelledOrReversed(); }, - $signature: 11 + $signature: 12 }; A.dropdownQuoteSelector_closure0.prototype = { call$2(invoiceAId, invoiceBId) { @@ -453402,13 +453867,13 @@ t2.toString; return t2.compareTo$6$clientMap$invoice$sortAscending$sortField$userMap$vendorMap(0, _this.clientMap, t1.$index(0, invoiceBId), false, "number", _this.userMap, _this.vendorMap); }, - $signature: 26 + $signature: 25 }; A.memoizedFilteredQuoteList_closure.prototype = { call$7(selectionState, quoteMap, quoteList, clientMap, vendorMap, quoteListState, userMap) { return A.filteredQuotesSelector(selectionState, quoteMap, quoteList, clientMap, vendorMap, quoteListState, userMap); }, - $signature: 629 + $signature: 634 }; A.filteredQuotesSelector_closure.prototype = { call$1(quoteId) { @@ -453482,7 +453947,7 @@ } return true; }, - $signature: 11 + $signature: 12 }; A.filteredQuotesSelector_closure0.prototype = { call$2(quoteAId, quoteBId) { @@ -453493,7 +453958,7 @@ t3 = _this.quoteListState; return J.compareTo$6$clientMap$invoice$sortAscending$sortField$userMap$vendorMap$ns(t2, _this.clientMap, t1.$index(0, quoteBId), t3.sortAscending, t3.sortField, _this.userMap, _this.vendorMap); }, - $signature: 26 + $signature: 25 }; A.memoizedQuoteStatsForClient_closure.prototype = { call$2(clientId, quoteMap) { @@ -453532,7 +453997,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.memoizedQuoteStatsForDesign_closure.prototype = { call$2(designId, quoteMap) { @@ -453571,7 +454036,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.memoizedQuoteStatsForUser_closure.prototype = { call$2(userId, quoteMap) { @@ -453610,7 +454075,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.QuoteState.prototype = { $get$1(_, quoteId) { @@ -453655,7 +454120,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 193 + $signature: 203 }; A.QuoteUIState.prototype = { get$isCreatingNew() { @@ -454327,7 +454792,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].recurringExpenseState.map._map$_map.$index(0, id); }, - $signature: 226 + $signature: 233 }; A._archiveRecurringExpense__closure0.prototype = { call$1(recurringExpenses) { @@ -454336,7 +454801,7 @@ t1[0].call$1(new A.ArchiveRecurringExpensesSuccess(recurringExpenses)); this.action.completer.complete$1(0, null); }, - $signature: 201 + $signature: 198 }; A._archiveRecurringExpense__closure1.prototype = { call$1(error) { @@ -454371,7 +454836,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].recurringExpenseState.map._map$_map.$index(0, id); }, - $signature: 226 + $signature: 233 }; A._deleteRecurringExpense__closure0.prototype = { call$1(recurringExpenses) { @@ -454380,7 +454845,7 @@ t1[0].call$1(new A.DeleteRecurringExpensesSuccess(recurringExpenses)); this.action.completer.complete$1(0, null); }, - $signature: 201 + $signature: 198 }; A._deleteRecurringExpense__closure1.prototype = { call$1(error) { @@ -454415,7 +454880,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].recurringExpenseState.map._map$_map.$index(0, id); }, - $signature: 226 + $signature: 233 }; A._restoreRecurringExpense__closure0.prototype = { call$1(recurringExpenses) { @@ -454424,7 +454889,7 @@ t1[0].call$1(new A.RestoreRecurringExpensesSuccess(recurringExpenses)); this.action.completer.complete$1(0, null); }, - $signature: 201 + $signature: 198 }; A._restoreRecurringExpense__closure1.prototype = { call$1(error) { @@ -454464,7 +454929,7 @@ } t1.completer.complete$1(0, recurringExpense); }, - $signature: 157 + $signature: 158 }; A._saveRecurringExpense__closure0.prototype = { call$1(error) { @@ -454502,7 +454967,7 @@ if (t1 != null) t1.complete$1(0, null); }, - $signature: 157 + $signature: 158 }; A._loadRecurringExpense__closure0.prototype = { call$1(error) { @@ -454545,19 +455010,19 @@ this.action.toString; t1[0].call$1(new A.LoadTransactions(null, 1)); }, - $signature: 647 + $signature: 650 }; A._loadRecurringExpenses___closure.prototype = { call$1(expense) { B.JSArray_methods.forEach$1(expense.documents._list$_list, new A._loadRecurringExpenses____closure(this.documents, expense)); }, - $signature: 326 + $signature: 287 }; A._loadRecurringExpenses____closure.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._loadRecurringExpenses_____closure(this.expense))); }, - $signature: 42 + $signature: 41 }; A._loadRecurringExpenses_____closure.prototype = { call$1(b) { @@ -454598,7 +455063,7 @@ t1[0].call$1(new A.StartRecurringExpensesSuccess(expenses)); this.action.completer.complete$1(0, null); }, - $signature: 201 + $signature: 198 }; A._startRecurringExpense__closure0.prototype = { call$1(error) { @@ -454631,7 +455096,7 @@ t1[0].call$1(new A.StopRecurringExpensesSuccess(expenses)); this.action.completer.complete$1(0, null); }, - $signature: 201 + $signature: 198 }; A._stopRecurringExpense__closure0.prototype = { call$1(error) { @@ -454675,13 +455140,13 @@ t1[0].call$1(new A.LoadDocumentsSuccess(documents)); this.action.completer.complete$1(0, documents); }, - $signature: 157 + $signature: 158 }; A._saveDocument___closure2.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._saveDocument____closure2(this.expense))); }, - $signature: 42 + $signature: 41 }; A._saveDocument____closure2.prototype = { call$1(b) { @@ -454813,25 +455278,25 @@ call$2(selectedId, action) { return action.get$recurringExpenseId(); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure307.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$recurringExpense()); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure308.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure309.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure310.prototype = { call$2(selectedId, action) { @@ -454892,7 +455357,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure99.prototype = { call$2(recurringExpenses, action) { @@ -454929,7 +455394,7 @@ call$2(state, action) { return state.rebuild$1(new A.recurringExpenseListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.recurringExpenseListReducer__closure.prototype = { call$1(b) { @@ -455082,13 +455547,13 @@ call$1(each) { return each.clientId === this.action.clientId; }, - $signature: 507 + $signature: 506 }; A._purgeClientSuccess_closure16.prototype = { call$1(each) { return each.id; }, - $signature: 414 + $signature: 398 }; A._purgeClientSuccess_closure14.prototype = { call$1(b) { @@ -455101,19 +455566,19 @@ B.JSArray_methods._removeWhere$2(t2, new A._purgeClientSuccess__closure10(t1), true); return b; }, - $signature: 339 + $signature: 279 }; A._purgeClientSuccess__closure9.prototype = { call$2(p0, p1) { return B.JSArray_methods.contains$1(this.ids, p0); }, - $signature: 646 + $signature: 649 }; A._purgeClientSuccess__closure10.prototype = { call$1(p0) { return B.JSArray_methods.contains$1(this.ids, p0); }, - $signature: 11 + $signature: 12 }; A._archiveRecurringExpenseSuccess_closure.prototype = { call$1(b) { @@ -455135,7 +455600,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 340 + $signature: 296 }; A._deleteRecurringExpenseSuccess_closure.prototype = { call$1(b) { @@ -455157,7 +455622,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 340 + $signature: 296 }; A._restoreRecurringExpenseSuccess_closure.prototype = { call$1(b) { @@ -455179,7 +455644,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 340 + $signature: 296 }; A._addRecurringExpense_closure.prototype = { call$1(b) { @@ -455191,7 +455656,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 339 + $signature: 279 }; A._addRecurringExpense__closure.prototype = { call$1(b) { @@ -455207,7 +455672,7 @@ b.get$map(b).$indexSet(0, t1.id, t1.rebuild$1(new A._updateRecurringExpense__closure())); return b; }, - $signature: 339 + $signature: 279 }; A._updateRecurringExpense__closure.prototype = { call$1(b) { @@ -455237,7 +455702,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 340 + $signature: 296 }; A._stopRecurringExpensesSuccess_closure.prototype = { call$1(b) { @@ -455259,7 +455724,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 340 + $signature: 296 }; A._setLoadedRecurringExpense_closure.prototype = { call$1(b) { @@ -455267,7 +455732,7 @@ b.get$map(b).$indexSet(0, t1.id, t1.rebuild$1(new A._setLoadedRecurringExpense__closure())); return b; }, - $signature: 339 + $signature: 279 }; A._setLoadedRecurringExpense__closure.prototype = { call$1(b) { @@ -455281,7 +455746,7 @@ call$9(selectionState, expenseMap, clientMap, vendorMap, userMap, expenseListState, invoiceMap, expenseCategoryMap, staticState) { return A.filteredRecurringExpensesSelector(selectionState, expenseMap, clientMap, vendorMap, userMap, expenseListState, invoiceMap, expenseCategoryMap, staticState); }, - $signature: 645 + $signature: 648 }; A.filteredRecurringExpensesSelector_closure.prototype = { call$1(expenseId) { @@ -455387,7 +455852,7 @@ t2 = t2.filter; return t1.matchesFilter$1(t2) || expenseCategory.matchesFilter$1(t2) || client.matchesNameOrEmail$1(t2) || vendor.matchesNameOrEmail$1(t2); }, - $signature: 11 + $signature: 12 }; A.filteredRecurringExpensesSelector_closure0.prototype = { call$2(expenseAId, expenseBId) { @@ -455398,13 +455863,13 @@ t3 = _this.expenseListState; return t2.compareTo$9(0, t1.$index(0, expenseBId), t3.sortField, t3.sortAscending, _this.clientMap, _this.userMap, _this.vendorMap, _this.invoiceMap, _this.expenseCategoryMap, _this.staticState); }, - $signature: 26 + $signature: 25 }; A.memoizedRecurringExpenseStatsForClient_closure.prototype = { call$2(clientId, expenseMap) { return A.recurringExpenseStatsForClient(clientId, expenseMap); }, - $signature: 178 + $signature: 174 }; A.recurringExpenseStatsForClient_closure.prototype = { call$2(expenseId, expense) { @@ -455437,13 +455902,13 @@ } } }, - $signature: 130 + $signature: 126 }; A.memoizedRecurringExpenseStatsForVendor_closure.prototype = { call$2(vendorId, expenseMap) { return A.recurringExpenseStatsForVendor(vendorId, expenseMap); }, - $signature: 178 + $signature: 174 }; A.recurringExpenseStatsForVendor_closure.prototype = { call$2(expenseId, expense) { @@ -455476,13 +455941,13 @@ } } }, - $signature: 130 + $signature: 126 }; A.memoizedTransactionStatsForVendor_closure.prototype = { call$2(vendorId, transactionMap) { return A.transactionStatsForVendor(vendorId, transactionMap); }, - $signature: 408 + $signature: 402 }; A.transactionStatsForVendor_closure.prototype = { call$2(transactionId, transaction) { @@ -455515,13 +455980,13 @@ } } }, - $signature: 407 + $signature: 403 }; A.memoizedRecurringExpenseStatsForUser_closure.prototype = { call$2(userId, expenseMap) { return A.recurringExpenseStatsForUser(userId, expenseMap); }, - $signature: 178 + $signature: 174 }; A.recurringExpenseStatsForUser_closure.prototype = { call$2(expenseId, expense) { @@ -455549,13 +456014,13 @@ } } }, - $signature: 130 + $signature: 126 }; A.memoizedRecurringExpenseStatsForExpense_closure.prototype = { call$2(expenseId, expenseMap) { return A.recurringExpenseStatsForExpense(expenseId, expenseMap); }, - $signature: 178 + $signature: 174 }; A.recurringExpenseStatsForExpense_closure.prototype = { call$2(expenseId, expense) { @@ -455583,7 +456048,7 @@ } } }, - $signature: 130 + $signature: 126 }; A.RecurringExpenseState.prototype = { $get$1(_, recurringExpenseId) { @@ -455613,7 +456078,7 @@ call$1(item) { return item; }, - $signature: 644 + $signature: 647 }; A.RecurringExpenseState_loadRecurringExpenses_closure.prototype = { call$1(b) { @@ -455628,7 +456093,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 339 + $signature: 279 }; A.RecurringExpenseUIState.prototype = { get$isCreatingNew() { @@ -456229,7 +456694,7 @@ t2.toString; return A.AlertDialog$(A._setArrayType([t6, A.TextButton$(false, A.Text$(J.$index$asx(t2, "submit").toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, new A.handleRecurringInvoiceAction__closure1(t1, context), _null)], type$.JSArray_Widget), _null, _null, t5, _null, _null, t4); }, - $signature: 167 + $signature: 155 }; A.handleRecurringInvoiceAction__closure.prototype = { call$1(value) { @@ -456823,7 +457288,7 @@ } else t1[0].call$1(new A.LoadPayments(null, 1)); }, - $signature: 315 + $signature: 347 }; A._loadRecurringInvoices___closure.prototype = { call$1(client) { @@ -456835,7 +457300,7 @@ call$1(invoice) { this.documents.push(invoice.rebuild$1(new A._loadRecurringInvoices_____closure(this.client))); }, - $signature: 42 + $signature: 41 }; A._loadRecurringInvoices_____closure.prototype = { call$1(b) { @@ -456892,7 +457357,7 @@ call$1($document) { this.documents.push($document.rebuild$1(new A._saveDocument____closure1(this.invoice))); }, - $signature: 42 + $signature: 41 }; A._saveDocument____closure1.prototype = { call$1(b) { @@ -457071,13 +457536,13 @@ call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure247.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure248.prototype = { call$2(selectedId, action) { @@ -457131,7 +457596,7 @@ call$2(selectedId, action) { return action.entityType === B.EntityType_recurringInvoice ? "" : selectedId; }, - $signature: 183 + $signature: 176 }; A.selectedIdReducer_closure257.prototype = { call$2(selectedId, action) { @@ -457144,7 +457609,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure76.prototype = { call$2(recurringInvoice, action) { @@ -457163,7 +457628,7 @@ call$2(recurringInvoice, action) { return recurringInvoice.rebuild$1(new A.editingReducer__closure32()); }, - $signature: 627 + $signature: 630 }; A.editingReducer__closure32.prototype = { call$1(b) { @@ -457234,7 +457699,7 @@ call$1(contact) { return A.InvitationEntity_InvitationEntity(contact.id, null); }, - $signature: 212 + $signature: 226 }; A.editingReducer_closure82.prototype = { call$2(recurringInvoices, action) { @@ -457322,7 +457787,7 @@ call$2(state, action) { return state.rebuild$1(new A.recurringInvoiceListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.recurringInvoiceListReducer__closure.prototype = { call$1(b) { @@ -457496,13 +457961,13 @@ call$1(each) { return each.clientId === this.action.clientId; }, - $signature: 197 + $signature: 194 }; A._purgeClientSuccess_closure13.prototype = { call$1(each) { return each.id; }, - $signature: 271 + $signature: 320 }; A._purgeClientSuccess_closure11.prototype = { call$1(b) { @@ -457515,19 +457980,19 @@ B.JSArray_methods._removeWhere$2(t2, new A._purgeClientSuccess__closure8(t1), true); return b; }, - $signature: 341 + $signature: 288 }; A._purgeClientSuccess__closure7.prototype = { call$2(p0, p1) { return B.JSArray_methods.contains$1(this.ids, p0); }, - $signature: 437 + $signature: 381 }; A._purgeClientSuccess__closure8.prototype = { call$1(p0) { return B.JSArray_methods.contains$1(this.ids, p0); }, - $signature: 11 + $signature: 12 }; A._archiveRecurringInvoiceSuccess_closure.prototype = { call$1(b) { @@ -457549,7 +458014,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 258 + $signature: 264 }; A._deleteRecurringInvoiceSuccess_closure.prototype = { call$1(b) { @@ -457571,7 +458036,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 258 + $signature: 264 }; A._emailRecurringInvoiceSuccess_closure.prototype = { call$1(b) { @@ -457581,7 +458046,7 @@ t1.$indexSet(0, t3.get$id(t3), t2.get$invoice()); return b; }, - $signature: 341 + $signature: 288 }; A._restoreRecurringInvoiceSuccess_closure.prototype = { call$1(b) { @@ -457603,7 +458068,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 258 + $signature: 264 }; A._sendNowRecurringInvoiceSuccess_closure.prototype = { call$1(b) { @@ -457625,7 +458090,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 258 + $signature: 264 }; A._startRecurringInvoicesSuccess_closure.prototype = { call$1(b) { @@ -457647,7 +458112,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 258 + $signature: 264 }; A._stopRecurringInvoicesSuccess_closure.prototype = { call$1(b) { @@ -457669,7 +458134,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 258 + $signature: 264 }; A._addRecurringInvoice_closure.prototype = { call$1(b) { @@ -457681,7 +458146,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 341 + $signature: 288 }; A._addRecurringInvoice__closure.prototype = { call$1(b) { @@ -457696,7 +458161,7 @@ b.get$map(b).$indexSet(0, J.get$id$x(this.action.get$recurringInvoice()), this.recurringInvoice.rebuild$1(new A._updateRecurringInvoice__closure())); return b; }, - $signature: 341 + $signature: 288 }; A._updateRecurringInvoice__closure.prototype = { call$1(b) { @@ -457782,7 +458247,7 @@ } return true; }, - $signature: 11 + $signature: 12 }; A.filteredRecurringInvoicesSelector_closure0.prototype = { call$2(recurringInvoiceAId, recurringInvoiceBId) { @@ -457793,7 +458258,7 @@ t3 = _this.invoiceListState; return t2.compareTo$6$clientMap$invoice$sortAscending$sortField$userMap$vendorMap(0, _this.clientMap, t1.$index(0, recurringInvoiceBId), t3.sortAscending, t3.sortField, _this.userMap, _this.vendorMap); }, - $signature: 26 + $signature: 25 }; A.memoizedRecurringInvoiceStatsForClient_closure.prototype = { call$2(clientId, invoiceMap) { @@ -457832,7 +458297,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.memoizedRecurringInvoiceStatsForUser_closure.prototype = { call$2(userId, invoiceMap) { @@ -457866,7 +458331,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.memoizedRecurringInvoiceStatsForInvoice_closure.prototype = { call$2(invoiceId, invoiceMap) { @@ -457900,7 +458365,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.memoizedRecurringInvoiceStatsForDesign_closure.prototype = { call$2(designId, recurringInvoiceMap) { @@ -457939,7 +458404,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.memoizedRecurringInvoiceStatsForSubscription_closure.prototype = { call$2(subscriptionId, invoiceMap) { @@ -457978,7 +458443,7 @@ } } }, - $signature: 71 + $signature: 74 }; A.RecurringInvoiceState.prototype = { $get$1(_, invoiceId) { @@ -458023,7 +458488,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 341 + $signature: 288 }; A.RecurringInvoiceUIState.prototype = { get$isCreatingNew() { @@ -458500,14 +458965,14 @@ b.get$_reports_state$_$this()._chart = ""; return b; }, - $signature: 574 + $signature: 573 }; A.reportsUIReducer_closure0.prototype = { call$1(b) { b.get$_reports_state$_$this()._report = this.action.report; return b; }, - $signature: 574 + $signature: 573 }; A.reportsUIReducer_closure1.prototype = { call$1(b) { @@ -458543,7 +459008,7 @@ t2.replace$1(0, t1 == null ? _this.state.filters : t1); return b; }, - $signature: 574 + $signature: 573 }; A.ReportsUIState.prototype = { get$isGroupByFiltered() { @@ -458968,7 +459433,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].scheduleState.map._map$_map.$index(0, id); }, - $signature: 575 + $signature: 574 }; A._archiveSchedule__closure0.prototype = { call$1(schedules) { @@ -458977,7 +459442,7 @@ t1[0].call$1(new A.ArchiveSchedulesSuccess(schedules)); this.action.completer.complete$1(0, null); }, - $signature: 576 + $signature: 575 }; A._archiveSchedule__closure1.prototype = { call$1(error) { @@ -459012,7 +459477,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].scheduleState.map._map$_map.$index(0, id); }, - $signature: 575 + $signature: 574 }; A._deleteSchedule__closure0.prototype = { call$1(schedules) { @@ -459021,7 +459486,7 @@ t1[0].call$1(new A.DeleteSchedulesSuccess(schedules)); this.action.completer.complete$1(0, null); }, - $signature: 576 + $signature: 575 }; A._deleteSchedule__closure1.prototype = { call$1(error) { @@ -459056,7 +459521,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].scheduleState.map._map$_map.$index(0, id); }, - $signature: 575 + $signature: 574 }; A._restoreSchedule__closure0.prototype = { call$1(schedules) { @@ -459065,7 +459530,7 @@ t1[0].call$1(new A.RestoreSchedulesSuccess(schedules)); this.action.completer.complete$1(0, null); }, - $signature: 576 + $signature: 575 }; A._restoreSchedule__closure1.prototype = { call$1(error) { @@ -459108,7 +459573,7 @@ } t1.completer.complete$1(0, schedule); }, - $signature: 380 + $signature: 423 }; A._saveSchedule__closure0.prototype = { call$1(error) { @@ -459144,7 +459609,7 @@ t1[0].call$1(new A.LoadScheduleSuccess(schedule)); this.action.completer.complete$1(0, null); }, - $signature: 380 + $signature: 423 }; A._loadSchedule__closure0.prototype = { call$1(error) { @@ -459302,25 +459767,25 @@ call$2(selectedId, action) { return action.get$scheduleId(); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure388.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$schedule()); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure389.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure390.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure391.prototype = { call$2(selectedId, action) { @@ -459375,7 +459840,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure126.prototype = { call$2(schedules, action) { @@ -459412,7 +459877,7 @@ call$2(state, action) { return state.rebuild$1(new A.scheduleListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.scheduleListReducer__closure.prototype = { call$1(b) { @@ -459565,7 +460030,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 578 + $signature: 577 }; A._deleteScheduleSuccess_closure.prototype = { call$1(b) { @@ -459587,7 +460052,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 578 + $signature: 577 }; A._restoreScheduleSuccess_closure.prototype = { call$1(b) { @@ -459609,7 +460074,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 578 + $signature: 577 }; A._addSchedule_closure.prototype = { call$1(b) { @@ -459621,7 +460086,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 442 + $signature: 424 }; A._updateSchedule_closure.prototype = { call$1(b) { @@ -459629,7 +460094,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 442 + $signature: 424 }; A._setLoadedSchedule_closure.prototype = { call$1(b) { @@ -459637,7 +460102,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 442 + $signature: 424 }; A.memoizedFilteredScheduleList_closure.prototype = { call$4(selectionState, scheduleMap, scheduleList, scheduleListState) { @@ -459656,7 +460121,7 @@ return false; return A.matchesStrings(A._setArrayType([schedule.template], type$.JSArray_nullable_String), t1.filter); }, - $signature: 11 + $signature: 12 }; A.filteredSchedulesSelector_closure0.prototype = { call$2(scheduleAId, scheduleBId) { @@ -459667,7 +460132,7 @@ t3 = this.scheduleListState; return t2.compareTo$3(0, t1.$index(0, scheduleBId), t3.sortField, t3.sortAscending); }, - $signature: 26 + $signature: 25 }; A.ScheduleState.prototype = { loadSchedules$1(clients) { @@ -459702,7 +460167,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 442 + $signature: 424 }; A.ScheduleUIState.prototype = { get$isCreatingNew() { @@ -460267,7 +460732,7 @@ this.action.completer.complete$0(0); A.WidgetUtils_updateData(); }, - $signature: 580 + $signature: 579 }; A._saveCompany__closure0.prototype = { call$1(error) { @@ -460300,7 +460765,7 @@ t1[0].call$1(new A.SaveEInvoiceCertificateSuccess(company)); this.action.completer.complete$0(0); }, - $signature: 580 + $signature: 579 }; A._saveEInvoiceCertificate__closure0.prototype = { call$1(error) { @@ -460336,7 +460801,7 @@ t1.complete$0(0); A.WidgetUtils_updateData(); }, - $signature: 187 + $signature: 182 }; A._saveAuthUser__closure0.prototype = { call$1(error) { @@ -460373,7 +460838,7 @@ t1[0].call$1(new A.ConnectOAuthUserSuccess(user)); this.action.completer.complete$0(0); }, - $signature: 187 + $signature: 182 }; A._connectOAuthUser__closure0.prototype = { call$1(error) { @@ -460408,7 +460873,7 @@ t1[0].call$1(new A.DisconnectOAuthUserSuccess(user)); this.action.completer.complete$0(0); }, - $signature: 187 + $signature: 182 }; A._disconnectOAuthUser__closure0.prototype = { call$1(error) { @@ -460443,7 +460908,7 @@ t1[0].call$1(new A.DisconnectOAuthMailerSuccess(user)); this.action.completer.complete$0(0); }, - $signature: 187 + $signature: 182 }; A._disconnectOAuthMailer__closure0.prototype = { call$1(error) { @@ -460480,7 +460945,7 @@ t1.get$completer(); t1.get$completer().complete$0(0); }, - $signature: 187 + $signature: 182 }; A._connectGmailUser__closure0.prototype = { call$1(error) { @@ -460517,7 +460982,7 @@ t1[0].call$1(new A.DisableTwoFactorSuccess()); this.action.completer.complete$0(0); }, - $signature: 188 + $signature: 175 }; A._disableTwoFactor__closure0.prototype = { call$1(error) { @@ -460653,13 +461118,13 @@ t1[0].call$1(new A.LoadDocumentsSuccess(documents)); this.action.completer.complete$1(0, documents); }, - $signature: 580 + $signature: 579 }; A._saveDocument___closure4.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._saveDocument____closure4(this.company))); }, - $signature: 42 + $signature: 41 }; A._saveDocument____closure4.prototype = { call$1(b) { @@ -461837,7 +462302,7 @@ var t1 = this.countryMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).name, t1.$index(0, idB).name); }, - $signature: 26 + $signature: 25 }; A.memoizedCountryIso2Map_closure.prototype = { call$1(countryMap) { @@ -461877,14 +462342,14 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A.groupList_closure0.prototype = { call$2(idA, idB) { var t1 = this.groupMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).name, t1.$index(0, idB).name); }, - $signature: 26 + $signature: 25 }; A.memoizedLanguageList_closure.prototype = { call$1(languageMap) { @@ -461897,7 +462362,7 @@ var t1 = this.languageMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).name, t1.$index(0, idB).name); }, - $signature: 26 + $signature: 25 }; A.memoizedCurrencyList_closure.prototype = { call$1(currencyMap) { @@ -461910,7 +462375,7 @@ var t1 = this.currencyMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).name, t1.$index(0, idB).name); }, - $signature: 26 + $signature: 25 }; A.memoizedTimezoneList_closure.prototype = { call$1(timezoneMap) { @@ -461923,7 +462388,7 @@ var t1 = this.timezoneMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).name, t1.$index(0, idB).name); }, - $signature: 26 + $signature: 25 }; A.memoizedDateFormatList_closure.prototype = { call$1(dateFormatMap) { @@ -461936,7 +462401,7 @@ var t1 = this.dateFormatMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).get$preview(), t1.$index(0, idB).get$preview()); }, - $signature: 26 + $signature: 25 }; A.memoizedIndustryList_closure.prototype = { call$1(industryMap) { @@ -461949,7 +462414,7 @@ var t1 = this.industryMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).name, t1.$index(0, idB).name); }, - $signature: 151 + $signature: 143 }; A.memoizedSizeList_closure.prototype = { call$1(sizeMap) { @@ -461962,7 +462427,7 @@ var t1 = this.sizeMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).id, t1.$index(0, idB).id); }, - $signature: 26 + $signature: 25 }; A.memoizedGatewayList_closure.prototype = { call$2(gatewayMap, isHosted) { @@ -461983,14 +462448,14 @@ return false; return true; }, - $signature: 11 + $signature: 12 }; A.gatewayList_closure0.prototype = { call$2(idA, idB) { var t1 = this.gatewayMap._map$_map; return B.JSInt_methods.compareTo$1(t1.$index(0, idA).sortOrder, t1.$index(0, idB).sortOrder); }, - $signature: 26 + $signature: 25 }; A.memoizedPaymentTypeList_closure.prototype = { call$1(paymentTypeMap) { @@ -462003,7 +462468,7 @@ var t1 = this.paymentTypeMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).name, t1.$index(0, idB).name); }, - $signature: 151 + $signature: 143 }; A.memoizedFontMap_closure.prototype = { call$1(fontList) { @@ -462015,7 +462480,7 @@ call$1(v) { return J.$index$asx(v, "value"); }, - $signature: 218 + $signature: 237 }; A.fontMap_closure0.prototype = { call$1(v) { @@ -462636,7 +463101,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].subscriptionState.map._map$_map.$index(0, id); }, - $signature: 583 + $signature: 582 }; A._archiveSubscription__closure0.prototype = { call$1(subscriptions) { @@ -462645,7 +463110,7 @@ t1[0].call$1(new A.ArchiveSubscriptionsSuccess(subscriptions)); this.action.completer.complete$1(0, null); }, - $signature: 584 + $signature: 583 }; A._archiveSubscription__closure1.prototype = { call$1(error) { @@ -462680,7 +463145,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].subscriptionState.map._map$_map.$index(0, id); }, - $signature: 583 + $signature: 582 }; A._deleteSubscription__closure0.prototype = { call$1(subscriptions) { @@ -462689,7 +463154,7 @@ t1[0].call$1(new A.DeleteSubscriptionsSuccess(subscriptions)); this.action.completer.complete$1(0, null); }, - $signature: 584 + $signature: 583 }; A._deleteSubscription__closure1.prototype = { call$1(error) { @@ -462724,7 +463189,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].subscriptionState.map._map$_map.$index(0, id); }, - $signature: 583 + $signature: 582 }; A._restoreSubscription__closure0.prototype = { call$1(subscriptions) { @@ -462733,7 +463198,7 @@ t1[0].call$1(new A.RestoreSubscriptionsSuccess(subscriptions)); this.action.completer.complete$1(0, null); }, - $signature: 584 + $signature: 583 }; A._restoreSubscription__closure1.prototype = { call$1(error) { @@ -462773,7 +463238,7 @@ } t1.completer.complete$1(0, subscription); }, - $signature: 431 + $signature: 426 }; A._saveSubscription__closure0.prototype = { call$1(error) { @@ -462809,7 +463274,7 @@ t1[0].call$1(new A.LoadSubscriptionSuccess(subscription)); this.action.completer.complete$1(0, null); }, - $signature: 431 + $signature: 426 }; A._loadSubscription__closure0.prototype = { call$1(error) { @@ -462967,26 +463432,26 @@ call$2(selectedId, action) { return action.get$subscriptionId(); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure292.prototype = { call$2(selectedId, action) { var t1 = action.get$subscription(); return t1.get$id(t1); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure293.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure294.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure295.prototype = { call$2(selectedId, action) { @@ -463041,7 +463506,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure95.prototype = { call$2(subscriptions, action) { @@ -463072,13 +463537,13 @@ b.get$_subscription_model$_$this()._subscription_model$_isChanged = true; return b; }, - $signature: 77 + $signature: 78 }; A.subscriptionListReducer_closure.prototype = { call$2(state, action) { return state.rebuild$1(new A.subscriptionListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.subscriptionListReducer__closure.prototype = { call$1(b) { @@ -463220,7 +463685,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 587 + $signature: 586 }; A._deleteSubscriptionSuccess_closure.prototype = { call$1(b) { @@ -463242,7 +463707,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 587 + $signature: 586 }; A._restoreSubscriptionSuccess_closure.prototype = { call$1(b) { @@ -463264,7 +463729,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 587 + $signature: 586 }; A._addSubscription_closure.prototype = { call$1(b) { @@ -463276,7 +463741,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 379 + $signature: 427 }; A._updateSubscription_closure.prototype = { call$1(b) { @@ -463284,7 +463749,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 379 + $signature: 427 }; A._setLoadedSubscription_closure.prototype = { call$1(b) { @@ -463292,7 +463757,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 379 + $signature: 427 }; A.memoizedFilteredSubscriptionList_closure.prototype = { call$4(selectionState, subscriptionMap, subscriptionList, subscriptionListState) { @@ -463316,7 +463781,7 @@ return false; return A.matchesStrings(A._setArrayType([t1.name], type$.JSArray_nullable_String), t2.filter); }, - $signature: 11 + $signature: 12 }; A.filteredSubscriptionsSelector_closure0.prototype = { call$2(subscriptionAId, subscriptionBId) { @@ -463327,7 +463792,7 @@ t3 = this.subscriptionListState; return t2.compareTo$3(0, t1.$index(0, subscriptionBId), t3.sortField, t3.sortAscending); }, - $signature: 26 + $signature: 25 }; A.SubscriptionState.prototype = { loadSubscriptions$1(clients) { @@ -463362,7 +463827,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 379 + $signature: 427 }; A.SubscriptionUIState.prototype = { get$isCreatingNew() { @@ -463912,7 +464377,7 @@ t1.lastClientId = clientId; } }, - $signature: 153 + $signature: 157 }; A.handleTaskAction_closure1.prototype = { call$2(taskA, taskB) { @@ -463952,7 +464417,7 @@ t1.toString; return !t1 && !entity.get$isRunning() && entity.invoiceId.length === 0; }, - $signature: 234 + $signature: 220 }; A.handleTaskAction_closure3.prototype = { call$1(task) { @@ -463977,7 +464442,7 @@ _this.items.push(A.convertTaskToInvoiceItem(_this.context, t1, task)); _this._box_0.lastTask = task; }, - $signature: 153 + $signature: 157 }; A.handleTaskAction_closure4.prototype = { call$1(b) { @@ -463993,7 +464458,7 @@ call$1(context) { return new A.RunTemplateDialog(B.EntityType_task, this.tasks, null); }, - $signature: 310 + $signature: 319 }; A.StartTaskMultiselect.prototype = {}; A.AddToTaskMultiselect.prototype = {}; @@ -464105,7 +464570,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskState.map._map$_map.$index(0, id); }, - $signature: 342 + $signature: 303 }; A._archiveTask__closure0.prototype = { call$1(tasks) { @@ -464114,7 +464579,7 @@ t1[0].call$1(new A.ArchiveTaskSuccess(tasks)); this.action.completer.complete$1(0, null); }, - $signature: 343 + $signature: 294 }; A._archiveTask__closure1.prototype = { call$1(error) { @@ -464149,7 +464614,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskState.map._map$_map.$index(0, id); }, - $signature: 342 + $signature: 303 }; A._startTask__closure0.prototype = { call$1(tasks) { @@ -464158,7 +464623,7 @@ t1[0].call$1(new A.StartTasksSuccess(tasks)); this.action.completer.complete$1(0, null); }, - $signature: 343 + $signature: 294 }; A._startTask__closure1.prototype = { call$1(error) { @@ -464193,7 +464658,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskState.map._map$_map.$index(0, id); }, - $signature: 342 + $signature: 303 }; A._stopTask__closure0.prototype = { call$1(tasks) { @@ -464202,7 +464667,7 @@ t1[0].call$1(new A.StopTasksSuccess(tasks)); this.action.completer.complete$1(0, null); }, - $signature: 343 + $signature: 294 }; A._stopTask__closure1.prototype = { call$1(error) { @@ -464237,7 +464702,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskState.map._map$_map.$index(0, id); }, - $signature: 342 + $signature: 303 }; A._deleteTask__closure0.prototype = { call$1(tasks) { @@ -464246,7 +464711,7 @@ t1[0].call$1(new A.DeleteTaskSuccess(tasks)); this.action.completer.complete$1(0, null); }, - $signature: 343 + $signature: 294 }; A._deleteTask__closure1.prototype = { call$1(error) { @@ -464281,7 +464746,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskState.map._map$_map.$index(0, id); }, - $signature: 342 + $signature: 303 }; A._restoreTask__closure0.prototype = { call$1(tasks) { @@ -464290,7 +464755,7 @@ t1[0].call$1(new A.RestoreTaskSuccess(tasks)); this.action.completer.complete$1(0, null); }, - $signature: 343 + $signature: 294 }; A._restoreTask__closure1.prototype = { call$1(error) { @@ -464330,7 +464795,7 @@ } t1.completer.complete$1(0, task); }, - $signature: 262 + $signature: 243 }; A._saveTask__closure0.prototype = { call$1(error) { @@ -464368,7 +464833,7 @@ if (t1 != null) t1.complete$1(0, null); }, - $signature: 262 + $signature: 243 }; A._loadTask__closure0.prototype = { call$1(error) { @@ -464421,13 +464886,13 @@ call$1(task) { B.JSArray_methods.forEach$1(task.documents._list$_list, new A._loadTasks____closure(this.documents, task)); }, - $signature: 649 + $signature: 652 }; A._loadTasks____closure.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._loadTasks_____closure(this.task))); }, - $signature: 42 + $signature: 41 }; A._loadTasks_____closure.prototype = { call$1(b) { @@ -464478,13 +464943,13 @@ t1[0].call$1(new A.LoadDocumentsSuccess(documents)); this.action.completer.complete$1(0, documents); }, - $signature: 262 + $signature: 243 }; A._saveDocument___closure7.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._saveDocument____closure7(this.task))); }, - $signature: 42 + $signature: 41 }; A._saveDocument____closure7.prototype = { call$1(b) { @@ -464526,7 +464991,7 @@ t2[0].call$1(new A.SortTasksSuccess(t1.statusIds, t1.taskIds)); t1.completer.complete$1(0, null); }, - $signature: 188 + $signature: 175 }; A._sortTasks__closure0.prototype = { call$1(error) { @@ -464684,13 +465149,13 @@ call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure56.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure57.prototype = { call$2(selectedId, action) { @@ -464781,13 +465246,13 @@ b.get$_task_model$_$this()._task_model$_isChanged = true; return b; }, - $signature: 76 + $signature: 75 }; A.taskListReducer_closure.prototype = { call$2(state, action) { return state.rebuild$1(new A.taskListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.taskListReducer__closure.prototype = { call$1(b) { @@ -464940,7 +465405,7 @@ call$1(each) { return each.clientId === this.action.clientId; }, - $signature: 668 + $signature: 681 }; A._purgeClientSuccess_closure19.prototype = { call$1(each) { @@ -464959,7 +465424,7 @@ B.JSArray_methods._removeWhere$2(t2, new A._purgeClientSuccess__closure12(t1), true); return b; }, - $signature: 344 + $signature: 327 }; A._purgeClientSuccess__closure11.prototype = { call$2(p0, p1) { @@ -464971,7 +465436,7 @@ call$1(p0) { return B.JSArray_methods.contains$1(this.ids, p0); }, - $signature: 11 + $signature: 12 }; A._sortTasksSuccess_closure.prototype = { call$1(b) { @@ -465004,7 +465469,7 @@ } } }, - $signature: 263 + $signature: 270 }; A._sortTasksSuccess__closure.prototype = { call$1(b) { @@ -465016,7 +465481,7 @@ b.get$_task_model$_$this()._statusOrder = t1; return b; }, - $signature: 76 + $signature: 75 }; A._archiveTaskSuccess_closure.prototype = { call$1(b) { @@ -465038,7 +465503,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 263 + $signature: 270 }; A._startTaskSuccess_closure.prototype = { call$1(b) { @@ -465060,7 +465525,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 263 + $signature: 270 }; A._stopTaskSuccess_closure.prototype = { call$1(b) { @@ -465082,7 +465547,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 263 + $signature: 270 }; A._deleteTaskSuccess_closure.prototype = { call$1(b) { @@ -465104,7 +465569,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 263 + $signature: 270 }; A._restoreTaskSuccess_closure.prototype = { call$1(b) { @@ -465126,7 +465591,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 263 + $signature: 270 }; A._addTask_closure.prototype = { call$1(b) { @@ -465138,7 +465603,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 344 + $signature: 327 }; A._updateTask_closure.prototype = { call$1(b) { @@ -465146,7 +465611,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 344 + $signature: 327 }; A._setLoadedTask_closure.prototype = { call$1(b) { @@ -465154,13 +465619,13 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 344 + $signature: 327 }; A.convertTaskToInvoiceItem_closure.prototype = { call$1(time) { return time.startDate != null && time.endDate != null && time.isBillable; }, - $signature: 215 + $signature: 208 }; A.convertTaskToInvoiceItem_closure0.prototype = { call$1(time) { @@ -465215,13 +465680,13 @@ t2.notes = notes + (t3 + t4); } }, - $signature: 220 + $signature: 229 }; A.convertTaskToInvoiceItem_closure1.prototype = { call$2(a, b) { return B.JSString_methods.compareTo$1(b, a); }, - $signature: 26 + $signature: 25 }; A.convertTaskToInvoiceItem_closure2.prototype = { call$1(b) { @@ -465249,7 +465714,7 @@ b.get$_invoice_model$_$this()._invoice_model$_customValue4 = t3; return b; }, - $signature: 55 + $signature: 56 }; A.memoizedTaskList_closure.prototype = { call$5(taskMap, clientId, userMap, clientMap, projectMap) { @@ -465283,20 +465748,20 @@ t1 = false; return t1 && !task.get$isRunning() && task.invoiceId.length === 0; }, - $signature: 11 + $signature: 12 }; A.taskList_closure0.prototype = { call$2(idA, idB) { var t1 = this.taskMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).number, t1.$index(0, idB).number); }, - $signature: 26 + $signature: 25 }; A.memoizedKanbanTaskList_closure.prototype = { call$9(selectionState, taskMap, clientMap, userMap, projectMap, invoiceMap, taskStatusMap, taskList, taskListState) { return A.kanbanTasksSelector(selectionState, taskMap, clientMap, userMap, projectMap, invoiceMap, taskStatusMap, taskList, taskListState); }, - $signature: 626 + $signature: 627 }; A.kanbanTasksSelector_closure.prototype = { call$1(taskId) { @@ -465329,7 +465794,7 @@ return false; return true; }, - $signature: 11 + $signature: 12 }; A.kanbanTasksSelector_closure0.prototype = { call$2(taskAId, taskBId) { @@ -465342,13 +465807,13 @@ t3 = _this.taskListState; return t2.compareTo$8(0, t1, t3.sortField, t3.sortAscending, _this.userMap, _this.clientMap, _this.projectMap, _this.invoiceMap, _this.taskStatusMap); }, - $signature: 26 + $signature: 25 }; A.memoizedFilteredTaskList_closure.prototype = { call$9(selectionState, taskMap, clientMap, userMap, projectMap, invoiceMap, taskStatusMap, taskList, taskListState) { return A.filteredTasksSelector(selectionState, taskMap, clientMap, userMap, projectMap, invoiceMap, taskStatusMap, taskList, taskListState); }, - $signature: 626 + $signature: 627 }; A.filteredTasksSelector_closure.prototype = { call$1(taskId) { @@ -465443,7 +465908,7 @@ } return true; }, - $signature: 11 + $signature: 12 }; A.filteredTasksSelector_closure0.prototype = { call$2(taskAId, taskBId) { @@ -465456,13 +465921,13 @@ t3 = _this.taskListState; return t2.compareTo$8(0, t1, t3.sortField, t3.sortAscending, _this.userMap, _this.clientMap, _this.projectMap, _this.invoiceMap, _this.taskStatusMap); }, - $signature: 26 + $signature: 25 }; A.memoizedTaskStatsForClient_closure.prototype = { call$2(clientId, taskMap) { return A.taskStatsForClient(clientId, taskMap); }, - $signature: 387 + $signature: 431 }; A.taskStatsForClient_closure.prototype = { call$2(taskId, task) { @@ -465495,13 +465960,13 @@ } } }, - $signature: 165 + $signature: 152 }; A.memoizedTaskStatsForProject_closure.prototype = { call$2(projectId, taskMap) { return A.taskStatsForProject(projectId, taskMap); }, - $signature: 387 + $signature: 431 }; A.taskStatsForProject_closure.prototype = { call$2(taskId, task) { @@ -465534,13 +465999,13 @@ } } }, - $signature: 165 + $signature: 152 }; A.memoizedTaskStatsForUser_closure.prototype = { call$2(userId, taskMap) { return A.taskStatsForProject(userId, taskMap); }, - $signature: 387 + $signature: 431 }; A.TaskState.prototype = { $get$1(_, taskId) { @@ -465585,7 +466050,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 344 + $signature: 327 }; A.TaskUIState.prototype = { get$isCreatingNew() { @@ -466123,7 +466588,7 @@ b.get$_task_model$_$this()._task_model$_statusId = this.taskStatus.id; return b; }, - $signature: 76 + $signature: 75 }; A._editTaskStatus_closure.prototype = { call$3(store, dynamicAction, next) { @@ -466225,7 +466690,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskStatusState.map._map$_map.$index(0, id); }, - $signature: 596 + $signature: 595 }; A._archiveTaskStatus__closure0.prototype = { call$1(taskStatuses) { @@ -466234,7 +466699,7 @@ t1[0].call$1(new A.ArchiveTaskStatusesSuccess(taskStatuses)); this.action.completer.complete$1(0, null); }, - $signature: 597 + $signature: 596 }; A._archiveTaskStatus__closure1.prototype = { call$1(error) { @@ -466269,7 +466734,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskStatusState.map._map$_map.$index(0, id); }, - $signature: 596 + $signature: 595 }; A._deleteTaskStatus__closure0.prototype = { call$1(taskStatuses) { @@ -466278,7 +466743,7 @@ t1[0].call$1(new A.DeleteTaskStatusesSuccess(taskStatuses)); this.action.completer.complete$1(0, null); }, - $signature: 597 + $signature: 596 }; A._deleteTaskStatus__closure1.prototype = { call$1(error) { @@ -466313,7 +466778,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskStatusState.map._map$_map.$index(0, id); }, - $signature: 596 + $signature: 595 }; A._restoreTaskStatus__closure0.prototype = { call$1(taskStatuses) { @@ -466322,7 +466787,7 @@ t1[0].call$1(new A.RestoreTaskStatusesSuccess(taskStatuses)); this.action.completer.complete$1(0, null); }, - $signature: 597 + $signature: 596 }; A._restoreTaskStatus__closure1.prototype = { call$1(error) { @@ -466369,7 +466834,7 @@ t2[0].call$1(new A.RefreshData(null, false, false, false)); t1.completer.complete$1(0, taskStatus); }, - $signature: 345 + $signature: 293 }; A._saveTaskStatus__closure0.prototype = { call$1(error) { @@ -466405,7 +466870,7 @@ t1[0].call$1(new A.LoadTaskStatusSuccess(taskStatus)); this.action.completer.complete$1(0, null); }, - $signature: 345 + $signature: 293 }; A._loadTaskStatus__closure0.prototype = { call$1(error) { @@ -466549,25 +467014,25 @@ call$2(selectedId, action) { return action.get$taskStatusId(); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure277.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$taskStatus()); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure278.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure279.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure280.prototype = { call$2(selectedId, action) { @@ -466622,7 +467087,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure91.prototype = { call$2(taskStatuses, action) { @@ -466653,13 +467118,13 @@ b.get$_task_status_model$_$this()._task_status_model$_isChanged = true; return b; }, - $signature: 161 + $signature: 166 }; A.taskStatusListReducer_closure.prototype = { call$2(state, action) { return state.rebuild$1(new A.taskStatusListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.taskStatusListReducer__closure.prototype = { call$1(b) { @@ -466824,7 +467289,7 @@ t6.get$_safeMap().$indexSet(0, t5, t7); } }, - $signature: 382 + $signature: 432 }; A._sortTaskStatusSuccess__closure.prototype = { call$1(b) { @@ -466834,7 +467299,7 @@ b.get$_task_status_model$_$this()._task_status_model$_statusOrder = t1; return b; }, - $signature: 161 + $signature: 166 }; A._archiveTaskStatusSuccess_closure.prototype = { call$1(b) { @@ -466856,7 +467321,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 382 + $signature: 432 }; A._deleteTaskStatusSuccess_closure.prototype = { call$1(b) { @@ -466878,7 +467343,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 382 + $signature: 432 }; A._restoreTaskStatusSuccess_closure.prototype = { call$1(b) { @@ -466900,7 +467365,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 382 + $signature: 432 }; A._addTaskStatus_closure.prototype = { call$1(b) { @@ -466912,7 +467377,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 401 + $signature: 433 }; A._updateTaskStatus_closure.prototype = { call$1(b) { @@ -466920,7 +467385,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 401 + $signature: 433 }; A._setLoadedTaskStatus_closure.prototype = { call$1(b) { @@ -466928,7 +467393,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 401 + $signature: 433 }; A.memoizedSortedActiveTaskStatusIds_closure.prototype = { call$2(taskStatusList, taskStatusMap) { @@ -466958,7 +467423,7 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A.sortedActiveTaskStatusIds_closure0.prototype = { call$2(statusIdA, statusIdB) { @@ -466977,7 +467442,7 @@ return B.JSInt_methods.compareTo$1(t1, t4 == null ? 99999 : t4); } }, - $signature: 26 + $signature: 25 }; A.memoizedDropdownTaskStatusList_closure.prototype = { call$4(taskStatusMap, taskStatusList, staticState, userMap) { @@ -467004,7 +467469,7 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A.dropdownTaskStatusesSelector_closure0.prototype = { call$2(taskStatusAId, taskStatusBId) { @@ -467013,7 +467478,7 @@ t2.toString; return t2.compareTo$3$sortAscending$sortField$taskStatus(0, true, "order", t1.$index(0, taskStatusBId)); }, - $signature: 26 + $signature: 25 }; A.memoizedFilteredTaskStatusList_closure.prototype = { call$4(selectionState, taskStatusMap, taskStatusList, taskStatusListState) { @@ -467033,7 +467498,7 @@ return false; return A.matchesStrings(A._setArrayType([t1.name], type$.JSArray_nullable_String), t2.filter); }, - $signature: 11 + $signature: 12 }; A.filteredTaskStatusesSelector_closure0.prototype = { call$2(taskStatusAId, taskStatusBId) { @@ -467042,7 +467507,7 @@ t2.toString; return J.compareTo$3$sortAscending$sortField$taskStatus$ns(t2, true, "order", t1.$index(0, taskStatusBId)); }, - $signature: 26 + $signature: 25 }; A.memoizedCalculateTaskStatusAmount_closure.prototype = { call$2(taskStatusId, taskMap) { @@ -467058,13 +467523,13 @@ t1.total = t1.total + B.JSInt_methods._tdivFast$1(task.calculateDuration$0()._duration, 1000000); } }, - $signature: 165 + $signature: 152 }; A.memoizedTaskStatsForTaskStatus_closure.prototype = { call$2(companyGatewayId, taskMap) { return A.taskStatsForTaskStatus(companyGatewayId, taskMap); }, - $signature: 387 + $signature: 431 }; A.taskStatsForTaskStatus_closure.prototype = { call$2(taskId, task) { @@ -467097,7 +467562,7 @@ } } }, - $signature: 165 + $signature: 152 }; A.defaultTaskStatusId_closure.prototype = { call$1(statusId) { @@ -467118,7 +467583,7 @@ t1 = false; return t1; }, - $signature: 117 + $signature: 119 }; A.defaultTaskStatusId_closure0.prototype = { call$2(statusIdA, statusIdB) { @@ -467133,7 +467598,7 @@ t1 = t1.statusOrder; return B.JSInt_methods.compareTo$1(t2, t1 == null ? 9999 : t1); }, - $signature: 151 + $signature: 143 }; A.TaskStatusState.prototype = { $get$1(_, statusId) { @@ -467177,7 +467642,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 401 + $signature: 433 }; A.TaskStatusUIState.prototype = { get$isCreatingNew() { @@ -467779,7 +468244,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taxRateState.map._map$_map.$index(0, id); }, - $signature: 321 + $signature: 274 }; A._archiveTaxRate__closure0.prototype = { call$1(taxRates) { @@ -467788,7 +468253,7 @@ t1[0].call$1(new A.ArchiveTaxRatesSuccess(taxRates)); this.action.completer.complete$1(0, null); }, - $signature: 604 + $signature: 603 }; A._archiveTaxRate__closure1.prototype = { call$1(error) { @@ -467823,7 +468288,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taxRateState.map._map$_map.$index(0, id); }, - $signature: 321 + $signature: 274 }; A._deleteTaxRate__closure0.prototype = { call$1(taxRates) { @@ -467832,7 +468297,7 @@ t1[0].call$1(new A.DeleteTaxRatesSuccess(taxRates)); this.action.completer.complete$1(0, null); }, - $signature: 604 + $signature: 603 }; A._deleteTaxRate__closure1.prototype = { call$1(error) { @@ -467867,7 +468332,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taxRateState.map._map$_map.$index(0, id); }, - $signature: 321 + $signature: 274 }; A._restoreTaxRate__closure0.prototype = { call$1(taxRates) { @@ -467876,7 +468341,7 @@ t1[0].call$1(new A.RestoreTaxRatesSuccess(taxRates)); this.action.completer.complete$1(0, null); }, - $signature: 604 + $signature: 603 }; A._restoreTaxRate__closure1.prototype = { call$1(error) { @@ -467919,7 +468384,7 @@ } t1.completer.complete$1(0, taxRate); }, - $signature: 163 + $signature: 167 }; A._saveTaxRate__closure0.prototype = { call$1(error) { @@ -467955,7 +468420,7 @@ t1[0].call$1(new A.LoadTaxRateSuccess(taxRate)); this.action.completer.complete$1(0, null); }, - $signature: 163 + $signature: 167 }; A._loadTaxRate__closure0.prototype = { call$1(error) { @@ -468087,13 +468552,13 @@ call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure142.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure143.prototype = { call$2(selectedId, action) { @@ -468142,13 +468607,13 @@ b.get$_tax_rate_model$_$this()._tax_rate_model$_isChanged = true; return b; }, - $signature: 625 + $signature: 626 }; A.taxRateListReducer_closure.prototype = { call$2(state, action) { return state.rebuild$1(new A.taxRateListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.taxRateListReducer__closure.prototype = { call$1(b) { @@ -468269,7 +468734,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 607 + $signature: 606 }; A._deleteTaxRateSuccess_closure.prototype = { call$1(b) { @@ -468291,7 +468756,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 607 + $signature: 606 }; A._restoreTaxRateSuccess_closure.prototype = { call$1(b) { @@ -468313,7 +468778,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 607 + $signature: 606 }; A._addTaxRate_closure.prototype = { call$1(b) { @@ -468325,7 +468790,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 207 + $signature: 216 }; A._updateTaxRate_closure.prototype = { call$1(b) { @@ -468333,7 +468798,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 207 + $signature: 216 }; A._setLoadedTaxRate_closure.prototype = { call$1(b) { @@ -468341,14 +468806,14 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 207 + $signature: 216 }; A._setLoadedTaxRates_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.taxRates, new A._setLoadedTaxRates__closure(), new A._setLoadedTaxRates__closure0(), type$.String, type$.TaxRateEntity)); return b; }, - $signature: 207 + $signature: 216 }; A._setLoadedTaxRates__closure.prototype = { call$1(item) { @@ -468360,7 +468825,7 @@ call$1(item) { return item; }, - $signature: 624 + $signature: 625 }; A._setLoadedTaxRates_closure0.prototype = { call$1(b) { @@ -468368,14 +468833,14 @@ b.get$list(b).replace$1(0, t1.get$keys(t1)); return b; }, - $signature: 207 + $signature: 216 }; A._setLoadedCompany_closure3.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.userCompany.company.taxRates, new A._setLoadedCompany__closure3(), new A._setLoadedCompany__closure4(), type$.String, type$.TaxRateEntity)); return b; }, - $signature: 207 + $signature: 216 }; A._setLoadedCompany__closure3.prototype = { call$1(item) { @@ -468387,7 +468852,7 @@ call$1(item) { return item; }, - $signature: 624 + $signature: 625 }; A._setLoadedCompany_closure4.prototype = { call$1(b) { @@ -468395,7 +468860,7 @@ b.get$list(b).replace$1(0, t1.get$keys(t1)); return b; }, - $signature: 207 + $signature: 216 }; A.memoizedFilteredTaxRateList_closure.prototype = { call$4(selectionState, taxRateMap, taxRateList, taxRateListState) { @@ -468415,7 +468880,7 @@ return false; return A.matchesStrings(A._setArrayType([t1.name], type$.JSArray_nullable_String), t2.filter); }, - $signature: 11 + $signature: 12 }; A.filteredTaxRatesSelector_closure0.prototype = { call$2(taxRateAId, taxRateBId) { @@ -468426,7 +468891,7 @@ t3 = this.taxRateListState; return t2.compareTo$3(0, t1.$index(0, taxRateBId), t3.sortField, t3.sortAscending); }, - $signature: 26 + $signature: 25 }; A.TaxRateState.prototype = { map$1($receiver, arg0) { @@ -469043,7 +469508,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].tokenState.map._map$_map.$index(0, id); }, - $signature: 610 + $signature: 609 }; A._archiveToken__closure0.prototype = { call$1(tokens) { @@ -469052,7 +469517,7 @@ t1[0].call$1(new A.ArchiveTokensSuccess(tokens)); this.action.completer.complete$1(0, null); }, - $signature: 622 + $signature: 610 }; A._archiveToken__closure1.prototype = { call$1(error) { @@ -469087,7 +469552,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].tokenState.map._map$_map.$index(0, id); }, - $signature: 610 + $signature: 609 }; A._deleteToken__closure0.prototype = { call$1(tokens) { @@ -469096,7 +469561,7 @@ t1[0].call$1(new A.DeleteTokensSuccess(tokens)); this.action.completer.complete$1(0, null); }, - $signature: 622 + $signature: 610 }; A._deleteToken__closure1.prototype = { call$1(error) { @@ -469131,7 +469596,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].tokenState.map._map$_map.$index(0, id); }, - $signature: 610 + $signature: 609 }; A._restoreToken__closure0.prototype = { call$1(tokens) { @@ -469140,7 +469605,7 @@ t1[0].call$1(new A.RestoreTokensSuccess(tokens)); this.action.completer.complete$1(0, null); }, - $signature: 622 + $signature: 610 }; A._restoreToken__closure1.prototype = { call$1(error) { @@ -469183,7 +469648,7 @@ } t1.completer.complete$1(0, token); }, - $signature: 398 + $signature: 439 }; A._saveToken__closure0.prototype = { call$1(error) { @@ -469221,7 +469686,7 @@ t1[0].call$1(new A.LoadTokenSuccess(token)); this.action.completer.complete$1(0, null); }, - $signature: 398 + $signature: 439 }; A._loadToken__closure0.prototype = { call$1(error) { @@ -469365,25 +469830,25 @@ call$2(selectedId, action) { return action.get$tokenId(); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure213.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$token()); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure214.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure215.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure216.prototype = { call$2(selectedId, action) { @@ -469438,7 +469903,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure68.prototype = { call$2(tokens, action) { @@ -469469,13 +469934,13 @@ b.get$_token_model$_$this()._token_model$_isChanged = true; return b; }, - $signature: 721 + $signature: 624 }; A.tokenListReducer_closure.prototype = { call$2(state, action) { return state.rebuild$1(new A.tokenListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.tokenListReducer__closure.prototype = { call$1(b) { @@ -469628,7 +470093,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 614 + $signature: 460 }; A._deleteTokenSuccess_closure.prototype = { call$1(b) { @@ -469650,7 +470115,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 614 + $signature: 460 }; A._restoreTokenSuccess_closure.prototype = { call$1(b) { @@ -469672,7 +470137,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 614 + $signature: 460 }; A._addToken_closure.prototype = { call$1(b) { @@ -469684,7 +470149,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 384 + $signature: 441 }; A._updateToken_closure.prototype = { call$1(b) { @@ -469692,7 +470157,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 384 + $signature: 441 }; A._setLoadedToken_closure.prototype = { call$1(b) { @@ -469700,7 +470165,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 384 + $signature: 441 }; A.memoizedFilteredTokenList_closure.prototype = { call$4(selectionState, tokenMap, tokenList, tokenListState) { @@ -469722,7 +470187,7 @@ return false; return A.matchesStrings(A._setArrayType([t1.name], type$.JSArray_nullable_String), t2.filter); }, - $signature: 11 + $signature: 12 }; A.filteredTokensSelector_closure0.prototype = { call$2(tokenAId, tokenBId) { @@ -469733,7 +470198,7 @@ t3 = this.tokenListState; return t2.compareTo$3(0, t1.$index(0, tokenBId), t3.sortField, t3.sortAscending); }, - $signature: 26 + $signature: 25 }; A.TokenState.prototype = { loadTokens$1(clients) { @@ -469768,7 +470233,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 384 + $signature: 441 }; A.TokenUIState.prototype = { get$isCreatingNew() { @@ -470424,7 +470889,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].transactionState.map._map$_map.$index(0, id); }, - $signature: 616 + $signature: 615 }; A._archiveTransaction__closure0.prototype = { call$1(transactions) { @@ -470433,7 +470898,7 @@ t1[0].call$1(new A.ArchiveTransactionsSuccess(transactions)); this.action.completer.complete$1(0, null); }, - $signature: 297 + $signature: 282 }; A._archiveTransaction__closure1.prototype = { call$1(error) { @@ -470468,7 +470933,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].transactionState.map._map$_map.$index(0, id); }, - $signature: 616 + $signature: 615 }; A._deleteTransaction__closure0.prototype = { call$1(transactions) { @@ -470477,7 +470942,7 @@ t1[0].call$1(new A.DeleteTransactionsSuccess(transactions)); this.action.completer.complete$1(0, null); }, - $signature: 297 + $signature: 282 }; A._deleteTransaction__closure1.prototype = { call$1(error) { @@ -470512,7 +470977,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].transactionState.map._map$_map.$index(0, id); }, - $signature: 616 + $signature: 615 }; A._restoreTransaction__closure0.prototype = { call$1(transactions) { @@ -470521,7 +470986,7 @@ t1[0].call$1(new A.RestoreTransactionsSuccess(transactions)); this.action.completer.complete$1(0, null); }, - $signature: 297 + $signature: 282 }; A._restoreTransaction__closure1.prototype = { call$1(error) { @@ -470556,7 +471021,7 @@ t2[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, - $signature: 297 + $signature: 282 }; A._convertTransactions__closure0.prototype = { call$1(error) { @@ -470592,7 +471057,7 @@ t1[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, - $signature: 297 + $signature: 282 }; A._unlinkTransactions__closure0.prototype = { call$1(error) { @@ -470626,7 +471091,7 @@ t1[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, - $signature: 222 + $signature: 211 }; A._convertToPayment__closure0.prototype = { call$1(error) { @@ -470660,7 +471125,7 @@ t1[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, - $signature: 819 + $signature: 623 }; A._convertToExpense__closure0.prototype = { call$1(error) { @@ -470694,7 +471159,7 @@ t1[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, - $signature: 222 + $signature: 211 }; A._linkToPayment__closure0.prototype = { call$1(error) { @@ -470728,7 +471193,7 @@ t1[0].call$1(new A.RefreshData(null, false, false, false)); this.action.completer.complete$1(0, null); }, - $signature: 222 + $signature: 211 }; A._linkToExpense__closure0.prototype = { call$1(error) { @@ -470775,7 +471240,7 @@ t2[0].call$1(new A.RefreshData(null, false, false, false)); t1.completer.complete$1(0, transaction); }, - $signature: 222 + $signature: 211 }; A._saveTransaction__closure0.prototype = { call$1(error) { @@ -470811,7 +471276,7 @@ t1[0].call$1(new A.LoadTransactionSuccess(transaction)); this.action.completer.complete$1(0, null); }, - $signature: 222 + $signature: 211 }; A._loadTransaction__closure0.prototype = { call$1(error) { @@ -470852,7 +471317,7 @@ } else t1[0].call$1(new A.PersistData()); }, - $signature: 819 + $signature: 623 }; A._loadTransactions__closure0.prototype = { call$1(error) { @@ -470975,25 +471440,25 @@ call$2(selectedId, action) { return action.get$transactionId(); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure357.prototype = { call$2(selectedId, action) { return J.get$id$x(J.get$transaction$x(action)); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure358.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure359.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure360.prototype = { call$2(selectedId, action) { @@ -471054,7 +471519,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure118.prototype = { call$2(transactions, action) { @@ -471085,13 +471550,13 @@ b.get$_transaction_model$_$this()._transaction_model$_isChanged = true; return b; }, - $signature: 137 + $signature: 132 }; A.transactionListReducer_closure.prototype = { call$2(state, action) { return state.rebuild$1(new A.transactionListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.transactionListReducer__closure.prototype = { call$1(b) { @@ -471260,7 +471725,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 529 + $signature: 619 }; A._deleteTransactionSuccess_closure.prototype = { call$1(b) { @@ -471282,7 +471747,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 529 + $signature: 619 }; A._restoreTransactionSuccess_closure.prototype = { call$1(b) { @@ -471304,7 +471769,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 529 + $signature: 619 }; A._addTransaction_closure.prototype = { call$1(b) { @@ -471316,7 +471781,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 236 + $signature: 230 }; A._updateTransaction_closure.prototype = { call$1(b) { @@ -471324,7 +471789,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 236 + $signature: 230 }; A._convertTransactionToPayment_closure.prototype = { call$1(b) { @@ -471332,7 +471797,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 236 + $signature: 230 }; A._linkTransactionToPayment_closure.prototype = { call$1(b) { @@ -471340,7 +471805,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 236 + $signature: 230 }; A._linkTransactionToExpense_closure.prototype = { call$1(b) { @@ -471348,7 +471813,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 236 + $signature: 230 }; A._setLoadedTransaction_closure.prototype = { call$1(b) { @@ -471356,7 +471821,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 236 + $signature: 230 }; A.memoizedFilteredTransactionList_closure.prototype = { call$9(selectionState, transactionMap, transactionList, invoiceMap, vendorMap, expenseMap, expenseCategoryMap, bankAccountMap, transactionListState) { @@ -471394,7 +471859,7 @@ return false; return A.matchesStrings(A._setArrayType([t1.category, t1.description], type$.JSArray_nullable_String), t2.filter); }, - $signature: 11 + $signature: 12 }; A.filteredTransactionsSelector_closure0.prototype = { call$2(transactionAId, transactionBId) { @@ -471405,13 +471870,13 @@ t3 = _this.transactionListState; return t2.compareTo$8(0, t1.$index(0, transactionBId), t3.sortField, t3.sortAscending, _this.vendorMap, _this.invoiceMap, _this.expenseMap, _this.expenseCategoryMap, _this.bankAccountMap); }, - $signature: 26 + $signature: 25 }; A.memoizedTransactionStatsForBankAccount_closure.prototype = { call$2(bankAccountId, transactionMap) { return A.transactionStatsForBankAccount(bankAccountId, transactionMap); }, - $signature: 408 + $signature: 402 }; A.transactionStatsForBankAccount_closure.prototype = { call$2(transactionId, transaction) { @@ -471444,7 +471909,7 @@ } } }, - $signature: 407 + $signature: 403 }; A.TransactionState.prototype = { $get$1(_, transactionId) { @@ -471488,7 +471953,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 236 + $signature: 230 }; A.TransactionUIState.prototype = { get$isCreatingNew() { @@ -472114,7 +472579,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].transactionRuleState.map._map$_map.$index(0, id); }, - $signature: 619 + $signature: 621 }; A._archiveTransactionRule__closure0.prototype = { call$1(transactionRules) { @@ -472123,7 +472588,7 @@ t1[0].call$1(new A.ArchiveTransactionRulesSuccess(transactionRules)); this.action.completer.complete$1(0, null); }, - $signature: 613 + $signature: 454 }; A._archiveTransactionRule__closure1.prototype = { call$1(error) { @@ -472158,7 +472623,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].transactionRuleState.map._map$_map.$index(0, id); }, - $signature: 619 + $signature: 621 }; A._deleteTransactionRule__closure0.prototype = { call$1(transactionRules) { @@ -472167,7 +472632,7 @@ t1[0].call$1(new A.DeleteTransactionRulesSuccess(transactionRules)); this.action.completer.complete$1(0, null); }, - $signature: 613 + $signature: 454 }; A._deleteTransactionRule__closure1.prototype = { call$1(error) { @@ -472202,7 +472667,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].transactionRuleState.map._map$_map.$index(0, id); }, - $signature: 619 + $signature: 621 }; A._restoreTransactionRule__closure0.prototype = { call$1(transactionRules) { @@ -472211,7 +472676,7 @@ t1[0].call$1(new A.RestoreTransactionRulesSuccess(transactionRules)); this.action.completer.complete$1(0, null); }, - $signature: 613 + $signature: 454 }; A._restoreTransactionRule__closure1.prototype = { call$1(error) { @@ -472254,7 +472719,7 @@ } t1.completer.complete$1(0, transactionRule); }, - $signature: 418 + $signature: 379 }; A._saveTransactionRule__closure0.prototype = { call$1(error) { @@ -472290,7 +472755,7 @@ t1[0].call$1(new A.LoadTransactionRuleSuccess(transactionRule)); this.action.completer.complete$1(0, null); }, - $signature: 418 + $signature: 379 }; A._loadTransactionRule__closure0.prototype = { call$1(error) { @@ -472448,25 +472913,25 @@ call$2(selectedId, action) { return action.get$transactionRuleId(); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure373.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$transactionRule()); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure374.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure375.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure376.prototype = { call$2(selectedId, action) { @@ -472521,7 +472986,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure122.prototype = { call$2(transactionRules, action) { @@ -472552,13 +473017,13 @@ b.get$_transaction_rule_model$_$this()._transaction_rule_model$_isChanged = true; return b; }, - $signature: 177 + $signature: 189 }; A.transactionRuleListReducer_closure.prototype = { call$2(state, action) { return state.rebuild$1(new A.transactionRuleListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.transactionRuleListReducer__closure.prototype = { call$1(b) { @@ -472711,7 +473176,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 594 + $signature: 608 }; A._deleteTransactionRuleSuccess_closure.prototype = { call$1(b) { @@ -472733,7 +473198,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 594 + $signature: 608 }; A._restoreTransactionRuleSuccess_closure.prototype = { call$1(b) { @@ -472755,7 +473220,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 594 + $signature: 608 }; A._addTransactionRule_closure.prototype = { call$1(b) { @@ -472767,7 +473232,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 385 + $signature: 437 }; A._updateTransactionRule_closure.prototype = { call$1(b) { @@ -472775,7 +473240,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 385 + $signature: 437 }; A._setLoadedTransactionRule_closure.prototype = { call$1(b) { @@ -472783,7 +473248,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 385 + $signature: 437 }; A.memoizedFilteredTransactionRuleList_closure.prototype = { call$4(selectionState, transactionRuleMap, transactionRuleList, transactionRuleListState) { @@ -472802,7 +473267,7 @@ return false; return A.matchesStrings(A._setArrayType([transactionRule.name], type$.JSArray_nullable_String), t1.filter); }, - $signature: 11 + $signature: 12 }; A.filteredTransactionRulesSelector_closure0.prototype = { call$2(transactionRuleAId, transactionRuleBId) { @@ -472813,13 +473278,13 @@ t3 = this.transactionRuleListState; return t2.compareTo$3(0, t1.$index(0, transactionRuleBId), t3.sortField, t3.sortAscending); }, - $signature: 26 + $signature: 25 }; A.memoizedTransactionStatsForTransactionRule_closure.prototype = { call$2(userId, transactionMap) { return A.transactionStatsForTransactionRule(userId, transactionMap); }, - $signature: 408 + $signature: 402 }; A.transactionStatsForTransactionRule_closure.prototype = { call$2(transactionId, transaction) { @@ -472851,7 +473316,7 @@ t1.total = t1.total + transaction.amount; } }, - $signature: 407 + $signature: 403 }; A.TransactionRuleState.prototype = { $get$1(_, transactionRuleId) { @@ -472895,7 +473360,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 385 + $signature: 437 }; A.TransactionRuleUIState.prototype = { get$isCreatingNew() { @@ -473791,7 +474256,7 @@ b.get$_pref_state$_$this()._showPdfPreviewSideBySide = t3; return b; }, - $signature: 579 + $signature: 601 }; A._resortFields_closure.prototype = { call$1(b) { @@ -473961,14 +474426,14 @@ b.$indexSet(0, t1, !t2); return b; }, - $signature: 389 + $signature: 430 }; A.sidebarEditorReducer__closure0.prototype = { call$1(b) { b.$indexSet(0, this.entityType, true); return b; }, - $signature: 389 + $signature: 430 }; A.sidebarViewerReducer_closure.prototype = { call$2(value, action) { @@ -473988,20 +474453,20 @@ b.$indexSet(0, t1, !t2); return b; }, - $signature: 389 + $signature: 430 }; A.sidebarViewerReducer__closure0.prototype = { call$1(b) { b.$indexSet(0, this.entityType, true); return b; }, - $signature: 389 + $signature: 430 }; A.menuVisibleReducer_closure.prototype = { call$2(value, action) { return action.sidebar === B.AppSidebar_menu ? !value : value; }, - $signature: 98 + $signature: 97 }; A.menuVisibleReducer_closure0.prototype = { call$2(value, action) { @@ -474015,7 +474480,7 @@ return value; } }, - $signature: 98 + $signature: 97 }; A.textScaleFactorReducer_closure.prototype = { call$2(value, action) { @@ -474028,7 +474493,7 @@ call$2(value, action) { return action.sidebar === B.AppSidebar_history ? !value : value; }, - $signature: 98 + $signature: 97 }; A.historyVisibleReducer_closure0.prototype = { call$2(value, action) { @@ -474039,13 +474504,13 @@ t1 = t1 === B.AppSidebarMode_float ? false : value; return t1; }, - $signature: 98 + $signature: 97 }; A.hideDesktopWarningReducer_closure.prototype = { call$2(filter, action) { return true; }, - $signature: 682 + $signature: 719 }; A.hideTaskExtensionBannerReducer_closure.prototype = { call$2(filter, action) { @@ -474069,31 +474534,31 @@ call$2(filter, action) { return true; }, - $signature: 630 + $signature: 629 }; A.hideReviewAppReducer_closure1.prototype = { call$2(filter, action) { return true; }, - $signature: 562 + $signature: 570 }; A.hideOneYearReviewAppReducer_closure.prototype = { call$2(filter, action) { return true; }, - $signature: 630 + $signature: 629 }; A.hideOneYearReviewAppReducer_closure0.prototype = { call$2(filter, action) { return true; }, - $signature: 562 + $signature: 570 }; A.hideTwoYearReviewAppReducer_closure.prototype = { call$2(filter, action) { return true; }, - $signature: 562 + $signature: 570 }; A.layoutReducer_closure.prototype = { call$2(layout, action) { @@ -474137,28 +474602,28 @@ var t1 = action.menuMode; return t1 == null ? mode : t1; }, - $signature: 632 + $signature: 631 }; A.historySidebarReducer_closure.prototype = { call$2(mode, action) { var t1 = action.historyMode; return t1 == null ? mode : t1; }, - $signature: 632 + $signature: 631 }; A.darkModeTypeReducer_closure.prototype = { call$2(enableDarkMode, action) { var t1 = action.darkModeType; return t1 == null ? enableDarkMode : t1; }, - $signature: 390 + $signature: 421 }; A.darkModeSystemReducer_closure.prototype = { call$2(enableDarkMode, action) { var t1 = action.enableDarkModeSystem; return t1 == null ? enableDarkMode : t1; }, - $signature: 98 + $signature: 97 }; A.statementIncludesReducer_closure.prototype = { call$2(includes, action) { @@ -474172,63 +474637,63 @@ var t1 = action.enableTooltips; return t1 == null ? enableTooltips : t1; }, - $signature: 98 + $signature: 97 }; A.enableFlexibleSearchReducer_closure.prototype = { call$2(enableFlexibleSearch, action) { var t1 = action.flexibleSearch; return t1 == null ? enableFlexibleSearch : t1; }, - $signature: 98 + $signature: 97 }; A.enableNativeBrowserReducer_closure.prototype = { call$2(enableNativeBrowser, action) { var t1 = action.enableNativeBrowser; return t1 == null ? enableNativeBrowser : t1; }, - $signature: 98 + $signature: 97 }; A.persistDataReducer_closure.prototype = { call$2(persistData, action) { var t1 = action.persistData; return t1 == null ? persistData : t1; }, - $signature: 98 + $signature: 97 }; A.showKanbanReducer_closure.prototype = { call$2(showKanban, action) { var t1 = action.showKanban; return t1 == null ? showKanban : t1; }, - $signature: 98 + $signature: 97 }; A.isFilterVisibleReducer_closure.prototype = { call$2(value, action) { var t1 = action.isFilterVisible; return t1 == null ? value : t1; }, - $signature: 98 + $signature: 97 }; A.longPressReducer_closure.prototype = { call$2(longPressSelectionIsDefault, action) { var t1 = action.longPressSelectionIsDefault; return t1 == null ? longPressSelectionIsDefault : t1; }, - $signature: 98 + $signature: 97 }; A.tapSelectedToEditReducer_closure.prototype = { call$2(tapSelectedToEdit, action) { var t1 = action.tapSelectedToEdit; return t1 == null ? tapSelectedToEdit : t1; }, - $signature: 98 + $signature: 97 }; A.downloadsFolderReducer_closure.prototype = { call$2(downloadsFolder, action) { var t1 = action.downloadsFolder; return t1 == null ? downloadsFolder : t1; }, - $signature: 390 + $signature: 421 }; A.isPreviewVisibleReducer_closure.prototype = { call$2(value, action) { @@ -474241,7 +474706,7 @@ var t1 = action.isPreviewVisible; return t1 == null ? isPreviewEnabled : t1; }, - $signature: 98 + $signature: 97 }; A.isPreviewVisibleReducer_closure1.prototype = { call$2(value, action) { @@ -474332,63 +474797,63 @@ var t1 = action.requireAuthentication; return t1 == null ? requireAuthentication : t1; }, - $signature: 98 + $signature: 97 }; A.colorThemeReducer_closure.prototype = { call$2(currentColorTheme, action) { var t1 = action.colorTheme; return t1 == null ? currentColorTheme : t1; }, - $signature: 390 + $signature: 421 }; A.darkColorThemeReducer_closure.prototype = { call$2(currentColorTheme, action) { var t1 = action.darkColorTheme; return t1 == null ? currentColorTheme : t1; }, - $signature: 390 + $signature: 421 }; A.showPdfPreviewReducer_closure.prototype = { call$2(value, action) { var t1 = action.showPdfPreview; return t1 == null ? value : t1; }, - $signature: 98 + $signature: 97 }; A.showPdfPreviewSideBySideReducer_closure.prototype = { call$2(value, action) { var t1 = action.showPdfPreviewSideBySide; return t1 == null ? value : t1; }, - $signature: 98 + $signature: 97 }; A.editAfterSavingReducer_closure.prototype = { call$2(value, action) { var t1 = action.editAfterSaving; return t1 == null ? value : t1; }, - $signature: 98 + $signature: 97 }; A.enableTouchEventsReducer_closure.prototype = { call$2(value, action) { var t1 = action.enableTouchEvents; return t1 == null ? value : t1; }, - $signature: 98 + $signature: 97 }; A.customColorsReducer_closure.prototype = { call$2(customColors, action) { var t1 = action.customColors; return t1 == null ? customColors : t1; }, - $signature: 634 + $signature: 633 }; A.darkCustomColorsReducer_closure.prototype = { call$2(customColors, action) { var t1 = action.darkCustomColors; return t1 == null ? customColors : t1; }, - $signature: 634 + $signature: 633 }; A.companyPrefReducer_closure.prototype = { call$1(b) { @@ -474417,7 +474882,7 @@ B.JSArray_methods.removeAt$1(b.get$_safeList(), 0); return b; }, - $signature: 392 + $signature: 420 }; A.historyReducer_closure1.prototype = { call$2(historyList, action) { @@ -474440,7 +474905,7 @@ b.get$_safeList()[0] = t1; return b; }, - $signature: 392 + $signature: 420 }; A.historyReducer___closure.prototype = { call$1(b) { @@ -474978,7 +475443,7 @@ t1 = false; return t1; }, - $signature: 679 + $signature: 715 }; A._addToHistory_closure0.prototype = { call$1(b) { @@ -474987,7 +475452,7 @@ B.JSArray_methods.insert$2(b.get$_safeList(), 0, this.record); return b; }, - $signature: 392 + $signature: 420 }; A._addToHistory_closure1.prototype = { call$1(b) { @@ -475001,7 +475466,7 @@ b._listOwner = null; return b; }, - $signature: 392 + $signature: 420 }; A.PrefState.prototype = { get$colorThemeModel() { @@ -476262,7 +476727,7 @@ t3._settings_state$_$v = t2; return b; }, - $signature: 684 + $signature: 721 }; A.lastActivityReducer_closure.prototype = { call$2(state, action) { @@ -476415,7 +476880,7 @@ call$1(entityType) { return entityType !== this.action.entityType; }, - $signature: 267 + $signature: 246 }; A.previewStackReducer_closure0.prototype = { call$2(previewStack, action) { @@ -476456,7 +476921,7 @@ call$1(entity) { return entity.get$entityType() != this.action.entity.get$entityType(); }, - $signature: 234 + $signature: 220 }; A.filterStackReducer_closure1.prototype = { call$2(filterStack, action) { @@ -476527,25 +476992,25 @@ call$1(part) { return part.length !== 0; }, - $signature: 11 + $signature: 12 }; A.UIState_subRoute_closure.prototype = { call$1(part) { return part.length !== 0; }, - $signature: 11 + $signature: 12 }; A.UIState_previousMainRoute_closure.prototype = { call$1(part) { return part.length !== 0; }, - $signature: 11 + $signature: 12 }; A.UIState_previousSubRoute_closure.prototype = { call$1(part) { return part.length !== 0; }, - $signature: 11 + $signature: 12 }; A._$UIStateSerializer.prototype = { serialize$3$specifiedType(serializers, object, specifiedType) { @@ -477688,25 +478153,25 @@ call$1(b) { return b.get$_invoice_model$_$this()._invoice_model$_assignedUserId = this.user.id; }, - $signature: 169 + $signature: 154 }; A.handleUserAction_closure2.prototype = { call$1(b) { return b.get$_invoice_model$_$this()._invoice_model$_assignedUserId = this.user.id; }, - $signature: 169 + $signature: 154 }; A.handleUserAction_closure3.prototype = { call$1(b) { return b.get$_invoice_model$_$this()._invoice_model$_assignedUserId = this.user.id; }, - $signature: 169 + $signature: 154 }; A.handleUserAction_closure4.prototype = { call$1(b) { return b.get$_invoice_model$_$this()._invoice_model$_assignedUserId = this.user.id; }, - $signature: 169 + $signature: 154 }; A.handleUserAction_closure5.prototype = { call$1(b) { @@ -477718,13 +478183,13 @@ call$1(b) { return b.get$_payment_model$_$this()._payment_model$_assignedUserId = this.user.id; }, - $signature: 678 + $signature: 703 }; A.handleUserAction_closure7.prototype = { call$1(b) { return b.get$_project_model$_$this()._project_model$_assignedUserId = this.user.id; }, - $signature: 677 + $signature: 701 }; A.handleUserAction_closure8.prototype = { call$1(b) { @@ -477751,13 +478216,13 @@ call$1(password) { return this.call$2(password, null); }, - $signature: 402 + $signature: 418 }; A.handleUserAction_closure10.prototype = { call$2(password, idToken) { this.dispatch.call$2(password, idToken); }, - $signature: 79 + $signature: 80 }; A.handleUserAction_closure13.prototype = { call$2(password, idToken) { @@ -477772,13 +478237,13 @@ call$1(password) { return this.call$2(password, null); }, - $signature: 402 + $signature: 418 }; A.handleUserAction_closure12.prototype = { call$2(password, idToken) { this.dispatch.call$2(password, idToken); }, - $signature: 79 + $signature: 80 }; A.handleUserAction_closure15.prototype = { call$2(password, idToken) { @@ -477793,13 +478258,13 @@ call$1(password) { return this.call$2(password, null); }, - $signature: 402 + $signature: 418 }; A.handleUserAction_closure14.prototype = { call$2(password, idToken) { this.dispatch.call$2(password, idToken); }, - $signature: 79 + $signature: 80 }; A.handleUserAction_closure17.prototype = { call$2(password, idToken) { @@ -477814,7 +478279,7 @@ call$1(password) { return this.call$2(password, null); }, - $signature: 402 + $signature: 418 }; A.handleUserAction_closure16.prototype = { call$1(_) { @@ -477826,7 +478291,7 @@ call$2(password, idToken) { this.dispatch.call$2(password, idToken); }, - $signature: 79 + $signature: 80 }; A.handleUserAction_closure18.prototype = { call$2(password, idToken) { @@ -477842,7 +478307,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.ResendInviteRequest(t1, this.user.id, password, idToken)); }, - $signature: 79 + $signature: 80 }; A.StartUserMultiselect.prototype = {}; A.AddToUserMultiselect.prototype = {}; @@ -477948,7 +478413,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].userState.map._map$_map.$index(0, id); }, - $signature: 548 + $signature: 560 }; A._archiveUser__closure0.prototype = { call$1(users) { @@ -477957,7 +478422,7 @@ t1[0].call$1(new A.ArchiveUserSuccess(users)); this.action.completer.complete$1(0, null); }, - $signature: 403 + $signature: 417 }; A._archiveUser__closure1.prototype = { call$1(error) { @@ -477994,7 +478459,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].userState.map._map$_map.$index(0, id); }, - $signature: 548 + $signature: 560 }; A._deleteUser__closure0.prototype = { call$1(users) { @@ -478003,7 +478468,7 @@ t1[0].call$1(new A.DeleteUserSuccess(users)); this.action.completer.complete$1(0, null); }, - $signature: 403 + $signature: 417 }; A._deleteUser__closure1.prototype = { call$1(error) { @@ -478040,7 +478505,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].userState.map._map$_map.$index(0, id); }, - $signature: 548 + $signature: 560 }; A._restoreUser__closure0.prototype = { call$1(users) { @@ -478049,7 +478514,7 @@ t1[0].call$1(new A.RestoreUserSuccess(users)); this.action.completer.complete$1(0, null); }, - $signature: 403 + $signature: 417 }; A._restoreUser__closure1.prototype = { call$1(error) { @@ -478085,7 +478550,7 @@ t2[0].call$1(new A.RemoveUserSuccess(t1.userId)); t1.completer.complete$1(0, null); }, - $signature: 403 + $signature: 417 }; A._removeUser__closure0.prototype = { call$1(error) { @@ -478161,7 +478626,7 @@ } t1.completer.complete$1(0, user); }, - $signature: 187 + $signature: 182 }; A._saveUser__closure0.prototype = { call$1(error) { @@ -478199,7 +478664,7 @@ t1[0].call$1(new A.LoadUserSuccess(user)); this.action.completer.complete$1(0, null); }, - $signature: 187 + $signature: 182 }; A._loadUser__closure0.prototype = { call$1(error) { @@ -478355,13 +478820,13 @@ call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure152.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure153.prototype = { call$2(selectedId, action) { @@ -478409,7 +478874,7 @@ call$2(selectedId, action) { return action.entityType === B.EntityType_user ? "" : selectedId; }, - $signature: 183 + $signature: 176 }; A.selectedIdReducer_closure161.prototype = { call$2(selectedId, action) { @@ -478422,7 +478887,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure45.prototype = { call$2(users, action) { @@ -478453,13 +478918,13 @@ b.get$_user_model$_$this()._user_model$_isChanged = true; return b; }, - $signature: 97 + $signature: 98 }; A.userListReducer_closure.prototype = { call$2(state, action) { return state.rebuild$1(new A.userListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.userListReducer__closure.prototype = { call$1(b) { @@ -478644,7 +479109,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 539 + $signature: 548 }; A._deleteUserSuccess_closure.prototype = { call$1(b) { @@ -478666,7 +479131,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 539 + $signature: 548 }; A._restoreUserSuccess_closure.prototype = { call$1(b) { @@ -478688,7 +479153,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 539 + $signature: 548 }; A._removeUserSuccess_closure.prototype = { call$1(b) { @@ -478697,7 +479162,7 @@ B.JSArray_methods.remove$1(b.get$list(b).get$_safeList(), t1); return b; }, - $signature: 131 + $signature: 129 }; A._addUser_closure.prototype = { call$1(b) { @@ -478709,7 +479174,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 131 + $signature: 129 }; A._updateUser_closure.prototype = { call$1(b) { @@ -478717,7 +479182,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 131 + $signature: 129 }; A._updateAuthUser_closure.prototype = { call$1(b) { @@ -478725,7 +479190,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 131 + $signature: 129 }; A._connectOAuthUser_closure.prototype = { call$1(b) { @@ -478733,7 +479198,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 131 + $signature: 129 }; A._disconnectOAuthUser_closure.prototype = { call$1(b) { @@ -478741,7 +479206,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 131 + $signature: 129 }; A._disconnectOAuthMailer_closure.prototype = { call$1(b) { @@ -478749,7 +479214,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 131 + $signature: 129 }; A._connectGmailUser_closure.prototype = { call$1(b) { @@ -478757,7 +479222,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 131 + $signature: 129 }; A._setLoadedUser_closure.prototype = { call$1(b) { @@ -478765,14 +479230,14 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 131 + $signature: 129 }; A._setLoadedUsers_closure.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.users, new A._setLoadedUsers__closure(), new A._setLoadedUsers__closure0(), type$.String, type$.UserEntity)); return b; }, - $signature: 131 + $signature: 129 }; A._setLoadedUsers__closure.prototype = { call$1(item) { @@ -478784,7 +479249,7 @@ call$1(item) { return item; }, - $signature: 642 + $signature: 641 }; A._setLoadedUsers_closure0.prototype = { call$1(b) { @@ -478792,14 +479257,14 @@ b.get$list(b).replace$1(0, t1.get$keys(t1)); return b; }, - $signature: 131 + $signature: 129 }; A._setLoadedCompany_closure5.prototype = { call$1(b) { b.get$map(b).addAll$1(0, A.LinkedHashMap_LinkedHashMap$fromIterable(this.action.userCompany.company.users, new A._setLoadedCompany__closure5(), new A._setLoadedCompany__closure6(), type$.String, type$.UserEntity)); return b; }, - $signature: 131 + $signature: 129 }; A._setLoadedCompany__closure5.prototype = { call$1(item) { @@ -478811,7 +479276,7 @@ call$1(item) { return item; }, - $signature: 642 + $signature: 641 }; A._setLoadedCompany_closure6.prototype = { call$1(b) { @@ -478819,7 +479284,7 @@ b.get$list(b).replace$1(0, t1.get$keys(t1)); return b; }, - $signature: 131 + $signature: 129 }; A.memoizedFilteredUserList_closure.prototype = { call$5(selectionState, userMap, userList, userListState, authUserId) { @@ -478842,7 +479307,7 @@ return false; return t1.matchesFilter$1(t3.filter); }, - $signature: 11 + $signature: 12 }; A.filteredUsersSelector_closure0.prototype = { call$2(userAId, userBId) { @@ -478853,13 +479318,13 @@ t3 = this.userListState; return t2.compareTo$3(0, t1.$index(0, userBId), t3.sortField, t3.sortAscending); }, - $signature: 26 + $signature: 25 }; A.memoizedUserList_closure.prototype = { call$1(userMap) { return A.userList(userMap); }, - $signature: 620 + $signature: 544 }; A.userList_closure.prototype = { call$1(userId) { @@ -478879,20 +479344,20 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A.userList_closure0.prototype = { call$2(idA, idB) { var t1 = this.userMap._map$_map; return B.JSString_methods.compareTo$1(t1.$index(0, idA).get$fullName().toLowerCase(), t1.$index(0, idB).get$fullName().toLowerCase()); }, - $signature: 26 + $signature: 25 }; A.memoizedGmailUserList_closure.prototype = { call$1(userMap) { return A.gmailUserList(userMap); }, - $signature: 620 + $signature: 544 }; A.gmailUserList_closure.prototype = { call$1(userId) { @@ -478921,13 +479386,13 @@ t1 = false; return t1; }, - $signature: 117 + $signature: 119 }; A.memoizedMicrosoftUserList_closure.prototype = { call$1(userMap) { return A.microsoftUserList(userMap); }, - $signature: 620 + $signature: 544 }; A.microsoftUserList_closure.prototype = { call$1(userId) { @@ -478955,7 +479420,7 @@ t1 = false; return t1; }, - $signature: 117 + $signature: 119 }; A.UserState.prototype = { $get$1(_, userId) { @@ -479512,7 +479977,7 @@ call$1(contact) { return contact.link.length !== 0; }, - $signature: 194 + $signature: 197 }; A.StartVendorMultiselect.prototype = {}; A.AddToVendorMultiselect.prototype = {}; @@ -479624,7 +480089,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].vendorState.map._map$_map.$index(0, id); }, - $signature: 514 + $signature: 539 }; A._archiveVendor__closure0.prototype = { call$1(vendors) { @@ -479633,7 +480098,7 @@ t1[0].call$1(new A.ArchiveVendorSuccess(vendors)); this.action.completer.complete$1(0, null); }, - $signature: 512 + $signature: 538 }; A._archiveVendor__closure1.prototype = { call$1(error) { @@ -479668,7 +480133,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].vendorState.map._map$_map.$index(0, id); }, - $signature: 514 + $signature: 539 }; A._deleteVendor__closure0.prototype = { call$1(vendors) { @@ -479677,7 +480142,7 @@ t1[0].call$1(new A.DeleteVendorSuccess(vendors)); this.action.completer.complete$1(0, null); }, - $signature: 512 + $signature: 538 }; A._deleteVendor__closure1.prototype = { call$1(error) { @@ -479712,7 +480177,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].vendorState.map._map$_map.$index(0, id); }, - $signature: 514 + $signature: 539 }; A._restoreVendor__closure0.prototype = { call$1(vendors) { @@ -479721,7 +480186,7 @@ t1[0].call$1(new A.RestoreVendorSuccess(vendors)); this.action.completer.complete$1(0, null); }, - $signature: 512 + $signature: 538 }; A._restoreVendor__closure1.prototype = { call$1(error) { @@ -479767,7 +480232,7 @@ if (t1 != null) t1.complete$1(0, vendor); }, - $signature: 330 + $signature: 281 }; A._saveVendor__closure0.prototype = { call$1(error) { @@ -479805,7 +480270,7 @@ if (t1 != null) t1.complete$1(0, null); }, - $signature: 330 + $signature: 281 }; A._loadVendor__closure0.prototype = { call$1(error) { @@ -479858,13 +480323,13 @@ call$1(vendor) { B.JSArray_methods.forEach$1(vendor.documents._list$_list, new A._loadVendors____closure(this.documents, vendor)); }, - $signature: 648 + $signature: 651 }; A._loadVendors____closure.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._loadVendors_____closure(this.vendor))); }, - $signature: 42 + $signature: 41 }; A._loadVendors_____closure.prototype = { call$1(b) { @@ -479915,13 +480380,13 @@ t1[0].call$1(new A.LoadDocumentsSuccess(documents)); this.action.completer.complete$1(0, documents); }, - $signature: 330 + $signature: 281 }; A._saveDocument___closure8.prototype = { call$1($document) { this.documents.push($document.rebuild$1(new A._saveDocument____closure8(this.vendor))); }, - $signature: 42 + $signature: 41 }; A._saveDocument____closure8.prototype = { call$1(b) { @@ -480081,13 +480546,13 @@ call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure71.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure72.prototype = { call$2(selectedId, action) { @@ -480142,7 +480607,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure24.prototype = { call$2(vendors, action) { @@ -480208,7 +480673,7 @@ call$2(state, action) { return state.rebuild$1(new A.vendorListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.vendorListReducer__closure.prototype = { call$1(b) { @@ -480393,7 +480858,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 501 + $signature: 513 }; A._deleteVendorSuccess_closure.prototype = { call$1(b) { @@ -480415,7 +480880,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 501 + $signature: 513 }; A._restoreVendorSuccess_closure.prototype = { call$1(b) { @@ -480437,7 +480902,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 501 + $signature: 513 }; A._addVendor_closure.prototype = { call$1(b) { @@ -480449,7 +480914,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 417 + $signature: 399 }; A._addVendor__closure.prototype = { call$1(b) { @@ -480465,7 +480930,7 @@ b.get$map(b).$indexSet(0, t1.id, t1.rebuild$1(new A._updateVendor__closure())); return b; }, - $signature: 417 + $signature: 399 }; A._updateVendor__closure.prototype = { call$1(b) { @@ -480481,7 +480946,7 @@ b.get$map(b).$indexSet(0, t1.id, t1.rebuild$1(new A._setLoadedVendor__closure())); return b; }, - $signature: 417 + $signature: 399 }; A._setLoadedVendor__closure.prototype = { call$1(b) { @@ -480516,7 +480981,7 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A.dropdownVendorsSelector_closure0.prototype = { call$2(vendorAId, vendorBId) { @@ -480525,7 +480990,7 @@ t2.toString; return t2.compareTo$5(0, t1.$index(0, vendorBId), "name", true, this.userMap, this.staticState); }, - $signature: 26 + $signature: 25 }; A.memoizedFilteredVendorList_closure.prototype = { call$6(selectionState, vendorMap, vendorList, vendorListState, userMap, staticState) { @@ -480563,7 +481028,7 @@ } return t1.matchesFilter$1(t2.filter); }, - $signature: 11 + $signature: 12 }; A.filteredVendorsSelector_closure0.prototype = { call$2(vendorAId, vendorBId) { @@ -480574,7 +481039,7 @@ t3 = _this.vendorListState; return t2.compareTo$5(0, t1.$index(0, vendorBId), t3.sortField, t3.sortAscending, _this.userMap, _this.staticState); }, - $signature: 26 + $signature: 25 }; A.memoizedVendorStatsForUser_closure.prototype = { call$2(userId, vendorMap) { @@ -480692,7 +481157,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 417 + $signature: 399 }; A.VendorUIState.prototype = { get$isCreatingNew() { @@ -481349,7 +481814,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].webhookState.map._map$_map.$index(0, id); }, - $signature: 499 + $signature: 509 }; A._archiveWebhook__closure0.prototype = { call$1(webhooks) { @@ -481358,7 +481823,7 @@ t1[0].call$1(new A.ArchiveWebhooksSuccess(webhooks)); this.action.completer.complete$1(0, null); }, - $signature: 497 + $signature: 505 }; A._archiveWebhook__closure1.prototype = { call$1(error) { @@ -481393,7 +481858,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].webhookState.map._map$_map.$index(0, id); }, - $signature: 499 + $signature: 509 }; A._deleteWebhook__closure0.prototype = { call$1(webhooks) { @@ -481402,7 +481867,7 @@ t1[0].call$1(new A.DeleteWebhooksSuccess(webhooks)); this.action.completer.complete$1(0, null); }, - $signature: 497 + $signature: 505 }; A._deleteWebhook__closure1.prototype = { call$1(error) { @@ -481437,7 +481902,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].webhookState.map._map$_map.$index(0, id); }, - $signature: 499 + $signature: 509 }; A._restoreWebhook__closure0.prototype = { call$1(webhooks) { @@ -481446,7 +481911,7 @@ t1[0].call$1(new A.RestoreWebhooksSuccess(webhooks)); this.action.completer.complete$1(0, null); }, - $signature: 497 + $signature: 505 }; A._restoreWebhook__closure1.prototype = { call$1(error) { @@ -481489,7 +481954,7 @@ } t1.completer.complete$1(0, webhook); }, - $signature: 419 + $signature: 397 }; A._saveWebhook__closure0.prototype = { call$1(error) { @@ -481525,7 +481990,7 @@ t1[0].call$1(new A.LoadWebhookSuccess(webhook)); this.action.completer.complete$1(0, null); }, - $signature: 419 + $signature: 397 }; A._loadWebhook__closure0.prototype = { call$1(error) { @@ -481669,25 +482134,25 @@ call$2(selectedId, action) { return action.get$webhookId(); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure228.prototype = { call$2(selectedId, action) { return J.get$id$x(action.get$webhook()); }, - $signature: 82 + $signature: 79 }; A.selectedIdReducer_closure229.prototype = { call$2(selectedId, action) { return action.clearSelection ? "" : selectedId; }, - $signature: 61 + $signature: 58 }; A.selectedIdReducer_closure230.prototype = { call$2(selectedId, action) { return ""; }, - $signature: 60 + $signature: 59 }; A.selectedIdReducer_closure231.prototype = { call$2(selectedId, action) { @@ -481742,7 +482207,7 @@ } return t1; }, - $signature: 91 + $signature: 89 }; A.editingReducer_closure72.prototype = { call$2(webhooks, action) { @@ -481773,13 +482238,13 @@ b.get$_webhook_model$_$this()._webhook_model$_isChanged = true; return b; }, - $signature: 239 + $signature: 269 }; A.webhookListReducer_closure.prototype = { call$2(state, action) { return state.rebuild$1(new A.webhookListReducer__closure()); }, - $signature: 58 + $signature: 61 }; A.webhookListReducer__closure.prototype = { call$1(b) { @@ -481932,7 +482397,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 487 + $signature: 498 }; A._deleteWebhookSuccess_closure.prototype = { call$1(b) { @@ -481954,7 +482419,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 487 + $signature: 498 }; A._restoreWebhookSuccess_closure.prototype = { call$1(b) { @@ -481976,7 +482441,7 @@ t4.get$_safeMap().$indexSet(0, t5, t3); } }, - $signature: 487 + $signature: 498 }; A._addWebhook_closure.prototype = { call$1(b) { @@ -481988,7 +482453,7 @@ B.JSArray_methods.add$1(t1.get$_safeList(), t2); return b; }, - $signature: 427 + $signature: 396 }; A._updateWebhook_closure.prototype = { call$1(b) { @@ -481996,7 +482461,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 427 + $signature: 396 }; A._setLoadedWebhook_closure.prototype = { call$1(b) { @@ -482004,7 +482469,7 @@ b.get$map(b).$indexSet(0, t1.id, t1); return b; }, - $signature: 427 + $signature: 396 }; A.memoizedFilteredWebhookList_closure.prototype = { call$4(selectionState, webhookMap, webhookList, webhookListState) { @@ -482024,7 +482489,7 @@ return false; return A.matchesStrings(A._setArrayType([t1.targetUrl], type$.JSArray_nullable_String), t2.filter); }, - $signature: 11 + $signature: 12 }; A.filteredWebhooksSelector_closure0.prototype = { call$2(webhookAId, webhookBId) { @@ -482035,7 +482500,7 @@ t3 = this.webhookListState; return t2.compareTo$3(0, t1.$index(0, webhookBId), t3.sortField, t3.sortAscending); }, - $signature: 26 + $signature: 25 }; A.WebhookState.prototype = { loadWebhooks$1(clients) { @@ -482070,7 +482535,7 @@ t2.replace$1(0, A.List_List$of(t4, true, A._instanceType(t4)._eval$1("SetBase.E"))); return b; }, - $signature: 427 + $signature: 396 }; A.WebhookUIState.prototype = { get$isCreatingNew() { @@ -482534,7 +482999,7 @@ call$2(context, constraints) { return A.GridView$count((constraints.maxWidth / 2 - 8) / 54, this.fieldWidgets, 2, 0, 12, null, new A.NeverScrollableScrollPhysics(null), null, true); }, - $signature: 433 + $signature: 393 }; A.ActionMenuButton.prototype = { build$1(context) { @@ -482577,13 +483042,13 @@ call$1(context) { return this.actions; }, - $signature: 657 + $signature: 656 }; A.ActionMenuButton_build_closure1.prototype = { call$1(action) { this.$this.onSelected.call$2(this.context, action); }, - $signature: 347 + $signature: 289 }; A.ViewActionMenuButton.prototype = { build$1(context) { @@ -482888,7 +483353,7 @@ t3 = _null; return A.InkWell$(false, _null, true, A.IgnorePointer$(new A.RadioListTile(sortField, t6, new A._AppBottomBarState_build_____closure(t1, t5, sortField), true, A.Theme_of(t2).colorScheme.secondary, t4, t3, true, _null, type$.RadioListTile_String), true, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A._AppBottomBarState_build_____closure0(t1, sortField), _null, _null, _null, _null, _null, _null, _null); }, - $signature: 659 + $signature: 658 }; A._AppBottomBarState_build_____closure0.prototype = { call$0() { @@ -482905,7 +483370,7 @@ else if (!t1) _this.$this._widget.onSelectedSortField.call$1(value); }, - $signature: 99 + $signature: 100 }; A._AppBottomBarState_build__closure3.prototype = { call$0() { @@ -482932,7 +483397,7 @@ this.state.getUIState$1(t2).get$listUIState(); return new A.CustomFieldSelector(1, t2, t1._widget.customValues1, new A._AppBottomBarState_build___closure4(t1), null); }, - $signature: 434 + $signature: 391 }; A._AppBottomBarState_build___closure4.prototype = { call$1(field) { @@ -482965,7 +483430,7 @@ this.state.getUIState$1(t2).get$listUIState(); return new A.CustomFieldSelector(2, t2, t1._widget.customValues2, new A._AppBottomBarState_build___closure3(t1), null); }, - $signature: 434 + $signature: 391 }; A._AppBottomBarState_build___closure3.prototype = { call$1(field) { @@ -482998,7 +483463,7 @@ this.state.getUIState$1(t2).get$listUIState(); return new A.CustomFieldSelector(3, t2, t1._widget.customValues3, new A._AppBottomBarState_build___closure2(t1), null); }, - $signature: 434 + $signature: 391 }; A._AppBottomBarState_build___closure2.prototype = { call$1(field) { @@ -483031,7 +483496,7 @@ this.state.getUIState$1(t2).get$listUIState(); return new A.CustomFieldSelector(4, t2, t1._widget.customValues4, new A._AppBottomBarState_build___closure1(t1), null); }, - $signature: 434 + $signature: 391 }; A._AppBottomBarState_build___closure1.prototype = { call$1(field) { @@ -483301,7 +483766,7 @@ b.get$tableColumns().$indexSet(0, this.$this._widget.entityType.toString$0(0), A.BuiltList_BuiltList$from(this.selected, type$.String)); return b; }, - $signature: 662 + $signature: 661 }; A._AppBottomBarState_build___onColumnsPressed__closure0.prototype = { call$1(b) { @@ -483311,7 +483776,7 @@ t1._company_model$_$v = t2; return b; }, - $signature: 101 + $signature: 104 }; A._AppBottomBarState_build___onColumnsPressed__closure1.prototype = { call$1(b) { @@ -483321,7 +483786,7 @@ t1._company_model$_$v = t2; return b; }, - $signature: 97 + $signature: 98 }; A._AppBottomBarState_build__closure.prototype = { call$0() { @@ -483435,7 +483900,7 @@ t1 = " "; return A.Column$(A._setArrayType([t2, new A.SizedBox(_null, 8, _null, _null), A.FittedBox$(A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 30, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null))], type$.JSArray_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); }, - $signature: 141 + $signature: 151 }; A.AppHeader_build__value2.prototype = { call$0() { @@ -483452,7 +483917,7 @@ t1.toString; return A.Column$(A._setArrayType([t3, new A.SizedBox(_null, 8, _null, _null), A.FittedBox$(A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 30, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null))], type$.JSArray_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1); }, - $signature: 141 + $signature: 151 }; A.AppWebView.prototype = { build$1(context) { @@ -483694,7 +484159,7 @@ t1[0].call$1(new A.ViewMainScreen()); } }, - $signature: 12 + $signature: 11 }; A.ConfirmEmail.prototype = { build$1(context) { @@ -483753,14 +484218,14 @@ t3.toString; A.fieldCallback(new A.ConfirmEmail_build___closure(this.$this, t1, password, idToken), t1, t3, null, null, t2.get$changeEmail(), ""); }, - $signature: 79 + $signature: 80 }; A.ConfirmEmail_build___closure.prototype = { call$1(value) { var _this = this; _this.$this.viewModel.onChangeEmail.call$4(_this.context, value, _this.password, _this.idToken); }, - $signature: 40 + $signature: 38 }; A.ConfirmEmailBuilder.prototype = { build$1(context) { @@ -483824,7 +484289,7 @@ b.get$_user_model$_$this()._email = this.email; return b; }, - $signature: 97 + $signature: 98 }; A.CopyToClipboard.prototype = { build$1(context) { @@ -484003,7 +484468,7 @@ } else if (sessionLength > sessionTimeout - 120000) t1.setState$1(new A._DesktopSessionTimeoutState_initState__closure(t1)); }, - $signature: 229 + $signature: 215 }; A._DesktopSessionTimeoutState_initState__closure.prototype = { call$0() { @@ -484589,7 +485054,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return !J.contains$1$asx(t1, option); }, - $signature: 11 + $signature: 12 }; A.MultiSelectListState_build_closure0.prototype = { call$1(option) { @@ -484614,7 +485079,7 @@ b.toString; return B.JSString_methods.compareTo$1(t2.toLowerCase(), t1.lookupOption$1(b).toLowerCase()); }, - $signature: 151 + $signature: 143 }; A.MultiSelectListState_build_closure2.prototype = { call$1(option) { @@ -484623,7 +485088,7 @@ t1.toString; return A.DropdownMenuItem$(A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, option, type$.String); }, - $signature: 438 + $signature: 385 }; A.MultiSelectListState_build_closure3.prototype = { call$1(value) { @@ -484704,7 +485169,7 @@ if (t1.liveChanges) t1.onSelected$1(t2.__MultiSelectListState_selected_A); }, - $signature: 232 + $signature: 223 }; A.MultiSelectListState_build__closure1.prototype = { call$0() { @@ -484974,7 +485439,7 @@ else return A.Column$(A._setArrayType([t1, child], t3), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, - $signature: 237 + $signature: 221 }; A._DocumentGridState_build__closure3.prototype = { call$0() { @@ -485074,7 +485539,7 @@ var t1 = this.$this; t1.setState$1(new A._DocumentGridState_build___closure0(t1)); }, - $signature: 666 + $signature: 665 }; A._DocumentGridState_build___closure0.prototype = { call$0() { @@ -485087,7 +485552,7 @@ var t1 = this.$this; t1.setState$1(new A._DocumentGridState_build___closure(t1)); }, - $signature: 666 + $signature: 665 }; A._DocumentGridState_build___closure.prototype = { call$0() { @@ -485101,7 +485566,7 @@ t1 = J.map$1$1$ax(t1._widget.documents._copy_on_write_list$_list, new A._DocumentGridState_build__closure(t1), type$.DocumentTile); return A.GridView$count((constraints.maxWidth / 2 - 8) / 200, A.List_List$of(t1, true, t1.$ti._eval$1("ListIterable.E")), 2, 0, 0, new A.EdgeInsets(6, 6, 6, 6), new A.NeverScrollableScrollPhysics(null), null, true); }, - $signature: 433 + $signature: 393 }; A._DocumentGridState_build__closure.prototype = { call$1($document) { @@ -485205,7 +485670,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 373 + $signature: 429 }; A.DocumentTile_build__closure.prototype = { call$1($name) { @@ -485229,13 +485694,13 @@ t3 === $ && A.throwUnnamedLateFieldNI(); t3[0].call$1(new A.SaveDocumentRequest(t1, t2)); }, - $signature: 40 + $signature: 38 }; A.DocumentTile_build___closure.prototype = { call$1(value) { this.$this.onRenamedDocument.call$0(); }, - $signature: 324 + $signature: 314 }; A.DocumentTile_build___closure0.prototype = { call$1(b) { @@ -485291,7 +485756,7 @@ t1.push(A.PopupMenuItem$(new A.IconText(t2, B.IconData_57785_MaterialIcons_null_false, _null, _null, false, _null), t4, t7)); return t1; }, - $signature: 314 + $signature: 291 }; A.DocumentPreview.prototype = { build$1(context) { @@ -485658,7 +486123,7 @@ call$1(context) { return new A.UpgradeDialog(null); }, - $signature: 313 + $signature: 298 }; A.EditScaffold_build_closure3.prototype = { call$1(action) { @@ -485695,7 +486160,7 @@ t3 = t4.isSaving ? _null : new A.EditScaffold_build__closure0(_this.$this, action, t3, _this.store); return A.OutlinedButton$(new A.ConstrainedBox(new A.BoxConstraints(t5, 1 / 0, 0, 1 / 0), t1, _null), _null, t3, t2); }, - $signature: 457 + $signature: 470 }; A.EditScaffold_build__closure0.prototype = { call$0() { @@ -485737,13 +486202,13 @@ t1 = A.Icon$(B.IconData_58372_MaterialIcons_null_false, _null, _null, _null); return A.PopupMenuButton$(new A.Padding(B.EdgeInsets_8_0_8_0, t1, _null), _null, true, _null, _null, new A.EditScaffold_build__closure1(_this.entityActions, remaining), new A.EditScaffold_build__closure2(_this.$this, context), B.EdgeInsets_8_8_8_8, _null, type$.EntityAction); }, - $signature: 460 + $signature: 469 }; A.EditScaffold_build__closure2.prototype = { call$1(action) { this.$this.onActionPressed.call$2(this.context, action); }, - $signature: 347 + $signature: 289 }; A.EditScaffold_build__closure1.prototype = { call$1(context) { @@ -485753,7 +486218,7 @@ t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PopupMenuItem>"); return A.List_List$of(new A.MappedListIterable(t1, new A.EditScaffold_build___closure(context), t2), true, t2._eval$1("ListIterable.E")); }, - $signature: 475 + $signature: 466 }; A.EditScaffold_build___closure.prototype = { call$1(action) { @@ -485764,7 +486229,7 @@ t1.toString; return A.PopupMenuItem$(A.Row$(A._setArrayType([t2, new A.SizedBox(16, _null, _null, _null), A.Text$(t1.lookup$1(action.toString$0(0)), _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), action, type$.EntityAction); }, - $signature: 476 + $signature: 465 }; A.EditScaffold_build_closure4.prototype = { call$0() { @@ -485815,7 +486280,7 @@ t2 = type$.WhereTypeIterable_PopupMenuEntry_EntityAction; return A.List_List$of(A.List_List$of(new A.WhereTypeIterable(new A.MappedListIterable(t1, new A.EditScaffold_build__closure(context), A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,StatefulWidget>")), t2), true, t2._eval$1("Iterable.E")), true, type$.PopupMenuEntry_EntityAction); }, - $signature: 657 + $signature: 656 }; A.EditScaffold_build__closure.prototype = { call$1(action) { @@ -485837,7 +486302,7 @@ call$1(action) { return this.$this.onActionPressed.call$2(this.context, action); }, - $signature: 347 + $signature: 289 }; A.showEntityActionsDialog_closure.prototype = { call$1(entityAction) { @@ -485853,7 +486318,7 @@ call$1(dialogContext) { return A.SimpleDialog$(this.actions, null); }, - $signature: 182 + $signature: 190 }; A.EntityActionListTile.prototype = { build$1(context) { @@ -486081,7 +486546,7 @@ A.handleEntitiesActions(A._setArrayType([this.$this._widget.entity], type$.JSArray_BaseEntity), action, false); return null; }, - $signature: 74 + $signature: 73 }; A._EntityListTileState_build_closure0.prototype = { call$0() { @@ -486098,7 +486563,7 @@ var t1 = this.$this; return t1.setState$1(new A._EntityListTileState_build__closure0(t1)); }, - $signature: 132 + $signature: 134 }; A._EntityListTileState_build__closure0.prototype = { call$0() { @@ -486218,7 +486683,7 @@ var t1 = this.$this; return t1.setState$1(new A._EntitiesListTileState_build__closure0(t1)); }, - $signature: 132 + $signature: 134 }; A._EntitiesListTileState_build__closure0.prototype = { call$0() { @@ -486575,7 +487040,7 @@ call$1(elementId) { return !J.contains$1$asx(this.$this._widget.excludeIds, elementId); }, - $signature: 117 + $signature: 119 }; A._EntityDropdownState__showOptions__closure1.prototype = { call$2(entity, update) { @@ -486628,7 +487093,7 @@ call$1(entity) { this.$this._widget.onSelected$1(entity); }, - $signature: 106 + $signature: 103 }; A._EntityDropdownState_build_closure4.prototype = { call$1(textEditingValue) { @@ -486681,19 +487146,19 @@ call$1(entity) { return entity.matchesFilter$1(this.textEditingValue.text); }, - $signature: 676 + $signature: 675 }; A._EntityDropdownState_build__closure2.prototype = { call$1(element) { return !J.contains$1$asx(this.$this._widget.excludeIds, element.get$id(element)); }, - $signature: 676 + $signature: 675 }; A._EntityDropdownState_build_closure1.prototype = { call$1(entity) { return entity.get$listDisplayName(); }, - $signature: 508 + $signature: 453 }; A._EntityDropdownState_build_closure3.prototype = { call$1(entity) { @@ -486716,7 +487181,7 @@ } else t2.call$1(entity); }, - $signature: 259 + $signature: 266 }; A._EntityDropdownState_build_closure__wrapUp.prototype = { call$1(entity) { @@ -486725,21 +487190,21 @@ t1._entity_dropdown$_focusNode.requestFocus$0(); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._EntityDropdownState_build___wrapUp_closure(t1)); }, - $signature: 259 + $signature: 266 }; A._EntityDropdownState_build___wrapUp_closure.prototype = { call$1(duration) { var t1 = this.$this._entity_dropdown$_textController; t1.set$selection(A.TextSelection$fromPosition(new A.TextPosition(t1._change_notifier$_value.text.length, B.TextAffinity_1))); }, - $signature: 12 + $signature: 11 }; A._EntityDropdownState_build__closure3.prototype = { call$1(duration) { var t1 = this.$this._entity_dropdown$_textController; t1.set$selection(A.TextSelection$fromPosition(new A.TextPosition(t1._change_notifier$_value.text.length, B.TextAffinity_1))); }, - $signature: 12 + $signature: 11 }; A._EntityDropdownState_build__closure4.prototype = { call$1(value) { @@ -486765,7 +487230,7 @@ t1 = this.$this; t1._entity_dropdown$_focusNode.addListener$1(0, t1.get$_onFocusChanged()); }, - $signature: 106 + $signature: 103 }; A._EntityDropdownState_build__closure5.prototype = { call$1(error) { @@ -486791,7 +487256,7 @@ t4 = false; return A.DecoratedFormField$(false, _null, t4, textEditingController, _null, true, focusNode, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t5, _null, _null, false, new A._EntityDropdownState_build__closure6(t1), new A._EntityDropdownState_build__closure7(onFieldSubmitted), _null, t2, _null, this.iconButton, B.TextAlign_4, t3); }, - $signature: 558 + $signature: 449 }; A._EntityDropdownState_build__closure7.prototype = { call$1(value) { @@ -486853,13 +487318,13 @@ call$1(timeStamp) { A.Scrollable_ensureVisible(this.context, 0, B.ScrollPositionAlignmentPolicy_0, B.Cubic_JUR, B.Duration_0); }, - $signature: 12 + $signature: 11 }; A._EntityDropdownState_build____closure0.prototype = { call$1(entity) { return this.onSelected.call$1(entity); }, - $signature: 259 + $signature: 266 }; A._EntityDropdownState_build_closure6.prototype = { call$0() { @@ -486897,7 +487362,7 @@ this.$this._widget.onSelected$1(entity); A.Navigator_of(this.context, false).pop$1(null); }, - $signature: 259 + $signature: 266 }; A._EntityDropdownDialogState_build__headerRow.prototype = { call$0() { @@ -486927,7 +487392,7 @@ t2 = A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); return A.Row$(A._setArrayType([new A.Padding(B.EdgeInsets_10_0_10_0, t1, _null), t5, t7, t2], type$.JSArray_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); }, - $signature: 141 + $signature: 151 }; A._EntityDropdownDialogState_build__headerRow_closure.prototype = { call$1(value) { @@ -486965,7 +487430,7 @@ call$1(entity) { this.$this._widget.onSelected$2(entity, false); }, - $signature: 106 + $signature: 103 }; A._EntityDropdownDialogState_build__createList.prototype = { call$0() { @@ -486976,7 +487441,7 @@ matches = A.List_List$of(new A.WhereIterable(new A.WhereIterable(t2, new A._EntityDropdownDialogState_build__createList_closure(t1), t3), new A._EntityDropdownDialogState_build__createList_closure0(t1), t4), true, t4._eval$1("Iterable.E")); return A.ScrollableListViewBuilder$(new A._EntityDropdownDialogState_build__createList_closure1(t1, matches, this._selectEntity), matches.length, null, false, null, null); }, - $signature: 141 + $signature: 151 }; A._EntityDropdownDialogState_build__createList_closure.prototype = { call$1(entityId) { @@ -486985,14 +487450,14 @@ t1 = t2 == null ? null : t2.matchesFilter$1(t1._entity_dropdown$_filter); return t1 === true; }, - $signature: 117 + $signature: 119 }; A._EntityDropdownDialogState_build__createList_closure0.prototype = { call$1(entityId) { this.$this._widget.toString; return !B.JSArray_methods.contains$1(B.List_empty0, entityId); }, - $signature: 117 + $signature: 119 }; A._EntityDropdownDialogState_build__createList_closure1.prototype = { call$2(context, index) { @@ -487011,7 +487476,7 @@ call$1(entity) { return this._selectEntity.call$1(entity); }, - $signature: 259 + $signature: 266 }; A.EntityAutocompleteListTile.prototype = { build$1(context) { @@ -487148,7 +487613,7 @@ } return new A.CopyToClipboard(A.Column$(A._setArrayType([t3, new A.SizedBox(_null, 8, _null, _null), A.FittedBox$(A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 30, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null))], type$.JSArray_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), t2, false, _null, _null, _null); }, - $signature: 141 + $signature: 151 }; A.EntityHeader_build__value2.prototype = { call$0() { @@ -487167,7 +487632,7 @@ } return new A.CopyToClipboard(A.Column$(A._setArrayType([t3, new A.SizedBox(_null, 8, _null, _null), A.FittedBox$(A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 30, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null))], type$.JSArray_Widget), B.CrossAxisAlignment_0, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), t2, false, _null, _null, _null); }, - $signature: 141 + $signature: 151 }; A.EntityStateLabel.prototype = { build$1(context) { @@ -487306,7 +487771,7 @@ var t1 = this.state; return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].userCompany.company.isModuleEnabled$1(element); }, - $signature: 267 + $signature: 246 }; A.EntityTopFilter_build_closure0.prototype = { call$0() { @@ -487370,7 +487835,7 @@ else A.viewEntitiesByType(value, type$.nullable_BaseEntity._as(t1), 0); }, - $signature: 268 + $signature: 263 }; A.EntityTopFilter_build__closure.prototype = { call$1(context) { @@ -487388,7 +487853,7 @@ var t1 = this.state; return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].userCompany.company.isModuleEnabled$1(element); }, - $signature: 267 + $signature: 246 }; A.EntityTopFilter_build___closure0.prototype = { call$1(type) { @@ -487510,7 +487975,7 @@ t3 = t3 ? _null : new A.EntityTopFilterHeader_build__closure1(_this.filterEntity, action); return A.OutlinedButton$(new A.IconText(label, t2, t4, _null, false, _null), _null, t3, t1); }, - $signature: 457 + $signature: 470 }; A.EntityTopFilterHeader_build__closure1.prototype = { call$0() { @@ -487529,13 +487994,13 @@ t1.toString; return A.PopupMenuButton$(new A.Padding(B.EdgeInsets_8_0_8_0, A.Row$(A._setArrayType([A.Text$(t1, _null, _null, _null, _null, _null, _this.textStyle, _null, _null, _null), new A.SizedBox(4, _null, _null, _null), A.Icon$(B.IconData_57496_MaterialIcons_null_false, _this.state.get$headerTextColor(), _null, _null)], type$.JSArray_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, new A.EntityTopFilterHeader_build__closure(_this.entityActions, remaining), new A.EntityTopFilterHeader_build__closure0(_this.filterEntity), B.EdgeInsets_8_8_8_8, _null, type$.EntityAction); }, - $signature: 460 + $signature: 469 }; A.EntityTopFilterHeader_build__closure0.prototype = { call$1(action) { A.handleEntitiesActions(A._setArrayType([this.filterEntity], type$.JSArray_BaseEntity), action, false); }, - $signature: 347 + $signature: 289 }; A.EntityTopFilterHeader_build__closure.prototype = { call$1(context) { @@ -487545,7 +488010,7 @@ t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PopupMenuItem>"); return A.List_List$of(new A.MappedListIterable(t1, new A.EntityTopFilterHeader_build___closure(context), t2), true, t2._eval$1("ListIterable.E")); }, - $signature: 475 + $signature: 466 }; A.EntityTopFilterHeader_build___closure.prototype = { call$1(action) { @@ -487556,7 +488021,7 @@ t1.toString; return A.PopupMenuItem$(A.Row$(A._setArrayType([t2, new A.SizedBox(16, _null, _null, _null), A.Text$(t1.lookup$1(action.toString$0(0)), _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), action, type$.EntityAction); }, - $signature: 476 + $signature: 465 }; A.EntityTopFilterHeader_build_closure4.prototype = { call$0() { @@ -487725,7 +488190,7 @@ t2 = A.instanceType(t4)._eval$1("MappedListIterable<1,Container>"); return A.ToggleButtons$(_null, A.List_List$of(new A.MappedListIterable(t4, new A.AppToggleButtons_build__closure(t1), t2), true, t2._eval$1("ListIterable.E")), _null, _null, isSelected, new A.AppToggleButtons_build__closure0(t3), true, _null, _null); }, - $signature: 681 + $signature: 680 }; A.AppToggleButtons_build__closure.prototype = { call$1(label) { @@ -487739,7 +488204,7 @@ call$1(index) { return this.$this.onTabChanged.call$1(index); }, - $signature: 75 + $signature: 76 }; A.BoolDropdownButton.prototype = { build$1(context) { @@ -487895,7 +488360,7 @@ t1 = null; return t1; }, - $signature: 150 + $signature: 142 }; A.FormColorPicker.prototype = { createState$0() { @@ -488045,7 +488510,7 @@ t3.toString; return A.AlertDialog$(A._setArrayType([t5, A.TextButton$(false, A.Text$(J.$index$asx(t3, "done").toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, new A._FormColorPickerState__showPicker__closure1(t1, context), _null)], type$.JSArray_Widget), _null, _null, t2, _null, _null, _null); }, - $signature: 167 + $signature: 155 }; A._FormColorPickerState__showPicker__closure.prototype = { call$1(color) { @@ -488180,7 +488645,7 @@ if (t1 != null) t1.call$1(t3 ? "yes" : "no"); }, - $signature: 115 + $signature: 112 }; A._CustomFieldState_build_closure0.prototype = { call$2(date, _) { @@ -488203,7 +488668,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(option, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, option, type$.String); }, - $signature: 41 + $signature: 42 }; A._CustomFieldState_build_closure2.prototype = { call$1(value) { @@ -488663,7 +489128,7 @@ call$1(val) { return val == null || this.$this._widget.validator == null ? null : this.$this._widget.validator.call$1(val); }, - $signature: 150 + $signature: 142 }; A._DecoratedFormFieldState_build_closure0.prototype = { call$1(value) { @@ -488748,14 +489213,14 @@ t1 = false; return t1 || designId === t2.initialValue; }, - $signature: 11 + $signature: 12 }; A.DesignPicker_build_closure0.prototype = { call$1(value) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.designState.map._map$_map.$index(0, value).name, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.String); }, - $signature: 41 + $signature: 42 }; A.DiscountField.prototype = { build$1(context) { @@ -488916,7 +489381,7 @@ t1._duration_picker$_textController.set$text(0, A.formatDuration(duration, true)); t1._widget.onSelected$1(duration); }, - $signature: 75 + $signature: 76 }; A.DynamicSelector.prototype = { build$1(context) { @@ -488970,7 +489435,7 @@ } return A.DropdownMenuItem$(A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, entityId, type$.String); }, - $signature: 438 + $signature: 385 }; A.DynamicSelector_build_closure1.prototype = { call$1(entity) { @@ -488979,7 +489444,7 @@ t1 = ""; return this.$this.onChanged.call$1(t1); }, - $signature: 67 + $signature: 64 }; A.GrowableFormField.prototype = { createState$0() { @@ -489098,7 +489563,7 @@ options = A._setArrayType(["all_user_notifications"], t1); this.$this.onChanged.call$2("email", options); }, - $signature: 40 + $signature: 38 }; A.NotificationSettings_build_closure0.prototype = { call$1(eventType) { @@ -489140,7 +489605,7 @@ } return true; }, - $signature: 11 + $signature: 12 }; A.NotificationSettings_build_closure1.prototype = { call$1(eventType) { @@ -489228,7 +489693,7 @@ } this.$this.onChanged.call$2("email", options); }, - $signature: 40 + $signature: 38 }; A._NotificationSelector.prototype = { build$1(context) { @@ -489440,7 +489905,7 @@ t1 = ""; this.$this.onChanged.call$1(t1); }, - $signature: 52 + $signature: 53 }; A.ProjectPicker_build_closure.prototype = { call$2(completer, $name) { @@ -489450,7 +489915,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.SaveProjectRequest(completer, t1)); }, - $signature: 164 + $signature: 160 }; A.ProjectPicker_build__closure.prototype = { call$1(b) { @@ -489458,7 +489923,7 @@ b.get$_project_model$_$this()._project_model$_clientId = this.$this.clientId; return b; }, - $signature: 196 + $signature: 201 }; A.SaveCancelButtons.prototype = { build$1(context) { @@ -489491,7 +489956,7 @@ t3 = false; return new A.AppTextButton(t2, t1.isEnabled || t1.isCancelEnabled ? new A.SaveCancelButtons_build__closure0(t1, context) : null, t3, null, null); }, - $signature: 360 + $signature: 376 }; A.SaveCancelButtons_build__closure0.prototype = { call$0() { @@ -489515,7 +489980,7 @@ t3 = t1.isEnabled ? new A.SaveCancelButtons_build__closure(t1, context) : null; return new A.AppTextButton(t2, t3, t1.isHeader, null, null); }, - $signature: 360 + $signature: 376 }; A.SaveCancelButtons_build__closure.prototype = { call$0() { @@ -489641,7 +490106,7 @@ t1 = t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].userCompany; return A.MediaQuery$(child, A.InheritedModel_inheritFrom(context, null, type$.MediaQuery).data.copyWith$1$alwaysUse24HourFormat(t1.company.settings.enableMilitaryTime), null); }, - $signature: 567 + $signature: 584 }; A._TimePickerState_build_closure.prototype = { call$0() { @@ -489720,13 +490185,13 @@ call$1(element) { return element.length !== 0; }, - $signature: 11 + $signature: 12 }; A._TimePickerState_build__closure0.prototype = { call$1(element) { return element.length !== 0; }, - $signature: 11 + $signature: 12 }; A._TimePickerState_build__closure1.prototype = { call$0() { @@ -489770,7 +490235,7 @@ call$1(val) { return B.JSString_methods.trim$0(val == null ? "" : val).length === 0 ? A.Localizations_of(this.context, B.Type_AppLocalization_KyD, type$.AppLocalization).get$pleaseSelectAVendor() : null; }, - $signature: 150 + $signature: 142 }; A.VendorPicker_build_closure.prototype = { call$2(completer, $name) { @@ -489779,7 +490244,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.SaveVendorRequest(completer, t1)); }, - $signature: 164 + $signature: 160 }; A.VendorPicker_build__closure.prototype = { call$1(b) { @@ -489840,7 +490305,7 @@ var _null = null; return A.IconButton$(_null, _null, _null, _null, A.Icon$(B.IconData_57706_MaterialIcons_null_false, _null, _null, _null), _null, new A.HistoryDrawer_build__closure(context), _null, _null, _null, _null, _null); }, - $signature: 591 + $signature: 593 }; A.HistoryDrawer_build__closure.prototype = { call$0() { @@ -490216,23 +490681,20 @@ return A.Column$(t6, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, _buildPreview$1(context) { - var t1, t2, t3, _this = this, _null = null; + var t1, t2, _this = this, _null = null; if (_this._invoice_email_view$_bodyController._change_notifier$_value.text.length === 0) return new A.SizedBox(_null, _null, _null, _null); - t1 = A._setArrayType([], type$.JSArray_Widget); - if (_this._invoice_email_view$_isLoading) - t1.push(A.LinearProgressIndicator$()); - t2 = A.supportsInlineBrowser(); - t3 = _this._invoice_email_view$_subjectPreview; - if (t2) { - t2 = _this._invoice_email_view$_isLoading; - t1.push(new A.EmailPreview(t3, _this._invoice_email_view$_emailPreview, t2, _null)); + t1 = A.supportsInlineBrowser(); + t2 = _this._invoice_email_view$_subjectPreview; + if (t1) { + t1 = _this._invoice_email_view$_isLoading; + t1 = new A.EmailPreview(t2, _this._invoice_email_view$_emailPreview, t1, _null); } else - t1.push(A.IgnorePointer$(new A.ExampleEditor("### " + t3 + "\n\n\n" + A.convert(_this._invoice_email_view$_bodyPreview), _null), true, _null)); - return A.Container$(_null, new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t1, _null), B.Clip_0, B.Color_4294967295, _null, _null, _null, 1 / 0, _null, _null, _null, _null, _null, _null); + t1 = A.IgnorePointer$(new A.ExampleEditor("### " + t2 + "\n\n\n" + A.convert(_this._invoice_email_view$_bodyPreview), _null, _null), true, _null); + return A.Container$(_null, t1, B.Clip_0, B.Color_4294967295, _null, _null, _null, 1 / 0, _null, _null, _null, _null, _null, _null); }, _buildEdit$1(context) { - var state, t2, enableCustomEmail, t3, t4, t5, t6, t7, t8, _this = this, _null = null, + var state, t2, enableCustomEmail, t3, t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = A.Localizations_of(context, B.Type_AppLocalization_KyD, type$.AppLocalization); t1.toString; state = _this._widget.viewModel.state; @@ -490244,45 +490706,50 @@ enableCustomEmail = true; else enableCustomEmail = true; - t2 = A._setArrayType([], type$.JSArray_Widget); - t3 = !enableCustomEmail; - if (t3) { - t4 = t1.get$customEmailsDisabledHelp(); + t2 = type$.JSArray_Widget; + t3 = A._setArrayType([], t2); + t4 = !enableCustomEmail; + if (t4) { + t5 = t1.get$customEmailsDisabledHelp(); A.isApple(); - t5 = $.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode); - t5.toString; - t5 = J.$index$asx(t5, "upgrade"); - t2.push(new A.Padding(B.EdgeInsets_0_0_0_10, new A.IconMessage(t4, _null, _null, A.TextButton$(false, A.Text$(t5.toUpperCase(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, _null, new A._InvoiceEmailViewState__buildEdit_closure(state, context), _null), false, _null), _null)); + t6 = $.$get$LocalizationsProvider__localizedValues().$index(0, t1.localeCode); + t6.toString; + t6 = J.$index$asx(t6, "upgrade"); + t3.push(new A.Padding(B.EdgeInsets_0_0_0_10, new A.IconMessage(t5, _null, _null, A.TextButton$(false, A.Text$(t6.toUpperCase(), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null, _null, new A._InvoiceEmailViewState__buildEdit_closure(state, context), _null), false, _null), _null)); } - t4 = state.uiState.selectedCompanyIndex; - t5 = state.userCompanyStates._list$_list; - if (t5[t4].userCompany.company.markdownEmailEnabled) { - t6 = A.StoreProvider_of(context, type$.AppState).__Store__state_A; - t6 === $ && A.throwUnnamedLateFieldNI(); - t6 = t6.prefState; - t7 = t6.darkModeType; - t6 = !(t7 === "system" ? t6.enableDarkModeSystem : t7 === "dark"); + t5 = state.uiState.selectedCompanyIndex; + t6 = state.userCompanyStates._list$_list; + if (t6[t5].userCompany.company.markdownEmailEnabled) { + t7 = A.StoreProvider_of(context, type$.AppState).__Store__state_A; + t7 === $ && A.throwUnnamedLateFieldNI(); + t7 = t7.prefState; + t8 = t7.darkModeType; + t7 = !(t8 === "system" ? t7.enableDarkModeSystem : t8 === "dark"); } else - t6 = false; - t6 = t6 ? B.Color_4294967295 : A.Theme_of(context).colorScheme.background; - t7 = $.$get$LocalizationsProvider__localizedValues(); + t7 = false; + t7 = t7 ? B.Color_4294967295 : A.Theme_of(context).colorScheme.background; + t8 = $.$get$LocalizationsProvider__localizedValues(); t1 = t1.localeCode; - t8 = t7.$index(0, t1); - t8.toString; - t8 = J.$index$asx(t8, "subject"); - t8.toString; - t2.push(new A.ColoredBox(t6, new A.Padding(B.EdgeInsets_24_0_10_16, A.DecoratedFormField$(false, _null, false, _this._invoice_email_view$_subjectController, _null, enableCustomEmail, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t8, _null, _null, false, new A._InvoiceEmailViewState__buildEdit_closure0(_this), _null, _null, true, _null, _null, B.TextAlign_4, _null), _null), _null)); - if (t5[t4].userCompany.company.markdownEmailEnabled) - t2.push(A.Expanded$(new A.ColoredBox(B.Color_4294967295, A.IgnorePointer$(new A.ExampleEditor(_this._rawBodyPreview, _null), t3, _null), _null), 1)); + t9 = t8.$index(0, t1); + t9.toString; + t9 = J.$index$asx(t9, "subject"); + t9.toString; + t3.push(new A.ColoredBox(t7, new A.Padding(B.EdgeInsets_24_0_10_16, A.DecoratedFormField$(false, _null, false, _this._invoice_email_view$_subjectController, _null, enableCustomEmail, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t9, _null, _null, false, new A._InvoiceEmailViewState__buildEdit_closure0(_this), _null, _null, true, _null, _null, B.TextAlign_4, _null), _null), _null)); + t2 = A._setArrayType([], t2); + if (t6[t5].userCompany.company.markdownEmailEnabled) + t2.push(new A.ColoredBox(B.Color_4294967295, A.IgnorePointer$(new A.ExampleEditor(_this._rawBodyPreview, new A._InvoiceEmailViewState__buildEdit_closure1(_this), _null), t4, _null), _null)); else { - t1 = t7.$index(0, t1); + t1 = t8.$index(0, t1); t1.toString; t1 = J.$index$asx(t1, "body"); t1.toString; - t3 = enableCustomEmail ? 6 : 2; - t2.push(new A.Padding(B.EdgeInsets_20_0_20_0, A.DecoratedFormField$(false, _null, false, _this._invoice_email_view$_bodyController, _null, enableCustomEmail, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1, t3, _null, false, new A._InvoiceEmailViewState__buildEdit_closure1(_this), _null, _null, true, _null, _null, B.TextAlign_4, _null), _null)); + t4 = enableCustomEmail ? 6 : 2; + t2.push(new A.Padding(B.EdgeInsets_20_0_20_0, A.DecoratedFormField$(false, _null, false, _this._invoice_email_view$_bodyController, _null, enableCustomEmail, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t1, t4, _null, false, new A._InvoiceEmailViewState__buildEdit_closure2(_this), _null, _null, true, _null, _null, B.TextAlign_4, _null), _null)); } - return A.Column$(t2, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); + if (_this._invoice_email_view$_isLoading) + t2.push(A.LinearProgressIndicator$()); + t3.push(A.Expanded$(new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t2, _null), 1)); + return A.Column$(t3, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, _buildHistory$1(context) { var activities, _null = null, @@ -490423,7 +490890,7 @@ return; t1.setState$1(new A._InvoiceEmailViewState__loadTemplate__closure(t1, subject, body, email, rawBody, this.origSubject, this.origBody, rawSubject)); }, - $signature: 690 + $signature: 689 }; A._InvoiceEmailViewState__loadTemplate__closure.prototype = { call$0() { @@ -490473,7 +490940,7 @@ t2 = this.invitation; return t1 === (this.invoice.entityType === B.EntityType_purchaseOrder ? t2.vendorContactId : t2.clientContactId); }, - $signature: 234 + $signature: 220 }; A._InvoiceEmailViewState__buildTemplateDropdown_closure0.prototype = { call$1(contact) { @@ -490535,7 +491002,7 @@ call$1(context) { return new A.UpgradeDialog(null); }, - $signature: 313 + $signature: 298 }; A._InvoiceEmailViewState__buildEdit_closure0.prototype = { call$1(_) { @@ -490544,6 +491011,17 @@ $signature: 15 }; A._InvoiceEmailViewState__buildEdit_closure1.prototype = { + call$1(value) { + var t1 = this.$this, + t2 = t1._invoice_email_view$_bodyController; + if (B.JSString_methods.trim$0(value) !== B.JSString_methods.trim$0(t2._change_notifier$_value.text)) { + t2.set$text(0, value); + t1._invoice_email_view$_onChanged$0(); + } + }, + $signature: 38 + }; + A._InvoiceEmailViewState__buildEdit_closure2.prototype = { call$1(_) { return this.$this._invoice_email_view$_onChanged$0(); }, @@ -490553,7 +491031,7 @@ call$2(context, index) { return new A.ActivityListTile(this.activities.elementAt$1(0, index), false, null); }, - $signature: 300 + $signature: 310 }; A._InvoiceEmailViewState_build_closure.prototype = { call$1(context) { @@ -490763,7 +491241,7 @@ call$1(id) { return this.taxState.map._map$_map.$index(0, id); }, - $signature: 321 + $signature: 274 }; A._TaxRateDropdownState_didChangeDependencies_closure0.prototype = { call$1(taxRate) { @@ -490771,14 +491249,14 @@ t2 = this.$this._widget; return t1 === t2.initialTaxName && taxRate.rate === t2.initialTaxRate; }, - $signature: 692 + $signature: 691 }; A._TaxRateDropdownState_didChangeDependencies_closure1.prototype = { call$0() { var t1 = this.$this._widget; return A.TaxRateEntity_TaxRateEntity(null, t1.initialTaxName, t1.initialTaxRate, null); }, - $signature: 693 + $signature: 692 }; A._TaxRateDropdownState_build_closure.prototype = { call$1(id) { @@ -490798,13 +491276,13 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A._TaxRateDropdownState_build_closure0.prototype = { call$1(id) { return this.taxState.map._map$_map.$index(0, id); }, - $signature: 321 + $signature: 274 }; A._TaxRateDropdownState_build_closure1.prototype = { call$1(taxRate) { @@ -490812,14 +491290,14 @@ t2 = this.$this._widget; return t1 === t2.initialTaxName && taxRate.rate === t2.initialTaxRate; }, - $signature: 692 + $signature: 691 }; A._TaxRateDropdownState_build_closure2.prototype = { call$0() { var t1 = this.$this._widget; return A.TaxRateEntity_TaxRateEntity(null, t1.initialTaxName, t1.initialTaxRate, null); }, - $signature: 693 + $signature: 692 }; A._TaxRateDropdownState_build_closure4.prototype = { call$1(rate) { @@ -490888,7 +491366,7 @@ var t1 = this.$this; t1.setState$1(new A._LinkTextRelatedEntityState_build__closure(t1)); }, - $signature: 247 + $signature: 240 }; A._LinkTextRelatedEntityState_build__closure.prototype = { call$0() { @@ -491083,7 +491561,7 @@ var t1 = this.$this; t1._debouncer.run$1(new A._ListFilterState_build__closure5(t1, value)); }, - $signature: 40 + $signature: 38 }; A._ListFilterState_build__closure5.prototype = { call$0() { @@ -491108,26 +491586,26 @@ t1._widget.onSelectedState.call$2(t4, false); } }, - $signature: 600 + $signature: 587 }; A._ListFilterState_build__closure2.prototype = { call$1(e) { return !J.contains$1$asx(this.stateFilters._copy_on_write_list$_list, e); }, - $signature: 148 + $signature: 138 }; A._ListFilterState_build__closure3.prototype = { call$1(e) { return !J.contains$1$asx(this.selected._copy_on_write_list$_list, e); }, - $signature: 148 + $signature: 138 }; A._ListFilterState_build_closure3.prototype = { call$1(value) { var _null = null; return A.Text$(this.localization.lookup$1(type$.EntityState._as(value).name), _null, 1, B.TextOverflow_0, _null, _null, _null, _null, _null, _null); }, - $signature: 601 + $signature: 572 }; A._ListFilterState_build_closure2.prototype = { call$1(selected) { @@ -491143,7 +491621,7 @@ } return new A.Align(B.Alignment_m1_0, _null, _null, new A.Padding(new A.EdgeInsets(10, 0, 10, 0), A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 15, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), _null); }, - $signature: 696 + $signature: 695 }; A._ListFilterState_build__closure4.prototype = { call$1(value) { @@ -491168,7 +491646,7 @@ t1._widget.onSelectedStatus.call$2(t4, false); } }, - $signature: 600 + $signature: 587 }; A._ListFilterState_build__closure.prototype = { call$1(e) { @@ -491177,7 +491655,7 @@ type$.EntityStatus._as(e); return !B.JSArray_methods.contains$1(t1, e.get$id(e)); }, - $signature: 148 + $signature: 138 }; A._ListFilterState_build___closure0.prototype = { call$1(e) { @@ -491192,13 +491670,13 @@ type$.EntityStatus._as(e); return !B.JSArray_methods.contains$1(t1, e.get$id(e)); }, - $signature: 148 + $signature: 138 }; A._ListFilterState_build___closure.prototype = { call$1(e) { return J.get$id$x(e); }, - $signature: 218 + $signature: 237 }; A._ListFilterState_build_closure6.prototype = { call$1(value) { @@ -491206,7 +491684,7 @@ type$.EntityStatus._as(value); return A.Text$(this.localization.lookup$1(value.get$name(value)), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, - $signature: 601 + $signature: 572 }; A._ListFilterState_build_closure5.prototype = { call$1(selected) { @@ -491221,7 +491699,7 @@ } return new A.Align(B.Alignment_m1_0, _null, _null, new A.Padding(new A.EdgeInsets(10, 0, 10, 0), A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 15, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null), _null), _null); }, - $signature: 696 + $signature: 695 }; A._ListFilterState_build__closure1.prototype = { call$1(value) { @@ -491367,7 +491845,7 @@ t2.toString; return A.InkWell$(false, _null, true, A.IconButton$(_null, _null, _null, _null, A.Icon$(B.IconData_58332_MaterialIcons_null_false, _null, _null, _null), _null, new A.ListScaffold_build__closure0(context), _null, _null, _null, t2, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1, _null, _null, _null, _null, _null, _null, _null, _null); }, - $signature: 602 + $signature: 565 }; A.ListScaffold_build__closure0.prototype = { call$0() { @@ -492056,7 +492534,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 323 + $signature: 342 }; A.EntityScreens.prototype = { build$1(context) { @@ -492982,13 +493460,13 @@ } else return A.Image$asset("assets/images/icon.png", _null, _null, 38); }, - $signature: 698 + $signature: 697 }; A._MenuDrawerState_build__companyLogo_closure.prototype = { call$1(userCompanyState) { return userCompanyState.userCompany.company.id === this.company.id; }, - $signature: 699 + $signature: 698 }; A._MenuDrawerState_build__companyListItem.prototype = { call$2$showAccentColor(company, showAccentColor) { @@ -493039,14 +493517,14 @@ call$1(userCompanyState) { return userCompanyState.userCompany.company.id === this.company.id; }, - $signature: 699 + $signature: 698 }; A._MenuDrawerState_build__companyListItem_closure2.prototype = { call$1(_) { var t1 = this.$this; return t1.setState$1(new A._MenuDrawerState_build__companyListItem__closure0(t1)); }, - $signature: 132 + $signature: 134 }; A._MenuDrawerState_build__companyListItem__closure0.prototype = { call$0() { @@ -493135,7 +493613,7 @@ t2.push(A.PopupMenuItem$(A.Row$(A._setArrayType([new A.SizedBox(2, _null, _null, _null), t1, new A.SizedBox(15, _null, _null, _null), A.Text$(t3, _null, _null, _null, _null, _null, A.Theme_of(context).textTheme.titleMedium, _null, _null, _null)], type$.JSArray_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), "logout", type$.String)); return t2; }, - $signature: 314 + $signature: 291 }; A._MenuDrawerState_build__closure5.prototype = { call$1(company) { @@ -493178,7 +493656,7 @@ call$1(company) { return company.id === this.companyId; }, - $signature: 680 + $signature: 718 }; A._MenuDrawerState_build_closure3.prototype = { call$1(context) { @@ -493192,7 +493670,7 @@ call$1(company) { return this._companyListItem.call$2$showAccentColor(company, false); }, - $signature: 698 + $signature: 697 }; A._MenuDrawerState_build_closure1.prototype = { call$1(company) { @@ -493248,7 +493726,7 @@ call$1(context) { return new A.AccountSmsVerification(null); }, - $signature: 700 + $signature: 699 }; A._MenuDrawerState_build_closure5.prototype = { call$0() { @@ -493261,7 +493739,7 @@ call$1(context) { return new A.AccountSmsVerification(null); }, - $signature: 700 + $signature: 699 }; A._MenuDrawerState_build_closure6.prototype = { call$0() { @@ -493274,7 +493752,7 @@ call$1(context) { return new A.UserSmsVerification(true, null, null); }, - $signature: 351 + $signature: 371 }; A._MenuDrawerState_build_closure7.prototype = { call$0() { @@ -493287,7 +493765,7 @@ call$1(context) { return new A.UserSmsVerification(false, null, null); }, - $signature: 351 + $signature: 371 }; A._MenuDrawerState_build_closure8.prototype = { call$0() { @@ -493517,7 +493995,7 @@ if (t4) t4 = iconWidget; else - t4 = isLoading ? new A.Padding(B.EdgeInsets_10_0_0_0, new A.SizedBox(22, 22, A.CircularProgressIndicator$(_null, _null, _null, _null, _null, 0, _null, 4, _null, _null), _null), _null) : A.FocusTraversalGroup$(A.IconButton$(_null, textColor, _null, _null, A.Icon$(_this._widget.icon, _null, _null, _null), _null, onTap, _null, _null, _null, _null, _null), false, _null); + t4 = isLoading ? new A.Padding(B.EdgeInsets_10_0_8_0, new A.SizedBox(22, 22, A.CircularProgressIndicator$(_null, t2.get$accentColor(), _null, _null, _null, 0, _null, 4, _null, _null), _null), _null) : A.FocusTraversalGroup$(A.IconButton$(_null, textColor, _null, _null, A.Icon$(_this._widget.icon, _null, _null, _null), _null, onTap, _null, _null, _null, _null, _null), false, _null); t5 = _this._widget.title; t5 = A.Text$(t5, new A.ValueKey("menu_" + t5, type$.ValueKey_String), _null, _null, _null, _null, A.Theme_of(context).textTheme.bodyLarge.copyWith$2$color$fontSize(textColor, 14), _null, _null, _null); t1 = A.StoreProvider_of(context, t1).__Store__state_A; @@ -493611,7 +494089,7 @@ var t1 = this.$this; return t1.setState$1(new A._DrawerTileState_build__closure0(t1)); }, - $signature: 132 + $signature: 134 }; A._DrawerTileState_build__closure0.prototype = { call$0() { @@ -494089,7 +494567,7 @@ t1.push(A.PopupMenuItem$(t5, t3, t6)); return t1; }, - $signature: 314 + $signature: 291 }; A.SidebarFooterCollapsed_build_closure1.prototype = { call$0() { @@ -494201,7 +494679,7 @@ t10.push(A.Wrap$(B.WrapAlignment_2, A._setArrayType([A.IconButton$(_null, _null, _null, _null, A.Icon$(B._MdiIconData_SXh, _null, _null, _null), _null, new A._showAbout__closure8(), _null, _null, _null, "Twitter", _null), A.IconButton$(_null, _null, _null, _null, A.Icon$(B._MdiIconData_sUr, _null, _null, _null), _null, new A._showAbout__closure9(), _null, _null, _null, "Facebook", _null), A.IconButton$(_null, _null, _null, _null, A.Icon$(B._MdiIconData_aAu, _null, _null, _null), _null, new A._showAbout__closure10(), _null, _null, _null, "GitHub", _null), A.IconButton$(_null, _null, _null, _null, A.Icon$(B._MdiIconData_7vC, _null, _null, _null), _null, new A._showAbout__closure11(), _null, _null, _null, "YouTube", _null), A.IconButton$(_null, _null, _null, _null, A.Icon$(B._MdiIconData_AmO, _null, _null, _null), _null, new A._showAbout__closure12(), _null, _null, _null, "Slack", _null)], t8), B.Clip_0, B.WrapCrossAlignment_0, 0)); return A.PointerInterceptor$(A.AlertDialog$(t7, _null, _null, A.SingleChildScrollView$(A.Column$(t10, B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null, B.DragStartBehavior_1, _null, _null, _null, _null, _null, false, B.Axis_1), _null, _null, _null)); }, - $signature: 703 + $signature: 702 }; A._showAbout__closure.prototype = { call$0() { @@ -494255,7 +494733,7 @@ call$1(context) { return new A.UpgradeDialog(null); }, - $signature: 313 + $signature: 298 }; A._showAbout__closure3.prototype = { call$0() { @@ -494288,7 +494766,7 @@ t3.toString; return A.AlertDialog$(t4, _null, _null, A.Column$(A._setArrayType([t1, new A.AppButton(_null, B._MdiIconData_MO9, "Windows", new A._showAbout____closure1(), _null, _null), new A.AppButton(_null, B._MdiIconData_7T10, "macOS", new A._showAbout____closure2(), _null, _null), new A.AppButton(_null, B._MdiIconData_ifn, "Linux", new A._showAbout____closure3(), _null, _null), new A.Padding(B.EdgeInsets_0_30_0_0, A.Text$(t3, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new A.AppButton(_null, B._MdiIconData_7T10, "iOS", new A._showAbout____closure4(), _null, _null), new A.AppButton(_null, B._MdiIconData_7T11, "Android", new A._showAbout____closure5(), _null, _null), new A.AppButton(_null, B._MdiIconData_7T11, "F-Droid", new A._showAbout____closure6(), _null, _null)], t5), B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null, _null, _null); }, - $signature: 167 + $signature: 155 }; A._showAbout____closure.prototype = { call$0() { @@ -494305,7 +494783,7 @@ t2 = type$.JSArray_Widget; return A.AlertDialog$(A._setArrayType([A.TextButton$(false, A.Text$(J.$index$asx(t1, "close").toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, new A._showAbout______closure(context), _null)], t2), _null, _null, A.Column$(A._setArrayType([A.Text$("Backend", _null, _null, _null, _null, _null, _null, _null, _null, _null), new A.AppButton(_null, B._MdiIconData_id2, "Laravel/PHP", new A._showAbout______closure0(), _null, _null), new A.Padding(B.EdgeInsets_0_30_0_0, A.Text$("Frontend", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new A.AppButton(_null, B._MdiIconData_7T1, "Flutter/Dart", new A._showAbout______closure1(), _null, _null), new A.AppButton(_null, B._MdiIconData_43h, "Storefront SDK", new A._showAbout______closure2(), _null, _null)], t2), B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null, _null, _null); }, - $signature: 167 + $signature: 155 }; A._showAbout______closure.prototype = { call$0() { @@ -494317,19 +494795,19 @@ call$0() { return A.launchUrl(A.Uri_parse("https://github.com/invoiceninja/invoiceninja/tree/v5-stable", 0, null)); }, - $signature: 65 + $signature: 63 }; A._showAbout______closure1.prototype = { call$0() { return A.launchUrl(A.Uri_parse("https://github.com/invoiceninja/admin-portal", 0, null)); }, - $signature: 65 + $signature: 63 }; A._showAbout______closure2.prototype = { call$0() { return A.launchUrl(A.Uri_parse("https://pub.dev/packages/invoiceninja", 0, null)); }, - $signature: 65 + $signature: 63 }; A._showAbout____closure0.prototype = { call$0() { @@ -494341,43 +494819,43 @@ call$0() { return A.launchUrl(A.Uri_parse(string$.https_asm, 0, null)); }, - $signature: 65 + $signature: 63 }; A._showAbout____closure2.prototype = { call$0() { return A.launchUrl(A.Uri_parse("https://apps.apple.com/app/id1503970375", 0, null)); }, - $signature: 65 + $signature: 63 }; A._showAbout____closure3.prototype = { call$0() { return A.launchUrl(A.Uri_parse("https://snapcraft.io/invoiceninja", 0, null)); }, - $signature: 65 + $signature: 63 }; A._showAbout____closure4.prototype = { call$0() { return A.launchUrl(A.Uri_parse(string$.https_asa, 0, null)); }, - $signature: 65 + $signature: 63 }; A._showAbout____closure5.prototype = { call$0() { return A.launchUrl(A.Uri_parse(string$.https_pl, 0, null)); }, - $signature: 65 + $signature: 63 }; A._showAbout____closure6.prototype = { call$0() { return A.launchUrl(A.Uri_parse("https://f-droid.org/packages/com.invoiceninja.app", 0, null)); }, - $signature: 65 + $signature: 63 }; A._showAbout__closure4.prototype = { call$0() { return A.launchUrl(A.Uri_parse(string$.https_g, 0, null)); }, - $signature: 65 + $signature: 63 }; A._showAbout__closure5.prototype = { call$0() { @@ -494549,7 +495027,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 606 + $signature: 546 }; A._ContactUsDialogState__sendMessage__closure0.prototype = { call$0() { @@ -494678,7 +495156,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 609 + $signature: 535 }; A.MenuDrawerVM_fromStore_closure.prototype = { call$3(context, index, company) { @@ -494797,7 +495275,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 609 + $signature: 535 }; A.MenuDrawerVM_fromStore___closure.prototype = { call$1(_) { @@ -494810,7 +495288,7 @@ call$1(context) { return A.SimpleDialog$(A._setArrayType([new A.LoadingDialog(null)], type$.JSArray_Widget), null); }, - $signature: 182 + $signature: 190 }; A._TheState.prototype = {}; A._theState_closure.prototype = { @@ -494861,7 +495339,7 @@ A.Theme_of(t2); t1.setState$1(new A._DropDownMultiSelectState_initState__closure()); }, - $signature: 12 + $signature: 11 }; A._DropDownMultiSelectState_initState__closure.prototype = { call$0() { @@ -494907,7 +495385,7 @@ } return t1; }, - $signature: 141 + $signature: 151 }; A._DropDownMultiSelectState_build___closure2.prototype = { call$1(e) { @@ -494929,7 +495407,7 @@ call$2(a, b) { return a + " , " + b; }, - $signature: 536 + $signature: 476 }; A._DropDownMultiSelectState_build__closure1.prototype = { call$1(x) { @@ -494951,7 +495429,7 @@ var _null = null; return A.DropdownMenuItem$(A.Container$(_null, _null, B.Clip_0, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, type$.dynamic); }, - $signature: 706 + $signature: 705 }; A._DropDownMultiSelectState_build__closure0.prototype = { call$1(x) { @@ -494960,7 +495438,7 @@ t1._widget.toString; return A.DropdownMenuItem$(t2, new A._DropDownMultiSelectState_build___closure1(t1, x), x, type$.dynamic); }, - $signature: 706 + $signature: 705 }; A._DropDownMultiSelectState_build___closure0.prototype = { call$0() { @@ -494990,7 +495468,7 @@ t1._widget.onChanged$1(ns); } }, - $signature: 188 + $signature: 175 }; A._DropDownMultiSelectState_build___closure1.prototype = { call$0() { @@ -495040,7 +495518,7 @@ t1 = null; return t1; }, - $signature: 150 + $signature: 142 }; A.PortalLinkStyle.prototype = { _enumToString$0() { @@ -495110,7 +495588,7 @@ call$0() { return A.launchUrl(A.Uri_parse(this._box_0.viewLinkWithHash, 0, null)); }, - $signature: 65 + $signature: 63 }; A.PortalLinks_build_closure0.prototype = { call$0() { @@ -495154,7 +495632,7 @@ t1.toString; return A._setArrayType([t4, A.PopupMenuItem$(new A.IconText(t3, B.IconData_57744_MaterialIcons_null_false, _null, _null, false, _null), t1, t5)], type$.JSArray_PopupMenuEntry_String); }, - $signature: 314 + $signature: 291 }; A.PortalLinks_build_closure2.prototype = { call$1(value) { @@ -495831,7 +496309,7 @@ call$1(duration) { this.$this._sendCode$0(); }, - $signature: 12 + $signature: 11 }; A._UserSmsVerificationState__sendCode_closure.prototype = { call$0() { @@ -495975,14 +496453,14 @@ call$1(log) { return log.typeId !== 800; }, - $signature: 707 + $signature: 706 }; A._SystemLogViewerState_build_closure2.prototype = { call$2(index, isExpanded) { var t1 = this.$this; t1.setState$1(new A._SystemLogViewerState_build__closure(this._box_0, t1, index, isExpanded)); }, - $signature: 708 + $signature: 707 }; A._SystemLogViewerState_build__closure.prototype = { call$0() { @@ -495995,7 +496473,7 @@ call$1(systemLog) { return systemLog.eventId >= 20; }, - $signature: 707 + $signature: 706 }; A._SystemLogViewerState_build_closure1.prototype = { call$1(systemLog) { @@ -496296,7 +496774,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$("" + value, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.int); }, - $signature: 191 + $signature: 192 }; A.AppPaginatedDataTableState_build_closure0.prototype = { call$2(context, constraints) { @@ -496445,7 +496923,7 @@ A.handleEntitiesActions(A._setArrayType([this.entity], type$.JSArray_BaseEntity), action, false); return null; }, - $signature: 74 + $signature: 73 }; A.EntityDataTableSource_getRow_closure3.prototype = { call$0() { @@ -496673,13 +497151,13 @@ call$1(entity) { return A.selectEntity(entity, false, false); }, - $signature: 153 + $signature: 157 }; A._EntityListState_build_closure.prototype = { call$1(duration) { A.viewEntityById(false, this.entityId, this.entityType, null, false, true); }, - $signature: 12 + $signature: 11 }; A._EntityListState_build_closure6.prototype = { call$0() { @@ -496813,7 +497291,7 @@ var _null = null; return index === 0 || index === J.get$length$asx(this.entityList) ? new A.SizedBox(_null, _null, _null, _null) : new A.ListDivider(_null); }, - $signature: 104 + $signature: 106 }; A._EntityListState_build__closure1.prototype = { call$2(context, index) { @@ -496823,7 +497301,7 @@ else return this.$this._widget.itemBuilder$2(context, index - 1); }, - $signature: 104 + $signature: 106 }; A._EntityListState_build__closure3.prototype = { call$1(_) { @@ -496862,7 +497340,7 @@ call$1(entityId) { return type$.BaseEntity._as(this.entityMap._map$_map.$index(0, entityId)); }, - $signature: 710 + $signature: 709 }; A._EntityListState_build___closure0.prototype = { call$1(invoice) { @@ -496871,7 +497349,7 @@ t1 = t2 != null && B.JSArray_methods.contains$1(t2._list$_list, t1); return this.value !== t1; }, - $signature: 234 + $signature: 220 }; A._EntityListState_build__closure5.prototype = { call$1(field) { @@ -496890,7 +497368,7 @@ call$2(columnIndex, ascending) { this.$this._widget.onSortColumn$1(this.field); }, - $signature: 708 + $signature: 707 }; A._EntityListState_build__closure6.prototype = { call$1(row) { @@ -496901,7 +497379,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.UpdateLastHistory(t1)); }, - $signature: 75 + $signature: 76 }; A._EntityListState_build__closure7.prototype = { call$1(value) { @@ -496911,7 +497389,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(t1); }, - $signature: 859 + $signature: 657 }; A._EntityListState_build_closure0.prototype = { call$1(entityId) { @@ -496938,7 +497416,7 @@ call$1(entityId) { return type$.BaseEntity._as(this.entityMap._map$_map.$index(0, entityId)); }, - $signature: 710 + $signature: 709 }; A._EntityListState_build_closure2.prototype = { call$1(action) { @@ -496948,7 +497426,7 @@ t2.toString; return A.OutlinedButton$(new A.IconText(t2.lookup$1(action.toString$0(0)), t1, _null, _null, false, _null), _null, new A._EntityListState_build__closure12(this.$this, this.entities, action), _null); }, - $signature: 457 + $signature: 470 }; A._EntityListState_build__closure12.prototype = { call$0() { @@ -496972,14 +497450,14 @@ t1 = A.Text$(t1, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, (t4 ? t2.enableDarkModeSystem : t3 === "dark") ? B.Color_4294967295 : B.Color_4278190080, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); return A.PopupMenuButton$(new A.Padding(B.EdgeInsets_8_0_8_0, A.Row$(A._setArrayType([t1, new A.SizedBox(4, _null, _null, _null), A.Icon$(B.IconData_57496_MaterialIcons_null_false, (t4 ? t2.enableDarkModeSystem : t3 === "dark") ? B.Color_4294967295 : B.Color_4278190080, _null, _null)], type$.JSArray_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null, true, _null, _null, new A._EntityListState_build__closure10(_this.actions, remaining), new A._EntityListState_build__closure11(_this.$this, _this.entities), B.EdgeInsets_8_8_8_8, _null, type$.EntityAction); }, - $signature: 460 + $signature: 469 }; A._EntityListState_build__closure11.prototype = { call$1(action) { A.handleEntitiesActions(this.entities, action, false); this.$this._widget.onClearMultiselect$0(); }, - $signature: 347 + $signature: 289 }; A._EntityListState_build__closure10.prototype = { call$1(context) { @@ -496989,7 +497467,7 @@ t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,PopupMenuItem>"); return A.List_List$of(new A.MappedListIterable(t1, new A._EntityListState_build___closure2(context), t2), true, t2._eval$1("ListIterable.E")); }, - $signature: 475 + $signature: 466 }; A._EntityListState_build___closure2.prototype = { call$1(action) { @@ -497000,7 +497478,7 @@ t1.toString; return A.PopupMenuItem$(A.Row$(A._setArrayType([t2, new A.SizedBox(16, _null, _null, _null), A.Text$(t1.lookup$1(action.toString$0(0)), _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), action, type$.EntityAction); }, - $signature: 476 + $signature: 465 }; A._EntityListState_build_closure5.prototype = { call$1(context) { @@ -497035,13 +497513,13 @@ call$1(_) { return this.$this._widget.onClearMultiselect$0(); }, - $signature: 103 + $signature: 101 }; A._EntityListState_build_closure4.prototype = { call$1(_) { return this.$this._widget.onClearMultiselect$0(); }, - $signature: 53 + $signature: 52 }; A.UpgradeDialog.prototype = { createState$0() { @@ -497671,7 +498149,7 @@ call$2(a, b) { return B.JSString_methods.compareTo$1(a, b); }, - $signature: 26 + $signature: 25 }; A._VariableGrid_build_closure0.prototype = { call$2(context, constraints) { @@ -497679,7 +498157,7 @@ t2 = A._arrayInstanceType(t1)._eval$1("MappedListIterable<1,TextButton>"); return A.GridView$count((constraints.maxWidth / 2 - 8) / 50, A.List_List$of(new A.MappedListIterable(t1, new A._VariableGrid_build__closure(context), t2), true, t2._eval$1("ListIterable.E")), 2, 0, 0, new A.EdgeInsets(6, 6, 6, 6), null, true, true); }, - $signature: 433 + $signature: 393 }; A._VariableGrid_build__closure.prototype = { call$1(field) { @@ -497884,7 +498362,7 @@ t1.toString; return new A.AppTextButton(t1, isDisabled ? _null : new A.ViewScaffold_build__closure(this.$this), true, _null, _null); }, - $signature: 360 + $signature: 376 }; A.ViewScaffold_build__closure.prototype = { call$0() { @@ -497897,7 +498375,7 @@ A.handleEntitiesActions(A._setArrayType([this.$this.entity], type$.JSArray_BaseEntity), action, true); return null; }, - $signature: 74 + $signature: 73 }; A.WebSessionTimeout.prototype = { createState$0() { @@ -497940,7 +498418,7 @@ t1[0].call$1(new A.UserLogout()); } }, - $signature: 229 + $signature: 215 }; A.WebSocketRefresh.prototype = { createState$0() { @@ -497991,7 +498469,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.LoadStateRequest(this.context)); }, - $signature: 272 + $signature: 333 }; A.InitScreen_build_closure.prototype = { call$2(context, store) { @@ -498673,7 +499151,7 @@ t3.toString; return A.AlertDialog$(A._setArrayType([new A.Padding(B.EdgeInsets_0_0_8_0, A.TextButton$(false, A.Text$(t3, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, new A._LoginState__submitSignUpForm__closure1(context), _null), _null)], type$.JSArray_Widget), _null, _null, t4, _null, _null, t1); }, - $signature: 167 + $signature: 155 }; A._LoginState__submitSignUpForm__closure1.prototype = { call$0() { @@ -498775,7 +499253,7 @@ call$1(context) { return new A.UserSmsVerification(false, B.JSString_methods.trim$0(this.$this._login_view$_emailController._change_notifier$_value.text), null); }, - $signature: 351 + $signature: 371 }; A._LoginState_build_closure0.prototype = { call$0() { @@ -499035,7 +499513,7 @@ t1[0].call$1(new A.ViewMainScreen()); } }, - $signature: 12 + $signature: 11 }; A.LoginVM_fromStore__formatApiUrl.prototype = { call$1(url) { @@ -499120,7 +499598,7 @@ }); return A._asyncStartSync($async$call$5$oneTimePassword$secret$url, $async$completer); }, - $signature: 453 + $signature: 521 }; A.LoginVM_fromStore__closure6.prototype = { call$2(idToken, accessToken) { @@ -499147,7 +499625,7 @@ t2.future.then$1$1(0, new A.LoginVM_fromStore___closure2(_this._handleLogin, t3), type$.Null); } }, - $signature: 170 + $signature: 179 }; A.LoginVM_fromStore___closure2.prototype = { call$1(_) { @@ -499224,7 +499702,7 @@ }); return A._asyncStartSync($async$call$3, $async$completer); }, - $signature: 603 + $signature: 491 }; A.LoginVM_fromStore__closure5.prototype = { call$2(idToken, accessToken) { @@ -499248,7 +499726,7 @@ t2.future.then$1$1(0, new A.LoginVM_fromStore___closure1(_this._handleLogin, t3), type$.Null); } }, - $signature: 170 + $signature: 179 }; A.LoginVM_fromStore___closure1.prototype = { call$1(_) { @@ -499287,7 +499765,7 @@ }); return A._asyncStartSync($async$call$5$oneTimePassword$secret$url, $async$completer); }, - $signature: 453 + $signature: 521 }; A.LoginVM_fromStore__closure3.prototype = { call$2(idToken, accessToken) { @@ -499302,7 +499780,7 @@ t6[0].call$1(new A.OAuthLoginRequest(t1, null, idToken, accessToken, t2, t3, t5, "microsoft", null)); t1.future.then$1$1(0, new A.LoginVM_fromStore___closure0(_this._handleLogin, t4), type$.Null); }, - $signature: 170 + $signature: 179 }; A.LoginVM_fromStore___closure0.prototype = { call$1(_) { @@ -499344,7 +499822,7 @@ }); return A._asyncStartSync($async$call$3, $async$completer); }, - $signature: 603 + $signature: 491 }; A.LoginVM_fromStore__closure1.prototype = { call$2(idToken, accessToken) { @@ -499355,7 +499833,7 @@ t2[0].call$1(new A.OAuthSignUpRequest(t1, idToken, _this.url, accessToken, "microsoft", null, null)); t1.future.then$1$1(0, new A.LoginVM_fromStore___closure(_this._handleLogin, _this.context), type$.Null); }, - $signature: 170 + $signature: 179 }; A.LoginVM_fromStore___closure.prototype = { call$1(_) { @@ -499438,7 +499916,7 @@ }); return A._asyncStartSync($async$call$5$oneTimePassword$secret$url, $async$completer); }, - $signature: 453 + $signature: 521 }; A.LoginVM_fromStore__closure0.prototype = { call$1(_) { @@ -499506,7 +499984,7 @@ }); return A._asyncStartSync($async$call$3, $async$completer); }, - $signature: 603 + $signature: 491 }; A.LoginVM_fromStore__closure.prototype = { call$1(_) { @@ -499968,7 +500446,7 @@ t3.toString; return A.AlertDialog$(t5, _null, _null, A.SingleChildScrollView$(A.Column$(A._setArrayType([t7, t8, t9, new A.SizedBox(_null, 30, _null, _null), t11, t12, A.Row$(A._setArrayType([A.Expanded$(new A.AppButton(_null, B.IconData_58173_MaterialIcons_null_false, J.$index$asx(t3, _s10_).toUpperCase(), new A.BankAccountScreen_connectAccounts__closure2(), _null, _null), 1), new A.SizedBox(16, _null, _null, _null), A.Expanded$(new A.AppButton(_null, B.IconData_58240_MaterialIcons_null_false, t1.get$connect().toUpperCase(), new A.BankAccountScreen_connectAccounts__closure3(t10, context), _null, _null), 1)], t6), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)], t6), B.CrossAxisAlignment_3, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), _null, B.DragStartBehavior_1, _null, _null, _null, _null, _null, false, B.Axis_1), _null, _null, t4); }, - $signature: 167 + $signature: 155 }; A.BankAccountScreen_connectAccounts__closure.prototype = { call$0() { @@ -499980,7 +500458,7 @@ call$0() { return A.launchUrl(A.Uri_parse("https://www.yodlee.com/open-banking/data-connections", 0, null)); }, - $signature: 65 + $signature: 63 }; A.BankAccountScreen_connectAccounts__closure1.prototype = { call$0() { @@ -499992,7 +500470,7 @@ call$0() { return A.launchUrl(A.Uri_parse("https://gocardless.com/bank-account-data/coverage", 0, null)); }, - $signature: 65 + $signature: 63 }; A.BankAccountScreen_connectAccounts__closure3.prototype = { call$0() { @@ -500106,7 +500584,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SortBankAccounts(value)); }, - $signature: 40 + $signature: 38 }; A.BankAccountScreen_build_closure10.prototype = { call$2(state, value) { @@ -500114,7 +500592,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterBankAccountsByState(state)); }, - $signature: 64 + $signature: 66 }; A.BankAccountScreen_build_closure4.prototype = { call$0() { @@ -500334,7 +500812,7 @@ b.get$_bank_account_model$_$this()._bank_account_model$_name = t1; return b; }, - $signature: 266 + $signature: 249 }; A._BankAccountEditState__onChanged_closure0.prototype = { call$0() { @@ -500346,7 +500824,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._BankAccountEditState_build_closure4.prototype = { call$1(_) { @@ -500378,14 +500856,14 @@ call$2(date, _) { return this.viewModel.onChanged.call$1(this.bankAccount.rebuild$1(new A._BankAccountEditState_build__closure0(date))); }, - $signature: 294 + $signature: 280 }; A._BankAccountEditState_build__closure0.prototype = { call$1(b) { b.get$_bank_account_model$_$this()._fromDate = this.date; return b; }, - $signature: 266 + $signature: 249 }; A._BankAccountEditState_build_closure2.prototype = { call$1(value) { @@ -500398,7 +500876,7 @@ b.get$_bank_account_model$_$this()._autoSync = this.value; return b; }, - $signature: 266 + $signature: 249 }; A.BankAccountEditScreen.prototype = { build$1(context) { @@ -500432,7 +500910,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateBankAccount(bankAccount)); }, - $signature: 369 + $signature: 367 }; A.BankAccountEditVM_BankAccountEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -500473,7 +500951,7 @@ t4[0].call$1(new A.SaveBankAccountRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_BankAccountEntity), bankAccount)); return t2.then$1$1(0, new A.BankAccountEditVM_BankAccountEditVM$fromStore___closure(bankAccount, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.BankAccountEditVM_BankAccountEditVM$fromStore___closure0()); }, - $signature: 70 + $signature: 69 }; A.BankAccountEditVM_BankAccountEditVM$fromStore___closure.prototype = { call$1(savedBankAccount) { @@ -500522,7 +501000,7 @@ } else A.viewEntity(false, savedBankAccount, null, false); }, - $signature: 369 + $signature: 367 }; A.BankAccountEditVM_BankAccountEditVM$fromStore___closure0.prototype = { call$1(error) { @@ -500768,7 +501246,7 @@ A.handleEntitiesActions(A._setArrayType([this.$this.client], type$.JSArray_BaseEntity), action, false); return null; }, - $signature: 74 + $signature: 73 }; A.ClientListItem_build__closure5.prototype = { call$0() { @@ -501127,14 +501605,14 @@ call$1(value) { return value !== B.DateRange_allTime; }, - $signature: 255 + $signature: 241 }; A._ClientPdfViewState_build_closure0.prototype = { call$1(dateRange) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(dateRange.name), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, dateRange, type$.DateRange); }, - $signature: 293 + $signature: 285 }; A._ClientPdfViewState_build_closure3.prototype = { call$1(value) { @@ -501155,7 +501633,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.String); }, - $signature: 41 + $signature: 42 }; A._ClientPdfViewState_build_closure5.prototype = { call$1(selected) { @@ -501166,14 +501644,14 @@ t2[0].call$1(t1); this.$this.loadPDF$0(); }, - $signature: 600 + $signature: 587 }; A._ClientPdfViewState_build_closure4.prototype = { call$1(option) { var _null = null; return A.Text$(this.localization.lookup$1(option), _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, 14, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, _null); }, - $signature: 601 + $signature: 572 }; A._ClientPdfViewState_build_closure6.prototype = { call$0() { @@ -501198,7 +501676,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 70 + $signature: 69 }; A._ClientPdfViewState_build_closure7.prototype = { call$0() { @@ -501239,7 +501717,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 70 + $signature: 69 }; A._ClientPdfViewState_build__closure3.prototype = { call$0() { @@ -501253,7 +501731,7 @@ call$1(_) { return this.$this.loadPDF$1$sendEmail(true); }, - $signature: 99 + $signature: 100 }; A._ClientPdfViewState_build_closure8.prototype = { call$0() { @@ -501508,7 +501986,7 @@ call$0() { return A.launchUrl(A.Uri_parse("mailto:" + this.client.get$primaryContact().email, 0, null)); }, - $signature: 65 + $signature: 63 }; A.ClientPresenter_getField_closure0.prototype = { call$1(contact) { @@ -501624,7 +502102,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SortClients(value)); }, - $signature: 40 + $signature: 38 }; A.ClientScreen_build_closure5.prototype = { call$2(state, value) { @@ -501632,7 +502110,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterClientsByState(state)); }, - $signature: 64 + $signature: 66 }; A.ClientScreen_build_closure.prototype = { call$0() { @@ -501793,7 +502271,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._ClientEditState_build_closure0.prototype = { call$1(context) { @@ -501972,7 +502450,7 @@ call$1(country) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new A.ClientEditBillingAddressState_build__closure0(country))); }, - $signature: 67 + $signature: 64 }; A.ClientEditBillingAddressState_build__closure0.prototype = { call$1(b) { @@ -501996,7 +502474,7 @@ call$1(duration) { this.$this.didChangeDependencies$0(); }, - $signature: 12 + $signature: 11 }; A.ClientEditContacts.prototype = { createState$0() { @@ -502069,7 +502547,7 @@ call$1(c) { return c.id === this.contact.id; }, - $signature: 192 + $signature: 172 }; A._ClientEditContactsState_build_closure.prototype = { call$1(contact) { @@ -502087,7 +502565,7 @@ call$1(duration) { this.$this._client_edit_contacts$_showContactEditor$2(this.contact, this.context); }, - $signature: 12 + $signature: 11 }; A._ClientEditContactsState_build_closure1.prototype = { call$0() { @@ -502292,7 +502770,7 @@ b.get$_client_model$_$this()._client_model$_customValue4 = t1; return b; }, - $signature: 364 + $signature: 360 }; A.ContactEditDetailsState__onChanged_closure0.prototype = { call$0() { @@ -502414,14 +502892,14 @@ b.get$_client_model$_$this()._client_model$_sendEmail = this.value; return b; }, - $signature: 364 + $signature: 360 }; A.ContactEditDetailsState_build__closure1.prototype = { call$1(b) { b.get$_client_model$_$this()._client_model$_sendEmail = this.value; return b; }, - $signature: 364 + $signature: 360 }; A.ContactEditDetailsState_build_closure13.prototype = { call$0() { @@ -502486,7 +502964,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.DeleteContact(index)); }, - $signature: 393 + $signature: 361 }; A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure1.prototype = { call$1(_) { @@ -502749,7 +503227,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(classification), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, classification, type$.String); }, - $signature: 41 + $signature: 42 }; A.ClientEditDetailsState_build_closure4.prototype = { call$1(value) { @@ -502921,7 +503399,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.state.staticState.sizeMap._map$_map.$index(0, sizeId).name, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, sizeId, type$.String); }, - $signature: 438 + $signature: 385 }; A.ClientEditNotesState_build_closure0.prototype = { call$1(sizeId) { @@ -502940,7 +503418,7 @@ call$1(industry) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new A.ClientEditNotesState_build__closure(industry))); }, - $signature: 67 + $signature: 64 }; A.ClientEditNotesState_build__closure.prototype = { call$1(b) { @@ -503101,7 +503579,7 @@ call$1(currency) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new A.ClientEditSettingsState_build__closure3(currency))); }, - $signature: 67 + $signature: 64 }; A.ClientEditSettingsState_build__closure3.prototype = { call$1(b) { @@ -503119,7 +503597,7 @@ call$1(language) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new A.ClientEditSettingsState_build__closure2(language))); }, - $signature: 67 + $signature: 64 }; A.ClientEditSettingsState_build__closure2.prototype = { call$1(b) { @@ -503142,7 +503620,7 @@ t2 = t1.numDays; return A.DropdownMenuItem$(A.Text$(t2 === 0 ? this.localization.get$dueOnReceipt() : t1.name, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, B.JSInt_methods.toString$0(t2), type$.String); }, - $signature: 41 + $signature: 42 }; A.ClientEditSettingsState_build_closure2.prototype = { call$1(numDays) { @@ -503169,7 +503647,7 @@ t2 = t1.numDays; return A.DropdownMenuItem$(A.Text$(t2 === 0 ? this.localization.get$dueOnReceipt() : t1.name, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, B.JSInt_methods.toString$0(t2), type$.String); }, - $signature: 41 + $signature: 42 }; A.ClientEditSettingsState_build_closure4.prototype = { call$1(numDays) { @@ -503347,7 +503825,7 @@ call$1(country) { return this.viewModel.onChanged.call$1(this.client.rebuild$1(new A.ClientEditShippingAddressState_build__closure0(country))); }, - $signature: 67 + $signature: 64 }; A.ClientEditShippingAddressState_build__closure0.prototype = { call$1(b) { @@ -503371,7 +503849,7 @@ call$1(duration) { this.$this.didChangeDependencies$0(); }, - $signature: 12 + $signature: 11 }; A.ClientEditScreen.prototype = { build$1(context) { @@ -503501,7 +503979,7 @@ t3[0].call$1(new A.SaveClientRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_ClientEntity), client)); return t2.then$1$1(0, new A.ClientEditVM_ClientEditVM$fromStore___closure0(client, t4, this.state, t1, $navigator), type$.Null).catchError$1(new A.ClientEditVM_ClientEditVM$fromStore___closure1()); }, - $signature: 136 + $signature: 133 }; A.ClientEditVM_ClientEditVM$fromStore___closure.prototype = { call$1(context) { @@ -503554,7 +504032,7 @@ A.viewEntity(false, savedClient, null, true); } }, - $signature: 311 + $signature: 317 }; A.ClientEditVM_ClientEditVM$fromStore___closure1.prototype = { call$1(error) { @@ -503687,7 +504165,7 @@ t7 = type$.JSArray_Widget; return A.Column$(A._setArrayType([A.Expanded$(A.TabBarView$(A._setArrayType([A.RefreshIndicator$(new A.ClientOverview(t3, t1._widget.isFilter, _null), new A._ClientViewState_build__closure(t3, context)), A.RefreshIndicator$(new A.ClientViewDetails(t4, _null), new A._ClientViewState_build__closure0(t3, context)), A.RefreshIndicator$(new A.ClientViewDocuments(t3, new A.ValueKey(t5, t6)), new A._ClientViewState_build__closure1(t3, context)), A.RefreshIndicator$(new A.ClientViewLedger(t3, new A.ValueKey(t5, t6)), new A._ClientViewState_build__closure2(t3, context)), A.RefreshIndicator$(new A.ClientViewActivity(t3, new A.ValueKey(t5, t6)), new A._ClientViewState_build__closure3(t3, context)), A.RefreshIndicator$(new A.ClientViewSystemLogs(t3, new A.ValueKey(t5, t6)), new A._ClientViewState_build__closure4(t3, context))], t7), t2, _null), 1), new A.BottomButtons(this.client, B.EntityAction_viewStatement, B.EntityAction_clientPortal, true, true, _null)], t7), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, - $signature: 270 + $signature: 260 }; A._ClientViewState_build__closure.prototype = { call$0() { @@ -503769,13 +504247,13 @@ call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A._ClientViewActivityState_build_closure.prototype = { call$2(context, index) { return new A.ActivityListTile(this.activities._list$_list[index], true, null); }, - $signature: 300 + $signature: 310 }; A.ClientViewDetails.prototype = { createState$0() { @@ -503897,7 +504375,7 @@ listTiles.push(new A.Padding(B.EdgeInsets_16_16_16_16, A.FutureBuilder$(t2.get$_client_view_details$_launchStatus(), t2._client_view_details$_launched, type$.Null), _null)); return listTiles; }, - $signature: 292 + $signature: 302 }; A._ClientViewDetailsState_build__buildDetailsList_closure.prototype = { call$1(contact) { @@ -504047,7 +504525,7 @@ call$2(path, isPrivate) { return this.$this.viewModel.onUploadDocuments.call$3(this.context, path, isPrivate); }, - $signature: 144 + $signature: 145 }; A.ClientViewDocuments_build_closure0.prototype = { call$0() { @@ -504134,7 +504612,7 @@ t1.$indexSet(0, customerReference, A._setArrayType([gatewayToken], type$.JSArray_GatewayTokenEntity)); } }, - $signature: 730 + $signature: 729 }; A._ClientViewFullwidthState_build_closure0.prototype = { call$2(context, layout) { @@ -504362,7 +504840,7 @@ } return A.Row$(t10, B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); }, - $signature: 525 + $signature: 492 }; A._ClientViewFullwidthState_build__closure.prototype = { call$0() { @@ -504503,7 +504981,7 @@ call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A._ClientViewLedgerState_build_closure0.prototype = { call$2(context, index) { @@ -504553,7 +505031,7 @@ t5 = A.Row$(A._setArrayType([new A.Flexible(1, B.FlexFit_1, t1, _null), new A.Padding(B.EdgeInsets_0_4_0_0, A.DecoratedBox$(new A.Padding(B.EdgeInsets_4_4_4_4, A.Text$(t8 + t3, _null, _null, _null, _null, _null, A.TextStyle$(_null, _null, B.Color_4294967295, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null), B.TextAlign_5, _null, _null), _null), new A.BoxDecoration(t2, _null, _null, t7, _null, _null, B.BoxShape_0), B.DecorationPosition_0), _null)], t5), B.CrossAxisAlignment_2, B.MainAxisAlignment_3, B.MainAxisSize_1, _null); return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(A.getEntityIcon(ledger.get$entityType()), _null, _null, _null), _null, new A._ClientViewLedgerState_build__closure(entity), new A._ClientViewLedgerState_build__closure0(entity), false, _null, _null, _null, t5, _null, t4, _null, _null); }, - $signature: 104 + $signature: 106 }; A._ClientViewLedgerState_build__closure0.prototype = { call$0() { @@ -504881,13 +505359,13 @@ t1.$indexSet(0, customerReference, A._setArrayType([gatewayToken], type$.JSArray_GatewayTokenEntity)); } }, - $signature: 730 + $signature: 729 }; A.ClientOverview_build_closure0.prototype = { call$1(token) { return new A.TokenMeta(token.meta, null); }, - $signature: 732 + $signature: 731 }; A.ClientOverview_build_closure1.prototype = { call$0() { @@ -504922,7 +505400,7 @@ call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A.ClientViewPaymentMethods_build_closure.prototype = { call$2(context, index) { @@ -504945,13 +505423,13 @@ t5 = A.IgnorePointer$(A.IconButton$(_null, _null, _null, _null, A.Icon$(B.IconData_58497_MaterialIcons_null_false, _null, _null, _null), _null, new A.ClientViewPaymentMethods_build__closure1(), _null, _null, _null, _null, _null), true, _null); return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t5, _null, _null, t2, false, _null, _null, _null, t4, _null, t1, t3.containsKey$1(0, customerReference) ? A.IgnorePointer$(A.IconButton$(_null, _null, _null, _null, A.Icon$(B.IconData_58460_MaterialIcons_null_true, _null, _null, _null), _null, new A.ClientViewPaymentMethods_build__closure2(), _null, _null, _null, _null, _null), true, _null) : _null, _null); }, - $signature: 518 + $signature: 477 }; A.ClientViewPaymentMethods_build__closure.prototype = { call$1(token) { return new A.TokenMeta(token.meta, null); }, - $signature: 732 + $signature: 731 }; A.ClientViewPaymentMethods_build__closure0.prototype = { call$0() { @@ -505053,7 +505531,7 @@ }, "call*": "call$3", $requiredArgCount: 3, - $signature: 112 + $signature: 114 }; A.ClientViewVM_ClientViewVM$fromStore__closure.prototype = { call$1(client) { @@ -505065,7 +505543,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.ClientViewVM_ClientViewVM$fromStore__closure0.prototype = { call$1(error) { @@ -505136,7 +505614,7 @@ --newIndex; t1._widget.viewModel.onSortChanged.call$2(oldIndex, newIndex); }, - $signature: 232 + $signature: 223 }; A._CompanyGatewayListState_build_closure.prototype = { call$1(companyGatewayId) { @@ -505279,7 +505757,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateSettings(settings)); }, - $signature: 40 + $signature: 38 }; A.CompanyGatewayListVM_fromStore__closure.prototype = { call$1(b) { @@ -505304,7 +505782,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateSettings(settings)); }, - $signature: 224 + $signature: 222 }; A.CompanyGatewayListVM_fromStore__closure0.prototype = { call$1(b) { @@ -505445,7 +505923,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.ClearCompanyGatewayMultiselect()); }, - $signature: 103 + $signature: 101 }; A.CompanyGatewayScreen_build_closure0.prototype = { call$1(context) { @@ -505453,7 +505931,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.ClearCompanyGatewayMultiselect()); }, - $signature: 53 + $signature: 52 }; A.CompanyGatewayScreen_build_closure1.prototype = { call$0() { @@ -505523,7 +506001,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterCompanyGatewaysByState(state)); }, - $signature: 64 + $signature: 66 }; A.CompanyGatewayScreen_build_closure3.prototype = { call$0() { @@ -505908,19 +506386,19 @@ call$1(gatewayTypeId) { return this.companyGateway.getSettingsForGatewayTypeId$1(gatewayTypeId).isEnabled; }, - $signature: 11 + $signature: 12 }; A._CompanyGatewayEditState_build_closure.prototype = { call$1(gatewayTypeId) { return this.companyGateway.getSettingsForGatewayTypeId$1(gatewayTypeId).isEnabled; }, - $signature: 11 + $signature: 12 }; A._CompanyGatewayEditState_build_closure0.prototype = { call$1(gateway) { this.viewModel.onChanged.call$1(this.companyGateway.rebuild$1(new A._CompanyGatewayEditState_build__closure17(gateway))); }, - $signature: 52 + $signature: 53 }; A._CompanyGatewayEditState_build__closure17.prototype = { call$1(b) { @@ -505940,7 +506418,7 @@ b.get$_company_gateway_model$_$this()._label = t1; return b; }, - $signature: 66 + $signature: 65 }; A._CompanyGatewayEditState_build_closure1.prototype = { call$0() { @@ -505968,21 +506446,21 @@ b.get$_company_gateway_model$_$this()._label = t1; return b; }, - $signature: 66 + $signature: 65 }; A._CompanyGatewayEditState_build_closure4.prototype = { call$1(context) { var t1 = type$.MappedListIterable_String_Text; return A.List_List$of(new A.MappedListIterable(A._setArrayType(["always", "optout", "optin", "off"], type$.JSArray_String), new A._CompanyGatewayEditState_build__closure15(this.localization), t1), true, t1._eval$1("ListIterable.E")); }, - $signature: 290 + $signature: 323 }; A._CompanyGatewayEditState_build__closure15.prototype = { call$1(type) { var _null = null; return A.Text$(this.localization.lookup$1(type), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, - $signature: 289 + $signature: 326 }; A._CompanyGatewayEditState_build_closure6.prototype = { call$1(value) { @@ -505995,13 +506473,13 @@ b.get$_company_gateway_model$_$this()._tokenBilling = this.value; return b; }, - $signature: 66 + $signature: 65 }; A._CompanyGatewayEditState_build_closure5.prototype = { call$1(value) { return A.DropdownMenuItem$(new A.AutobillDropdownMenuItem(value, null), null, value, type$.String); }, - $signature: 41 + $signature: 42 }; A._CompanyGatewayEditState_build_closure7.prototype = { call$1(value) { @@ -506016,14 +506494,14 @@ b.get$feesAndLimitsMap().$indexSet(0, this.gatewayTypeId, this.settings.rebuild$1(new A._CompanyGatewayEditState_build___closure(this.value))); return b; }, - $signature: 66 + $signature: 65 }; A._CompanyGatewayEditState_build___closure.prototype = { call$1(b) { b.get$_company_gateway_model$_$this()._company_gateway_model$_isEnabled = this.value; return b; }, - $signature: 208 + $signature: 228 }; A._CompanyGatewayEditState_build_closure8.prototype = { call$1(value) { @@ -506036,7 +506514,7 @@ b.get$_company_gateway_model$_$this()._requireClientName = this.value; return b; }, - $signature: 66 + $signature: 65 }; A._CompanyGatewayEditState_build_closure9.prototype = { call$1(value) { @@ -506049,7 +506527,7 @@ b.get$_company_gateway_model$_$this()._requireClientPhone = this.value; return b; }, - $signature: 66 + $signature: 65 }; A._CompanyGatewayEditState_build_closure10.prototype = { call$1(value) { @@ -506062,7 +506540,7 @@ b.get$_company_gateway_model$_$this()._requireContactName = this.value; return b; }, - $signature: 66 + $signature: 65 }; A._CompanyGatewayEditState_build_closure11.prototype = { call$1(value) { @@ -506075,7 +506553,7 @@ b.get$_company_gateway_model$_$this()._requireContactEmail = this.value; return b; }, - $signature: 66 + $signature: 65 }; A._CompanyGatewayEditState_build_closure12.prototype = { call$1(value) { @@ -506088,7 +506566,7 @@ b.get$_company_gateway_model$_$this()._requireCustomValue1 = this.value; return b; }, - $signature: 66 + $signature: 65 }; A._CompanyGatewayEditState_build_closure13.prototype = { call$1(value) { @@ -506101,7 +506579,7 @@ b.get$_company_gateway_model$_$this()._requireCustomValue2 = this.value; return b; }, - $signature: 66 + $signature: 65 }; A._CompanyGatewayEditState_build_closure14.prototype = { call$1(value) { @@ -506114,7 +506592,7 @@ b.get$_company_gateway_model$_$this()._requireCustomValue3 = this.value; return b; }, - $signature: 66 + $signature: 65 }; A._CompanyGatewayEditState_build_closure15.prototype = { call$1(value) { @@ -506127,7 +506605,7 @@ b.get$_company_gateway_model$_$this()._requireCustomValue4 = this.value; return b; }, - $signature: 66 + $signature: 65 }; A._CompanyGatewayEditState_build_closure16.prototype = { call$1(value) { @@ -506140,7 +506618,7 @@ b.get$_company_gateway_model$_$this()._requirePostalCode = this.value; return b; }, - $signature: 66 + $signature: 65 }; A._CompanyGatewayEditState_build_closure17.prototype = { call$1(value) { @@ -506153,7 +506631,7 @@ b.get$_company_gateway_model$_$this()._requireCvv = this.value; return b; }, - $signature: 66 + $signature: 65 }; A._CompanyGatewayEditState_build_closure18.prototype = { call$1(value) { @@ -506166,7 +506644,7 @@ b.get$_company_gateway_model$_$this()._requireBillingAddress = this.value; return b; }, - $signature: 66 + $signature: 65 }; A._CompanyGatewayEditState_build_closure19.prototype = { call$1(value) { @@ -506179,7 +506657,7 @@ b.get$_company_gateway_model$_$this()._requireShippingAddress = this.value; return b; }, - $signature: 66 + $signature: 65 }; A._CompanyGatewayEditState_build_closure20.prototype = { call$1(value) { @@ -506192,7 +506670,7 @@ b.get$_company_gateway_model$_$this()._updateDetails = this.value; return b; }, - $signature: 66 + $signature: 65 }; A._CompanyGatewayEditState_build_closure21.prototype = { call$1(gatewayTypeId) { @@ -506202,7 +506680,7 @@ t1 = ""; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(t1), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, gatewayTypeId, type$.String); }, - $signature: 41 + $signature: 42 }; A._CompanyGatewayEditState_build_closure22.prototype = { call$1(value) { @@ -506374,13 +506852,13 @@ t1 = B.JSString_methods.trim$0(value); return A.DropdownMenuItem$(A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t1, type$.String); }, - $signature: 41 + $signature: 42 }; A._GatewayConfigFieldState_build_closure1.prototype = { call$1(value) { return this.$this._widget.onChanged$1(value); }, - $signature: 199 + $signature: 204 }; A._GatewayConfigFieldState_build_closure2.prototype = { call$1(value) { @@ -506540,14 +507018,14 @@ b.get$_company_gateway_model$_$this()._maxLimit = t1; return b; }, - $signature: 208 + $signature: 228 }; A._LimitEditorState__onChanged_closure0.prototype = { call$1(b) { b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.updatedSettings); return b; }, - $signature: 66 + $signature: 65 }; A._LimitEditorState__onTextChange_closure.prototype = { call$0() { @@ -506783,7 +507261,7 @@ b.get$_company_gateway_model$_$this()._feeCap = this.cap; return b; }, - $signature: 208 + $signature: 228 }; A._FeesEditorState__onChanged_closure0.prototype = { call$0() { @@ -506797,21 +507275,21 @@ b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.updatedSettings); return b; }, - $signature: 66 + $signature: 65 }; A._FeesEditorState_build_closure.prototype = { call$1(taxRate) { var _this = this; return _this.viewModel.onChanged.call$1(_this.companyGateway.rebuild$1(new A._FeesEditorState_build__closure2(_this.$this, _this.settings, taxRate))); }, - $signature: 119 + $signature: 120 }; A._FeesEditorState_build__closure2.prototype = { call$1(b) { b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.settings.rebuild$1(new A._FeesEditorState_build___closure2(this.taxRate))); return b; }, - $signature: 66 + $signature: 65 }; A._FeesEditorState_build___closure2.prototype = { call$1(b) { @@ -506820,21 +507298,21 @@ b.get$_company_gateway_model$_$this()._company_gateway_model$_taxName1 = t1.name; return b; }, - $signature: 208 + $signature: 228 }; A._FeesEditorState_build_closure0.prototype = { call$1(taxRate) { var _this = this; return _this.viewModel.onChanged.call$1(_this.companyGateway.rebuild$1(new A._FeesEditorState_build__closure1(_this.$this, _this.settings, taxRate))); }, - $signature: 119 + $signature: 120 }; A._FeesEditorState_build__closure1.prototype = { call$1(b) { b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.settings.rebuild$1(new A._FeesEditorState_build___closure1(this.taxRate))); return b; }, - $signature: 66 + $signature: 65 }; A._FeesEditorState_build___closure1.prototype = { call$1(b) { @@ -506843,21 +507321,21 @@ b.get$_company_gateway_model$_$this()._company_gateway_model$_taxName2 = t1.name; return b; }, - $signature: 208 + $signature: 228 }; A._FeesEditorState_build_closure1.prototype = { call$1(taxRate) { var _this = this; return _this.viewModel.onChanged.call$1(_this.companyGateway.rebuild$1(new A._FeesEditorState_build__closure0(_this.$this, _this.settings, taxRate))); }, - $signature: 119 + $signature: 120 }; A._FeesEditorState_build__closure0.prototype = { call$1(b) { b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.settings.rebuild$1(new A._FeesEditorState_build___closure0(this.taxRate))); return b; }, - $signature: 66 + $signature: 65 }; A._FeesEditorState_build___closure0.prototype = { call$1(b) { @@ -506866,7 +507344,7 @@ b.get$_company_gateway_model$_$this()._company_gateway_model$_taxName3 = t1.name; return b; }, - $signature: 208 + $signature: 228 }; A._FeesEditorState_build_closure2.prototype = { call$1(value) { @@ -506880,14 +507358,14 @@ b.get$feesAndLimitsMap().$indexSet(0, this.$this._widget.gatewayTypeId, this.settings.rebuild$1(new A._FeesEditorState_build___closure(this.value))); return b; }, - $signature: 66 + $signature: 65 }; A._FeesEditorState_build___closure.prototype = { call$1(b) { b.get$_company_gateway_model$_$this()._adjustFeePercent = this.value; return b; }, - $signature: 208 + $signature: 228 }; A.__CompanyGatewayEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0() { @@ -506977,7 +507455,7 @@ t4[0].call$1(new A.SaveCompanyGatewayRequest(new A._AsyncCompleter(t3, type$._AsyncCompleter_CompanyGatewayEntity), companyGateway)); return t3.then$1$1(0, new A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure(companyGateway, t2, t1, this.state, $navigator), type$.Null).catchError$1(new A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure0()); }, - $signature: 70 + $signature: 69 }; A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure.prototype = { call$1(savedCompanyGateway) { @@ -507479,7 +507957,7 @@ t2[0].call$1(new A.StartSaving()); _this.webClient.post$4$idToken$password(_this.url, _this.credentials.token, idToken, password).then$1$1(0, new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure(t1, _this.localization), type$.Null).catchError$1(new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure0(t1)); }, - $signature: 79 + $signature: 80 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure.prototype = { call$1(response) { @@ -507519,7 +507997,7 @@ t5 = J.getInterceptor$asx(t4); return A.AlertDialog$(A._setArrayType([A.TextButton$(false, A.Text$(J.$index$asx(t1, "close").toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_____closure(context), _null)], t2), _null, _null, A.Column$(A._setArrayType([A.Row$(A._setArrayType([new A.SizedBox(120, _null, A.Text$("Stripe", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new A.SizedBox(100, _null, A.Text$(A.S(t5.$index(t4, "stripe_customer_count")), _null, _null, _null, _null, _null, _null, B.TextAlign_5, _null, _null), _null)], t2), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), new A.SizedBox(_null, 8, _null, _null), A.Row$(A._setArrayType([new A.SizedBox(120, _null, A.Text$("Invoice Ninja", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), new A.SizedBox(100, _null, A.Text$("" + J.get$length$asx(type$.Iterable_dynamic._as(t5.$index(t4, "stripe_customers"))), _null, _null, _null, _null, _null, _null, B.TextAlign_5, _null, _null), _null)], t2), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null)], t2), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null, _null, t3); }, - $signature: 167 + $signature: 155 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_____closure.prototype = { call$0() { @@ -507554,7 +508032,7 @@ t2[0].call$1(new A.StartSaving()); _this.webClient.post$4$idToken$password(_this.url, _this.credentials.token, idToken, password).then$1$1(0, new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure1(t1, _this.localization), type$.Null).catchError$1(new A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure2(t1)); }, - $signature: 79 + $signature: 80 }; A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure1.prototype = { call$1(response) { @@ -507612,7 +508090,7 @@ t1[0].call$1(new A.LoadClient(null, t2.id)); } }, - $signature: 272 + $signature: 333 }; A.CreditEmailScreen_build_closure0.prototype = { call$1(store) { @@ -507655,7 +508133,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.EmailCreditRequest(completer, this.credit.id, template, subject, body, ccEmail)); }, - $signature: 359 + $signature: 350 }; A.EmailCreditVM_EmailCreditVM$fromStore__closure.prototype = { call$1(_) { @@ -507812,7 +508290,7 @@ A.handleEntitiesActions(A._setArrayType([this.$this.credit], type$.JSArray_BaseEntity), action, false); return null; }, - $signature: 74 + $signature: 73 }; A.CreditListItem_build__closure5.prototype = { call$0() { @@ -508065,7 +508543,7 @@ call$0() { return A.launchUrl(A.Uri_parse("mailto:" + this.contact.email, 0, null)); }, - $signature: 65 + $signature: 63 }; A.CreditScreen.prototype = { build$1(context) { @@ -508172,7 +508650,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SortCredits(value)); }, - $signature: 40 + $signature: 38 }; A.CreditScreen_build_closure5.prototype = { call$2(state, value) { @@ -508180,7 +508658,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterCreditsByState(state)); }, - $signature: 64 + $signature: 66 }; A.CreditScreen_build_closure.prototype = { call$0() { @@ -508360,7 +508838,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._CreditEditState_build_closure2.prototype = { call$1(context) { @@ -508372,7 +508850,7 @@ call$2(context, action) { return this.$this._credit_edit$_onSavePressed$2(context, action); }, - $signature: 74 + $signature: 73 }; A._CreditEditState_build_closure.prototype = { call$0() { @@ -508391,7 +508869,7 @@ t5 = type$.WhereTypeIterable_BaseEntity; return new A.InvoiceItemSelector(t1, new A._CreditEditState_build___closure(_this.$this, t4, _this.isFullscreen), t1.clientId, A.List_List$of(new A.WhereTypeIterable(new A.MappedIterable(new A.WhereIterable(t2, new A._CreditEditState_build___closure0(), t3._eval$1("WhereIterable<1>")), new A._CreditEditState_build___closure1(t4), t3._eval$1("MappedIterable<1,BaseEntity?>")), t5), true, t5._eval$1("Iterable.E")), false, null); }, - $signature: 285 + $signature: 330 }; A._CreditEditState_build___closure0.prototype = { call$1(item) { @@ -508405,7 +508883,7 @@ var t1 = this.viewModel.state; return item.typeId === "2" ? t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskState.map._map$_map.$index(0, item.taskId) : t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].expenseState.map._map$_map.$index(0, item.expenseId); }, - $signature: 284 + $signature: 331 }; A._CreditEditState_build___closure.prototype = { call$3(items, clientId, projectId) { @@ -508419,7 +508897,7 @@ call$2(items, clientId) { return this.call$3(items, clientId, null); }, - $signature: 283 + $signature: 332 }; A.__CreditEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0() { @@ -508464,7 +508942,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateCredit(credit)); }, - $signature: 154 + $signature: 168 }; A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure0.prototype = { call$3(context, credit, client) { @@ -508479,7 +508957,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateCreditClient(client)); }, - $signature: 350 + $signature: 406 }; A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure1.prototype = { call$2(context, completer) { @@ -508492,7 +508970,7 @@ A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, t1, _null, true); completer.future.then$1$1(0, new A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure0(t3), t4); }, - $signature: 127 + $signature: 131 }; A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure.prototype = { call$1(_) { @@ -508508,7 +508986,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateCurrentRoute("/credit/edit")); }, - $signature: 106 + $signature: 103 }; A.CreditEditItemsScreen.prototype = { build$1(context) { @@ -508566,7 +509044,7 @@ t1[0].call$1(new A.UpdateCreditItem(index, creditItem)); } }, - $signature: 282 + $signature: 345 }; A.CreditEditItemsVM_CreditEditItemsVM$fromStore__closure.prototype = { call$1(b) { @@ -508574,7 +509052,7 @@ b.get$_invoice_model$_$this()._invoice_model$_typeId = t1; return b; }, - $signature: 55 + $signature: 56 }; A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure2.prototype = { call$2(oldIndex, newIndex) { @@ -508582,7 +509060,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.MoveCreditItem(oldIndex, newIndex)); }, - $signature: 224 + $signature: 222 }; A.CreditEditNotesScreen.prototype = { build$1(context) { @@ -508609,7 +509087,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateCredit(credit)); }, - $signature: 154 + $signature: 168 }; A.CreditEditPDFScreen.prototype = { build$1(context) { @@ -508665,7 +509143,7 @@ call$1(context) { return this.call$2(context, null); }, - $signature: 200 + $signature: 193 }; A.CreditEditVM_CreditEditVM$fromStore__closure1.prototype = { call$0() { @@ -508705,7 +509183,7 @@ return t3.then$1$1(0, new A.CreditEditVM_CreditEditVM$fromStore___closure1(t2, t4, _this.state, t1, $navigator, t5), type$.Null).catchError$1(new A.CreditEditVM_CreditEditVM$fromStore___closure2()); } }, - $signature: 136 + $signature: 133 }; A.CreditEditVM_CreditEditVM$fromStore___closure0.prototype = { call$1(context) { @@ -508800,7 +509278,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.AddCreditItems(items)); }, - $signature: 280 + $signature: 343 }; A.CreditEditVM_CreditEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -508825,7 +509303,7 @@ t2[0].call$1(new A.SaveCreditDocumentRequest(isPrivate, new A._AsyncCompleter(t1, type$._AsyncCompleter_List_DocumentEntity), multipartFile, this.credit)); t1.then$1$1(0, new A.CreditEditVM_CreditEditVM$fromStore__closure(context), type$.Null).catchError$1(new A.CreditEditVM_CreditEditVM$fromStore__closure0(context)); }, - $signature: 279 + $signature: 341 }; A.CreditEditVM_CreditEditVM$fromStore__closure.prototype = { call$1(client) { @@ -508837,7 +509315,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.CreditEditVM_CreditEditVM$fromStore__closure0.prototype = { call$1(error) { @@ -508901,7 +509379,7 @@ call$1(context) { return this.call$2(context, null); }, - $signature: 278 + $signature: 340 }; A.CreditViewVM_CreditViewVM$fromStore_closure0.prototype = { call$1(context) { @@ -508917,7 +509395,7 @@ t2[0].call$1(new A.SaveCreditDocumentRequest(isPrivate, new A._AsyncCompleter(t1, type$._AsyncCompleter_List_DocumentEntity), multipartFile, this.credit)); t1.then$1$1(0, new A.CreditViewVM_CreditViewVM$fromStore__closure(context), type$.Null).catchError$1(new A.CreditViewVM_CreditViewVM$fromStore__closure0(context)); }, - $signature: 112 + $signature: 114 }; A.CreditViewVM_CreditViewVM$fromStore__closure.prototype = { call$1(client) { @@ -508929,7 +509407,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.CreditViewVM_CreditViewVM$fromStore__closure0.prototype = { call$1(error) { @@ -508953,7 +509431,7 @@ call$2(context, credit) { return this.call$3(context, credit, null); }, - $signature: 277 + $signature: 339 }; A.DashboardActivity.prototype = { build$1(context) { @@ -508968,13 +509446,13 @@ call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A.DashboardActivity_build_closure.prototype = { call$2(context, index) { return new A.ActivityListTile(this.activities._list$_list[index], true, null); }, - $signature: 300 + $signature: 310 }; A.DashboardChart.prototype = { createState$0() { @@ -509294,14 +509772,14 @@ call$1(value) { return value !== B.DateRange_allTime; }, - $signature: 255 + $signature: 241 }; A._DashboardDateRangePickerState_build_closure0.prototype = { call$1(dateRange) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(dateRange.name), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, dateRange, type$.DateRange); }, - $signature: 293 + $signature: 285 }; A._DashboardDateRangePickerState_build_closure1.prototype = { call$1(dateRange) { @@ -509643,7 +510121,7 @@ call$1(value) { this.$this.viewModel.onGroupByChanged.call$1(value); }, - $signature: 99 + $signature: 100 }; A.DashboardPanels__header__closure0.prototype = { call$1(value) { @@ -509664,7 +510142,7 @@ call$1(value) { return value !== B.DateRange_allTime; }, - $signature: 255 + $signature: 241 }; A.DashboardPanels__header___closure1.prototype = { call$1(dateRange) { @@ -509699,7 +510177,7 @@ call$1(duration) { this.$this._showDateOptions$1(this.context); }, - $signature: 12 + $signature: 11 }; A.DashboardPanels__header__closure3.prototype = { call$1(currencyId) { @@ -509716,13 +510194,13 @@ t1.toString; return A.DropdownMenuItem$(A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, currencyId, type$.String); }, - $signature: 41 + $signature: 42 }; A.DashboardPanels__header__closure4.prototype = { call$1(currencyId) { this.$this.viewModel.onCurrencyChanged.call$1(currencyId); }, - $signature: 99 + $signature: 100 }; A.DashboardPanels__header_closure__showSettings.prototype = { call$0() { @@ -509802,42 +510280,42 @@ call$2(context, action) { return A.handleTaskAction(context, A._setArrayType([this.task], type$.JSArray_BaseEntity), action); }, - $signature: 74 + $signature: 73 }; A.DashboardPanels_build_closure.prototype = { call$1(b) { b.get$_dashboard_state$_$this()._dashboard_state$_offset = this.settings.offset + 1; return b; }, - $signature: 158 + $signature: 170 }; A.DashboardPanels_build_closure0.prototype = { call$1(b) { b.get$_dashboard_state$_$this()._dashboard_state$_offset = this.settings.offset + 1; return b; }, - $signature: 158 + $signature: 170 }; A.DashboardPanels_build_closure1.prototype = { call$1(b) { b.get$_dashboard_state$_$this()._dashboard_state$_offset = this.settings.offset + 1; return b; }, - $signature: 158 + $signature: 170 }; A.DashboardPanels_build_closure2.prototype = { call$1(b) { b.get$_dashboard_state$_$this()._dashboard_state$_offset = this.settings.offset + 1; return b; }, - $signature: 158 + $signature: 170 }; A.DashboardPanels_build_closure3.prototype = { call$1(b) { b.get$_dashboard_state$_$this()._dashboard_state$_offset = this.settings.offset + 1; return b; }, - $signature: 158 + $signature: 170 }; A.DashboardPanels_build_closure4.prototype = { call$2(context, index) { @@ -510061,7 +510539,7 @@ return t1; } }, - $signature: 104 + $signature: 106 }; A.DashboardPanels_build__closure.prototype = { call$0() { @@ -510114,7 +510592,7 @@ t1.tabController.animateTo$1(B.JSArray_methods.indexOf$1(this.sidebarTabs, B.EntityType_invoice)); t1.viewModel.onSelectionChanged.call$2(B.EntityType_invoice, J.$index$asx(this.currentInvoiceData, index).entityMap.$index(0, date)); }, - $signature: 276 + $signature: 338 }; A.DashboardPanels_build__closure6.prototype = { call$0() { @@ -510128,7 +510606,7 @@ t1.tabController.animateTo$1(B.JSArray_methods.indexOf$1(this.sidebarTabs, B.EntityType_payment)); t1.viewModel.onSelectionChanged.call$2(B.EntityType_payment, J.$index$asx(this.currentPaymentData, index).entityMap.$index(0, date)); }, - $signature: 276 + $signature: 338 }; A.DashboardPanels_build__closure8.prototype = { call$0() { @@ -510142,7 +510620,7 @@ t1.tabController.animateTo$1(B.JSArray_methods.indexOf$1(this.sidebarTabs, B.EntityType_quote)); t1.viewModel.onSelectionChanged.call$2(B.EntityType_quote, J.$index$asx(this.currentQuoteData, index).entityMap.$index(0, date)); }, - $signature: 276 + $signature: 338 }; A.DashboardPanels_build__closure10.prototype = { call$0() { @@ -510156,7 +510634,7 @@ t1.tabController.animateTo$1(B.JSArray_methods.indexOf$1(this.sidebarTabs, B.EntityType_task)); t1.viewModel.onSelectionChanged.call$2(B.EntityType_task, J.$index$asx(this.currentTaskData, index).entityMap.$index(0, date)); }, - $signature: 276 + $signature: 338 }; A.DashboardPanels_build__closure12.prototype = { call$0() { @@ -510170,7 +510648,7 @@ t1.tabController.animateTo$1(B.JSArray_methods.indexOf$1(this.sidebarTabs, B.EntityType_expense)); t1.viewModel.onSelectionChanged.call$2(B.EntityType_expense, J.$index$asx(this.currentExpenseData, index).entityMap.$index(0, date)); }, - $signature: 276 + $signature: 338 }; A._DashboardPanel.prototype = { createState$0() { @@ -510247,43 +510725,43 @@ t1 = t1._widget.title; t3.push(A.Series_Series(new A.__DashboardPanelState_build__closure3(_this.state), dataGroup.rawSeries, t1, new A.__DashboardPanelState_build__closure4(), "current", new A.__DashboardPanelState_build__closure5(), new A.__DashboardPanelState_build__closure6(), type$.ChartMoneyData, type$.DateTime)); }, - $signature: 755 + $signature: 754 }; A.__DashboardPanelState_build__closure0.prototype = { call$2(chartData, _) { return chartData.date; }, - $signature: 275 + $signature: 337 }; A.__DashboardPanelState_build__closure1.prototype = { call$2(chartData, _) { return chartData.amount; }, - $signature: 274 + $signature: 336 }; A.__DashboardPanelState_build__closure.prototype = { call$2(chartData, _) { return B.Color_ePM; }, - $signature: 304 + $signature: 335 }; A.__DashboardPanelState_build__closure2.prototype = { call$2(_a, _b) { return 2.5; }, - $signature: 327 + $signature: 334 }; A.__DashboardPanelState_build__closure4.prototype = { call$2(chartData, _) { return chartData.date; }, - $signature: 275 + $signature: 337 }; A.__DashboardPanelState_build__closure5.prototype = { call$2(chartData, _) { return chartData.amount; }, - $signature: 274 + $signature: 336 }; A.__DashboardPanelState_build__closure3.prototype = { call$2(chartData, _) { @@ -510291,13 +510769,13 @@ t1.toString; return A.ColorUtil_fromDartColor(t1); }, - $signature: 304 + $signature: 335 }; A.__DashboardPanelState_build__closure6.prototype = { call$2(_a, _b) { return 2.5; }, - $signature: 327 + $signature: 334 }; A._OverviewPanel.prototype = { createState$0() { @@ -510397,67 +510875,67 @@ t3.toString; t5.push(A.Series_Series(new A.__OverviewPanelState_build__closure7(t2), invoiceSeries, t3, new A.__OverviewPanelState_build__closure8(), _s8_1, new A.__OverviewPanelState_build__closure9(), new A.__OverviewPanelState_build__closure10(), t6, t7)); }, - $signature: 755 + $signature: 754 }; A.__OverviewPanelState_build__closure0.prototype = { call$2(chartData, _) { return chartData.date; }, - $signature: 275 + $signature: 337 }; A.__OverviewPanelState_build__closure1.prototype = { call$2(chartData, _) { return chartData.amount; }, - $signature: 274 + $signature: 336 }; A.__OverviewPanelState_build__closure.prototype = { call$2(chartData, _) { return A.ColorUtil_fromDartColor(B.MaterialColor_Map_MUpTk_4288585374); }, - $signature: 304 + $signature: 335 }; A.__OverviewPanelState_build__closure2.prototype = { call$2(_a, _b) { return 2.5; }, - $signature: 327 + $signature: 334 }; A.__OverviewPanelState_build__closure4.prototype = { call$2(chartData, _) { return chartData.date; }, - $signature: 275 + $signature: 337 }; A.__OverviewPanelState_build__closure5.prototype = { call$2(chartData, _) { return chartData.amount; }, - $signature: 274 + $signature: 336 }; A.__OverviewPanelState_build__closure3.prototype = { call$2(chartData, _) { return A.ColorUtil_fromDartColor(B.MaterialColor_Map_JNgz5_4283215696); }, - $signature: 304 + $signature: 335 }; A.__OverviewPanelState_build__closure6.prototype = { call$2(_a, _b) { return 2.5; }, - $signature: 327 + $signature: 334 }; A.__OverviewPanelState_build__closure8.prototype = { call$2(chartData, _) { return chartData.date; }, - $signature: 275 + $signature: 337 }; A.__OverviewPanelState_build__closure9.prototype = { call$2(chartData, _) { return chartData.amount; }, - $signature: 274 + $signature: 336 }; A.__OverviewPanelState_build__closure7.prototype = { call$2(chartData, _) { @@ -510465,13 +510943,13 @@ t1.toString; return A.ColorUtil_fromDartColor(t1); }, - $signature: 304 + $signature: 335 }; A.__OverviewPanelState_build__closure10.prototype = { call$2(_a, _b) { return 2.5; }, - $signature: 327 + $signature: 334 }; A.__OverviewPanelState_build_closure0.prototype = { call$0() { @@ -510621,7 +511099,7 @@ this.viewModel.onGroupByChanged.call$1(value); this.$this.setState$1(new A.__DashboardSettingsState_build__closure9()); }, - $signature: 99 + $signature: 100 }; A.__DashboardSettingsState_build__closure9.prototype = { call$0() { @@ -510655,14 +511133,14 @@ t1.toString; return A.DropdownMenuItem$(A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, currencyId, type$.String); }, - $signature: 41 + $signature: 42 }; A.__DashboardSettingsState_build_closure2.prototype = { call$1(currencyId) { this.viewModel.onCurrencyChanged.call$1(currencyId); this.$this.setState$1(new A.__DashboardSettingsState_build__closure7()); }, - $signature: 99 + $signature: 100 }; A.__DashboardSettingsState_build__closure7.prototype = { call$0() { @@ -510704,7 +511182,7 @@ t1._company_model$_$v = t2; return b; }, - $signature: 97 + $signature: 98 }; A.__DashboardSettingsState_build_closure6.prototype = { call$2(oldIndex, newIndex) { @@ -510728,7 +511206,7 @@ t2[0].call$1(new A.UpdateDashboardFields(t1)); this.$this.setState$1(new A.__DashboardSettingsState_build__closure3()); }, - $signature: 232 + $signature: 223 }; A.__DashboardSettingsState_build__closure2.prototype = { call$1(b) { @@ -510739,7 +511217,7 @@ B.JSArray_methods.insert$2(b.get$_safeList(), t1, this.field); return b; }, - $signature: 618 + $signature: 552 }; A.__DashboardSettingsState_build__closure3.prototype = { call$0() { @@ -510762,7 +511240,7 @@ B.JSArray_methods.remove$1(b.get$_safeList(), this.dashboardField); return b; }, - $signature: 618 + $signature: 552 }; A.__DashboardSettingsState_build__closure5.prototype = { call$0() { @@ -510792,7 +511270,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 70 + $signature: 69 }; A.__DashboardSettingsState_build__closure0.prototype = { call$1(context) { @@ -510833,7 +511311,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$("" + value, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.int); }, - $signature: 191 + $signature: 192 }; A._DashboardField.prototype = { createState$0() { @@ -510988,7 +511466,7 @@ B.JSArray_methods.add$1(b.get$_safeList(), t1); return b; }, - $signature: 618 + $signature: 552 }; A.DashboardScreen.prototype = { createState$0() { @@ -511250,7 +511728,7 @@ if (this.company.isModuleEnabled$1(entityType)) this.$this._tabs.push(entityType); }, - $signature: 268 + $signature: 263 }; A._DashboardScreenState_initState_closure0.prototype = { call$1(duration) { @@ -511259,7 +511737,7 @@ t1.toString; A.showDialog(_null, _null, false, _null, new A._DashboardScreenState_initState__closure(this.state), t1, _null, true, type$.void); }, - $signature: 12 + $signature: 11 }; A._DashboardScreenState_initState__closure.prototype = { call$1(context) { @@ -511280,7 +511758,7 @@ t1.toString; return A.InkWell$(false, _null, true, A.IconButton$(_null, _null, _null, _null, A.Icon$(B.IconData_58332_MaterialIcons_null_false, _null, _null, _null), _null, new A._DashboardScreenState_build__closure1(context), _null, _null, _null, t1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, - $signature: 602 + $signature: 565 }; A._DashboardScreenState_build__closure1.prototype = { call$0() { @@ -511390,7 +511868,7 @@ t2 = _null; return A.IconButton$(_null, _null, _null, _null, A.Icon$(B.IconData_58132_MaterialIcons_null_false, _null, _null, _null), _null, new A._DashboardScreenState_build__closure(context, t1, this.store), B.EdgeInsets_4_0_24_0, _null, _null, t2, _null); }, - $signature: 591 + $signature: 593 }; A._DashboardScreenState_build__closure.prototype = { call$0() { @@ -511466,7 +511944,7 @@ } return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, t3, _null, _null, new A._CustomTabBarView_build__closure(entity), false, _null, _null, _null, A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, t2, t4, _null); }, - $signature: 518 + $signature: 477 }; A._CustomTabBarView_build__closure.prototype = { call$0() { @@ -511568,7 +512046,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateDashboardSettings(_null, _null, _null, value, _null)); }, - $signature: 30 + $signature: 29 }; A.DashboardVM_fromStore_closure5.prototype = { call$1(value) { @@ -511577,7 +512055,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateDashboardSettings(_null, _null, _null, _null, value)); }, - $signature: 199 + $signature: 204 }; A.DashboardVM_fromStore_closure1.prototype = { call$2(entityType, entityIds) { @@ -511594,7 +512072,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateDashboardSettings(_null, offset, _null, _null, _null)); }, - $signature: 393 + $signature: 361 }; A.DashboardVM_fromStore_closure3.prototype = { call$1(currencyId) { @@ -511603,7 +512081,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateDashboardSettings(_null, _null, currencyId, _null, _null)); }, - $signature: 199 + $signature: 204 }; A.DashboardVM_fromStore_closure6.prototype = { call$0() { @@ -511747,13 +512225,13 @@ t1.toString; return new A.InvoiceListItem(t1, null, false, false, null, false, null); }, - $signature: 425 + $signature: 349 }; A.InvoiceSidebar_build_closure0.prototype = { call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A.InvoiceSidebar_build_closure1.prototype = { call$2(context, index) { @@ -511761,13 +512239,13 @@ t1.toString; return new A.InvoiceListItem(t1, null, false, false, null, false, null); }, - $signature: 425 + $signature: 349 }; A.InvoiceSidebar_build_closure2.prototype = { call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A.InvoiceSidebar_build_closure3.prototype = { call$2(context, index) { @@ -511776,13 +512254,13 @@ invoice = t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].invoiceState.map._map$_map.$index(0, this.selectedIds._list$_list[index]); return invoice == null ? new A.SizedBox(_null, _null, _null, _null) : new A.InvoiceListItem(invoice, _null, false, false, _null, false, _null); }, - $signature: 104 + $signature: 106 }; A.InvoiceSidebar_build_closure4.prototype = { call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A.PaymentSidebar.prototype = { build$1(context) { @@ -511832,13 +512310,13 @@ t1.toString; return new A.PaymentListItem(t1, null, false, false, null, false, null); }, - $signature: 593 + $signature: 559 }; A.PaymentSidebar_build_closure0.prototype = { call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A.PaymentSidebar_build_closure1.prototype = { call$2(context, index) { @@ -511847,13 +512325,13 @@ payment = t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].paymentState.map._map$_map.$index(0, this.selectedIds._list$_list[index]); return payment == null ? new A.SizedBox(_null, _null, _null, _null) : new A.PaymentListItem(payment, _null, false, false, _null, false, _null); }, - $signature: 104 + $signature: 106 }; A.PaymentSidebar_build_closure2.prototype = { call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A.QuoteSidebar.prototype = { build$1(context) { @@ -511915,13 +512393,13 @@ t1.toString; return new A.QuoteListItem(t1, null, false, null); }, - $signature: 586 + $signature: 527 }; A.QuoteSidebar_build_closure0.prototype = { call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A.QuoteSidebar_build_closure1.prototype = { call$2(context, index) { @@ -511929,13 +512407,13 @@ t1.toString; return new A.QuoteListItem(t1, null, false, null); }, - $signature: 586 + $signature: 527 }; A.QuoteSidebar_build_closure2.prototype = { call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A.QuoteSidebar_build_closure3.prototype = { call$2(context, index) { @@ -511944,13 +512422,13 @@ quote = t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].quoteState.map._map$_map.$index(0, this.selectedIds._list$_list[index]); return quote == null ? new A.SizedBox(_null, _null, _null, _null) : new A.QuoteListItem(quote, _null, false, _null); }, - $signature: 104 + $signature: 106 }; A.QuoteSidebar_build_closure4.prototype = { call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A.TaskSidebar.prototype = { build$1(context) { @@ -512012,25 +512490,25 @@ t1.toString; return A.TaskListItem$(null, false, true, null, null, false, t1); }, - $signature: 435 + $signature: 351 }; A.TaskSidebar_build_closure0.prototype = { call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A.TaskSidebar_build_closure1.prototype = { call$2(context, index) { return A.TaskListItem$(null, false, true, null, null, false, J.$index$asx(this.recentTasks, index)); }, - $signature: 435 + $signature: 351 }; A.TaskSidebar_build_closure2.prototype = { call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A.TaskSidebar_build_closure3.prototype = { call$2(context, index) { @@ -512039,13 +512517,13 @@ task = t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskState.map._map$_map.$index(0, this.selectedIds._list$_list[index]); return task == null ? new A.SizedBox(_null, _null, _null, _null) : A.TaskListItem$(_null, false, true, _null, _null, false, task); }, - $signature: 104 + $signature: 106 }; A.TaskSidebar_build_closure4.prototype = { call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A.ExpenseSidbar.prototype = { build$1(context) { @@ -512095,13 +512573,13 @@ t1.toString; return A.ExpenseListItem$(t1, null, false, true, null, null, false, false); }, - $signature: 381 + $signature: 352 }; A.ExpenseSidbar_build_closure0.prototype = { call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A.ExpenseSidbar_build_closure1.prototype = { call$2(context, index) { @@ -512110,13 +512588,13 @@ expense = t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].expenseState.map._map$_map.$index(0, this.selectedIds._list$_list[index]); return expense == null ? new A.SizedBox(_null, _null, _null, _null) : A.ExpenseListItem$(expense, _null, false, true, _null, _null, false, false); }, - $signature: 104 + $signature: 106 }; A.ExpenseSidbar_build_closure2.prototype = { call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A._DashboardSidebar.prototype = { build$1(context) { @@ -512379,7 +512857,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SortDesigns(value)); }, - $signature: 40 + $signature: 38 }; A.DesignScreen_build_closure5.prototype = { call$2(state, value) { @@ -512387,7 +512865,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterDesignsByState(state)); }, - $signature: 64 + $signature: 66 }; A.DesignScreen_build_closure.prototype = { call$0() { @@ -512764,7 +513242,7 @@ b.get$design().replace$1(0, A.BuiltMap_BuiltMap(A.LinkedHashMap_LinkedHashMap$_literal(["header", B.JSString_methods.trim$0(t1._headerController._change_notifier$_value.text), "body", B.JSString_methods.trim$0(t1._bodyController._change_notifier$_value.text), "footer", B.JSString_methods.trim$0(t1._footerController._change_notifier$_value.text), "product", B.JSString_methods.trim$0(t1._productsController._change_notifier$_value.text), "task", B.JSString_methods.trim$0(t1._tasksController._change_notifier$_value.text), "includes", B.JSString_methods.trim$0(t1._includesController._change_notifier$_value.text)], t2, t2), t2, t2)); return b; }, - $signature: 249 + $signature: 255 }; A._DesignEditState__onChanged_closure0.prototype = { call$0() { @@ -512833,7 +513311,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 768 + $signature: 767 }; A._DesignEditState__loadPreview__closure.prototype = { call$0() { @@ -512866,7 +513344,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._DesignEditState_build_closure.prototype = { call$1(context) { @@ -513028,7 +513506,7 @@ if (value != null) this.$this._widget.onLoadDesign$1(value); }, - $signature: 147 + $signature: 139 }; A._DesignSettingsState_build_closure1.prototype = { call$1(value) { @@ -513041,14 +513519,14 @@ b.get$_design_model$_$this()._isTemplate = this.value; return b; }, - $signature: 249 + $signature: 255 }; A._DesignSettingsState_build_closure2.prototype = { call$1(entityType) { var t1 = this.state; return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].userCompany.company.isModuleEnabled$1(entityType); }, - $signature: 267 + $signature: 246 }; A._DesignSettingsState_build_closure3.prototype = { call$1(entityType) { @@ -513079,13 +513557,13 @@ b.get$_design_model$_$this()._entities = t1; return b; }, - $signature: 249 + $signature: 255 }; A._DesignSettingsState_build____closure.prototype = { call$1(entity) { return entity.length !== 0; }, - $signature: 11 + $signature: 12 }; A._DesignSettingsState_build_closure4.prototype = { call$0() { @@ -513148,7 +513626,7 @@ t1.replace$1(0, A.BuiltMap_BuiltMap(B.C_JsonCodec.decode$2$reviver(0, t2, null), t3, t3)); return b; }, - $signature: 249 + $signature: 255 }; A._DesignSettingsState_build_closure6.prototype = { call$0() { @@ -513380,7 +513858,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateDesign(design)); }, - $signature: 483 + $signature: 482 }; A.DesignEditVM_DesignEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -513551,7 +514029,7 @@ t1.toString; return !t1 && invoice.designId === this.design.id; }, - $signature: 405 + $signature: 354 }; A._DesignViewState_build_closure1.prototype = { call$1(quoteId) { @@ -513566,7 +514044,7 @@ t1.toString; return !t1 && quote.designId === this.design.id; }, - $signature: 405 + $signature: 354 }; A._DesignViewState_build_closure3.prototype = { call$1(creditId) { @@ -513581,7 +514059,7 @@ t1.toString; return !t1 && credit.designId === this.design.id; }, - $signature: 405 + $signature: 354 }; A._DesignViewState_build_closure5.prototype = { call$1(invoiceId) { @@ -513596,7 +514074,7 @@ t1.toString; return !t1 && invoice.designId === this.design.id; }, - $signature: 405 + $signature: 354 }; A._DesignViewState_build_closure7.prototype = { call$0() { @@ -513724,7 +514202,7 @@ A.handleEntitiesActions(A._setArrayType([this.$this.document], type$.JSArray_BaseEntity), action, false); return null; }, - $signature: 74 + $signature: 73 }; A.DocumentListItem_build__closure5.prototype = { call$0() { @@ -513779,7 +514257,7 @@ call$1(context) { return this.viewModel.onRefreshed.call$2(context, false); }, - $signature: 53 + $signature: 52 }; A.DocumentListBuilder_build__closure0.prototype = { call$2(context, index) { @@ -513928,7 +514406,7 @@ b.get$_document_status_model$_$this()._document_status_model$_name = t1; return b; }, - $signature: 328 + $signature: 308 }; A.DocumentScreen_build_closure0.prototype = { call$1(b) { @@ -513938,7 +514416,7 @@ b.get$_document_status_model$_$this()._document_status_model$_name = t1; return b; }, - $signature: 328 + $signature: 308 }; A.DocumentScreen_build_closure1.prototype = { call$1(b) { @@ -513959,7 +514437,7 @@ b.get$_document_status_model$_$this()._document_status_model$_name = t1; return b; }, - $signature: 328 + $signature: 308 }; A.DocumentScreen_build_closure2.prototype = { call$1(b) { @@ -513974,7 +514452,7 @@ b.get$_document_status_model$_$this()._document_status_model$_name = t1; return b; }, - $signature: 328 + $signature: 308 }; A.DocumentScreen_build_closure3.prototype = { call$1(b) { @@ -513995,7 +514473,7 @@ b.get$_document_status_model$_$this()._document_status_model$_name = t1; return b; }, - $signature: 328 + $signature: 308 }; A.DocumentScreen_build_closure14.prototype = { call$0() { @@ -514019,7 +514497,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterDocumentsByStatus($status)); }, - $signature: 168 + $signature: 159 }; A.DocumentScreen_build_closure13.prototype = { call$0() { @@ -514084,7 +514562,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterDocumentsByStatus($status)); }, - $signature: 186 + $signature: 177 }; A.DocumentScreen_build_closure6.prototype = { call$0() { @@ -514216,7 +514694,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._DocumentEditState_build_closure.prototype = { call$1(context) { @@ -514230,7 +514708,7 @@ t4 = type$.JSArray_Widget; return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, true, t3._document_edit$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t2, _null, _null, false, _null, _null, new A._DocumentEditState_build__closure(t3), true, _null, _null, B.TextAlign_4, new A._DocumentEditState_build__closure0(t1))], t4), _null, _null, false, _null, false, _null, _null)], t4), _null, _null, _null, false, _null); }, - $signature: 142 + $signature: 146 }; A._DocumentEditState_build__closure.prototype = { call$1(_) { @@ -514294,7 +514772,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateDocument($document)); }, - $signature: 324 + $signature: 314 }; A.DocumentEditVM_DocumentEditVM$fromStore_closure0.prototype = { call$1(context) { @@ -514325,7 +514803,7 @@ t4[0].call$1(new A.SaveDocumentRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_DocumentEntity), $document)); return t2.then$1$1(0, new A.DocumentEditVM_DocumentEditVM$fromStore___closure(t3, this.state, t1, $document, $navigator), type$.Null).catchError$1(new A.DocumentEditVM_DocumentEditVM$fromStore___closure0()); }, - $signature: 70 + $signature: 69 }; A.DocumentEditVM_DocumentEditVM$fromStore___closure.prototype = { call$1(savedDocument) { @@ -514351,7 +514829,7 @@ } else A.viewEntityById(false, savedDocument.id, B.EntityType_document, null, true, true); }, - $signature: 324 + $signature: 314 }; A.DocumentEditVM_DocumentEditVM$fromStore___closure0.prototype = { call$1(error) { @@ -514566,13 +515044,13 @@ return; this.$this._widget.viewModel.onSavePressed.call$2(this.context, this.action); }, - $signature: 12 + $signature: 11 }; A._ExpenseEditState_build_closure1.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._ExpenseEditState_build_closure2.prototype = { call$1(context) { @@ -514584,7 +515062,7 @@ call$2(context, action) { return this.$this._expense_edit$_onSavePressed$2(context, action); }, - $signature: 74 + $signature: 73 }; A._ExpenseEditState_build_closure.prototype = { call$0() { @@ -514869,7 +515347,7 @@ call$1(vendor) { this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure18(vendor))); }, - $signature: 52 + $signature: 53 }; A.ExpenseEditDetailsState_build__closure18.prototype = { call$1(b) { @@ -514886,7 +515364,7 @@ call$1(completer) { this.viewModel.onAddVendorPressed.call$2(this.context, completer); }, - $signature: 230 + $signature: 232 }; A.ExpenseEditDetailsState_build_closure0.prototype = { call$2(completer, $name) { @@ -514895,7 +515373,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.SaveVendorRequest(completer, t1)); }, - $signature: 164 + $signature: 160 }; A.ExpenseEditDetailsState_build__closure19.prototype = { call$1(b) { @@ -514918,7 +515396,7 @@ } this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure17(t1, client))); }, - $signature: 52 + $signature: 53 }; A.ExpenseEditDetailsState_build__closure17.prototype = { call$1(b) { @@ -514937,7 +515415,7 @@ call$1(completer) { this.viewModel.onAddClientPressed.call$2(this.context, completer); }, - $signature: 230 + $signature: 232 }; A.ExpenseEditDetailsState_build_closure4.prototype = { call$1(selectedId) { @@ -514947,7 +515425,7 @@ t2 = this.expense; this.viewModel.onChanged.call$1(t2.rebuild$1(new A.ExpenseEditDetailsState_build__closure16(t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].projectState.$get$1(0, selectedId), t2))); }, - $signature: 40 + $signature: 38 }; A.ExpenseEditDetailsState_build__closure16.prototype = { call$1(b) { @@ -514964,7 +515442,7 @@ call$1(category) { this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure14(category))); }, - $signature: 52 + $signature: 53 }; A.ExpenseEditDetailsState_build__closure14.prototype = { call$1(b) { @@ -514984,14 +515462,14 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.SaveExpenseCategoryRequest(completer, t1)); }, - $signature: 164 + $signature: 160 }; A.ExpenseEditDetailsState_build__closure15.prototype = { call$1(b) { b.get$_expense_category_model$_$this()._expense_category_model$_name = this.name; return b; }, - $signature: 331 + $signature: 301 }; A.ExpenseEditDetailsState_build_closure7.prototype = { call$1(userId) { @@ -515023,7 +515501,7 @@ call$1(amount) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure11(amount))); }, - $signature: 473 + $signature: 448 }; A.ExpenseEditDetailsState_build__closure11.prototype = { call$1(b) { @@ -515036,7 +515514,7 @@ call$1(taxRate) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure10(taxRate))); }, - $signature: 119 + $signature: 120 }; A.ExpenseEditDetailsState_build__closure10.prototype = { call$1(b) { @@ -515064,7 +515542,7 @@ call$1(amount) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure8(amount))); }, - $signature: 473 + $signature: 448 }; A.ExpenseEditDetailsState_build__closure8.prototype = { call$1(b) { @@ -515077,7 +515555,7 @@ call$1(taxRate) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure7(taxRate))); }, - $signature: 119 + $signature: 120 }; A.ExpenseEditDetailsState_build__closure7.prototype = { call$1(b) { @@ -515105,7 +515583,7 @@ call$1(amount) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure5(amount))); }, - $signature: 473 + $signature: 448 }; A.ExpenseEditDetailsState_build__closure5.prototype = { call$1(b) { @@ -515118,7 +515596,7 @@ call$1(taxRate) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure4(taxRate))); }, - $signature: 119 + $signature: 120 }; A.ExpenseEditDetailsState_build__closure4.prototype = { call$1(b) { @@ -515134,7 +515612,7 @@ var t1 = this.viewModel; return t1.onChanged.call$1(t1.expense.rebuild$1(new A.ExpenseEditDetailsState_build__closure3(currency))); }, - $signature: 67 + $signature: 64 }; A.ExpenseEditDetailsState_build__closure3.prototype = { call$1(b) { @@ -515178,7 +515656,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(entry.value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, entry.key, type$.String); }, - $signature: 320 + $signature: 295 }; A.ExpenseEditDetailsState_build_closure21.prototype = { call$2(date, _) { @@ -515211,7 +515689,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$("" + value, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.int); }, - $signature: 191 + $signature: 192 }; A.ExpenseEditNotes.prototype = { createState$0() { @@ -515331,7 +515809,7 @@ call$2(path, isPrivate) { return this.$this._widget.viewModel.onUploadDocument.call$3(this.context, path, isPrivate); }, - $signature: 144 + $signature: 145 }; A.ExpenseEditNotesState_build_closure0.prototype = { call$0() { @@ -515642,7 +516120,7 @@ t2.set$text(0, t1); t2.addListener$1(0, t3); }, - $signature: 12 + $signature: 11 }; A.ExpenseEditSettingsState__calculateExchangeRate_closure.prototype = { call$1(b) { @@ -515699,7 +516177,7 @@ call$1(duration) { this.$this._expense_edit_settings$_transactionReferenceController.set$text(0, ""); }, - $signature: 12 + $signature: 11 }; A.ExpenseEditSettingsState_build__closure10.prototype = { call$0() { @@ -515711,7 +516189,7 @@ call$1(paymentType) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditSettingsState_build__closure6(paymentType))); }, - $signature: 67 + $signature: 64 }; A.ExpenseEditSettingsState_build__closure6.prototype = { call$1(b) { @@ -515769,13 +516247,13 @@ call$1(duration) { this.$this._expense_edit_settings$_exchangeRateController.set$text(0, ""); }, - $signature: 12 + $signature: 11 }; A.ExpenseEditSettingsState_build_closure4.prototype = { call$1(currency) { return this.$this._setCurrency$1(type$.nullable_CurrencyEntity._as(currency)); }, - $signature: 371 + $signature: 373 }; A.ExpenseEditSettingsState_build_closure7.prototype = { call$1(hasFocus) { @@ -515822,7 +516300,7 @@ call$1(value) { return this.viewModel.onChanged.call$1(this.expense.rebuild$1(new A.ExpenseEditSettingsState_build__closure0(value))); }, - $signature: 30 + $signature: 29 }; A.ExpenseEditSettingsState_build__closure0.prototype = { call$1(b) { @@ -515874,7 +516352,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateExpense(expense)); }, - $signature: 157 + $signature: 158 }; A.ExpenseEditVM_ExpenseEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -515897,7 +516375,7 @@ A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, t1, _null, true); completer.future.then$1$1(0, new A.ExpenseEditVM_ExpenseEditVM$fromStore__closure4(t3), t4); }, - $signature: 127 + $signature: 131 }; A.ExpenseEditVM_ExpenseEditVM$fromStore__closure3.prototype = { call$1(_) { @@ -515913,7 +516391,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateCurrentRoute("/expense/edit")); }, - $signature: 106 + $signature: 103 }; A.ExpenseEditVM_ExpenseEditVM$fromStore_closure3.prototype = { call$2(context, completer) { @@ -515926,7 +516404,7 @@ A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, t1, _null, true); completer.future.then$1$1(0, new A.ExpenseEditVM_ExpenseEditVM$fromStore__closure2(t3), t4); }, - $signature: 127 + $signature: 131 }; A.ExpenseEditVM_ExpenseEditVM$fromStore__closure1.prototype = { call$1(_) { @@ -515942,7 +516420,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateCurrentRoute("/expense/edit")); }, - $signature: 106 + $signature: 103 }; A.ExpenseEditVM_ExpenseEditVM$fromStore_closure0.prototype = { call$2(context, action) { @@ -515956,7 +516434,7 @@ call$1(context) { return this.call$2(context, null); }, - $signature: 200 + $signature: 193 }; A.ExpenseEditVM_ExpenseEditVM$fromStore__closure5.prototype = { call$0() { @@ -515990,7 +516468,7 @@ return t3.then$1$1(0, new A.ExpenseEditVM_ExpenseEditVM$fromStore___closure0(t2, t4, _this.state, t1, $navigator, t5), type$.Null).catchError$1(new A.ExpenseEditVM_ExpenseEditVM$fromStore___closure1()); } }, - $signature: 136 + $signature: 133 }; A.ExpenseEditVM_ExpenseEditVM$fromStore___closure0.prototype = { call$1(savedExpense) { @@ -516042,7 +516520,7 @@ A.viewEntity(false, savedExpense, _null, true); } }, - $signature: 157 + $signature: 158 }; A.ExpenseEditVM_ExpenseEditVM$fromStore___closure1.prototype = { call$1(error) { @@ -516068,7 +516546,7 @@ t2[0].call$1(new A.SaveExpenseDocumentRequest(isPrivate, new A._AsyncCompleter(t1, type$._AsyncCompleter_List_DocumentEntity), multipartFile, this.expense)); t1.then$1$1(0, new A.ExpenseEditVM_ExpenseEditVM$fromStore__closure(context), type$.Null).catchError$1(new A.ExpenseEditVM_ExpenseEditVM$fromStore__closure0(context)); }, - $signature: 279 + $signature: 341 }; A.ExpenseEditVM_ExpenseEditVM$fromStore__closure.prototype = { call$1(client) { @@ -516080,7 +516558,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.ExpenseEditVM_ExpenseEditVM$fromStore__closure0.prototype = { call$1(error) { @@ -516254,7 +516732,7 @@ A.handleEntitiesActions(A._setArrayType([this.$this.expense], type$.JSArray_BaseEntity), action, false); return null; }, - $signature: 74 + $signature: 73 }; A.ExpenseListItem_build__closure5.prototype = { call$0() { @@ -516300,7 +516778,7 @@ t3 = t4 && B.JSArray_methods.contains$1(t3._list$_list, t2.id); return A.ExpenseListItem$(t2, t1.filter, t3, true, null, null, t4, true); }, - $signature: 381 + $signature: 352 }; A.ExpenseListVM.prototype = { get$user(receiver) { @@ -516535,7 +517013,7 @@ b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, - $signature: 160 + $signature: 153 }; A.ExpenseScreen_build_closure0.prototype = { call$1(b) { @@ -516550,7 +517028,7 @@ b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, - $signature: 160 + $signature: 153 }; A.ExpenseScreen_build_closure1.prototype = { call$1(b) { @@ -516565,7 +517043,7 @@ b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, - $signature: 160 + $signature: 153 }; A.ExpenseScreen_build_closure2.prototype = { call$1(b) { @@ -516580,7 +517058,7 @@ b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, - $signature: 160 + $signature: 153 }; A.ExpenseScreen_build_closure3.prototype = { call$1(b) { @@ -516595,7 +517073,7 @@ b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, - $signature: 160 + $signature: 153 }; A.ExpenseScreen_build_closure18.prototype = { call$0() { @@ -516629,7 +517107,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterExpensesByStatus($status)); }, - $signature: 168 + $signature: 159 }; A.ExpenseScreen_build_closure17.prototype = { call$0() { @@ -516705,7 +517183,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterExpensesByState(state)); }, - $signature: 64 + $signature: 66 }; A.ExpenseScreen_build_closure12.prototype = { call$2($status, value) { @@ -516715,7 +517193,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterExpensesByStatus($status)); }, - $signature: 186 + $signature: 177 }; A.ExpenseScreen_build_closure5.prototype = { call$0() { @@ -516900,7 +517378,7 @@ t6 = true; return A.Column$(A._setArrayType([t1, new A.BottomButtons(t2, t5, B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringExpense], t3), t4) ? B.EntityAction_cloneToRecurring : B.EntityAction_cloneToExpense, t6, true, _null)], type$.JSArray_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, - $signature: 270 + $signature: 260 }; A._ExpenseViewState_build__closure.prototype = { call$0() { @@ -516954,7 +517432,7 @@ call$2(path, isPrivate) { return this.$this.viewModel.onUploadDocuments.call$3(this.context, path, isPrivate); }, - $signature: 144 + $signature: 145 }; A.ExpenseViewDocuments_build_closure0.prototype = { call$0() { @@ -517237,7 +517715,7 @@ t3.$indexSet(0, t2, t1 !== 1 && t1 !== 0 ? A.formatNumber(t1, t6, _null, _null, B.FormatNumberType_3, true, _null, _null, false) : _null); return A._setArrayType([new A.FieldGrid(t3, _null)], type$.JSArray_Widget); }, - $signature: 292 + $signature: 302 }; A.ExpenseViewSchedule.prototype = { createState$0() { @@ -517339,7 +517817,7 @@ t2[0].call$1(new A.SaveExpenseDocumentRequest(isPrivate, new A._AsyncCompleter(t1, type$._AsyncCompleter_List_DocumentEntity), multipartFiles, this.expense)); t1.then$1$1(0, new A.ExpenseViewVM_ExpenseViewVM$fromStore__closure(context), type$.Null).catchError$1(new A.ExpenseViewVM_ExpenseViewVM$fromStore__closure0()); }, - $signature: 112 + $signature: 114 }; A.ExpenseViewVM_ExpenseViewVM$fromStore__closure.prototype = { call$1(client) { @@ -517351,7 +517829,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.ExpenseViewVM_ExpenseViewVM$fromStore__closure0.prototype = { call$1(error) { @@ -517451,7 +517929,7 @@ b.get$_expense_category_model$_$this()._expense_category_model$_name = t1; return b; }, - $signature: 331 + $signature: 301 }; A._ExpenseCategoryEditState__onChanged_closure0.prototype = { call$0() { @@ -517463,7 +517941,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._ExpenseCategoryEditState_build_closure1.prototype = { call$1(_) { @@ -517484,7 +517962,7 @@ t5 = type$.JSArray_Widget; return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, true, t1._expense_category_edit$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t3, _null, _null, false, _null, _null, new A._ExpenseCategoryEditState_build__closure(t1), true, _null, _null, B.TextAlign_4, new A._ExpenseCategoryEditState_build__closure0(t2)), A.FormColorPicker$(t4.color, _null, new A._ExpenseCategoryEditState_build__closure1(_this.viewModel, t4))], t5), _null, _null, false, _null, false, _null, _null)], t5), _null, _null, _null, false, _null); }, - $signature: 142 + $signature: 146 }; A._ExpenseCategoryEditState_build__closure.prototype = { call$1(_) { @@ -517510,14 +517988,14 @@ call$1(value) { return this.viewModel.onChanged.call$1(this.expenseCategory.rebuild$1(new A._ExpenseCategoryEditState_build___closure(value))); }, - $signature: 199 + $signature: 204 }; A._ExpenseCategoryEditState_build___closure.prototype = { call$1(b) { b.get$_expense_category_model$_$this()._expense_category_model$_color = this.value; return b; }, - $signature: 331 + $signature: 301 }; A.ExpenseCategoryEditScreen.prototype = { build$1(context) { @@ -517551,7 +518029,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateExpenseCategory(expenseCategory)); }, - $signature: 410 + $signature: 400 }; A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -517592,7 +518070,7 @@ t4[0].call$1(new A.SaveExpenseCategoryRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_ExpenseCategoryEntity), expenseCategory)); return t2.then$1$1(0, new A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure(expenseCategory, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure0()); }, - $signature: 70 + $signature: 69 }; A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure.prototype = { call$1(savedExpenseCategory) { @@ -517629,7 +518107,7 @@ } else if (t2.uiState.expenseCategoryUIState.saveCompleter == null) A.viewEntity(false, savedExpenseCategory, null, true); }, - $signature: 410 + $signature: 400 }; A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure0.prototype = { call$1(error) { @@ -517725,7 +518203,7 @@ t3 = false; return A.ExpenseCategoryListItem$(t2, t1.filter, t3, null, false); }, - $signature: 780 + $signature: 779 }; A.ExpenseCategoryListVM.prototype = {}; A.ExpenseCategoryListVM_fromStore__handleRefresh.prototype = { @@ -517855,7 +518333,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SortExpenseCategories(value)); }, - $signature: 40 + $signature: 38 }; A.ExpenseCategoryScreen_build_closure5.prototype = { call$2(state, value) { @@ -517863,7 +518341,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterExpenseCategoriesByState(state)); }, - $signature: 64 + $signature: 66 }; A.ExpenseCategoryScreen_build_closure.prototype = { call$0() { @@ -518114,7 +518592,7 @@ b.get$_group_model$_$this()._group_model$_name = t1; return b; }, - $signature: 526 + $signature: 525 }; A._GroupEditState__onChanged_closure0.prototype = { call$0() { @@ -518126,7 +518604,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._GroupEditState_build_closure1.prototype = { call$1(_) { @@ -518146,7 +518624,7 @@ t4 = type$.JSArray_Widget; return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, true, t3._group_edit$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t2, _null, _null, false, _null, _null, new A._GroupEditState_build__closure(t3), true, _null, _null, B.TextAlign_4, new A._GroupEditState_build__closure0(t1))], t4), _null, _null, false, _null, false, _null, _null)], t4), _null, _null, _null, false, _null); }, - $signature: 142 + $signature: 146 }; A._GroupEditState_build__closure.prototype = { call$1(_) { @@ -518200,7 +518678,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateGroup(group)); }, - $signature: 332 + $signature: 346 }; A.GroupEditVM_GroupEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -518249,7 +518727,7 @@ t4[0].call$1(new A.SaveGroupRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_GroupEntity), group)); return t2.then$1$1(0, new A.GroupEditVM_GroupEditVM$fromStore___closure(group, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.GroupEditVM_GroupEditVM$fromStore___closure0()); }, - $signature: 70 + $signature: 69 }; A.GroupEditVM_GroupEditVM$fromStore___closure.prototype = { call$1(savedGroup) { @@ -518284,7 +518762,7 @@ } else A.viewEntity(false, savedGroup, null, true); }, - $signature: 332 + $signature: 346 }; A.GroupEditVM_GroupEditVM$fromStore___closure0.prototype = { call$1(error) { @@ -518502,7 +518980,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterGroupsByState(state)); }, - $signature: 64 + $signature: 66 }; A.GroupSettingsScreen_build_closure.prototype = { call$0() { @@ -518626,7 +519104,7 @@ call$2(path, isPrivate) { return this.viewModel.onUploadDocuments.call$3(this.context, path, isPrivate); }, - $signature: 144 + $signature: 145 }; A._GroupViewState_build_closure1.prototype = { call$0() { @@ -519374,7 +519852,7 @@ }, "call*": "call$3", $requiredArgCount: 3, - $signature: 112 + $signature: 114 }; A.GroupViewVM_GroupViewVM$fromStore__closure.prototype = { call$1(client) { @@ -519386,7 +519864,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.GroupViewVM_GroupViewVM$fromStore__closure0.prototype = { call$1(error) { @@ -519523,7 +520001,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._InvoiceEditState_build_closure2.prototype = { call$1(context) { @@ -519535,7 +520013,7 @@ call$2(context, action) { return this.$this._invoice_edit$_onSavePressed$2(context, action); }, - $signature: 74 + $signature: 73 }; A._InvoiceEditState_build_closure.prototype = { call$0() { @@ -519554,7 +520032,7 @@ t5 = type$.WhereTypeIterable_BaseEntity; return new A.InvoiceItemSelector(t1, new A._InvoiceEditState_build___closure(_this.$this, t4, _this.isFullscreen), t1.clientId, A.List_List$of(new A.WhereTypeIterable(new A.MappedIterable(new A.WhereIterable(t2, new A._InvoiceEditState_build___closure0(), t3._eval$1("WhereIterable<1>")), new A._InvoiceEditState_build___closure1(t4), t3._eval$1("MappedIterable<1,BaseEntity?>")), t5), true, t5._eval$1("Iterable.E")), true, null); }, - $signature: 285 + $signature: 330 }; A._InvoiceEditState_build___closure0.prototype = { call$1(item) { @@ -519568,7 +520046,7 @@ var t1 = this.viewModel.state; return item.typeId === "2" ? t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskState.map._map$_map.$index(0, item.taskId) : t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].expenseState.map._map$_map.$index(0, item.expenseId); }, - $signature: 284 + $signature: 331 }; A._InvoiceEditState_build___closure.prototype = { call$3(items, clientId, projectId) { @@ -519582,7 +520060,7 @@ call$2(items, clientId) { return this.call$3(items, clientId, null); }, - $signature: 283 + $signature: 332 }; A.__InvoiceEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0() { @@ -519801,7 +520279,7 @@ t2.toString; return A._setArrayType([t4, A.PopupMenuItem$(new A.IconText(t3, B.IconData_57744_MaterialIcons_null_false, _null, _null, false, _null), t2, t5)], type$.JSArray_PopupMenuEntry_String); }, - $signature: 314 + $signature: 291 }; A._ContactListTileState_build_closure0.prototype = { call$1(action) { @@ -520696,13 +521174,13 @@ t1.toString; t1.call$3(this.context, this.invoice, type$.nullable_VendorEntity._as(vendor)); }, - $signature: 52 + $signature: 53 }; A.InvoiceEditDesktopState_build_closure2.prototype = { call$1(completer) { return this.viewModel.onAddVendorPressed.call$2(this.context, completer); }, - $signature: 318 + $signature: 292 }; A.InvoiceEditDesktopState_build_closure3.prototype = { call$1(client) { @@ -520710,13 +521188,13 @@ t1.toString; t1.call$3(this.context, this.invoice, type$.nullable_ClientEntity._as(client)); }, - $signature: 52 + $signature: 53 }; A.InvoiceEditDesktopState_build_closure4.prototype = { call$1(completer) { return this.viewModel.onAddClientPressed.call$2(this.context, completer); }, - $signature: 318 + $signature: 292 }; A.InvoiceEditDesktopState_build_closure5.prototype = { call$0() { @@ -520748,7 +521226,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(entry.value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, entry.key, type$.String); }, - $signature: 320 + $signature: 295 }; A.InvoiceEditDesktopState_build_closure9.prototype = { call$2(date, _) { @@ -520781,7 +521259,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$("" + value, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.int); }, - $signature: 191 + $signature: 192 }; A.InvoiceEditDesktopState_build_closure13.prototype = { call$1(value) { @@ -520821,7 +521299,7 @@ } return A.DropdownMenuItem$(A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "" + value, type$.String); }, - $signature: 534 + $signature: 462 }; A.InvoiceEditDesktopState_build_closure15.prototype = { call$1(val) { @@ -520916,7 +521394,7 @@ call$1(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build__closure14(value))); }, - $signature: 30 + $signature: 29 }; A.InvoiceEditDesktopState_build__closure14.prototype = { call$1(b) { @@ -520930,14 +521408,14 @@ var t1 = type$.MappedListIterable_String_Text; return A.List_List$of(new A.MappedListIterable(A._setArrayType(["always", "optout", "optin", "off"], type$.JSArray_String), new A.InvoiceEditDesktopState_build__closure13(this.localization), t1), true, t1._eval$1("ListIterable.E")); }, - $signature: 290 + $signature: 323 }; A.InvoiceEditDesktopState_build__closure13.prototype = { call$1(type) { var _null = null; return A.Text$(this.localization.lookup$1(type), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, - $signature: 289 + $signature: 326 }; A.InvoiceEditDesktopState_build_closure23.prototype = { call$1(value) { @@ -520956,7 +521434,7 @@ call$1(value) { return A.DropdownMenuItem$(new A.AutobillDropdownMenuItem(value, null), null, value, type$.String); }, - $signature: 41 + $signature: 42 }; A.InvoiceEditDesktopState_build_closure24.prototype = { call$1(index) { @@ -521062,13 +521540,13 @@ } return A.GridView$count((constraints.maxWidth / 2 - 8) / 50, t4, 2, 16, 12, _null, new A.NeverScrollableScrollPhysics(_null), true, true); }, - $signature: 433 + $signature: 393 }; A.InvoiceEditDesktopState_build__closure0.prototype = { call$1(value) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build___closure8(value))); }, - $signature: 147 + $signature: 139 }; A.InvoiceEditDesktopState_build___closure8.prototype = { call$1(b) { @@ -521110,7 +521588,7 @@ } else t2.onChanged.call$1(t3.rebuild$1(new A.InvoiceEditDesktopState_build___closure6(projectId))); }, - $signature: 40 + $signature: 38 }; A.InvoiceEditDesktopState_build___closure5.prototype = { call$1(b) { @@ -521130,7 +521608,7 @@ call$1(client) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build___closure4(client))); }, - $signature: 52 + $signature: 53 }; A.InvoiceEditDesktopState_build___closure4.prototype = { call$1(b) { @@ -521147,7 +521625,7 @@ call$1(vendor) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDesktopState_build___closure2(vendor))); }, - $signature: 67 + $signature: 64 }; A.InvoiceEditDesktopState_build___closure2.prototype = { call$1(b) { @@ -521157,7 +521635,7 @@ t1 = ""; return b.get$_invoice_model$_$this()._vendorId = t1; }, - $signature: 169 + $signature: 154 }; A.InvoiceEditDesktopState_build__closure4.prototype = { call$2(completer, $name) { @@ -521166,7 +521644,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.SaveVendorRequest(completer, t1)); }, - $signature: 164 + $signature: 160 }; A.InvoiceEditDesktopState_build___closure3.prototype = { call$1(b) { @@ -521219,7 +521697,7 @@ call$2(path, isPrivate) { return this.$this._widget.entityViewModel.onUploadDocuments.call$3(this.context, path, isPrivate); }, - $signature: 144 + $signature: 145 }; A.InvoiceEditDesktopState_build_closure29.prototype = { call$0() { @@ -521233,19 +521711,19 @@ call$1(taxRate) { this.viewModel.onChanged.call$1(this.invoice.applyTax$1(taxRate)); }, - $signature: 163 + $signature: 167 }; A.InvoiceEditDesktopState_build_closure31.prototype = { call$1(taxRate) { this.viewModel.onChanged.call$1(this.invoice.applyTax$2$isSecond(taxRate, true)); }, - $signature: 163 + $signature: 167 }; A.InvoiceEditDesktopState_build_closure32.prototype = { call$1(taxRate) { this.viewModel.onChanged.call$1(this.invoice.applyTax$2$isThird(taxRate, true)); }, - $signature: 163 + $signature: 167 }; A.InvoiceEditDesktopState_build_closure33.prototype = { call$0() { @@ -521449,7 +521927,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 606 + $signature: 546 }; A.__PdfPreviewState__loadPdf__closure0.prototype = { call$0() { @@ -522003,13 +522481,13 @@ t1.toString; t1.call$3(this.context, this.invoice, type$.nullable_VendorEntity._as(vendor)); }, - $signature: 52 + $signature: 53 }; A.InvoiceEditDetailsState_build_closure0.prototype = { call$1(completer) { return this.viewModel.onAddVendorPressed.call$2(this.context, completer); }, - $signature: 318 + $signature: 292 }; A.InvoiceEditDetailsState_build_closure1.prototype = { call$1(client) { @@ -522017,13 +522495,13 @@ t1.toString; return t1.call$3(this.context, this.invoice, type$.nullable_ClientEntity._as(client)); }, - $signature: 67 + $signature: 64 }; A.InvoiceEditDetailsState_build_closure2.prototype = { call$1(completer) { return this.viewModel.onAddClientPressed.call$2(this.context, completer); }, - $signature: 318 + $signature: 292 }; A.InvoiceEditDetailsState_build_closure3.prototype = { call$1(val) { @@ -522072,13 +522550,13 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(entry.value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, entry.key, type$.String); }, - $signature: 320 + $signature: 295 }; A.InvoiceEditDetailsState_build_closure7.prototype = { call$2(date, _) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure17(date))); }, - $signature: 294 + $signature: 280 }; A.InvoiceEditDetailsState_build__closure17.prototype = { call$1(b) { @@ -522105,7 +522583,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$("" + value, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.int); }, - $signature: 191 + $signature: 192 }; A.InvoiceEditDetailsState_build_closure11.prototype = { call$1(value) { @@ -522145,7 +522623,7 @@ } return A.DropdownMenuItem$(A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, "" + value, type$.String); }, - $signature: 534 + $signature: 462 }; A.InvoiceEditDetailsState_build_closure13.prototype = { call$1(val) { @@ -522224,7 +522702,7 @@ call$1(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure11(value))); }, - $signature: 30 + $signature: 29 }; A.InvoiceEditDetailsState_build__closure11.prototype = { call$1(b) { @@ -522238,14 +522716,14 @@ var t1 = type$.MappedListIterable_String_Text; return A.List_List$of(new A.MappedListIterable(A._setArrayType(["always", "optout", "optin", "off"], type$.JSArray_String), new A.InvoiceEditDetailsState_build__closure10(this.localization), t1), true, t1._eval$1("ListIterable.E")); }, - $signature: 290 + $signature: 323 }; A.InvoiceEditDetailsState_build__closure10.prototype = { call$1(type) { var _null = null; return A.Text$(this.localization.lookup$1(type), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, - $signature: 289 + $signature: 326 }; A.InvoiceEditDetailsState_build_closure20.prototype = { call$1(value) { @@ -522264,31 +522742,31 @@ call$1(value) { return A.DropdownMenuItem$(new A.AutobillDropdownMenuItem(value, null), null, value, type$.String); }, - $signature: 41 + $signature: 42 }; A.InvoiceEditDetailsState_build_closure21.prototype = { call$1(taxRate) { return this.viewModel.onChanged.call$1(this.invoice.applyTax$1(taxRate)); }, - $signature: 119 + $signature: 120 }; A.InvoiceEditDetailsState_build_closure22.prototype = { call$1(taxRate) { return this.viewModel.onChanged.call$1(this.invoice.applyTax$2$isSecond(taxRate, true)); }, - $signature: 119 + $signature: 120 }; A.InvoiceEditDetailsState_build_closure23.prototype = { call$1(taxRate) { return this.viewModel.onChanged.call$1(this.invoice.applyTax$2$isThird(taxRate, true)); }, - $signature: 119 + $signature: 120 }; A.InvoiceEditDetailsState_build_closure24.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure8(value))); }, - $signature: 316 + $signature: 306 }; A.InvoiceEditDetailsState_build__closure8.prototype = { call$1(b) { @@ -522317,7 +522795,7 @@ } else t2.onChanged.call$1(t3.rebuild$1(new A.InvoiceEditDetailsState_build__closure7(projectId))); }, - $signature: 40 + $signature: 38 }; A.InvoiceEditDetailsState_build__closure6.prototype = { call$1(b) { @@ -522337,7 +522815,7 @@ call$1(client) { this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure5(client))); }, - $signature: 52 + $signature: 53 }; A.InvoiceEditDetailsState_build__closure5.prototype = { call$1(b) { @@ -522354,7 +522832,7 @@ call$1(vendor) { return this.viewModel.onChanged.call$1(this.invoice.rebuild$1(new A.InvoiceEditDetailsState_build__closure3(vendor))); }, - $signature: 67 + $signature: 64 }; A.InvoiceEditDetailsState_build__closure3.prototype = { call$1(b) { @@ -522364,7 +522842,7 @@ t1 = ""; return b.get$_invoice_model$_$this()._vendorId = t1; }, - $signature: 169 + $signature: 154 }; A.InvoiceEditDetailsState_build_closure27.prototype = { call$2(completer, $name) { @@ -522373,7 +522851,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.SaveVendorRequest(completer, t1)); }, - $signature: 164 + $signature: 160 }; A.InvoiceEditDetailsState_build__closure4.prototype = { call$1(b) { @@ -522471,7 +522949,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateInvoice(invoice)); }, - $signature: 154 + $signature: 168 }; A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure0.prototype = { call$3(context, invoice, client) { @@ -522486,7 +522964,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateInvoiceClient(client)); }, - $signature: 350 + $signature: 406 }; A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure1.prototype = { call$2(context, completer) { @@ -522499,7 +522977,7 @@ A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, t1, _null, true); completer.future.then$1$1(0, new A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure0(t3), t4); }, - $signature: 127 + $signature: 131 }; A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure.prototype = { call$1(_) { @@ -522515,7 +522993,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateCurrentRoute("/invoice/edit")); }, - $signature: 106 + $signature: 103 }; A.InvoiceEditFooter.prototype = { build$1(context) { @@ -522933,7 +523411,7 @@ b.get$_invoice_model$_$this()._invoice_model$_customValue4 = t1; return b; }, - $signature: 55 + $signature: 56 }; A.ItemEditDetailsState__onChanged_closure0.prototype = { call$1(b) { @@ -522941,7 +523419,7 @@ b.get$_invoice_model$_$this()._invoice_model$_taxCategoryId = t1; return b; }, - $signature: 55 + $signature: 56 }; A.ItemEditDetailsState_build_closure.prototype = { call$0() { @@ -522985,14 +523463,14 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(B.Map_k38sM.$index(0, key)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, key, type$.String); }, - $signature: 41 + $signature: 42 }; A.ItemEditDetailsState_build_closure3.prototype = { call$1(taxRate) { var t1 = this.$this; t1.setState$1(new A.ItemEditDetailsState_build__closure1(t1, taxRate)); }, - $signature: 163 + $signature: 167 }; A.ItemEditDetailsState_build__closure1.prototype = { call$0() { @@ -523007,7 +523485,7 @@ var t1 = this.$this; t1.setState$1(new A.ItemEditDetailsState_build__closure0(t1, taxRate)); }, - $signature: 163 + $signature: 167 }; A.ItemEditDetailsState_build__closure0.prototype = { call$0() { @@ -523022,7 +523500,7 @@ var t1 = this.$this; t1.setState$1(new A.ItemEditDetailsState_build__closure(t1, taxRate)); }, - $signature: 163 + $signature: 167 }; A.ItemEditDetailsState_build__closure.prototype = { call$0() { @@ -523543,7 +524021,7 @@ $.Debouncer_action = null; } }, - $signature: 12 + $signature: 11 }; A._InvoiceEditItemsDesktopState_build_closure.prototype = { call$1(lineItem) { @@ -523560,7 +524038,7 @@ call$1(widget) { return A.Expanded$(widget, 1); }, - $signature: 2852 + $signature: 4279 }; A._InvoiceEditItemsDesktopState_build_closure1.prototype = { call$0() { @@ -523600,7 +524078,7 @@ t4.push(new A.Padding(B.EdgeInsets_8_8_8_8, A.Icon$(B.IconData_57862_MaterialIcons_null_false, _null, _null, _null), _null)); return new A.ReorderableDragStartListener(new A.Padding(B.EdgeInsets_0_4_0_4, A.Row$(t4, B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), index, true, new A.ObjectKey(item)); }, - $signature: 104 + $signature: 106 }; A._InvoiceEditItemsDesktopState_build__closure33.prototype = { call$1(column) { @@ -523665,7 +524143,7 @@ --newIndex; this.viewModel.onMovedInvoiceItem.call$2(oldIndex, newIndex); }, - $signature: 232 + $signature: 223 }; A._InvoiceEditItemsDesktopState_build_closure4.prototype = { call$1(item) { @@ -523824,7 +524302,7 @@ call$1(productId) { return this.productState.map._map$_map.$index(0, productId); }, - $signature: 400 + $signature: 413 }; A._InvoiceEditItemsDesktopState_build___closure14.prototype = { call$1(product) { @@ -523833,7 +524311,7 @@ return true; return B.JSString_methods.contains$1(product.productKey.toLowerCase(), filter); }, - $signature: 671 + $signature: 686 }; A._InvoiceEditItemsDesktopState_build__closure0.prototype = { call$1(product) { @@ -523872,7 +524350,7 @@ t1._invoice_edit_items_desktop$_onChanged$3$debounce(updatedItem, t2, false); t1._updateTable$0(); }, - $signature: 498 + $signature: 497 }; A._InvoiceEditItemsDesktopState_build___closure15.prototype = { call$1(b) { @@ -523916,21 +524394,21 @@ b.get$_invoice_model$_$this()._taxRate3 = t1; return b; }, - $signature: 55 + $signature: 56 }; A._InvoiceEditItemsDesktopState_build___closure16.prototype = { call$1(b) { b.get$_invoice_model$_$this()._invoice_model$_productKey = this.product.productKey; return b; }, - $signature: 55 + $signature: 56 }; A._InvoiceEditItemsDesktopState_build__closure1.prototype = { call$4(context, textEditingController, focusNode, onFieldSubmitted) { var _null = null; return A.DecoratedFormField$(false, _null, false, textEditingController, _null, true, focusNode, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, _null, _null, _null, false, new A._InvoiceEditItemsDesktopState_build___closure17(this.$this, this.lineItems, this.index), new A._InvoiceEditItemsDesktopState_build___closure18(onFieldSubmitted), _null, false, _null, _null, B.TextAlign_4, _null); }, - $signature: 558 + $signature: 449 }; A._InvoiceEditItemsDesktopState_build___closure18.prototype = { call$1(value) { @@ -523950,7 +524428,7 @@ b.get$_invoice_model$_$this()._invoice_model$_productKey = this.value; return b; }, - $signature: 55 + $signature: 56 }; A._InvoiceEditItemsDesktopState_build__closure4.prototype = { call$3(context, onSelected, options) { @@ -523982,7 +524460,7 @@ call$1(entity) { return this.onSelected.call$1(type$.ProductEntity._as(entity)); }, - $signature: 259 + $signature: 266 }; A._InvoiceEditItemsDesktopState_build____closure0.prototype = { call$1(entity) { @@ -523991,7 +524469,7 @@ t1 = this.invoice.entityType === B.EntityType_purchaseOrder && this.company.enableProductCost && entity.cost !== 0 ? entity.cost : entity.price; return A.formatNumber(t1, this.context, _null, _null, B.FormatNumberType_0, true, _null, _null, false); }, - $signature: 439 + $signature: 363 }; A._InvoiceEditItemsDesktopState_build__closure7.prototype = { call$1(hasFocus) { @@ -524011,7 +524489,7 @@ b.get$_invoice_model$_$this()._invoice_model$_notes = this.value; return b; }, - $signature: 55 + $signature: 56 }; A._InvoiceEditItemsDesktopState_build__closure9.prototype = { call$1(hasFocus) { @@ -524031,7 +524509,7 @@ b.get$_invoice_model$_$this()._invoice_model$_customValue1 = this.value; return b; }, - $signature: 55 + $signature: 56 }; A._InvoiceEditItemsDesktopState_build__closure11.prototype = { call$1(hasFocus) { @@ -524051,7 +524529,7 @@ b.get$_invoice_model$_$this()._invoice_model$_customValue2 = this.value; return b; }, - $signature: 55 + $signature: 56 }; A._InvoiceEditItemsDesktopState_build__closure13.prototype = { call$1(hasFocus) { @@ -524071,7 +524549,7 @@ b.get$_invoice_model$_$this()._invoice_model$_customValue3 = this.value; return b; }, - $signature: 55 + $signature: 56 }; A._InvoiceEditItemsDesktopState_build__closure15.prototype = { call$1(hasFocus) { @@ -524091,7 +524569,7 @@ b.get$_invoice_model$_$this()._invoice_model$_customValue4 = this.value; return b; }, - $signature: 55 + $signature: 56 }; A._InvoiceEditItemsDesktopState_build__closure18.prototype = { call$1(hasFocus) { @@ -524111,14 +524589,14 @@ b.get$_invoice_model$_$this()._invoice_model$_taxCategoryId = this.value; return b; }, - $signature: 55 + $signature: 56 }; A._InvoiceEditItemsDesktopState_build__closure16.prototype = { call$1(key) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(B.Map_k38sM.$index(0, key)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, key, type$.String); }, - $signature: 41 + $signature: 42 }; A._InvoiceEditItemsDesktopState_build__closure20.prototype = { call$1(hasFocus) { @@ -524131,7 +524609,7 @@ var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$3$debounce(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new A._InvoiceEditItemsDesktopState_build___closure5(taxRate)), t1, false); }, - $signature: 449 + $signature: 489 }; A._InvoiceEditItemsDesktopState_build___closure5.prototype = { call$1(b) { @@ -524140,7 +524618,7 @@ b.get$_invoice_model$_$this()._taxRate1 = t1.rate; return b; }, - $signature: 55 + $signature: 56 }; A._InvoiceEditItemsDesktopState_build__closure21.prototype = { call$0() { @@ -524156,7 +524634,7 @@ b.get$_invoice_model$_$this()._invoice_model$_taxCategoryId = "1"; return b; }, - $signature: 55 + $signature: 56 }; A._InvoiceEditItemsDesktopState_build__closure23.prototype = { call$1(hasFocus) { @@ -524169,7 +524647,7 @@ var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$3$debounce(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new A._InvoiceEditItemsDesktopState_build___closure3(taxRate)), t1, false); }, - $signature: 449 + $signature: 489 }; A._InvoiceEditItemsDesktopState_build___closure3.prototype = { call$1(b) { @@ -524178,7 +524656,7 @@ b.get$_invoice_model$_$this()._taxRate2 = t1.rate; return b; }, - $signature: 55 + $signature: 56 }; A._InvoiceEditItemsDesktopState_build__closure25.prototype = { call$1(hasFocus) { @@ -524191,7 +524669,7 @@ var t1 = this.index; return this.$this._invoice_edit_items_desktop$_onChanged$3$debounce(J.$index$asx(this.lineItems._copy_on_write_list$_list, t1).rebuild$1(new A._InvoiceEditItemsDesktopState_build___closure2(taxRate)), t1, false); }, - $signature: 449 + $signature: 489 }; A._InvoiceEditItemsDesktopState_build___closure2.prototype = { call$1(b) { @@ -524200,7 +524678,7 @@ b.get$_invoice_model$_$this()._taxRate3 = t1.rate; return b; }, - $signature: 55 + $signature: 56 }; A._InvoiceEditItemsDesktopState_build__closure27.prototype = { call$1(hasFocus) { @@ -524221,7 +524699,7 @@ b.get$_invoice_model$_$this()._invoice_model$_cost = t1; return b; }, - $signature: 55 + $signature: 56 }; A._InvoiceEditItemsDesktopState_build__closure29.prototype = { call$1(hasFocus) { @@ -524242,7 +524720,7 @@ b.get$_invoice_model$_$this()._invoice_model$_quantity = t1; return b; }, - $signature: 55 + $signature: 56 }; A._InvoiceEditItemsDesktopState_build__closure31.prototype = { call$1(hasFocus) { @@ -524263,7 +524741,7 @@ b.get$_invoice_model$_$this()._discount = t1; return b; }, - $signature: 55 + $signature: 56 }; A._InvoiceEditItemsDesktopState_build_closure8.prototype = { call$1(context) { @@ -524457,7 +524935,7 @@ b.get$_invoice_model$_$this()._invoice_model$_typeId = t1; return b; }, - $signature: 55 + $signature: 56 }; A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure0.prototype = { call$1(index) { @@ -524491,7 +524969,7 @@ t1[0].call$1(new A.UpdateInvoiceItem(index, invoiceItem)); } }, - $signature: 282 + $signature: 345 }; A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore__closure.prototype = { call$1(b) { @@ -524499,7 +524977,7 @@ b.get$_invoice_model$_$this()._invoice_model$_typeId = t1; return b; }, - $signature: 55 + $signature: 56 }; A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure3.prototype = { call$2(oldIndex, newIndex) { @@ -524507,7 +524985,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.MoveInvoiceItem(oldIndex, newIndex)); }, - $signature: 224 + $signature: 222 }; A.InvoiceEditNotes.prototype = { createState$0() { @@ -524696,7 +525174,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateInvoice(invoice)); }, - $signature: 154 + $signature: 168 }; A.InvoiceEditPDF.prototype = { createState$0() { @@ -524864,7 +525342,7 @@ call$1(context) { return this.call$2(context, null); }, - $signature: 200 + $signature: 193 }; A.InvoiceEditVM_InvoiceEditVM$fromStore__closure2.prototype = { call$0() { @@ -524929,7 +525407,7 @@ return t5.then$1$1(0, new A.InvoiceEditVM_InvoiceEditVM$fromStore___closure4(t2, t4, t3, t1, $navigator, t6), type$.Null).catchError$1(new A.InvoiceEditVM_InvoiceEditVM$fromStore___closure5()); } }, - $signature: 136 + $signature: 133 }; A.InvoiceEditVM_InvoiceEditVM$fromStore___closure1.prototype = { call$1(context) { @@ -525075,7 +525553,7 @@ t1[0].call$1(new A.EditInvoiceItem(t2)); } }, - $signature: 280 + $signature: 343 }; A.InvoiceEditVM_InvoiceEditVM$fromStore__closure1.prototype = { call$1(b) { @@ -525094,7 +525572,7 @@ call$1(contact) { return A.InvitationEntity_InvitationEntity(contact.id, null); }, - $signature: 212 + $signature: 226 }; A.InvoiceEditVM_InvoiceEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -525119,7 +525597,7 @@ t2[0].call$1(new A.SaveInvoiceDocumentRequest(isPrivate, new A._AsyncCompleter(t1, type$._AsyncCompleter_List_DocumentEntity), multipartFiles, this.invoice)); t1.then$1$1(0, new A.InvoiceEditVM_InvoiceEditVM$fromStore__closure(context), type$.Null).catchError$1(new A.InvoiceEditVM_InvoiceEditVM$fromStore__closure0(context)); }, - $signature: 279 + $signature: 341 }; A.InvoiceEditVM_InvoiceEditVM$fromStore__closure.prototype = { call$1(client) { @@ -525131,7 +525609,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.InvoiceEditVM_InvoiceEditVM$fromStore__closure0.prototype = { call$1(error) { @@ -525304,7 +525782,7 @@ } else if (entity.get$entityType() === B.EntityType_expense) _this.items.push(A.convertExpenseToInvoiceItem(_this.context, type$.ExpenseEntity._as(entity))); }, - $signature: 153 + $signature: 157 }; A._InvoiceItemSelectorState__toggleEntity_closure.prototype = { call$0() { @@ -525332,7 +525810,7 @@ t1 = false; return t1; }, - $signature: 234 + $signature: 220 }; A._InvoiceItemSelectorState_build_closure.prototype = { call$1(entityId) { @@ -525354,7 +525832,7 @@ t2 = false; return t2 && t1.matchesFilter$1(this.$this._invoice_item_selector$_filter); }, - $signature: 117 + $signature: 119 }; A._InvoiceItemSelectorState_build_closure0.prototype = { call$1(entityId) { @@ -525372,7 +525850,7 @@ return false; return task.matchesFilter$1(t1._invoice_item_selector$_filter) || client.matchesNameOrEmail$1(t1._invoice_item_selector$_filter); }, - $signature: 117 + $signature: 119 }; A._InvoiceItemSelectorState_build_closure1.prototype = { call$1(entityId) { @@ -525393,7 +525871,7 @@ return false; return expense.matchesFilter$1(t1._invoice_item_selector$_filter) || client.matchesNameOrEmail$1(t1._invoice_item_selector$_filter); }, - $signature: 117 + $signature: 119 }; A._InvoiceItemSelectorState_build__productList.prototype = { call$0() { @@ -525401,7 +525879,7 @@ t1 = _this.products; return A.ScrollableListViewBuilder$(new A._InvoiceItemSelectorState_build__productList_closure(_this.$this, t1, _this.state, _this.company), t1.length, null, false, null, null); }, - $signature: 141 + $signature: 151 }; A._InvoiceItemSelectorState_build__productList_closure.prototype = { call$2(context, index) { @@ -525441,7 +525919,7 @@ var t1 = this.tasks; return A.ScrollableListViewBuilder$(new A._InvoiceItemSelectorState_build__taskList_closure(this.$this, t1, this.state), t1.length, null, false, null, null); }, - $signature: 141 + $signature: 151 }; A._InvoiceItemSelectorState_build__taskList_closure.prototype = { call$2(context, index) { @@ -525453,7 +525931,7 @@ t2 = this.$this; return A.TaskListItem$(t2._invoice_item_selector$_filter, B.JSArray_methods.contains$1(t2._selected, t1), false, new A._InvoiceItemSelectorState_build__taskList__closure(t2, t1), new A._InvoiceItemSelectorState_build__taskList__closure0(t2, t1, context), true, t1); }, - $signature: 435 + $signature: 351 }; A._InvoiceItemSelectorState_build__taskList__closure.prototype = { call$1(checked) { @@ -525480,7 +525958,7 @@ var t1 = this.expenses; return A.ScrollableListViewBuilder$(new A._InvoiceItemSelectorState_build__expenseList_closure(this.$this, t1, this.state), t1.length, null, false, null, null); }, - $signature: 141 + $signature: 151 }; A._InvoiceItemSelectorState_build__expenseList_closure.prototype = { call$2(context, index) { @@ -525494,7 +525972,7 @@ t2 = B.JSArray_methods.contains$1(t1._selected, expense); return A.ExpenseListItem$(expense, t1._invoice_item_selector$_filter, t2, false, new A._InvoiceItemSelectorState_build__expenseList__closure(t1, expense), new A._InvoiceItemSelectorState_build__expenseList__closure0(t1, expense, context), true, false); }, - $signature: 381 + $signature: 352 }; A._InvoiceItemSelectorState_build__expenseList__closure.prototype = { call$1(checked) { @@ -525708,7 +526186,7 @@ t1[0].call$1(new A.LoadClient(null, client.id)); } }, - $signature: 272 + $signature: 333 }; A.InvoiceEmailScreen_build_closure0.prototype = { call$1(store) { @@ -525762,7 +526240,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.EmailInvoiceRequest(completer, this.invoice.id, template, subject, body, ccEmail)); }, - $signature: 359 + $signature: 350 }; A.EmailInvoiceVM_EmailInvoiceVM$fromStore__closure.prototype = { call$1(_) { @@ -525945,7 +526423,7 @@ A.handleEntitiesActions(A._setArrayType([this.$this.invoice], type$.JSArray_BaseEntity), action, false); return null; }, - $signature: 74 + $signature: 73 }; A.InvoiceListItem_build__closure5.prototype = { call$0() { @@ -525991,7 +526469,7 @@ t3 = t4 && B.JSArray_methods.contains$1(t3._list$_list, t2.id); return new A.InvoiceListItem(t2, t1.filter, t4, t3, null, true, null); }, - $signature: 425 + $signature: 349 }; A.EntityListVM.prototype = {}; A.InvoiceListVM.prototype = {}; @@ -526172,7 +526650,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 768 + $signature: 767 }; A._InvoicePdfViewState_loadPdf__closure1.prototype = { call$0() { @@ -526282,7 +526760,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 70 + $signature: 69 }; A._InvoicePdfViewState_build_closure4.prototype = { call$0() { @@ -526539,7 +527017,7 @@ call$0() { return A.launchUrl(A.Uri_parse("mailto:" + this.contact.email, 0, null)); }, - $signature: 65 + $signature: 63 }; A.InvoiceScreen.prototype = { build$1(context) { @@ -526758,7 +527236,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterInvoicesByStatus($status)); }, - $signature: 168 + $signature: 159 }; A.InvoiceScreen_build_closure19.prototype = { call$0() { @@ -526783,7 +527261,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SortInvoices(value)); }, - $signature: 40 + $signature: 38 }; A.InvoiceScreen_build_closure13.prototype = { call$2(state, value) { @@ -526791,7 +527269,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterInvoicesByState(state)); }, - $signature: 64 + $signature: 66 }; A.InvoiceScreen_build_closure14.prototype = { call$2($status, value) { @@ -526799,7 +527277,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterInvoicesByStatus($status)); }, - $signature: 186 + $signature: 177 }; A.InvoiceScreen_build_closure8.prototype = { call$1(value) { @@ -527131,13 +527609,13 @@ call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A._InvoiceViewActivityState_build_closure.prototype = { call$2(context, index) { return new A.ActivityListTile(this.activities._list$_list[index], false, null); }, - $signature: 300 + $signature: 310 }; A.InvoiceViewContacts.prototype = { build$1(context) { @@ -527246,25 +527724,25 @@ call$1(contact) { return contact.id === this.$this.invitation.vendorContactId; }, - $signature: 194 + $signature: 197 }; A._InvitationListTile_build_closure0.prototype = { call$0() { return A.VendorContactEntity_VendorContactEntity(); }, - $signature: 585 + $signature: 590 }; A._InvitationListTile_build_closure1.prototype = { call$1(contact) { return contact.id === this.$this.invitation.clientContactId; }, - $signature: 192 + $signature: 172 }; A._InvitationListTile_build_closure2.prototype = { call$0() { return A.ClientContactEntity_ClientContactEntity(); }, - $signature: 458 + $signature: 594 }; A.InvoiceViewDocuments.prototype = { build$1(context) { @@ -527280,7 +527758,7 @@ call$2(path, isPrivate) { return this.$this.viewModel.onUploadDocuments.call$3(this.context, path, isPrivate); }, - $signature: 144 + $signature: 145 }; A.InvoiceViewDocuments_build_closure0.prototype = { call$1($document) { @@ -527342,13 +527820,13 @@ t1 = t1 == null ? null : t1.id; return (t1 == null ? "" : t1).length !== 0; }, - $signature: 372 + $signature: 355 }; A._InvoiceViewHistoryState_build_closure0.prototype = { call$1(activity) { return !B.JSArray_methods.contains$1(A._setArrayType(["7", "21", "60", "136"], type$.JSArray_String), activity.activityTypeId); }, - $signature: 372 + $signature: 355 }; A._InvoiceViewHistoryState_build_closure1.prototype = { call$2(a, b) { @@ -527396,7 +527874,7 @@ t6 = t5 ? A.Icon$(B.IconData_57695_MaterialIcons_null_true, _null, _null, _null) : _null; return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, _null, t5 ? new A._InvoiceViewHistoryState_build__closure(t1, context, t2, $history) : _null, false, _null, _null, _null, t4, _null, t3, t6, _null); }, - $signature: 518 + $signature: 477 }; A._InvoiceViewHistoryState_build__closure.prototype = { call$0() { @@ -527409,7 +527887,7 @@ call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A.InvoiceOverview.prototype = { build$1(context) { @@ -527673,42 +528151,48 @@ t5 = invoice.projectId; if (t5.length !== 0) widgets.push(A.EntityListTile$(t4[t3].projectState.$get$1(0, t5), t1, _null)); - t5 = invoice.expenseId; - if (t5.length !== 0) - widgets.push(A.EntityListTile$(t4[t3].vendorState.$get$1(0, t5), t1, _null)); - t5 = invoice.assignedUserId; - if ((t5 == null ? "" : t5).length !== 0) { - t7 = t4[t3].userState; + t5 = invoice.invoiceId; + t7 = t5 == null; + if ((t7 ? "" : t5).length !== 0) { + t8 = t4[t3].invoiceState; t5.toString; - widgets.push(A.EntityListTile$(t7.$get$1(0, t5), t1, _null)); + widgets.push(A.EntityListTile$(t8.$get$1(0, t5), t1, _null)); } - t5 = invoice.recurringId; - if ((t5 == null ? "" : t5).length !== 0) { + t8 = invoice.expenseId; + if (t8.length !== 0) + widgets.push(A.EntityListTile$(t4[t3].vendorState.$get$1(0, t8), t1, _null)); + t8 = invoice.assignedUserId; + if ((t8 == null ? "" : t8).length !== 0) { + t9 = t4[t3].userState; + t8.toString; + widgets.push(A.EntityListTile$(t9.$get$1(0, t8), t1, _null)); + } + t8 = invoice.recurringId; + if ((t8 == null ? "" : t8).length !== 0) { t2 = t4[t3].recurringInvoiceState; - t5.toString; - widgets.push(A.EntityListTile$(t2.$get$1(0, t5), t1, _null)); + t8.toString; + widgets.push(A.EntityListTile$(t2.$get$1(0, t8), t1, _null)); } else if (B.JSArray_methods.contains$1(A._setArrayType([B.EntityType_recurringInvoice], t17), t2)) { t2 = t11.$index(0, t12); t2.toString; t2 = J.$index$asx(t2, "invoices"); t2.toString; - t5 = $.$get$memoizedRecurringInvoiceStatsForInvoice().call$2(invoice.id, t4[t3].invoiceState.map); - t7 = t11.$index(0, t12); - t7.toString; - t7 = J.$index$asx(t7, "active"); - t7.toString; - t8 = t11.$index(0, t12); - t8.toString; - t8 = J.$index$asx(t8, "archived"); - t8.toString; - widgets.push(new A.EntitiesListTile(invoice, B.EntityType_invoice, t2, t5.present$2(t7, t8), t1, true, _null)); + t8 = $.$get$memoizedRecurringInvoiceStatsForInvoice().call$2(invoice.id, t4[t3].invoiceState.map); + t9 = t11.$index(0, t12); + t9.toString; + t9 = J.$index$asx(t9, "active"); + t9.toString; + t14 = t11.$index(0, t12); + t14.toString; + t14 = J.$index$asx(t14, "archived"); + t14.toString; + widgets.push(new A.EntitiesListTile(invoice, B.EntityType_invoice, t2, t8.present$2(t9, t14), t1, true, _null)); } if (!t10 || t15) { - t2 = invoice.invoiceId; - relatedInvoice = t4[t3].invoiceState.map._map$_map.$index(0, t2); + relatedInvoice = t4[t3].invoiceState.map._map$_map.$index(0, t5); if (relatedInvoice == null) - relatedInvoice = A.InvoiceEntity_InvoiceEntity(_null, _null, t2, _null, _null, _null); - if ((t2 == null ? "" : t2).length !== 0) + relatedInvoice = A.InvoiceEntity_InvoiceEntity(_null, _null, t5, _null, _null, _null); + if ((t7 ? "" : t5).length !== 0) widgets.push(A.EntityListTile$(relatedInvoice, t1, _null)); } else { relatedQuote = $.$get$memoizedInvoiceQuoteSelector().call$2(invoice, t4[t3].quoteState.map); @@ -527802,14 +528286,14 @@ if (paymentable.invoiceId === this.invoice.id) this.paymentMap.$indexSet(0, paymentable, this.payment); }, - $signature: 139 + $signature: 150 }; A.InvoiceOverview_build__closure1.prototype = { call$1(paymentable) { if (paymentable.creditId === this.invoice.id) this.creditMap.$indexSet(0, paymentable, this.payment); }, - $signature: 139 + $signature: 150 }; A.InvoiceOverview_build_closure0.prototype = { call$1(entry) { @@ -527864,7 +528348,7 @@ var _this = this; B.JSArray_methods.addAll$1(_this.widgets, A._setArrayType([new A.Builder(new A.InvoiceOverview_build__closure(_this.$this, _this.invoice, invoiceItem, _this.userCompany), null)], type$.JSArray_Widget)); }, - $signature: 288 + $signature: 318 }; A.InvoiceOverview_build__closure.prototype = { call$1(context) { @@ -528011,7 +528495,7 @@ call$1(context) { return this.call$2(context, null); }, - $signature: 278 + $signature: 340 }; A.InvoiceViewVM_InvoiceViewVM$fromStore_closure0.prototype = { call$1(context) { @@ -528027,7 +528511,7 @@ t2[0].call$1(new A.SaveInvoiceDocumentRequest(isPrivate, new A._AsyncCompleter(t1, type$._AsyncCompleter_List_DocumentEntity), multipartFile, this.invoice)); t1.then$1$1(0, new A.InvoiceViewVM_InvoiceViewVM$fromStore__closure(context), type$.Null).catchError$1(new A.InvoiceViewVM_InvoiceViewVM$fromStore__closure0(context)); }, - $signature: 112 + $signature: 114 }; A.InvoiceViewVM_InvoiceViewVM$fromStore__closure.prototype = { call$1(client) { @@ -528039,7 +528523,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.InvoiceViewVM_InvoiceViewVM$fromStore__closure0.prototype = { call$1(error) { @@ -528068,7 +528552,7 @@ call$2(context, invoice) { return this.call$3(context, invoice, null); }, - $signature: 277 + $signature: 339 }; A.PaymentEdit.prototype = { createState$0() { @@ -528438,27 +528922,27 @@ call$1(paymentable) { return paymentable.get$isEmpty(paymentable); }, - $signature: 251 + $signature: 261 }; A._PaymentEditState_build_closure0.prototype = { call$1(paymentable) { return paymentable.get$isEmpty(paymentable); }, - $signature: 251 + $signature: 261 }; A._PaymentEditState_build_closure1.prototype = { call$1(invoice) { var t1 = this._box_0; t1.paymentTotal = t1.paymentTotal + invoice.amount; }, - $signature: 139 + $signature: 150 }; A._PaymentEditState_build_closure2.prototype = { call$1(credit) { var t1 = this._box_0; t1.creditTotal = t1.creditTotal + credit.amount; }, - $signature: 139 + $signature: 150 }; A._PaymentEditState_build_closure4.prototype = { call$1(val) { @@ -528474,13 +528958,13 @@ t1 = null; return t1; }, - $signature: 150 + $signature: 142 }; A._PaymentEditState_build_closure3.prototype = { call$1(client) { this.viewModel.onChanged.call$1(this.payment.rebuild$1(new A._PaymentEditState_build__closure5(client))); }, - $signature: 52 + $signature: 53 }; A._PaymentEditState_build__closure5.prototype = { call$1(b) { @@ -528548,7 +529032,7 @@ call$1(paymentType) { return this.viewModel.onChanged.call$1(this.payment.rebuild$1(new A._PaymentEditState_build__closure3(paymentType))); }, - $signature: 67 + $signature: 64 }; A._PaymentEditState_build__closure3.prototype = { call$1(b) { @@ -528610,7 +529094,7 @@ call$1(currency) { return this.$this.convertCurrency$1(currency); }, - $signature: 371 + $signature: 373 }; A._PaymentEditState_build_closure14.prototype = { call$1(hasFocus) { @@ -528668,7 +529152,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A.PaymentableEditor.prototype = { createState$0() { @@ -528863,7 +529347,7 @@ b.get$_payment_model$_$this()._payment_model$_amount = t1; return b; }, - $signature: 477 + $signature: 490 }; A._PaymentableEditorState__onChanged_closure0.prototype = { call$1(b) { @@ -528876,7 +529360,7 @@ b.get$_payment_model$_$this()._payment_model$_amount = t1; return b; }, - $signature: 477 + $signature: 490 }; A._PaymentableEditorState__onChanged_closure1.prototype = { call$1(b) { @@ -528931,13 +529415,13 @@ call$1(p) { return p.invoiceId; }, - $signature: 253 + $signature: 257 }; A._PaymentableEditorState_build_closure0.prototype = { call$1(p) { return p.creditId; }, - $signature: 253 + $signature: 257 }; A._PaymentableEditorState_build_closure3.prototype = { call$1(entity) { @@ -528957,13 +529441,13 @@ return t1; } }, - $signature: 374 + $signature: 365 }; A._PaymentableEditorState_build_closure2.prototype = { call$1(entity) { return A.formatNumber(entity.get$listDisplayAmount(), this.context, type$.InvoiceEntity._as(entity).clientId, null, B.FormatNumberType_0, true, null, null, false); }, - $signature: 439 + $signature: 363 }; A._PaymentableEditorState_build_closure1.prototype = { call$1(selected) { @@ -528983,7 +529467,7 @@ t1._payment_edit$_invoiceId = selected.id; t1._payment_edit$_onChanged$1(selected.clientId); }, - $signature: 52 + $signature: 53 }; A._PaymentableEditorState_build_closure6.prototype = { call$1(entity) { @@ -529003,13 +529487,13 @@ return t1; } }, - $signature: 374 + $signature: 365 }; A._PaymentableEditorState_build_closure5.prototype = { call$1(entity) { return A.formatNumber(entity.get$listDisplayAmount(), this.context, type$.InvoiceEntity._as(entity).clientId, null, B.FormatNumberType_0, true, null, null, false); }, - $signature: 439 + $signature: 363 }; A._PaymentableEditorState_build_closure4.prototype = { call$1(selected) { @@ -529024,7 +529508,7 @@ t1._payment_edit$_creditId = selected.id; t1._payment_edit$_onChanged$1(selected.clientId); }, - $signature: 52 + $signature: 53 }; A._PaymentableEditorState_build_closure7.prototype = { call$0() { @@ -529102,14 +529586,14 @@ var t1 = this._box_0; t1.paymentTotal = t1.paymentTotal + invoice.amount; }, - $signature: 139 + $signature: 150 }; A.PaymentEditFooter_build_closure0.prototype = { call$1(credit) { var t1 = this._box_0; t1.creditTotal = t1.creditTotal + credit.amount; }, - $signature: 139 + $signature: 150 }; A.PaymentEditScreen.prototype = { build$1(context) { @@ -529140,7 +529624,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdatePayment(payment)); }, - $signature: 204 + $signature: 199 }; A.PaymentEditVM_PaymentEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -529191,21 +529675,21 @@ t4[0].call$1(new A.SavePaymentRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_PaymentEntity), t3)); return t1.then$1$1(0, new A.PaymentEditVM_PaymentEditVM$fromStore___closure2(t3, t5, this.state, t2, $navigator), type$.Null).catchError$1(new A.PaymentEditVM_PaymentEditVM$fromStore___closure3()); }, - $signature: 136 + $signature: 133 }; A.PaymentEditVM_PaymentEditVM$fromStore___closure.prototype = { call$1(invoice) { var t1 = this._box_0; return t1.amount = t1.amount + invoice.amount; }, - $signature: 139 + $signature: 150 }; A.PaymentEditVM_PaymentEditVM$fromStore___closure0.prototype = { call$1(credit) { var t1 = this._box_0; return t1.amount = t1.amount - credit.amount; }, - $signature: 139 + $signature: 150 }; A.PaymentEditVM_PaymentEditVM$fromStore___closure1.prototype = { call$1(context) { @@ -529262,7 +529746,7 @@ else A.viewEntity(false, savedPayment, null, false); }, - $signature: 204 + $signature: 199 }; A.PaymentEditVM_PaymentEditVM$fromStore___closure3.prototype = { call$1(error) { @@ -529419,7 +529903,7 @@ A.handleEntitiesActions(A._setArrayType([this.$this.payment], type$.JSArray_BaseEntity), action, false); return null; }, - $signature: 74 + $signature: 73 }; A.PaymentListItem_build__closure5.prototype = { call$0() { @@ -529468,7 +529952,7 @@ t2 = t4 && B.JSArray_methods.contains$1(t2._list$_list, t3.id); return new A.PaymentListItem(t3, t1.filter, t4, t2, null, true, null); }, - $signature: 593 + $signature: 559 }; A.PaymentListVM.prototype = { get$user(receiver) { @@ -529669,7 +530153,7 @@ b.get$_payment_status_model$_$this()._payment_status_model$_name = t1; return b; }, - $signature: 195 + $signature: 207 }; A.PaymentScreen_build_closure0.prototype = { call$1(b) { @@ -529684,7 +530168,7 @@ b.get$_payment_status_model$_$this()._payment_status_model$_name = t1; return b; }, - $signature: 195 + $signature: 207 }; A.PaymentScreen_build_closure1.prototype = { call$1(b) { @@ -529699,7 +530183,7 @@ b.get$_payment_status_model$_$this()._payment_status_model$_name = t1; return b; }, - $signature: 195 + $signature: 207 }; A.PaymentScreen_build_closure2.prototype = { call$1(b) { @@ -529720,7 +530204,7 @@ b.get$_payment_status_model$_$this()._payment_status_model$_name = t1; return b; }, - $signature: 195 + $signature: 207 }; A.PaymentScreen_build_closure3.prototype = { call$1(b) { @@ -529735,7 +530219,7 @@ b.get$_payment_status_model$_$this()._payment_status_model$_name = t1; return b; }, - $signature: 195 + $signature: 207 }; A.PaymentScreen_build_closure4.prototype = { call$1(b) { @@ -529750,7 +530234,7 @@ b.get$_payment_status_model$_$this()._payment_status_model$_name = t1; return b; }, - $signature: 195 + $signature: 207 }; A.PaymentScreen_build_closure5.prototype = { call$1(b) { @@ -529765,7 +530249,7 @@ b.get$_payment_status_model$_$this()._payment_status_model$_name = t1; return b; }, - $signature: 195 + $signature: 207 }; A.PaymentScreen_build_closure6.prototype = { call$1(b) { @@ -529780,7 +530264,7 @@ b.get$_payment_status_model$_$this()._payment_status_model$_name = t1; return b; }, - $signature: 195 + $signature: 207 }; A.PaymentScreen_build_closure21.prototype = { call$0() { @@ -529812,7 +530296,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterPaymentsByStatus($status)); }, - $signature: 168 + $signature: 159 }; A.PaymentScreen_build_closure20.prototype = { call$0() { @@ -529888,7 +530372,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterPaymentsByState(state)); }, - $signature: 64 + $signature: 66 }; A.PaymentScreen_build_closure15.prototype = { call$2($status, value) { @@ -529896,7 +530380,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterPaymentsByStatus($status)); }, - $signature: 186 + $signature: 177 }; A.PaymentScreen_build_closure8.prototype = { call$0() { @@ -530114,7 +530598,7 @@ call$1(paymentable) { return paymentable.get$isEmpty(paymentable); }, - $signature: 251 + $signature: 261 }; A._PaymentRefundState_build_closure1.prototype = { call$1(val) { @@ -530194,13 +530678,13 @@ call$1(value) { A.Navigator_of(this.context, false).pop$0(); }, - $signature: 204 + $signature: 199 }; A._PaymentRefundState_build_closure4.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._PaymentRefundState_build_closure5.prototype = { call$1(context) { @@ -530333,7 +530817,7 @@ b.get$_payment_model$_$this()._payment_model$_amount = t1; return b; }, - $signature: 477 + $signature: 490 }; A._PaymentableEditorState__onChanged_closure7.prototype = { call$1(b) { @@ -530365,14 +530849,14 @@ call$1(payment) { return payment.invoiceId; }, - $signature: 253 + $signature: 257 }; A._PaymentableEditorState_build_closure10.prototype = { call$1(entity) { type$.InvoiceEntity._as(entity); return A.formatNumber(entity.amount, this.context, entity.clientId, null, B.FormatNumberType_0, true, null, null, false); }, - $signature: 439 + $signature: 363 }; A._PaymentableEditorState_build_closure9.prototype = { call$1(selected) { @@ -530382,7 +530866,7 @@ t1._payment_refund$_onChanged$1(selected.clientId); t1.setState$1(new A._PaymentableEditorState_build__closure2(t1, selected)); }, - $signature: 52 + $signature: 53 }; A._PaymentableEditorState_build__closure2.prototype = { call$0() { @@ -530452,7 +530936,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdatePayment(payment)); }, - $signature: 204 + $signature: 199 }; A.PaymentRefundVM_PaymentRefundVM$fromStore_closure1.prototype = { call$1(context) { @@ -530500,7 +530984,7 @@ } else A.viewEntity(false, savedPayment, null, true); }, - $signature: 204 + $signature: 199 }; A.PaymentRefundVM_PaymentRefundVM$fromStore__closure0.prototype = { call$1(error) { @@ -530822,7 +531306,7 @@ b.get$_payment_term_model$_$this()._numDays = t1; return b; }, - $signature: 638 + $signature: 642 }; A._PaymentTermEditState__onChanged_closure0.prototype = { call$0() { @@ -530834,7 +531318,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._PaymentTermEditState_build_closure1.prototype = { call$1(context) { @@ -530854,7 +531338,7 @@ t4 = type$.JSArray_Widget; return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, true, t1._numDaysController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_2_false_false, t3, _null, _null, false, _null, _null, new A._PaymentTermEditState_build__closure(t1), true, _null, _null, B.TextAlign_4, new A._PaymentTermEditState_build__closure0(t2))], t4), _null, _null, false, _null, false, _null, _null)], t4), _null, _null, _null, false, _null); }, - $signature: 142 + $signature: 146 }; A._PaymentTermEditState_build__closure0.prototype = { call$1(value) { @@ -530908,7 +531392,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdatePaymentTerm(paymentTerm)); }, - $signature: 404 + $signature: 443 }; A.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -530946,7 +531430,7 @@ t5[0].call$1(new A.SavePaymentTermRequest(new A._AsyncCompleter(t4, type$._AsyncCompleter_PaymentTermEntity), paymentTerm)); return t4.then$1$1(0, new A.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure(paymentTerm, t3, this.state, t1, t2), type$.Null).catchError$1(new A.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure0()); }, - $signature: 70 + $signature: 69 }; A.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure.prototype = { call$1(savedPaymentTerm) { @@ -530981,7 +531465,7 @@ } else A.viewEntity(false, savedPaymentTerm, null, true); }, - $signature: 404 + $signature: 443 }; A.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure0.prototype = { call$1(error) { @@ -531196,7 +531680,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SortPaymentTerms(value)); }, - $signature: 40 + $signature: 38 }; A.PaymentTermScreen_build_closure5.prototype = { call$2(state, value) { @@ -531204,7 +531688,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterPaymentTermsByState(state)); }, - $signature: 64 + $signature: 66 }; A.PaymentTermScreen_build_closure.prototype = { call$0() { @@ -531582,7 +532066,7 @@ b.get$_product_model$_$this()._imageUrl = t1; return b; }, - $signature: 185 + $signature: 180 }; A._ProductEditState__onChanged_closure0.prototype = { call$0() { @@ -531594,7 +532078,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._ProductEditState_build_closure.prototype = { call$1(val) { @@ -531621,20 +532105,20 @@ b.get$_product_model$_$this()._taxCategoryId = this.taxCategoryId; return b; }, - $signature: 185 + $signature: 180 }; A._ProductEditState_build_closure0.prototype = { call$1(key) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(B.Map_k38sM.$index(0, key)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, key, type$.String); }, - $signature: 41 + $signature: 42 }; A._ProductEditState_build_closure2.prototype = { call$1(taxRate) { return this.viewModel.onChanged.call$1(this.product.rebuild$1(new A._ProductEditState_build__closure2(taxRate))); }, - $signature: 119 + $signature: 120 }; A._ProductEditState_build__closure2.prototype = { call$1(b) { @@ -531643,13 +532127,13 @@ b.get$_product_model$_$this()._product_model$_taxName1 = t1.name; return b; }, - $signature: 185 + $signature: 180 }; A._ProductEditState_build_closure3.prototype = { call$1(taxRate) { return this.viewModel.onChanged.call$1(this.product.rebuild$1(new A._ProductEditState_build__closure1(taxRate))); }, - $signature: 119 + $signature: 120 }; A._ProductEditState_build__closure1.prototype = { call$1(b) { @@ -531658,13 +532142,13 @@ b.get$_product_model$_$this()._product_model$_taxName2 = t1.name; return b; }, - $signature: 185 + $signature: 180 }; A._ProductEditState_build_closure4.prototype = { call$1(taxRate) { return this.viewModel.onChanged.call$1(this.product.rebuild$1(new A._ProductEditState_build__closure0(taxRate))); }, - $signature: 119 + $signature: 120 }; A._ProductEditState_build__closure0.prototype = { call$1(b) { @@ -531673,7 +532157,7 @@ b.get$_product_model$_$this()._product_model$_taxName3 = t1.name; return b; }, - $signature: 185 + $signature: 180 }; A._ProductEditState_build_closure5.prototype = { call$1(value) { @@ -531686,7 +532170,7 @@ b.get$_product_model$_$this()._product_model$_stockNotification = this.value; return b; }, - $signature: 185 + $signature: 180 }; A.ProductEditScreen.prototype = { build$1(context) { @@ -531720,7 +532204,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateProduct(product)); }, - $signature: 336 + $signature: 272 }; A.ProductEditVM_ProductEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -531761,7 +532245,7 @@ t4[0].call$1(new A.SaveProductRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_ProductEntity), product)); return t2.then$1$1(0, new A.ProductEditVM_ProductEditVM$fromStore___closure(product, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.ProductEditVM_ProductEditVM$fromStore___closure0()); }, - $signature: 70 + $signature: 69 }; A.ProductEditVM_ProductEditVM$fromStore___closure.prototype = { call$1(savedProduct) { @@ -531796,7 +532280,7 @@ } else A.viewEntity(false, savedProduct, null, false); }, - $signature: 336 + $signature: 272 }; A.ProductEditVM_ProductEditVM$fromStore___closure0.prototype = { call$1(error) { @@ -531928,7 +532412,7 @@ A.handleEntitiesActions(A._setArrayType([this.$this.product], type$.JSArray_BaseEntity), action, false); return null; }, - $signature: 74 + $signature: 73 }; A.ProductListItem_build__closure5.prototype = { call$0() { @@ -532238,7 +532722,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterProductsByState(state)); }, - $signature: 64 + $signature: 66 }; A.ProductScreen_build_closure0.prototype = { call$0() { @@ -532367,7 +532851,7 @@ t1 = A.RefreshIndicator$(new A.ProductOverview(t1, new A.ValueKey(t3.id, t2)), new A._ProductViewState_build__closure1(t1, context)); return A.Column$(A._setArrayType([A.Expanded$(t1, 1), new A.BottomButtons(_this.product, B.EntityAction_newInvoice, B.EntityAction_clone, true, true, null)], type$.JSArray_Widget), B.CrossAxisAlignment_2, null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, - $signature: 270 + $signature: 260 }; A._ProductViewState_build__closure.prototype = { call$0() { @@ -532413,7 +532897,7 @@ call$2(path, isPrivate) { return this.$this.viewModel.onUploadDocuments.call$3(this.context, path, isPrivate); }, - $signature: 144 + $signature: 145 }; A.ProductViewDocuments_build_closure0.prototype = { call$0() { @@ -532564,7 +533048,7 @@ }, "call*": "call$3", $requiredArgCount: 3, - $signature: 112 + $signature: 114 }; A.ProductViewVM_ProductViewVM$fromStore__closure.prototype = { call$1(client) { @@ -532576,7 +533060,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.ProductViewVM_ProductViewVM$fromStore__closure0.prototype = { call$1(error) { @@ -532718,7 +533202,7 @@ b.get$_project_model$_$this()._project_model$_customValue4 = t1; return b; }, - $signature: 196 + $signature: 201 }; A._ProjectEditState__onChanged_closure0.prototype = { call$0() { @@ -532730,7 +533214,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._ProjectEditState_build_closure.prototype = { call$1(context) { @@ -532792,7 +533276,7 @@ t4 = type$.JSArray_Widget; return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([t6, t3, new A.UserPicker(t1.assignedUserId, new A._ProjectEditState_build__closure4(t8, t1), _null), t9, t10, t11, new A.CustomField(t2._project_edit$_custom1Controller, _null, t7, "project1", t1.customValue1, false, _null), new A.CustomField(t2._project_edit$_custom2Controller, _null, t7, "project2", t1.customValue2, false, _null), new A.CustomField(t2._project_edit$_custom3Controller, _null, t7, "project3", t1.customValue3, false, _null), new A.CustomField(t2._project_edit$_custom4Controller, _null, t7, "project4", t1.customValue4, false, _null), t12, A.DecoratedFormField$(false, _null, false, t2._project_edit$_privateNotesController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t5, 4, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], t4), _null, _null, false, _null, true, _null, _null)], t4), _null, _null, _null, false, new A.ValueKey("__project_" + t1.id + "_" + t1.updatedAt + "__", type$.ValueKey_String)); }, - $signature: 142 + $signature: 146 }; A._ProjectEditState_build__closure.prototype = { call$1(val) { @@ -532820,13 +533304,13 @@ t1 = null; return t1; }, - $signature: 150 + $signature: 142 }; A._ProjectEditState_build__closure1.prototype = { call$1(client) { this.viewModel.onChanged.call$1(this.project.rebuild$1(new A._ProjectEditState_build___closure1(client))); }, - $signature: 52 + $signature: 53 }; A._ProjectEditState_build___closure1.prototype = { call$1(b) { @@ -532837,13 +533321,13 @@ b.get$_project_model$_$this()._project_model$_clientId = t1; return b; }, - $signature: 196 + $signature: 201 }; A._ProjectEditState_build__closure0.prototype = { call$1(completer) { this.viewModel.onAddClientPressed.call$2(this.context, completer); }, - $signature: 230 + $signature: 232 }; A._ProjectEditState_build__closure4.prototype = { call$1(userId) { @@ -532856,7 +533340,7 @@ b.get$_project_model$_$this()._project_model$_assignedUserId = this.userId; return b; }, - $signature: 196 + $signature: 201 }; A._ProjectEditState_build__closure3.prototype = { call$2(date, _) { @@ -532869,7 +533353,7 @@ b.get$_project_model$_$this()._project_model$_dueDate = this.date; return b; }, - $signature: 196 + $signature: 201 }; A.ProjectEditScreen.prototype = { build$1(context) { @@ -532903,7 +533387,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateProject(project)); }, - $signature: 337 + $signature: 309 }; A.ProjectEditVM_ProjectEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -532932,7 +533416,7 @@ A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, t1, _null, true); completer.future.then$1$1(0, new A.ProjectEditVM_ProjectEditVM$fromStore__closure0(t3), t4); }, - $signature: 127 + $signature: 131 }; A.ProjectEditVM_ProjectEditVM$fromStore__closure.prototype = { call$1(_) { @@ -532948,7 +533432,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateCurrentRoute("/project/edit")); }, - $signature: 106 + $signature: 103 }; A.ProjectEditVM_ProjectEditVM$fromStore_closure0.prototype = { call$1(context) { @@ -532979,7 +533463,7 @@ t4[0].call$1(new A.SaveProjectRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_ProjectEntity), project)); return t2.then$1$1(0, new A.ProjectEditVM_ProjectEditVM$fromStore___closure(project, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.ProjectEditVM_ProjectEditVM$fromStore___closure0()); }, - $signature: 70 + $signature: 69 }; A.ProjectEditVM_ProjectEditVM$fromStore___closure.prototype = { call$1(savedProject) { @@ -533023,7 +533507,7 @@ A.viewEntity(false, savedProject, null, true); } }, - $signature: 337 + $signature: 309 }; A.ProjectEditVM_ProjectEditVM$fromStore___closure0.prototype = { call$1(error) { @@ -533155,7 +533639,7 @@ A.handleEntitiesActions(A._setArrayType([this.$this.project], type$.JSArray_BaseEntity), action, false); return null; }, - $signature: 74 + $signature: 73 }; A.ProjectListItem_build__closure5.prototype = { call$0() { @@ -533432,7 +533916,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterProjectsByState(state)); }, - $signature: 64 + $signature: 66 }; A.ProjectScreen_build_closure.prototype = { call$0() { @@ -533563,7 +534047,7 @@ t1 = A.RefreshIndicator$(new A.ProjectOverview(t2, t4.isFilter, _null), new A._ProjectViewState_build__closure1(t2, context)); return A.Column$(A._setArrayType([A.Expanded$(t1, 1), new A.BottomButtons(_this.project, B.EntityAction_newTask, B.EntityAction_invoiceProject, true, true, _null)], type$.JSArray_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, - $signature: 270 + $signature: 260 }; A._ProjectViewState_build__closure.prototype = { call$0() { @@ -533609,7 +534093,7 @@ call$2(path, isPrivate) { return this.$this.viewModel.onUploadDocuments.call$3(this.context, path, isPrivate); }, - $signature: 144 + $signature: 145 }; A.ProjectViewDocuments_build_closure0.prototype = { call$0() { @@ -533661,7 +534145,7 @@ var t1 = this.$this; return t1._framework$_element != null && t1.setState$1(new A._ProjectOverviewState_initState__closure()); }, - $signature: 229 + $signature: 215 }; A._ProjectOverviewState_initState__closure.prototype = { call$0() { @@ -533776,7 +534260,7 @@ B.JSArray_methods.addAll$1(t7, A._setArrayType([new A.IconMessage(t1, _null, _null, _null, true, _null), new A.ListDivider(_null)], t9)); return t7; }, - $signature: 292 + $signature: 302 }; A._ProjectOverviewState_build_closure.prototype = { call$0() { @@ -533843,7 +534327,7 @@ }, "call*": "call$3", $requiredArgCount: 3, - $signature: 112 + $signature: 114 }; A.ProjectViewVM_ProjectViewVM$fromStore__closure.prototype = { call$1(client) { @@ -533855,7 +534339,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.ProjectViewVM_ProjectViewVM$fromStore__closure0.prototype = { call$1(error) { @@ -533978,7 +534462,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._PurchaseOrderEditState_build_closure2.prototype = { call$1(context) { @@ -533990,7 +534474,7 @@ call$2(context, action) { return this.$this._purchase_order_edit$_onSavePressed$2(context, action); }, - $signature: 74 + $signature: 73 }; A._PurchaseOrderEditState_build_closure.prototype = { call$0() { @@ -534009,7 +534493,7 @@ t5 = type$.WhereTypeIterable_BaseEntity; return new A.InvoiceItemSelector(t1, new A._PurchaseOrderEditState_build___closure(_this.$this, t4, _this.isFullscreen), t1.clientId, A.List_List$of(new A.WhereTypeIterable(new A.MappedIterable(new A.WhereIterable(t2, new A._PurchaseOrderEditState_build___closure0(), t3._eval$1("WhereIterable<1>")), new A._PurchaseOrderEditState_build___closure1(t4), t3._eval$1("MappedIterable<1,BaseEntity?>")), t5), true, t5._eval$1("Iterable.E")), false, null); }, - $signature: 285 + $signature: 330 }; A._PurchaseOrderEditState_build___closure0.prototype = { call$1(item) { @@ -534023,7 +534507,7 @@ var t1 = this.viewModel.state; return item.typeId === "2" ? t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskState.map._map$_map.$index(0, item.taskId) : t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].expenseState.map._map$_map.$index(0, item.expenseId); }, - $signature: 284 + $signature: 331 }; A._PurchaseOrderEditState_build___closure.prototype = { call$3(items, clientId, projectId) { @@ -534037,7 +534521,7 @@ call$2(items, clientId) { return this.call$3(items, clientId, null); }, - $signature: 283 + $signature: 332 }; A.__PurchaseOrderEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0() { @@ -534082,7 +534566,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdatePurchaseOrder(purchaseOrder)); }, - $signature: 154 + $signature: 168 }; A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure0.prototype = { call$3(context, purchaseOrder, vendor) { @@ -534103,7 +534587,7 @@ A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, t1, null, true); completer.future.then$1$1(0, new A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore__closure0(t3), t4); }, - $signature: 127 + $signature: 131 }; A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore__closure.prototype = { call$1(_) { @@ -534119,7 +534603,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateCurrentRoute("/purchase_order/edit")); }, - $signature: 106 + $signature: 103 }; A.PurchaseOrderEditItemsScreen.prototype = { build$1(context) { @@ -534175,7 +534659,7 @@ t1[0].call$1(new A.UpdatePurchaseOrderItem(index, purchaseOrderItem)); } }, - $signature: 282 + $signature: 345 }; A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure2.prototype = { call$2(oldIndex, newIndex) { @@ -534183,7 +534667,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.MovePurchaseOrderItem(oldIndex, newIndex)); }, - $signature: 224 + $signature: 222 }; A.PurchaseOrderEditNotesScreen.prototype = { build$1(context) { @@ -534210,7 +534694,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdatePurchaseOrder(purchaseOrder)); }, - $signature: 154 + $signature: 168 }; A.PurchaseOrderEditPDFScreen.prototype = { build$1(context) { @@ -534266,7 +534750,7 @@ call$1(context) { return this.call$2(context, null); }, - $signature: 200 + $signature: 193 }; A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore__closure1.prototype = { call$0() { @@ -534306,7 +534790,7 @@ return t3.then$1$1(0, new A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure1(t2, t4, _this.state, t1, $navigator, t5), type$.Null).catchError$1(new A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure2()); } }, - $signature: 136 + $signature: 133 }; A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure0.prototype = { call$1(context) { @@ -534397,7 +534881,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.AddPurchaseOrderItems(items)); }, - $signature: 280 + $signature: 343 }; A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -534422,7 +534906,7 @@ t2[0].call$1(new A.SavePurchaseOrderDocumentRequest(isPrivate, new A._AsyncCompleter(t1, type$._AsyncCompleter_List_DocumentEntity), multipartFiles, this.purchaseOrder)); t1.then$1$1(0, new A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore__closure(context), type$.Null).catchError$1(new A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore__closure0(context)); }, - $signature: 279 + $signature: 341 }; A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore__closure.prototype = { call$1(client) { @@ -534434,7 +534918,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore__closure0.prototype = { call$1(error) { @@ -534473,7 +534957,7 @@ t1[0].call$1(new A.LoadVendor(null, t2.id)); } }, - $signature: 272 + $signature: 333 }; A.PurchaseOrderEmailScreen_build_closure0.prototype = { call$1(store) { @@ -534511,7 +534995,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.EmailPurchaseOrderRequest(completer, this.purchaseOrder.id, template, subject, body, ccEmail)); }, - $signature: 359 + $signature: 350 }; A.EmailPurchaseOrderVM_EmailPurchaseOrderVM$fromStore__closure.prototype = { call$1(_) { @@ -534670,7 +535154,7 @@ A.handleEntitiesActions(A._setArrayType([this.$this.purchaseOrder], type$.JSArray_BaseEntity), action, false); return null; }, - $signature: 74 + $signature: 73 }; A.PurchaseOrderListItem_build__closure5.prototype = { call$0() { @@ -534921,7 +535405,7 @@ call$0() { return A.launchUrl(A.Uri_parse("mailto:" + this.contact.email, 0, null)); }, - $signature: 65 + $signature: 63 }; A.PurchaseOrderScreen.prototype = { build$1(context) { @@ -535067,7 +535551,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterPurchaseOrdersByStatus($status)); }, - $signature: 168 + $signature: 159 }; A.PurchaseOrderScreen_build_closure15.prototype = { call$0() { @@ -535092,7 +535576,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SortPurchaseOrders(value)); }, - $signature: 40 + $signature: 38 }; A.PurchaseOrderScreen_build_closure9.prototype = { call$2(state, value) { @@ -535100,7 +535584,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterPurchaseOrdersByState(state)); }, - $signature: 64 + $signature: 66 }; A.PurchaseOrderScreen_build_closure10.prototype = { call$2($status, value) { @@ -535108,7 +535592,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterPurchaseOrdersByStatus($status)); }, - $signature: 186 + $signature: 177 }; A.PurchaseOrderScreen_build_closure3.prototype = { call$0() { @@ -535221,7 +535705,7 @@ call$1(context) { return this.call$2(context, null); }, - $signature: 278 + $signature: 340 }; A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure0.prototype = { call$1(context) { @@ -535237,7 +535721,7 @@ t2[0].call$1(new A.SavePurchaseOrderDocumentRequest(isPrivate, new A._AsyncCompleter(t1, type$._AsyncCompleter_List_DocumentEntity), multipartFile, this.purchaseOrder)); t1.then$1$1(0, new A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure(context), type$.Null).catchError$1(new A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure0(context)); }, - $signature: 112 + $signature: 114 }; A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure.prototype = { call$1(client) { @@ -535249,7 +535733,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure0.prototype = { call$1(error) { @@ -535273,7 +535757,7 @@ call$2(context, purchaseOrder) { return this.call$3(context, purchaseOrder, null); }, - $signature: 277 + $signature: 339 }; A.QuoteEdit.prototype = { createState$0() { @@ -535385,7 +535869,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._QuoteEditState_build_closure2.prototype = { call$1(context) { @@ -535397,7 +535881,7 @@ call$2(context, action) { return this.$this._quote_edit$_onSavePressed$2(context, action); }, - $signature: 74 + $signature: 73 }; A._QuoteEditState_build_closure.prototype = { call$0() { @@ -535416,7 +535900,7 @@ t5 = type$.WhereTypeIterable_BaseEntity; return new A.InvoiceItemSelector(t1, new A._QuoteEditState_build___closure(_this.$this, t4, _this.isFullscreen), t1.clientId, A.List_List$of(new A.WhereTypeIterable(new A.MappedIterable(new A.WhereIterable(t2, new A._QuoteEditState_build___closure0(), t3._eval$1("WhereIterable<1>")), new A._QuoteEditState_build___closure1(t4), t3._eval$1("MappedIterable<1,BaseEntity?>")), t5), true, t5._eval$1("Iterable.E")), false, null); }, - $signature: 285 + $signature: 330 }; A._QuoteEditState_build___closure0.prototype = { call$1(item) { @@ -535430,7 +535914,7 @@ var t1 = this.viewModel.state; return item.typeId === "2" ? t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskState.map._map$_map.$index(0, item.taskId) : t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].expenseState.map._map$_map.$index(0, item.expenseId); }, - $signature: 284 + $signature: 331 }; A._QuoteEditState_build___closure.prototype = { call$3(items, clientId, projectId) { @@ -535444,7 +535928,7 @@ call$2(items, clientId) { return this.call$3(items, clientId, null); }, - $signature: 283 + $signature: 332 }; A.__QuoteEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0() { @@ -535489,7 +535973,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateQuote(quote)); }, - $signature: 154 + $signature: 168 }; A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure0.prototype = { call$3(context, quote, client) { @@ -535504,7 +535988,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateQuoteClient(client)); }, - $signature: 350 + $signature: 406 }; A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure1.prototype = { call$2(context, completer) { @@ -535517,7 +536001,7 @@ A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, t1, _null, true); completer.future.then$1$1(0, new A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure0(t3), t4); }, - $signature: 127 + $signature: 131 }; A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure.prototype = { call$1(_) { @@ -535533,7 +536017,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateCurrentRoute("/quote/edit")); }, - $signature: 106 + $signature: 103 }; A.QuoteEditItemsScreen.prototype = { build$1(context) { @@ -535591,7 +536075,7 @@ t1[0].call$1(new A.UpdateQuoteItem(index, quoteItem)); } }, - $signature: 282 + $signature: 345 }; A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore__closure.prototype = { call$1(b) { @@ -535599,7 +536083,7 @@ b.get$_invoice_model$_$this()._invoice_model$_typeId = t1; return b; }, - $signature: 55 + $signature: 56 }; A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure2.prototype = { call$2(oldIndex, newIndex) { @@ -535607,7 +536091,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.MoveQuoteItem(oldIndex, newIndex)); }, - $signature: 224 + $signature: 222 }; A.QuoteEditNotesScreen.prototype = { build$1(context) { @@ -535634,7 +536118,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateQuote(quote)); }, - $signature: 154 + $signature: 168 }; A.QuoteEditPDFScreen.prototype = { build$1(context) { @@ -535690,7 +536174,7 @@ call$1(context) { return this.call$2(context, null); }, - $signature: 200 + $signature: 193 }; A.QuoteEditVM_QuoteEditVM$fromStore__closure1.prototype = { call$0() { @@ -535730,7 +536214,7 @@ return t3.then$1$1(0, new A.QuoteEditVM_QuoteEditVM$fromStore___closure1(t2, t4, _this.state, t1, $navigator, t5), type$.Null).catchError$1(new A.QuoteEditVM_QuoteEditVM$fromStore___closure2()); } }, - $signature: 136 + $signature: 133 }; A.QuoteEditVM_QuoteEditVM$fromStore___closure0.prototype = { call$1(context) { @@ -535825,7 +536309,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.AddQuoteItems(items)); }, - $signature: 280 + $signature: 343 }; A.QuoteEditVM_QuoteEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -535850,7 +536334,7 @@ t2[0].call$1(new A.SaveQuoteDocumentRequest(isPrivate, new A._AsyncCompleter(t1, type$._AsyncCompleter_List_DocumentEntity), multipartFile, this.quote)); t1.then$1$1(0, new A.QuoteEditVM_QuoteEditVM$fromStore__closure(context), type$.Null).catchError$1(new A.QuoteEditVM_QuoteEditVM$fromStore__closure0(context)); }, - $signature: 279 + $signature: 341 }; A.QuoteEditVM_QuoteEditVM$fromStore__closure.prototype = { call$1(client) { @@ -535862,7 +536346,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.QuoteEditVM_QuoteEditVM$fromStore__closure0.prototype = { call$1(error) { @@ -535901,7 +536385,7 @@ t1[0].call$1(new A.LoadClient(null, t2.id)); } }, - $signature: 272 + $signature: 333 }; A.QuoteEmailScreen_build_closure0.prototype = { call$1(store) { @@ -535944,7 +536428,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.EmailQuoteRequest(completer, this.quote.id, template, subject, body, ccEmail)); }, - $signature: 359 + $signature: 350 }; A.EmailQuoteVM_EmailQuoteVM$fromStore__closure.prototype = { call$1(_) { @@ -536117,7 +536601,7 @@ A.handleEntitiesActions(A._setArrayType([this.$this.quote], type$.JSArray_BaseEntity), action, false); return null; }, - $signature: 74 + $signature: 73 }; A.QuoteListItem_build__closure5.prototype = { call$0() { @@ -536157,7 +536641,7 @@ t2.toString; return new A.QuoteListItem(t2, t1.filter, true, null); }, - $signature: 586 + $signature: 527 }; A.QuoteListVM.prototype = {}; A.QuoteListVM_fromStore__handleRefresh.prototype = { @@ -536353,7 +536837,7 @@ call$0() { return A.launchUrl(A.Uri_parse("mailto:" + this.contact.email, 0, null)); }, - $signature: 65 + $signature: 63 }; A.QuoteScreen.prototype = { build$1(context) { @@ -536532,7 +537016,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterQuotesByStatus($status)); }, - $signature: 168 + $signature: 159 }; A.QuoteScreen_build_closure17.prototype = { call$0() { @@ -536597,7 +537081,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterQuotesByState(state)); }, - $signature: 64 + $signature: 66 }; A.QuoteScreen_build_closure12.prototype = { call$2($status, value) { @@ -536605,7 +537089,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterQuotesByStatus($status)); }, - $signature: 186 + $signature: 177 }; A.QuoteScreen_build_closure5.prototype = { call$0() { @@ -536692,7 +537176,7 @@ call$1(context) { return this.call$2(context, null); }, - $signature: 278 + $signature: 340 }; A.QuoteViewVM_QuoteViewVM$fromStore_closure0.prototype = { call$1(context) { @@ -536708,7 +537192,7 @@ t2[0].call$1(new A.SaveQuoteDocumentRequest(isPrivate, new A._AsyncCompleter(t1, type$._AsyncCompleter_List_DocumentEntity), multipartFiles, this.quote)); t1.then$1$1(0, new A.QuoteViewVM_QuoteViewVM$fromStore__closure(context), type$.Null).catchError$1(new A.QuoteViewVM_QuoteViewVM$fromStore__closure0(context)); }, - $signature: 112 + $signature: 114 }; A.QuoteViewVM_QuoteViewVM$fromStore__closure.prototype = { call$1(client) { @@ -536720,7 +537204,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.QuoteViewVM_QuoteViewVM$fromStore__closure0.prototype = { call$1(error) { @@ -536744,7 +537228,7 @@ call$2(context, quote) { return this.call$3(context, quote, null); }, - $signature: 277 + $signature: 339 }; A.RecurringExpenseEditScreen.prototype = { build$1(context) { @@ -536771,7 +537255,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateRecurringExpense(recurringExpense)); }, - $signature: 157 + $signature: 158 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure2.prototype = { call$2(context, completer) { @@ -536784,7 +537268,7 @@ A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, t1, _null, true); completer.future.then$1$1(0, new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure4(t3), t4); }, - $signature: 127 + $signature: 131 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure3.prototype = { call$1(_) { @@ -536800,7 +537284,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateCurrentRoute("/recurring_expense/edit")); }, - $signature: 106 + $signature: 103 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure3.prototype = { call$2(context, completer) { @@ -536813,7 +537297,7 @@ A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, t1, _null, true); completer.future.then$1$1(0, new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure2(t3), t4); }, - $signature: 127 + $signature: 131 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure1.prototype = { call$1(_) { @@ -536829,7 +537313,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateCurrentRoute("/recurring_expense/edit")); }, - $signature: 106 + $signature: 103 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -536853,7 +537337,7 @@ call$1(context) { return this.call$2(context, null); }, - $signature: 200 + $signature: 193 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure5.prototype = { call$0() { @@ -536884,7 +537368,7 @@ return t5.then$1$1(0, new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure0(t2, t4, _this.state, t1, t3, t6), type$.Null).catchError$1(new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure1(t3)); } }, - $signature: 136 + $signature: 133 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure0.prototype = { call$1(savedRecurringExpense) { @@ -536950,7 +537434,7 @@ A.viewEntity(false, savedRecurringExpense, _null, true); } }, - $signature: 157 + $signature: 158 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure1.prototype = { call$1(error) { @@ -536973,7 +537457,7 @@ t2[0].call$1(new A.SaveRecurringExpenseDocumentRequest(isPrivate, new A._AsyncCompleter(t1, type$._AsyncCompleter_List_DocumentEntity), multipartFiles, this.recurringExpense)); t1.then$1$1(0, new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure(context), type$.Null).catchError$1(new A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure0(context)); }, - $signature: 112 + $signature: 114 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure.prototype = { call$1(client) { @@ -536985,7 +537469,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure0.prototype = { call$1(error) { @@ -537163,7 +537647,7 @@ A.handleEntitiesActions(A._setArrayType([this.$this.expense], type$.JSArray_BaseEntity), action, false); return null; }, - $signature: 74 + $signature: 73 }; A.RecurringExpenseListItem_build__closure5.prototype = { call$0() { @@ -537431,7 +537915,7 @@ b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, - $signature: 160 + $signature: 153 }; A.RecurringExpenseScreen_build_closure0.prototype = { call$1(b) { @@ -537446,7 +537930,7 @@ b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, - $signature: 160 + $signature: 153 }; A.RecurringExpenseScreen_build_closure1.prototype = { call$1(b) { @@ -537461,7 +537945,7 @@ b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, - $signature: 160 + $signature: 153 }; A.RecurringExpenseScreen_build_closure2.prototype = { call$1(b) { @@ -537476,7 +537960,7 @@ b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, - $signature: 160 + $signature: 153 }; A.RecurringExpenseScreen_build_closure3.prototype = { call$1(b) { @@ -537491,7 +537975,7 @@ b.get$_expense_model$_$this()._expense_model$_name = t1; return b; }, - $signature: 160 + $signature: 153 }; A.RecurringExpenseScreen_build_closure17.prototype = { call$0() { @@ -537515,7 +537999,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterRecurringExpensesByStatus($status)); }, - $signature: 168 + $signature: 159 }; A.RecurringExpenseScreen_build_closure15.prototype = { call$2(state, value) { @@ -537548,7 +538032,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SortRecurringExpenses(value)); }, - $signature: 40 + $signature: 38 }; A.RecurringExpenseScreen_build_closure11.prototype = { call$2($status, value) { @@ -537556,7 +538040,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterRecurringExpensesByStatus($status)); }, - $signature: 186 + $signature: 177 }; A.RecurringExpenseScreen_build_closure10.prototype = { call$2(state, value) { @@ -537564,7 +538048,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterRecurringExpensesByState(state)); }, - $signature: 64 + $signature: 66 }; A.RecurringExpenseScreen_build_closure4.prototype = { call$0() { @@ -537684,7 +538168,7 @@ t2[0].call$1(new A.SaveRecurringExpenseDocumentRequest(isPrivate, new A._AsyncCompleter(t1, type$._AsyncCompleter_List_DocumentEntity), multipartFiles, this.recurringExpense)); t1.then$1$1(0, new A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure(context), type$.Null).catchError$1(new A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure0()); }, - $signature: 112 + $signature: 114 }; A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure.prototype = { call$1(client) { @@ -537696,7 +538180,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure0.prototype = { call$1(error) { @@ -537824,7 +538308,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._RecurringInvoiceEditState_build_closure2.prototype = { call$1(context) { @@ -537836,7 +538320,7 @@ call$2(context, action) { return this.$this._recurring_invoice_edit$_onSavePressed$2(context, action); }, - $signature: 74 + $signature: 73 }; A._RecurringInvoiceEditState_build_closure.prototype = { call$0() { @@ -537855,7 +538339,7 @@ t5 = type$.WhereTypeIterable_BaseEntity; return new A.InvoiceItemSelector(t1, new A._RecurringInvoiceEditState_build___closure(_this.$this, t4, _this.isFullscreen), t1.clientId, A.List_List$of(new A.WhereTypeIterable(new A.MappedIterable(new A.WhereIterable(t2, new A._RecurringInvoiceEditState_build___closure0(), t3._eval$1("WhereIterable<1>")), new A._RecurringInvoiceEditState_build___closure1(t4), t3._eval$1("MappedIterable<1,BaseEntity?>")), t5), true, t5._eval$1("Iterable.E")), false, null); }, - $signature: 285 + $signature: 330 }; A._RecurringInvoiceEditState_build___closure0.prototype = { call$1(item) { @@ -537869,7 +538353,7 @@ var t1 = this.viewModel.state; return item.typeId === "2" ? t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskState.map._map$_map.$index(0, item.taskId) : t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].expenseState.map._map$_map.$index(0, item.expenseId); }, - $signature: 284 + $signature: 331 }; A._RecurringInvoiceEditState_build___closure.prototype = { call$3(items, clientId, projectId) { @@ -537883,7 +538367,7 @@ call$2(items, clientId) { return this.call$3(items, clientId, null); }, - $signature: 283 + $signature: 332 }; A.__RecurringInvoiceEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0() { @@ -537928,7 +538412,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateRecurringInvoice(invoice)); }, - $signature: 154 + $signature: 168 }; A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure0.prototype = { call$3(context, invoice, client) { @@ -537943,7 +538427,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateRecurringInvoiceClient(client)); }, - $signature: 350 + $signature: 406 }; A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure1.prototype = { call$2(context, completer) { @@ -537956,7 +538440,7 @@ A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, t1, _null, true); completer.future.then$1$1(0, new A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure0(t3), t4); }, - $signature: 127 + $signature: 131 }; A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure.prototype = { call$1(_) { @@ -537972,7 +538456,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateCurrentRoute("/recurring_invoice/edit")); }, - $signature: 106 + $signature: 103 }; A.RecurringInvoiceEditItemsScreen.prototype = { build$1(context) { @@ -538030,7 +538514,7 @@ t1[0].call$1(new A.UpdateRecurringInvoiceItem(index, item)); } }, - $signature: 282 + $signature: 345 }; A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore__closure.prototype = { call$1(b) { @@ -538038,7 +538522,7 @@ b.get$_invoice_model$_$this()._invoice_model$_typeId = t1; return b; }, - $signature: 55 + $signature: 56 }; A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure2.prototype = { call$2(oldIndex, newIndex) { @@ -538046,7 +538530,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.MoveRecurringInvoiceItem(oldIndex, newIndex)); }, - $signature: 224 + $signature: 222 }; A.RecurringInvoiceEditNotesScreen.prototype = { build$1(context) { @@ -538073,7 +538557,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateRecurringInvoice(recurringInvoice)); }, - $signature: 154 + $signature: 168 }; A.RecurringInvoiceEditPDFScreen.prototype = { build$1(context) { @@ -538129,7 +538613,7 @@ call$1(context) { return this.call$2(context, null); }, - $signature: 200 + $signature: 193 }; A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure1.prototype = { call$0() { @@ -538169,7 +538653,7 @@ return t3.then$1$1(0, new A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure1(t2, t4, _this.state, t1, $navigator, t5), type$.Null).catchError$1(new A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure2()); } }, - $signature: 136 + $signature: 133 }; A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure0.prototype = { call$1(context) { @@ -538264,7 +538748,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.AddRecurringInvoiceItems(items)); }, - $signature: 280 + $signature: 343 }; A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -538289,7 +538773,7 @@ t2[0].call$1(new A.SaveRecurringInvoiceDocumentRequest(isPrivate, new A._AsyncCompleter(t1, type$._AsyncCompleter_List_DocumentEntity), multipartFile, this.recurringInvoice)); t1.then$1$1(0, new A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure(context), type$.Null).catchError$1(new A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure0(context)); }, - $signature: 112 + $signature: 114 }; A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure.prototype = { call$1(client) { @@ -538301,7 +538785,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure0.prototype = { call$1(error) { @@ -538477,7 +538961,7 @@ A.handleEntitiesActions(A._setArrayType([this.$this.invoice], type$.JSArray_BaseEntity), action, false); return null; }, - $signature: 74 + $signature: 73 }; A.RecurringInvoiceListItem_build__closure5.prototype = { call$0() { @@ -538861,7 +539345,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterRecurringInvoicesByStatus($status)); }, - $signature: 168 + $signature: 159 }; A.RecurringInvoiceScreen_build_closure15.prototype = { call$2(state, value) { @@ -538894,7 +539378,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SortRecurringInvoices(value)); }, - $signature: 40 + $signature: 38 }; A.RecurringInvoiceScreen_build_closure11.prototype = { call$2($status, value) { @@ -538902,7 +539386,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterRecurringInvoicesByStatus($status)); }, - $signature: 186 + $signature: 177 }; A.RecurringInvoiceScreen_build_closure10.prototype = { call$2(state, value) { @@ -538910,7 +539394,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterRecurringInvoicesByState(state)); }, - $signature: 64 + $signature: 66 }; A.RecurringInvoiceScreen_build_closure4.prototype = { call$0() { @@ -539029,7 +539513,7 @@ call$1(context) { return this.call$2(context, null); }, - $signature: 278 + $signature: 340 }; A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure0.prototype = { call$1(context) { @@ -539045,7 +539529,7 @@ t2[0].call$1(new A.SaveRecurringInvoiceDocumentRequest(isPrivate, new A._AsyncCompleter(t1, type$._AsyncCompleter_List_DocumentEntity), multipartFiles, this.invoice)); t1.then$1$1(0, new A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure(context), type$.Null).catchError$1(new A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure0(context)); }, - $signature: 112 + $signature: 114 }; A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure.prototype = { call$1(client) { @@ -539057,7 +539541,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure0.prototype = { call$1(error) { @@ -539081,7 +539565,7 @@ call$2(context, invoice) { return this.call$3(context, invoice, null); }, - $signature: 277 + $signature: 339 }; A.ClientReportFields.prototype = { _enumToString$0() { @@ -539104,7 +539588,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 489 + $signature: 495 }; A.clientReport_closure1.prototype = { call$2(rowA, rowB) { @@ -539118,13 +539602,13 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 489 + $signature: 495 }; A.clientReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 489 + $signature: 495 }; A.ContactReportFields.prototype = { _enumToString$0() { @@ -539148,7 +539632,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 509 + $signature: 507 }; A.contactReport_closure1.prototype = { call$2(rowA, rowB) { @@ -539162,13 +539646,13 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 509 + $signature: 507 }; A.contactReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 509 + $signature: 507 }; A.CreditItemReportFields.prototype = { _enumToString$0() { @@ -539179,7 +539663,7 @@ call$6(userCompany, reportsUIState, productMap, creditMap, clientMap, staticState) { return A.lineItemReport1(userCompany, reportsUIState, productMap, creditMap, clientMap, staticState); }, - $signature: 541 + $signature: 519 }; A.lineItemReport_closure11.prototype = { call$1(e) { @@ -539191,7 +539675,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 545 + $signature: 520 }; A.lineItemReport_closure13.prototype = { call$2(rowA, rowB) { @@ -539211,13 +539695,13 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 545 + $signature: 520 }; A.lineItemReport_closure16.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 545 + $signature: 520 }; A.CreditReportFields.prototype = { _enumToString$0() { @@ -539240,7 +539724,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 549 + $signature: 529 }; A.creditReport_closure1.prototype = { call$2(rowA, rowB) { @@ -539254,13 +539738,13 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 549 + $signature: 529 }; A.creditReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 549 + $signature: 529 }; A.DocumentReportFields.prototype = { _enumToString$0() { @@ -539364,13 +539848,13 @@ _this.entities.push($document); } }, - $signature: 42 + $signature: 41 }; A.documentReport_closure1.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 551 + $signature: 530 }; A.documentReport_closure2.prototype = { call$2(rowA, rowB) { @@ -539384,13 +539868,13 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 551 + $signature: 530 }; A.documentReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 551 + $signature: 530 }; A.ExpenseReportFields.prototype = { _enumToString$0() { @@ -539413,7 +539897,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 554 + $signature: 549 }; A.expenseReport_closure1.prototype = { call$2(rowA, rowB) { @@ -539427,13 +539911,13 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 554 + $signature: 549 }; A.expenseReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 554 + $signature: 549 }; A.InvoiceItemReportFields.prototype = { _enumToString$0() { @@ -539444,7 +539928,7 @@ call$6(userCompany, reportsUIState, productMap, invoiceMap, clientMap, staticState) { return A.lineItemReport2(userCompany, reportsUIState, productMap, invoiceMap, clientMap, staticState); }, - $signature: 541 + $signature: 519 }; A.lineItemReport_closure17.prototype = { call$1(e) { @@ -539456,7 +539940,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 560 + $signature: 553 }; A.lineItemReport_closure19.prototype = { call$2(rowA, rowB) { @@ -539476,13 +539960,13 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 560 + $signature: 553 }; A.lineItemReport_closure22.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 560 + $signature: 553 }; A.InvoiceReportFields.prototype = { _enumToString$0() { @@ -539507,7 +539991,7 @@ if (t1.length !== 0) B.JSArray_methods.forEach$1(t1, new A.invoiceReport__closure(this.lastPaymentMap, payment)); }, - $signature: 198 + $signature: 195 }; A.invoiceReport__closure.prototype = { call$1(paymentable) { @@ -539521,13 +540005,13 @@ } else t1.$indexSet(0, invoiceId, this.payment); }, - $signature: 139 + $signature: 150 }; A.invoiceReport_closure1.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 561 + $signature: 576 }; A.invoiceReport_closure2.prototype = { call$2(rowA, rowB) { @@ -539541,13 +540025,13 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 561 + $signature: 576 }; A.invoiceReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 561 + $signature: 576 }; A.TaxRateReportFields0.prototype = { _enumToString$0() { @@ -539570,7 +540054,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 363 + $signature: 374 }; A.taxReport_closure0.prototype = { call$2(rowA, rowB) { @@ -539584,19 +540068,19 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 363 + $signature: 374 }; A.taxReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 363 + $signature: 374 }; A.taxReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 363 + $signature: 374 }; A.PaymentReportFields.prototype = { _enumToString$0() { @@ -539619,7 +540103,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 573 + $signature: 591 }; A.paymentReport_closure1.prototype = { call$2(rowA, rowB) { @@ -539633,13 +540117,13 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 573 + $signature: 591 }; A.paymentReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 573 + $signature: 591 }; A.TaxRateReportFields.prototype = { _enumToString$0() { @@ -539662,7 +540146,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 355 + $signature: 377 }; A.paymentTaxReport_closure0.prototype = { call$2(rowA, rowB) { @@ -539676,19 +540160,19 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 355 + $signature: 377 }; A.paymentTaxReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 355 + $signature: 377 }; A.paymentTaxReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 355 + $signature: 377 }; A.ProductReportFields.prototype = { _enumToString$0() { @@ -539711,7 +540195,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 588 + $signature: 604 }; A.productReport_closure1.prototype = { call$2(rowA, rowB) { @@ -539725,13 +540209,13 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 588 + $signature: 604 }; A.productReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 588 + $signature: 604 }; A.ProfitAndLossReportFields.prototype = { _enumToString$0() { @@ -539754,7 +540238,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 353 + $signature: 348 }; A.profitAndLossReport_closure0.prototype = { call$2(rowA, rowB) { @@ -539768,19 +540252,19 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 353 + $signature: 348 }; A.profitAndLossReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 353 + $signature: 348 }; A.profitAndLossReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 353 + $signature: 348 }; A.PurchaseOrderItemReportFields.prototype = { _enumToString$0() { @@ -539803,7 +540287,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 615 + $signature: 447 }; A.lineItemReport_closure1.prototype = { call$2(rowA, rowB) { @@ -539823,13 +540307,13 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 615 + $signature: 447 }; A.lineItemReport_closure4.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 615 + $signature: 447 }; A.PurchaseOrderReportFields.prototype = { _enumToString$0() { @@ -539852,7 +540336,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 599 + $signature: 450 }; A.purchaseOrderReport_closure1.prototype = { call$2(rowA, rowB) { @@ -539866,13 +540350,13 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 599 + $signature: 450 }; A.purchaseOrderReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 599 + $signature: 450 }; A.QuoteItemReportFields.prototype = { _enumToString$0() { @@ -539883,7 +540367,7 @@ call$6(userCompany, reportsUIState, productMap, invoiceMap, clientMap, staticState) { return A.lineItemReport0(userCompany, reportsUIState, productMap, invoiceMap, clientMap, staticState); }, - $signature: 541 + $signature: 519 }; A.lineItemReport_closure5.prototype = { call$1(e) { @@ -539895,7 +540379,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 621 + $signature: 452 }; A.lineItemReport_closure7.prototype = { call$2(rowA, rowB) { @@ -539915,13 +540399,13 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 621 + $signature: 452 }; A.lineItemReport_closure10.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 621 + $signature: 452 }; A.QuoteReportFields.prototype = { _enumToString$0() { @@ -539944,7 +540428,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 496 + $signature: 455 }; A.quoteReport_closure1.prototype = { call$2(rowA, rowB) { @@ -539958,13 +540442,13 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 496 + $signature: 455 }; A.quoteReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 496 + $signature: 455 }; A.RecurringExpenseReportFields.prototype = { _enumToString$0() { @@ -539987,7 +540471,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 486 + $signature: 456 }; A.recurringExpenseReport_closure1.prototype = { call$2(rowA, rowB) { @@ -540001,13 +540485,13 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 486 + $signature: 456 }; A.recurringExpenseReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 486 + $signature: 456 }; A.RecurringInvoiceReportFields.prototype = { _enumToString$0() { @@ -540030,7 +540514,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 480 + $signature: 457 }; A.recurringInvoiceReport_closure1.prototype = { call$2(rowA, rowB) { @@ -540044,13 +540528,13 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 480 + $signature: 457 }; A.recurringInvoiceReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 480 + $signature: 457 }; A.ReportCharts.prototype = { build$1(context) { @@ -540140,7 +540624,7 @@ call$1(element) { return element.length !== 0; }, - $signature: 117 + $signature: 119 }; A.ReportCharts_build_closure4.prototype = { call$2(str1, str2) { @@ -540148,7 +540632,7 @@ str2.toString; return B.JSString_methods.compareTo$1(str1, str2); }, - $signature: 151 + $signature: 143 }; A.ReportCharts_build_closure5.prototype = { call$2(_, __) { @@ -540477,7 +540961,7 @@ t1.toString; return A.InkWell$(false, _null, true, A.IconButton$(_null, _null, _null, _null, A.Icon$(B.IconData_58332_MaterialIcons_null_false, _null, _null, _null), _null, new A.ReportsScreen_build__closure6(context), _null, _null, _null, t1, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null); }, - $signature: 602 + $signature: 565 }; A.ReportsScreen_build__closure6.prototype = { call$0() { @@ -540491,13 +540975,13 @@ t1 = this.context; return (A.getReportColumnType(column, t1) === B.ReportColumnType_1 || A.getReportColumnType(column, t1) === B.ReportColumnType_2) && filter === "custom"; }, - $signature: 11 + $signature: 12 }; A.ReportsScreen_build_closure1.prototype = { call$2(a, b) { return B.JSString_methods.compareTo$1(a, b); }, - $signature: 26 + $signature: 25 }; A.ReportsScreen_build_closure3.prototype = { call$1(value) { @@ -540510,7 +540994,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(report), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, report, type$.String); }, - $signature: 41 + $signature: 42 }; A.ReportsScreen_build_closure6.prototype = { call$1(value) { @@ -540522,7 +541006,7 @@ call$1(column) { return A.getReportColumnType(column, this.context) !== B.ReportColumnType_3; }, - $signature: 11 + $signature: 12 }; A.ReportsScreen_build_closure5.prototype = { call$1(column) { @@ -540531,7 +541015,7 @@ columnTitle = t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].userCompany.company.getCustomFieldLabel$1(column); return A.DropdownMenuItem$(A.Text$(columnTitle.length === 0 ? this.localization.lookup$1(column) : columnTitle, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, column, type$.String); }, - $signature: 41 + $signature: 42 }; A.ReportsScreen_build_closure7.prototype = { call$1(value) { @@ -540549,13 +541033,13 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A.ReportsScreen_build_closure9.prototype = { call$1(column) { return B.JSArray_methods.contains$1(A._setArrayType([B.ReportColumnType_2, B.ReportColumnType_1], type$.JSArray_ReportColumnType), A.getReportColumnType(column, this.context)); }, - $signature: 11 + $signature: 12 }; A.ReportsScreen_build_closure11.prototype = { call$1(value) { @@ -540597,14 +541081,14 @@ b.addAll$1(0, t1); return b; }, - $signature: 240 + $signature: 268 }; A.ReportsScreen_build_closure10.prototype = { call$1(column) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(column), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, column, type$.String); }, - $signature: 41 + $signature: 42 }; A.ReportsScreen_build_closure12.prototype = { call$1(value) { @@ -540627,32 +541111,32 @@ b.addAll$1(0, A.LinkedHashMap_LinkedHashMap$_literal([t1, t2], t3, t3)); return b; }, - $signature: 240 + $signature: 268 }; A.ReportsScreen_build_closure13.prototype = { call$1(value) { return value !== B.DateRange_allTime; }, - $signature: 255 + $signature: 241 }; A.ReportsScreen_build_closure14.prototype = { call$1(dateRange) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(dateRange.name), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, dateRange, type$.DateRange); }, - $signature: 293 + $signature: 285 }; A.ReportsScreen_build_closure15.prototype = { call$2(date, _) { return this.$this.viewModel.onSettingsChanged.call$1$customStartDate(date); }, - $signature: 294 + $signature: 280 }; A.ReportsScreen_build_closure16.prototype = { call$2(date, _) { return this.$this.viewModel.onSettingsChanged.call$1$customEndDate(date); }, - $signature: 294 + $signature: 280 }; A.ReportsScreen_build_closure19.prototype = { call$1(value) { @@ -540664,14 +541148,14 @@ call$1(column) { return B.JSArray_methods.contains$1(A._setArrayType([B.ReportColumnType_3, B.ReportColumnType_5, B.ReportColumnType_6], type$.JSArray_ReportColumnType), A.getReportColumnType(column, this.context)); }, - $signature: 11 + $signature: 12 }; A.ReportsScreen_build_closure18.prototype = { call$1(column) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(column), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, column, type$.String); }, - $signature: 41 + $signature: 42 }; A.ReportsScreen_build_closure27.prototype = { call$1(_) { @@ -540689,7 +541173,7 @@ t1.toString; return new A.AppTextButton(t1, new A.ReportsScreen_build__closure3(this.$this, context, this.reportResult), true, null, null); }, - $signature: 360 + $signature: 376 }; A.ReportsScreen_build__closure3.prototype = { call$0() { @@ -540755,7 +541239,7 @@ t3 = _null; return A.IconButton$(_null, _null, _null, _null, t1, _null, new A.ReportsScreen_build__closure1(context, t2, this.store), B.EdgeInsets_4_0_20_0, _null, _null, t3, _null); }, - $signature: 591 + $signature: 593 }; A.ReportsScreen_build__closure1.prototype = { call$0() { @@ -540801,7 +541285,7 @@ call$1(context) { return new A.UpgradeDialog(null); }, - $signature: 313 + $signature: 298 }; A.ReportsScreen_build_closure25.prototype = { call$1(context) { @@ -540939,7 +541423,7 @@ t1.toString; this.viewModel.onReportFiltersChanged.call$2(t1, t2.reportState.filters.rebuild$1(new A._ReportDataTableState_initState__closure(column, value))); }, - $signature: 170 + $signature: 179 }; A._ReportDataTableState_initState__closure.prototype = { call$1(b) { @@ -540947,7 +541431,7 @@ b.addAll$1(0, A.LinkedHashMap_LinkedHashMap$_literal([this.column, this.value], t1, t1)); return b; }, - $signature: 240 + $signature: 268 }; A._ReportDataTableState_didChangeDependencies_closure.prototype = { call$0() { @@ -540961,7 +541445,7 @@ b.addAll$1(0, A.LinkedHashMap_LinkedHashMap$_literal([this.column, this.value], t1, t1)); return b; }, - $signature: 240 + $signature: 268 }; A._ReportDataTableState_dispose_closure.prototype = { call$1(i) { @@ -541398,7 +541882,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(ageGroup), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, ageGroup, type$.String); }, - $signature: 41 + $signature: 42 }; A.ReportResult_tableFilters_closure2.prototype = { call$0() { @@ -541435,14 +541919,14 @@ call$1(value) { return value !== B.DateRange_allTime; }, - $signature: 255 + $signature: 241 }; A.ReportResult_tableFilters_closure5.prototype = { call$1(dateRange) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(dateRange.name), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, dateRange, type$.DateRange); }, - $signature: 293 + $signature: 285 }; A.ReportResult_tableFilters_closure9.prototype = { call$1(textEditingValue) { @@ -541500,7 +541984,7 @@ var t1 = this.textEditingController; t1.set$selection(A.TextSelection$fromPosition(new A.TextPosition(t1._change_notifier$_value.text.length, B.TextAffinity_1))); }, - $signature: 12 + $signature: 11 }; A.ReportResult_tableFilters_closure6.prototype = { call$4(context, textEditingController, focusNode, onFieldSubmitted) { @@ -541508,7 +541992,7 @@ t1 = textEditingController._change_notifier$_value.text.length === 0 ? _null : A.InputDecoration$(_null, _null, _null, _null, _null, _null, _null, _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, A.IconButton$(_null, _null, _null, _null, A.Icon$(B.IconData_57704_MaterialIcons_null_false, B.MaterialColor_Map_MUpTk_4288585374, _null, _null), _null, new A.ReportResult_tableFilters__closure3(_this.textEditingControllers, _this.column, _this.onFilterChanged, _this.textEditingFocusNodes), _null, _null, _null, _null, _null), _null, _null, _null, _null); return A.DecoratedFormField$(false, _null, false, textEditingController, t1, true, focusNode, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, _null, _null, _null, false, _null, new A.ReportResult_tableFilters__closure4(onFieldSubmitted), _null, true, _null, _null, B.TextAlign_4, _null); }, - $signature: 558 + $signature: 449 }; A.ReportResult_tableFilters__closure3.prototype = { call$0() { @@ -541640,13 +542124,13 @@ b.addAll$1(0, A.LinkedHashMap_LinkedHashMap$_literal([this.column, this._box_0.filter], t1, t1)); return b; }, - $signature: 240 + $signature: 268 }; A.ReportResult_totalColumns_closure.prototype = { call$1(column) { return A.canTotalColumn(column); }, - $signature: 11 + $signature: 12 }; A.ReportResult_totalColumns_closure0.prototype = { call$2(str1, str2) { @@ -541654,7 +542138,7 @@ str2.toString; return B.JSString_methods.compareTo$1(str1, str2); }, - $signature: 151 + $signature: 143 }; A.ReportResult_totalRows_closure.prototype = { call$2(rowA, rowB) { @@ -541688,7 +542172,7 @@ return 0; return t1.sortTotalsAscending ? J.compareTo$1$ns(valueA, valueB) : J.compareTo$1$ns(valueB, valueA); }, - $signature: 26 + $signature: 25 }; A.ReportResult_totalRows__closure0.prototype = { call$2(str1, str2) { @@ -541696,7 +542180,7 @@ str2.toString; return B.JSString_methods.compareTo$1(str1, str2); }, - $signature: 151 + $signature: 143 }; A.ReportResult_totalRows_closure0.prototype = { call$1(currencyId) { @@ -541712,7 +542196,7 @@ str2.toString; return B.JSString_methods.compareTo$1(str1, str2); }, - $signature: 151 + $signature: 143 }; A.ReportResult_totalRows_closure2.prototype = { call$1(currencyId) { @@ -541754,7 +542238,7 @@ _this.cells.push(A.DataCell$(A.Text$(value, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null)); } }, - $signature: 99 + $signature: 100 }; A.ReportElement.prototype = { get$doubleValue() { @@ -542034,14 +542518,14 @@ b.get$reportSettings().$indexSet(0, this.state.uiState.reportsUIState.report, this.reportSettings.rebuild$1(new A.ReportsScreenVM_fromStore___closure0(this.columns))); return b; }, - $signature: 662 + $signature: 661 }; A.ReportsScreenVM_fromStore___closure0.prototype = { call$1(b) { b.get$columns(b).replace$1(0, A.BuiltList_BuiltList$from(this.columns, type$.String)); return b; }, - $signature: 672 + $signature: 687 }; A.ReportsScreenVM_fromStore__closure7.prototype = { call$1(b) { @@ -542051,7 +542535,7 @@ t1._company_model$_$v = t2; return b; }, - $signature: 101 + $signature: 104 }; A.ReportsScreenVM_fromStore__closure8.prototype = { call$1(b) { @@ -542061,7 +542545,7 @@ t1._company_model$_$v = t2; return b; }, - $signature: 97 + $signature: 98 }; A.ReportsScreenVM_fromStore_closure4.prototype = { call$7$chart$customEndDate$customStartDate$group$report$selectedGroup$subgroup(chart, customEndDate, customStartDate, group, report, selectedGroup, subgroup) { @@ -542197,7 +542681,7 @@ call$1(column) { return A.getReportColumnType(column, this.context) === B.ReportColumnType_3; }, - $signature: 11 + $signature: 12 }; A.ReportsScreenVM_fromStore__closure3.prototype = { call$2(str1, str2) { @@ -542205,7 +542689,7 @@ str2.toString; return B.JSString_methods.compareTo$1(str1, str2); }, - $signature: 151 + $signature: 143 }; A.ReportsScreenVM_fromStore__closure4.prototype = { call$1(column) { @@ -542230,7 +542714,7 @@ B.JSArray_methods.forEach$1(this.columns, new A.ReportsScreenVM_fromStore___closure(t2, t1)); t2.csvData += "\n"; }, - $signature: 99 + $signature: 100 }; A.ReportsScreenVM_fromStore___closure.prototype = { call$1(column) { @@ -542290,7 +542774,7 @@ } return 0; }, - $signature: 151 + $signature: 143 }; A.TaskItemReportFields.prototype = { _enumToString$0() { @@ -542313,7 +542797,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 459 + $signature: 464 }; A.taskItemReport_closure1.prototype = { call$2(rowA, rowB) { @@ -542327,13 +542811,13 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 459 + $signature: 464 }; A.taskItemReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 459 + $signature: 464 }; A.TaskReportFields.prototype = { _enumToString$0() { @@ -542356,7 +542840,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 505 + $signature: 467 }; A.taskReport_closure1.prototype = { call$2(rowA, rowB) { @@ -542370,13 +542854,13 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 505 + $signature: 467 }; A.taskReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 505 + $signature: 467 }; A.TransactionReportFields.prototype = { _enumToString$0() { @@ -542415,13 +542899,13 @@ call$1(number) { return number.length !== 0; }, - $signature: 11 + $signature: 12 }; A.transactionReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 521 + $signature: 471 }; A.transactionReport_closure4.prototype = { call$2(rowA, rowB) { @@ -542435,13 +542919,13 @@ call$1(e) { return A.EnumUtils_parse(e); }, - $signature: 521 + $signature: 471 }; A.transactionReport_closure6.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 521 + $signature: 471 }; A.VendorReportFields.prototype = { _enumToString$0() { @@ -542464,7 +542948,7 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 522 + $signature: 473 }; A.vendorReport_closure1.prototype = { call$2(rowA, rowB) { @@ -542478,13 +542962,13 @@ call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 522 + $signature: 473 }; A.vendorReport_closure3.prototype = { call$1(item) { return A.EnumUtils_parse(item); }, - $signature: 522 + $signature: 473 }; A.ScheduleEdit.prototype = { createState$0() { @@ -542600,7 +543084,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._ScheduleEditState_build_closure1.prototype = { call$1(context) { @@ -542743,7 +543227,7 @@ } return new A.ScrollableListView(t4, _null, _null, _null, false, _null); }, - $signature: 142 + $signature: 146 }; A._ScheduleEditState_build__closure0.prototype = { call$1(value) { @@ -542772,7 +543256,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(entry), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, entry, type$.String); }, - $signature: 41 + $signature: 42 }; A._ScheduleEditState_build__closure1.prototype = { call$2(date, _) { @@ -542828,7 +543312,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(entry.value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, entry.key, type$.String); }, - $signature: 320 + $signature: 295 }; A._ScheduleEditState_build__closure6.prototype = { call$1(value) { @@ -542848,7 +543332,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$("" + value, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.int); }, - $signature: 191 + $signature: 192 }; A._ScheduleEditState_build__closure9.prototype = { call$1(value) { @@ -542869,14 +543353,14 @@ call$1(value) { return value !== B.DateRange_custom; }, - $signature: 255 + $signature: 241 }; A._ScheduleEditState_build__closure8.prototype = { call$1(dateRange) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(dateRange.name), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, dateRange, type$.DateRange); }, - $signature: 293 + $signature: 285 }; A._ScheduleEditState_build__closure11.prototype = { call$1(value) { @@ -542896,13 +543380,13 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.String); }, - $signature: 41 + $signature: 42 }; A._ScheduleEditState_build__closure12.prototype = { call$1(value) { this.viewModel.onChanged.call$1(this.schedule.rebuild$1(new A._ScheduleEditState_build___closure9(value))); }, - $signature: 115 + $signature: 112 }; A._ScheduleEditState_build___closure9.prototype = { call$1(b) { @@ -542915,7 +543399,7 @@ call$1(value) { this.viewModel.onChanged.call$1(this.schedule.rebuild$1(new A._ScheduleEditState_build___closure8(value))); }, - $signature: 115 + $signature: 112 }; A._ScheduleEditState_build___closure8.prototype = { call$1(b) { @@ -542928,7 +543412,7 @@ call$1(value) { this.viewModel.onChanged.call$1(this.schedule.rebuild$1(new A._ScheduleEditState_build___closure7(value))); }, - $signature: 115 + $signature: 112 }; A._ScheduleEditState_build___closure7.prototype = { call$1(b) { @@ -542949,7 +543433,7 @@ t1 = _this.$this; t1.setState$1(new A._ScheduleEditState_build___closure6(t1)); }, - $signature: 52 + $signature: 53 }; A._ScheduleEditState_build___closure5.prototype = { call$1(b) { @@ -543010,7 +543494,7 @@ call$1(value) { this.viewModel.onChanged.call$1(this.schedule.rebuild$1(new A._ScheduleEditState_build___closure2(value))); }, - $signature: 52 + $signature: 53 }; A._ScheduleEditState_build___closure2.prototype = { call$1(b) { @@ -543028,7 +543512,7 @@ call$1(value) { this.viewModel.onChanged.call$1(this.schedule.rebuild$1(new A._ScheduleEditState_build___closure1(value))); }, - $signature: 52 + $signature: 53 }; A._ScheduleEditState_build___closure1.prototype = { call$1(b) { @@ -543046,7 +543530,7 @@ call$1(value) { this.viewModel.onChanged.call$1(this.schedule.rebuild$1(new A._ScheduleEditState_build___closure0(value))); }, - $signature: 52 + $signature: 53 }; A._ScheduleEditState_build___closure0.prototype = { call$1(b) { @@ -543064,7 +543548,7 @@ call$1(value) { this.viewModel.onChanged.call$1(this.schedule.rebuild$1(new A._ScheduleEditState_build___closure(value))); }, - $signature: 52 + $signature: 53 }; A._ScheduleEditState_build___closure.prototype = { call$1(b) { @@ -543110,7 +543594,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateSchedule(schedule)); }, - $signature: 380 + $signature: 423 }; A.ScheduleEditVM_ScheduleEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -543148,7 +543632,7 @@ t5[0].call$1(new A.SaveScheduleRequest(new A._AsyncCompleter(t4, type$._AsyncCompleter_ScheduleEntity), schedule)); return t4.then$1$1(0, new A.ScheduleEditVM_ScheduleEditVM$fromStore___closure(schedule, t3, this.state, t1, t2), type$.Null).catchError$1(new A.ScheduleEditVM_ScheduleEditVM$fromStore___closure0(t2)); }, - $signature: 70 + $signature: 69 }; A.ScheduleEditVM_ScheduleEditVM$fromStore___closure.prototype = { call$1(savedSchedule) { @@ -543197,7 +543681,7 @@ } else A.viewEntity(false, savedSchedule, null, true); }, - $signature: 380 + $signature: 423 }; A.ScheduleEditVM_ScheduleEditVM$fromStore___closure0.prototype = { call$1(error) { @@ -543455,7 +543939,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SortSchedules(value)); }, - $signature: 40 + $signature: 38 }; A.ScheduleScreen_build_closure5.prototype = { call$2(state, value) { @@ -543463,7 +543947,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterSchedulesByState(state)); }, - $signature: 64 + $signature: 66 }; A.ScheduleScreen_build_closure.prototype = { call$0() { @@ -543983,7 +544467,7 @@ call$1(value) { this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._AccountManagementState_build__closure(value))); }, - $signature: 115 + $signature: 112 }; A._AccountManagementState_build__closure.prototype = { call$1(b) { @@ -544390,7 +544874,7 @@ call$1(context) { return new A.UpgradeDialog(null); }, - $signature: 313 + $signature: 298 }; A._AccountOverview_build_closure1.prototype = { call$1(value) { @@ -544475,7 +544959,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 70 + $signature: 69 }; A._AccountOverview_build_closure7.prototype = { call$0() { @@ -544504,13 +544988,13 @@ A.showDialog(_null, _null, false, _null, new A._AccountOverview_build___closure1(), t2, _null, true, type$.AlertDialog); new A.WebClient().post$2(credentials.url + "/claim_license?license_key=" + value, credentials.token).then$1$1(0, new A._AccountOverview_build___closure2(t1, t2), type$.Null).catchError$1(new A._AccountOverview_build___closure3(t2)); }, - $signature: 40 + $signature: 38 }; A._AccountOverview_build___closure1.prototype = { call$1(context) { return A.SimpleDialog$(A._setArrayType([new A.LoadingDialog(null)], type$.JSArray_Widget), null); }, - $signature: 182 + $signature: 190 }; A._AccountOverview_build___closure2.prototype = { call$1(response) { @@ -544552,13 +545036,13 @@ call$0() { return A.launchUrl(A.Uri_parse("https://api-docs.invoicing.co", 0, null)); }, - $signature: 65 + $signature: 63 }; A._AccountOverview_build_closure11.prototype = { call$0() { return A.launchUrl(A.Uri_parse("https://zapier.com/apps/invoice-ninja", 0, null)); }, - $signature: 65 + $signature: 63 }; A._AccountOverview_build_closure12.prototype = { call$0() { @@ -544590,7 +545074,7 @@ t2 = idToken == null ? "" : idToken; this.$this.viewModel.onPurgeData.call$3(this.context, t1, t2); }, - $signature: 79 + $signature: 80 }; A._AccountOverview_build_closure13.prototype = { call$0() { @@ -544679,7 +545163,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 609 + $signature: 535 }; A._AccountOverview_build___closure.prototype = { call$2(password, idToken) { @@ -544690,7 +545174,7 @@ t3 = ""; this.$this.viewModel.onCompanyDelete.call$4(this.context, t1, t2, t3); }, - $signature: 79 + $signature: 80 }; A.__AccountManagementState_State_SingleTickerProviderStateMixin.prototype = { dispose$0() { @@ -544730,7 +545214,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateCompany(company)); }, - $signature: 134 + $signature: 136 }; A.AccountManagementVM_fromStore_closure2.prototype = { call$4(context, password, idToken, reason) { @@ -544750,7 +545234,7 @@ call$1(context) { return A.SimpleDialog$(A._setArrayType([new A.LoadingDialog(null)], type$.JSArray_Widget), null); }, - $signature: 182 + $signature: 190 }; A.AccountManagementVM_fromStore__closure0.prototype = { call$1(_) { @@ -545626,7 +546110,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure12(value))); }, - $signature: 30 + $signature: 29 }; A._ClientPortalState_build__closure12.prototype = { call$1(b) { @@ -545639,7 +546123,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure11(value))); }, - $signature: 30 + $signature: 29 }; A._ClientPortalState_build__closure11.prototype = { call$1(b) { @@ -545652,7 +546136,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure10(value))); }, - $signature: 30 + $signature: 29 }; A._ClientPortalState_build__closure10.prototype = { call$1(b) { @@ -545665,7 +546149,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure9(value))); }, - $signature: 30 + $signature: 29 }; A._ClientPortalState_build__closure9.prototype = { call$1(b) { @@ -545678,7 +546162,7 @@ call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ClientPortalState_build__closure8(value))); }, - $signature: 30 + $signature: 29 }; A._ClientPortalState_build__closure8.prototype = { call$1(b) { @@ -545704,7 +546188,7 @@ call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ClientPortalState_build__closure7(value))); }, - $signature: 30 + $signature: 29 }; A._ClientPortalState_build__closure7.prototype = { call$1(b) { @@ -545806,7 +546290,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure5(value))); }, - $signature: 30 + $signature: 29 }; A._ClientPortalState_build__closure5.prototype = { call$1(b) { @@ -545819,7 +546303,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure4(value))); }, - $signature: 30 + $signature: 29 }; A._ClientPortalState_build__closure4.prototype = { call$1(b) { @@ -545832,7 +546316,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure3(value))); }, - $signature: 30 + $signature: 29 }; A._ClientPortalState_build__closure3.prototype = { call$1(b) { @@ -545845,7 +546329,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure2(value))); }, - $signature: 30 + $signature: 29 }; A._ClientPortalState_build__closure2.prototype = { call$1(b) { @@ -545858,7 +546342,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure1(value))); }, - $signature: 30 + $signature: 29 }; A._ClientPortalState_build__closure1.prototype = { call$1(b) { @@ -545871,7 +546355,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure0(value))); }, - $signature: 30 + $signature: 29 }; A._ClientPortalState_build__closure0.prototype = { call$1(b) { @@ -545884,7 +546368,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ClientPortalState_build__closure(value))); }, - $signature: 30 + $signature: 29 }; A._ClientPortalState_build__closure.prototype = { call$1(b) { @@ -545931,7 +546415,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateSettings(settings)); }, - $signature: 415 + $signature: 389 }; A.ClientPortalVM_fromStore_closure0.prototype = { call$1(company) { @@ -545939,7 +546423,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateCompany(company)); }, - $signature: 134 + $signature: 136 }; A.ClientPortalVM_fromStore_closure.prototype = { call$1(context) { @@ -546609,14 +547093,14 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(classification), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, classification, type$.String); }, - $signature: 41 + $signature: 42 }; A._CompanyDetailsState_build_closure1.prototype = { call$1(sizeId) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.state.staticState.sizeMap._map$_map.$index(0, sizeId).name, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, sizeId, type$.String); }, - $signature: 438 + $signature: 385 }; A._CompanyDetailsState_build_closure2.prototype = { call$1(sizeId) { @@ -546635,7 +547119,7 @@ call$1(industry) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._CompanyDetailsState_build__closure9(industry))); }, - $signature: 67 + $signature: 64 }; A._CompanyDetailsState_build__closure9.prototype = { call$1(b) { @@ -546652,7 +547136,7 @@ call$1(country) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure8(country))); }, - $signature: 67 + $signature: 64 }; A._CompanyDetailsState_build__closure8.prototype = { call$1(b) { @@ -546703,7 +547187,7 @@ call$1(_) { return this.viewModel.onDeleteLogo.call$1(this.context); }, - $signature: 199 + $signature: 204 }; A._CompanyDetailsState_build__closure7.prototype = { call$0() { @@ -546745,7 +547229,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 70 + $signature: 69 }; A._CompanyDetailsState_build_closure6.prototype = { call$1(paymentTermId) { @@ -546756,7 +547240,7 @@ t2 = t1.numDays; return A.DropdownMenuItem$(A.Text$(t2 === 0 ? this.localization.get$dueOnReceipt() : t1.name, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, B.JSInt_methods.toString$0(t2), type$.String); }, - $signature: 41 + $signature: 42 }; A._CompanyDetailsState_build_closure7.prototype = { call$1(numDays) { @@ -546782,7 +547266,7 @@ t2 = t1.numDays; return A.DropdownMenuItem$(A.Text$(t2 === 0 ? this.localization.get$dueOnReceipt() : t1.name, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, B.JSInt_methods.toString$0(t2), type$.String); }, - $signature: 41 + $signature: 42 }; A._CompanyDetailsState_build_closure9.prototype = { call$1(numDays) { @@ -546809,7 +547293,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure3(value))); }, - $signature: 316 + $signature: 306 }; A._CompanyDetailsState_build__closure3.prototype = { call$1(b) { @@ -546823,7 +547307,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure2(value))); }, - $signature: 316 + $signature: 306 }; A._CompanyDetailsState_build__closure2.prototype = { call$1(b) { @@ -546837,7 +547321,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure1(value))); }, - $signature: 316 + $signature: 306 }; A._CompanyDetailsState_build__closure1.prototype = { call$1(b) { @@ -546851,7 +547335,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._CompanyDetailsState_build__closure0(value))); }, - $signature: 316 + $signature: 306 }; A._CompanyDetailsState_build__closure0.prototype = { call$1(b) { @@ -546865,7 +547349,7 @@ call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._CompanyDetailsState_build__closure(value))); }, - $signature: 30 + $signature: 29 }; A._CompanyDetailsState_build__closure.prototype = { call$1(b) { @@ -546878,7 +547362,7 @@ call$2(path, isPrivate) { return this.viewModel.onUploadDocuments.call$3(this.context, path, isPrivate); }, - $signature: 144 + $signature: 145 }; A._CompanyDetailsState_build_closure17.prototype = { call$0() { @@ -546926,7 +547410,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateSettings(settings)); }, - $signature: 415 + $signature: 389 }; A.CompanyDetailsVM_fromStore_closure0.prototype = { call$1(company) { @@ -546934,7 +547418,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateCompany(company)); }, - $signature: 134 + $signature: 136 }; A.CompanyDetailsVM_fromStore_closure3.prototype = { call$1(context) { @@ -546997,7 +547481,7 @@ b.get$settings().get$_settings_model$_$this()._companyLogo = null; return b; }, - $signature: 526 + $signature: 525 }; A.CompanyDetailsVM_fromStore__closure3.prototype = { call$1(b) { @@ -547119,7 +547603,7 @@ }, "call*": "call$3", $requiredArgCount: 3, - $signature: 112 + $signature: 114 }; A.CompanyDetailsVM_fromStore__closure.prototype = { call$1(client) { @@ -547131,7 +547615,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.CompanyDetailsVM_fromStore__closure0.prototype = { call$1(error) { @@ -547371,7 +547855,7 @@ if (t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].userCompany.company.isModuleEnabled$1(entityType)) ++this._box_0.tabs; }, - $signature: 268 + $signature: 263 }; A.CustomFieldsSettings.prototype = { build$1(context) { @@ -547406,7 +547890,7 @@ call$1(value) { return this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A.CustomFieldsSettings_build__closure5(value))); }, - $signature: 422 + $signature: 394 }; A.CustomFieldsSettings_build__closure5.prototype = { call$1(b) { @@ -547433,7 +547917,7 @@ call$1(value) { return this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A.CustomFieldsSettings_build__closure3(value))); }, - $signature: 422 + $signature: 394 }; A.CustomFieldsSettings_build__closure3.prototype = { call$1(b) { @@ -547460,7 +547944,7 @@ call$1(value) { return this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A.CustomFieldsSettings_build__closure1(value))); }, - $signature: 422 + $signature: 394 }; A.CustomFieldsSettings_build__closure1.prototype = { call$1(b) { @@ -547487,7 +547971,7 @@ call$1(value) { return this.$this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A.CustomFieldsSettings_build__closure(value))); }, - $signature: 422 + $signature: 394 }; A.CustomFieldsSettings_build__closure.prototype = { call$1(b) { @@ -547739,7 +548223,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateCompany(company)); }, - $signature: 134 + $signature: 136 }; A.CustomFieldsVM_fromStore_closure.prototype = { call$1(context) { @@ -548469,39 +548953,39 @@ var t1 = value === true ? B.AppLayout_mobile : B.AppLayout_desktop; this.viewModel.onLayoutChanged.call$2(this.context, t1); }, - $signature: 115 + $signature: 112 }; A._DeviceSettingsState_build_closure0.prototype = { call$1(value) { var t1 = value === true ? B.AppSidebarMode_float : B.AppSidebarMode_collapse; this.viewModel.onMenuModeChanged.call$2(this.context, t1); }, - $signature: 115 + $signature: 112 }; A._DeviceSettingsState_build_closure1.prototype = { call$1(value) { var t1 = value === true ? B.AppSidebarMode_float : B.AppSidebarMode_visible; this.viewModel.onHistoryModeChanged.call$2(this.context, t1); }, - $signature: 115 + $signature: 112 }; A._DeviceSettingsState_build_closure2.prototype = { call$1(value) { this.viewModel.onTapSelectedChanged.call$2(this.context, value === true); }, - $signature: 115 + $signature: 112 }; A._DeviceSettingsState_build_closure3.prototype = { call$1(value) { this.viewModel.onEditAfterSavingChanged.call$2(this.context, value === true); }, - $signature: 115 + $signature: 112 }; A._DeviceSettingsState_build_closure4.prototype = { call$1(value) { this.viewModel.onLongPressSelectionIsDefault.call$2(this.context, value === false); }, - $signature: 115 + $signature: 112 }; A._DeviceSettingsState_build_closure5.prototype = { call$1(value) { @@ -548519,7 +549003,7 @@ call$1(value) { this.viewModel.onShowPdfSideBySideChanged.call$2(this.context, value === true); }, - $signature: 115 + $signature: 112 }; A._DeviceSettingsState_build_closure8.prototype = { call$1(value) { @@ -548631,7 +549115,7 @@ var _null = null; return A.DropdownMenuItem$(A.Row$(A._setArrayType([new A.SizedBox(120, _null, A.Text$(A.toTitleCase(key), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), A.Expanded$(A.Container$(_null, _null, B.Clip_0, $.$get$colorThemesMap().$index(0, key).colorInfo, _null, _null, _null, 50, _null, _null, _null, _null, _null, _null), 1), A.Expanded$(A.Container$(_null, _null, B.Clip_0, $.$get$colorThemesMap().$index(0, key).colorPrimary, _null, _null, _null, 50, _null, _null, _null, _null, _null, _null), 1), A.Expanded$(A.Container$(_null, _null, B.Clip_0, $.$get$colorThemesMap().$index(0, key).colorSuccess, _null, _null, _null, 50, _null, _null, _null, _null, _null, _null), 1), A.Expanded$(A.Container$(_null, _null, B.Clip_0, $.$get$colorThemesMap().$index(0, key).colorWarning, _null, _null, _null, 50, _null, _null, _null, _null, _null, _null), 1), A.Expanded$(A.Container$(_null, _null, B.Clip_0, $.$get$colorThemesMap().$index(0, key).colorDanger, _null, _null, _null, 50, _null, _null, _null, _null, _null, _null), 1)], type$.JSArray_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null, key, type$.String); }, - $signature: 41 + $signature: 42 }; A._DeviceSettingsState_build_closure18.prototype = { call$1(value) { @@ -548662,7 +549146,7 @@ b.get$_safeMap().clear$0(0); return b; }, - $signature: 240 + $signature: 268 }; A._DeviceSettingsState_build__closure3.prototype = { call$1(b) { @@ -548756,7 +549240,7 @@ } this.viewModel.onCustomColorsChanged.call$2(this.context, customColors); }, - $signature: 40 + $signature: 38 }; A._DeviceSettingsState_build___closure.prototype = { call$1(b) { @@ -548851,7 +549335,7 @@ }); return A._asyncStartSync($async$call$2, $async$completer); }, - $signature: 474 + $signature: 499 }; A.DeviceSettingsVM_fromStore_closure7.prototype = { call$2(context, value) { @@ -549004,7 +549488,7 @@ }); return A._asyncStartSync($async$call$2, $async$completer); }, - $signature: 474 + $signature: 499 }; A.DeviceSettingsVM_fromStore_closure15.prototype = { call$2(context, value) { @@ -549043,7 +549527,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(t1); }, - $signature: 223 + $signature: 210 }; A.DeviceSettingsVM_fromStore_closure13.prototype = { call$2(context, value) { @@ -549053,7 +549537,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(t1); }, - $signature: 223 + $signature: 210 }; A.DeviceSettingsVM_fromStore_closure14.prototype = { call$2(context, value) { @@ -549063,7 +549547,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(t1); }, - $signature: 223 + $signature: 210 }; A.DeviceSettingsVM_fromStore_closure18.prototype = { call$2(context, value) { @@ -549083,7 +549567,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(t1); }, - $signature: 223 + $signature: 210 }; A.DeviceSettingsVM_fromStore_closure17.prototype = { call$2(context, value) { @@ -549093,7 +549577,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(t1); }, - $signature: 223 + $signature: 210 }; A.DeviceSettingsVM_fromStore_closure6.prototype = { call$2(context, value) { @@ -549134,7 +549618,7 @@ }); return A._asyncStartSync($async$call$2, $async$completer); }, - $signature: 474 + $signature: 499 }; A.DeviceSettingsVM_fromStore_closure9.prototype = { call$2(context, value) { @@ -549212,7 +549696,7 @@ t1[0].call$1(new A.ViewMainScreen()); } }, - $signature: 12 + $signature: 11 }; A.DeviceSettingsVM_fromStore_closure10.prototype = { call$2(context, value) { @@ -549334,7 +549818,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 65 + $signature: 63 }; A.DeviceSettingsVM_fromStore_closure2.prototype = { call$2(context, customColors) { @@ -549373,7 +549857,7 @@ else t2[0].call$1(new A.ClearPersistedData()); }, - $signature: 223 + $signature: 210 }; A.EmailSettings.prototype = { createState$0() { @@ -549935,7 +550419,7 @@ type$.UserEntity._as(entity); return entity.get$fullName() + " \u2022 " + entity.email; }, - $signature: 374 + $signature: 365 }; A._EmailSettingsState_build_closure3.prototype = { call$0() { @@ -549964,7 +550448,7 @@ type$.UserEntity._as(entity); return entity.get$fullName() + " \u2022 " + entity.email; }, - $signature: 374 + $signature: 365 }; A._EmailSettingsState_build_closure6.prototype = { call$1(value) { @@ -550026,7 +550510,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(endpoint, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, endpoint, type$.String); }, - $signature: 41 + $signature: 42 }; A._EmailSettingsState_build_closure12.prototype = { call$1(value) { @@ -550056,7 +550540,7 @@ } return A.DropdownMenuItem$(A.Text$(timeLabel, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, hour, type$.int); }, - $signature: 191 + $signature: 192 }; A._EmailSettingsState_build_closure13.prototype = { call$1(value) { @@ -550088,7 +550572,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._EmailSettingsState_build__closure4(value))); }, - $signature: 30 + $signature: 29 }; A._EmailSettingsState_build__closure4.prototype = { call$1(b) { @@ -550101,7 +550585,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._EmailSettingsState_build__closure3(value))); }, - $signature: 30 + $signature: 29 }; A._EmailSettingsState_build__closure3.prototype = { call$1(b) { @@ -550114,7 +550598,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._EmailSettingsState_build__closure2(value))); }, - $signature: 30 + $signature: 29 }; A._EmailSettingsState_build__closure2.prototype = { call$1(b) { @@ -550127,7 +550611,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._EmailSettingsState_build__closure1(value))); }, - $signature: 30 + $signature: 29 }; A._EmailSettingsState_build__closure1.prototype = { call$1(b) { @@ -550140,7 +550624,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._EmailSettingsState_build__closure0(value))); }, - $signature: 30 + $signature: 29 }; A._EmailSettingsState_build__closure0.prototype = { call$1(b) { @@ -550168,7 +550652,7 @@ t1 = B.JSString_methods.replaceFirst$2(type, "_", " "); return A.DropdownMenuItem$(A.Text$(A.stringReplaceAllUnchecked(t1, "_", "."), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, type, type$.String); }, - $signature: 41 + $signature: 42 }; A._EmailSettingsState_build_closure22.prototype = { call$0() { @@ -550220,7 +550704,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateCompany(company)); }, - $signature: 134 + $signature: 136 }; A.EmailSettingsVM_fromStore_closure0.prototype = { call$1(settings) { @@ -550228,7 +550712,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateSettings(settings)); }, - $signature: 206 + $signature: 196 }; A.EmailSettingsVM_fromStore_closure.prototype = { call$1(context) { @@ -550521,7 +551005,7 @@ call$1(paymentType) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._ExpenseSettingsState_build__closure4(paymentType))); }, - $signature: 67 + $signature: 64 }; A._ExpenseSettingsState_build__closure4.prototype = { call$1(b) { @@ -550575,7 +551059,7 @@ call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ExpenseSettingsState_build__closure0(value))); }, - $signature: 30 + $signature: 29 }; A._ExpenseSettingsState_build__closure0.prototype = { call$1(b) { @@ -550626,7 +551110,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateCompany(company)); }, - $signature: 134 + $signature: 136 }; A.ExpenseSettingsVM_fromStore_closure1.prototype = { call$1(settings) { @@ -550634,7 +551118,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateSettings(settings)); }, - $signature: 415 + $signature: 389 }; A.ExpenseSettingsVM_fromStore_closure.prototype = { call$1(context) { @@ -550977,7 +551461,7 @@ if (this.company.isModuleEnabled$1(entityType)) ++this._box_0.tabs; }, - $signature: 268 + $signature: 263 }; A._GeneratedNumbersState_dispose_closure.prototype = { call$1(controller) { @@ -551025,7 +551509,7 @@ if (containsSubCounter && !containsCounterOrId) this._box_0.isValid = false; }, - $signature: 99 + $signature: 100 }; A._GeneratedNumbersState__onSavePressed_closure0.prototype = { call$1(context) { @@ -551057,7 +551541,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(B.JSString_methods.$mul("0", value - 1) + "1", _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.int); }, - $signature: 191 + $signature: 192 }; A._GeneratedNumbersState_build_closure1.prototype = { call$1(value) { @@ -551090,13 +551574,13 @@ var _null = null; return new A.MapEntry(id, A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(frequency), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, id, type$.String), type$.MapEntry_of_String_and_DropdownMenuItem_String); }, - $signature: 485 + $signature: 502 }; A._GeneratedNumbersState_build_closure4.prototype = { call$2(value, _) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure13(value))); }, - $signature: 294 + $signature: 280 }; A._GeneratedNumbersState_build__closure13.prototype = { call$1(b) { @@ -551109,7 +551593,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure12(value))); }, - $signature: 30 + $signature: 29 }; A._GeneratedNumbersState_build__closure12.prototype = { call$1(b) { @@ -551122,7 +551606,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._GeneratedNumbersState_build__closure11(value))); }, - $signature: 30 + $signature: 29 }; A._GeneratedNumbersState_build__closure11.prototype = { call$1(b) { @@ -551406,7 +551890,7 @@ if (t2) t1.set$selection(A.TextSelection$fromPosition(new A.TextPosition(newOffset, B.TextAffinity_1))); }, - $signature: 40 + $signature: 38 }; A.HelpPanel.prototype = { build$1(context) { @@ -551422,7 +551906,7 @@ var t1 = B.JSString_methods.startsWith$1(field, "vendor"); return !t1; }, - $signature: 11 + $signature: 12 }; A.HelpPanel_build_closure0.prototype = { call$1(field) { @@ -551433,7 +551917,7 @@ t1 = true; return t1; }, - $signature: 11 + $signature: 12 }; A.HelpPanel_build_closure1.prototype = { call$1(field) { @@ -551446,7 +551930,7 @@ var _null = null; return A.InkWell$(false, _null, true, new A.Padding(B.EdgeInsets_0_6_0_6, A.Text$(field, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.HelpPanel_build__closure(this.$this, field), _null, _null, _null, _null, _null, _null, _null); }, - $signature: 659 + $signature: 658 }; A.HelpPanel_build__closure.prototype = { call$0() { @@ -551492,7 +551976,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateSettings(settings)); }, - $signature: 206 + $signature: 196 }; A.GeneratedNumbersVM_fromStore_closure.prototype = { call$1(context) { @@ -551787,7 +552271,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(dateField), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, dateField, type$.String); }, - $signature: 41 + $signature: 42 }; A._ImportExportState_build_closure9.prototype = { call$1(value) { @@ -551824,7 +552308,7 @@ } return A.DropdownMenuItem$(A.Text$(label, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, dateRange, type$.String); }, - $signature: 41 + $signature: 42 }; A._ImportExportState_build_closure10.prototype = { call$2(date, _) { @@ -552448,7 +552932,7 @@ var t1 = this.$this; t1.setState$1(new A.__FileMapperState_build__closure4(t1, this.entry, this.i, value)); }, - $signature: 40 + $signature: 38 }; A.__FileMapperState_build__closure4.prototype = { call$0() { @@ -552468,7 +552952,7 @@ var t1 = this.$this; t1.setState$1(new A.__FileMapperState_build__closure3(t1, bankAccount)); }, - $signature: 52 + $signature: 53 }; A.__FileMapperState_build__closure3.prototype = { call$0() { @@ -552485,14 +552969,14 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.SaveBankAccountRequest(completer, t1)); }, - $signature: 164 + $signature: 160 }; A.__FileMapperState_build__closure2.prototype = { call$1(b) { b.get$_bank_account_model$_$this()._bank_account_model$_name = this.name; return b; }, - $signature: 266 + $signature: 249 }; A.__FileMapperState_build_closure2.prototype = { call$1(value) { @@ -552506,13 +552990,13 @@ t1 = null; return t1; }, - $signature: 218 + $signature: 237 }; A.__FileMapperState_build_closure3.prototype = { call$1(entity) { return ""; }, - $signature: 508 + $signature: 453 }; A.__FileMapperState_build_closure5.prototype = { call$0() { @@ -552624,7 +553108,7 @@ t3 = this.localization; return B.JSString_methods.compareTo$1(t3.lookup$1(t1), t3.lookup$1(t2)); }, - $signature: 26 + $signature: 25 }; A._FieldMapper_build_closure2.prototype = { call$1(value) { @@ -552647,19 +553131,19 @@ t1 = null; return t1; }, - $signature: 150 + $signature: 142 }; A._FieldMapper_build__closure.prototype = { call$1(element) { return element === this.value; }, - $signature: 11 + $signature: 12 }; A._FieldMapper_build_closure1.prototype = { call$1(value) { return this.$this.onMappedToChanged.call$1(value); }, - $signature: 99 + $signature: 100 }; A._FieldMapper_build_closure0.prototype = { call$1(field) { @@ -552670,7 +553154,7 @@ fieldLabel = t1.lookup$1(A.stringReplaceAllUnchecked(t2, "_id", "")); return A.DropdownMenuItem$(A.Text$(t1.lookup$1(B.JSArray_methods.get$first(field.split("."))) + " - " + fieldLabel, _null, 1, B.TextOverflow_2, _null, _null, _null, _null, _null, _null), _null, field, type$.String); }, - $signature: 41 + $signature: 42 }; A.ImportExportScreen.prototype = { build$1(context) { @@ -553410,7 +553894,7 @@ if (t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].userCompany.company.isModuleEnabled$1(entityType)) ++this._box_0.tabs; }, - $signature: 268 + $signature: 263 }; A._InvoiceDesignState_didChangeDependencies_closure.prototype = { call$1(controller) { @@ -553513,7 +553997,7 @@ t1.setState$1(new A._InvoiceDesignState_build__closure28(t1)); this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure29(value))); }, - $signature: 147 + $signature: 139 }; A._InvoiceDesignState_build__closure28.prototype = { call$0() { @@ -553548,7 +554032,7 @@ t1.setState$1(new A._InvoiceDesignState_build__closure25(t1)); this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure26(value))); }, - $signature: 147 + $signature: 139 }; A._InvoiceDesignState_build__closure25.prototype = { call$0() { @@ -553583,7 +554067,7 @@ t1.setState$1(new A._InvoiceDesignState_build__closure22(t1)); this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure23(value))); }, - $signature: 147 + $signature: 139 }; A._InvoiceDesignState_build__closure22.prototype = { call$0() { @@ -553618,7 +554102,7 @@ t1.setState$1(new A._InvoiceDesignState_build__closure19(t1)); this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure20(value))); }, - $signature: 147 + $signature: 139 }; A._InvoiceDesignState_build__closure19.prototype = { call$0() { @@ -553662,7 +554146,7 @@ call$1(value) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure17(value))); }, - $signature: 147 + $signature: 139 }; A._InvoiceDesignState_build__closure17.prototype = { call$1(b) { @@ -553677,7 +554161,7 @@ call$1(value) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure16(value))); }, - $signature: 147 + $signature: 139 }; A._InvoiceDesignState_build__closure16.prototype = { call$1(b) { @@ -553692,7 +554176,7 @@ call$1(value) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure15(value))); }, - $signature: 147 + $signature: 139 }; A._InvoiceDesignState_build__closure15.prototype = { call$1(b) { @@ -553707,7 +554191,7 @@ call$1(value) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure14(value))); }, - $signature: 147 + $signature: 139 }; A._InvoiceDesignState_build__closure14.prototype = { call$1(b) { @@ -553736,7 +554220,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(pageLayout), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, pageLayout, type$.String); }, - $signature: 41 + $signature: 42 }; A._InvoiceDesignState_build_closure18.prototype = { call$1(value) { @@ -553756,7 +554240,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(pageSize), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, pageSize, type$.String); }, - $signature: 41 + $signature: 42 }; A._InvoiceDesignState_build_closure20.prototype = { call$1(value) { @@ -553779,7 +554263,7 @@ t2 = fontSize === 0 ? new A.SizedBox(_null, _null, _null, _null) : A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null); return A.DropdownMenuItem$(t2, _null, t1, type$.String); }, - $signature: 534 + $signature: 462 }; A._InvoiceDesignState_build_closure21.prototype = { call$1(value) { @@ -553801,7 +554285,7 @@ call$1(font) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure9(font))); }, - $signature: 67 + $signature: 64 }; A._InvoiceDesignState_build__closure9.prototype = { call$1(b) { @@ -553816,7 +554300,7 @@ call$1(font) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure8(font))); }, - $signature: 67 + $signature: 64 }; A._InvoiceDesignState_build__closure8.prototype = { call$1(b) { @@ -553831,7 +554315,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure7(value))); }, - $signature: 199 + $signature: 204 }; A._InvoiceDesignState_build__closure7.prototype = { call$1(b) { @@ -553844,7 +554328,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure6(value))); }, - $signature: 199 + $signature: 204 }; A._InvoiceDesignState_build__closure6.prototype = { call$1(b) { @@ -553857,7 +554341,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure5(value))); }, - $signature: 30 + $signature: 29 }; A._InvoiceDesignState_build__closure5.prototype = { call$1(b) { @@ -553870,7 +554354,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure4(value))); }, - $signature: 30 + $signature: 29 }; A._InvoiceDesignState_build__closure4.prototype = { call$1(b) { @@ -553883,7 +554367,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure3(value))); }, - $signature: 30 + $signature: 29 }; A._InvoiceDesignState_build__closure3.prototype = { call$1(b) { @@ -553896,7 +554380,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure2(value))); }, - $signature: 30 + $signature: 29 }; A._InvoiceDesignState_build__closure2.prototype = { call$1(b) { @@ -553909,7 +554393,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._InvoiceDesignState_build__closure1(value))); }, - $signature: 30 + $signature: 29 }; A._InvoiceDesignState_build__closure1.prototype = { call$1(b) { @@ -554323,7 +554807,7 @@ if (settings.shareInvoiceQuoteColumns !== false !== (t2.shareInvoiceQuoteColumns !== false)) t1[0].call$1(new A.UpdatedSettingUI()); }, - $signature: 206 + $signature: 196 }; A.InvoiceDesignVM_fromStore_closure0.prototype = { call$2(context, entityTypes) { @@ -554410,7 +554894,7 @@ var _this = this; _this.webClient.post$3$data(_this.url, _this.credentials.token, B.C_JsonCodec.encode$1(A.LinkedHashMap_LinkedHashMap$_literal(["entity", A.toSnakeCase(entityType.name), "design_id", _this.settings.getDesignId$1(entityType)], type$.String, type$.nullable_String))).then$1$1(0, new A.InvoiceDesignVM_fromStore_____closure(), type$.Null).catchError$1(new A.InvoiceDesignVM_fromStore_____closure0()); }, - $signature: 268 + $signature: 263 }; A.InvoiceDesignVM_fromStore_____closure.prototype = { call$1(response) { @@ -554666,20 +555150,20 @@ var t1 = this.translations; return !t1.get$keys(t1)._map.containsKey$1(0, key); }, - $signature: 11 + $signature: 12 }; A._LocalizationSettingsState_build_closure0.prototype = { call$2(a, b) { var t1 = this.localization; return B.JSString_methods.compareTo$1(t1.lookup$1(a), t1.lookup$1(b)); }, - $signature: 26 + $signature: 25 }; A._LocalizationSettingsState_build_closure1.prototype = { call$1(currency) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build__closure13(currency))); }, - $signature: 67 + $signature: 64 }; A._LocalizationSettingsState_build__closure13.prototype = { call$1(b) { @@ -554694,7 +555178,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build__closure12(value))); }, - $signature: 30 + $signature: 29 }; A._LocalizationSettingsState_build__closure12.prototype = { call$1(b) { @@ -554707,7 +555191,7 @@ call$1(language) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build__closure11(language))); }, - $signature: 67 + $signature: 64 }; A._LocalizationSettingsState_build__closure11.prototype = { call$1(b) { @@ -554722,7 +555206,7 @@ call$1(timezone) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build__closure10(timezone))); }, - $signature: 67 + $signature: 64 }; A._LocalizationSettingsState_build__closure10.prototype = { call$1(b) { @@ -554737,7 +555221,7 @@ call$1(dateFormat) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build__closure9(dateFormat))); }, - $signature: 67 + $signature: 64 }; A._LocalizationSettingsState_build__closure9.prototype = { call$1(b) { @@ -554752,7 +555236,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build__closure8(value))); }, - $signature: 30 + $signature: 29 }; A._LocalizationSettingsState_build__closure8.prototype = { call$1(b) { @@ -554792,20 +555276,20 @@ var _null = null; return new A.MapEntry(id, A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(month), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, id, type$.String), type$.MapEntry_of_String_and_DropdownMenuItem_String); }, - $signature: 485 + $signature: 502 }; A._LocalizationSettingsState_build_closure10.prototype = { call$1(key) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(key), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, key, type$.String); }, - $signature: 41 + $signature: 42 }; A._LocalizationSettingsState_build_closure11.prototype = { call$1(value) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build__closure5(value))); }, - $signature: 99 + $signature: 100 }; A._LocalizationSettingsState_build__closure5.prototype = { call$1(b) { @@ -554837,7 +555321,7 @@ call$1(value) { this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._LocalizationSettingsState_build___closure(value))); }, - $signature: 40 + $signature: 38 }; A._LocalizationSettingsState_build___closure.prototype = { call$1(b) { @@ -554967,7 +555451,7 @@ t1 = ""; this.$this._localization_settings$_countryId = t1; }, - $signature: 52 + $signature: 53 }; A.__LocalizationSettingsState_State_SingleTickerProviderStateMixin.prototype = { dispose$0() { @@ -555007,7 +555491,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateSettings(settings)); }, - $signature: 206 + $signature: 196 }; A.LocalizationSettingsVM_fromStore_closure.prototype = { call$1(company) { @@ -555015,7 +555499,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateCompany(company)); }, - $signature: 134 + $signature: 136 }; A.LocalizationSettingsVM_fromStore_closure1.prototype = { call$1(context) { @@ -555508,20 +555992,20 @@ var t1 = type$.MappedListIterable_String_Text; return A.List_List$of(new A.MappedListIterable(A._setArrayType(["always", "optout", "optin", "off"], type$.JSArray_String), new A._PaymentSettingsState_build__closure12(this.localization), t1), true, t1._eval$1("ListIterable.E")); }, - $signature: 290 + $signature: 323 }; A._PaymentSettingsState_build__closure12.prototype = { call$1(type) { var _null = null; return A.Text$(this.localization.lookup$1(type), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, - $signature: 289 + $signature: 326 }; A._PaymentSettingsState_build_closure1.prototype = { call$1(value) { return A.DropdownMenuItem$(new A.AutobillDropdownMenuItem(value, null), null, value, type$.String); }, - $signature: 41 + $signature: 42 }; A._PaymentSettingsState_build_closure3.prototype = { call$1(value) { @@ -555553,7 +556037,7 @@ call$1(paymentType) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._PaymentSettingsState_build__closure8(paymentType))); }, - $signature: 67 + $signature: 64 }; A._PaymentSettingsState_build__closure8.prototype = { call$1(b) { @@ -555574,7 +556058,7 @@ call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._PaymentSettingsState_build__closure7(value))); }, - $signature: 30 + $signature: 29 }; A._PaymentSettingsState_build__closure7.prototype = { call$1(b) { @@ -555587,7 +556071,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._PaymentSettingsState_build__closure6(value))); }, - $signature: 30 + $signature: 29 }; A._PaymentSettingsState_build__closure6.prototype = { call$1(b) { @@ -555600,7 +556084,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._PaymentSettingsState_build__closure5(value))); }, - $signature: 30 + $signature: 29 }; A._PaymentSettingsState_build__closure5.prototype = { call$1(b) { @@ -555613,7 +556097,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._PaymentSettingsState_build__closure4(value))); }, - $signature: 30 + $signature: 29 }; A._PaymentSettingsState_build__closure4.prototype = { call$1(b) { @@ -555626,7 +556110,7 @@ call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._PaymentSettingsState_build__closure3(value))); }, - $signature: 30 + $signature: 29 }; A._PaymentSettingsState_build__closure3.prototype = { call$1(b) { @@ -555639,7 +556123,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._PaymentSettingsState_build__closure2(value))); }, - $signature: 30 + $signature: 29 }; A._PaymentSettingsState_build__closure2.prototype = { call$1(b) { @@ -555652,7 +556136,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._PaymentSettingsState_build__closure1(value))); }, - $signature: 30 + $signature: 29 }; A._PaymentSettingsState_build__closure1.prototype = { call$1(b) { @@ -555665,7 +556149,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._PaymentSettingsState_build__closure0(value))); }, - $signature: 30 + $signature: 29 }; A._PaymentSettingsState_build__closure0.prototype = { call$1(b) { @@ -555678,7 +556162,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._PaymentSettingsState_build__closure(value))); }, - $signature: 30 + $signature: 29 }; A._PaymentSettingsState_build__closure.prototype = { call$1(b) { @@ -555710,7 +556194,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateCompany(company)); }, - $signature: 134 + $signature: 136 }; A.PaymentSettingsVM_fromStore_closure1.prototype = { call$1(settings) { @@ -555718,7 +556202,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateSettings(settings)); }, - $signature: 415 + $signature: 389 }; A.PaymentSettingsVM_fromStore_closure.prototype = { call$1(context) { @@ -556192,7 +556676,7 @@ call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._ProductSettingsState_build__closure(value))); }, - $signature: 30 + $signature: 29 }; A._ProductSettingsState_build__closure.prototype = { call$1(b) { @@ -556224,7 +556708,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateCompany(company)); }, - $signature: 134 + $signature: 136 }; A.ProductSettingsVM_fromStore_closure.prototype = { call$1(context) { @@ -556419,7 +556903,7 @@ var t1 = this.$this; return t1.setState$1(new A._SettingsListTileState_build__closure0(t1)); }, - $signature: 132 + $signature: 134 }; A._SettingsListTileState_build__closure0.prototype = { call$0() { @@ -556566,7 +557050,7 @@ return -1; return B.JSString_methods.compareTo$1(b, a); }, - $signature: 26 + $signature: 25 }; A.SettingsSearch_build_closure0.prototype = { call$1(section) { @@ -556951,7 +557435,7 @@ t4[0].call$1(new A.SaveAuthUserRequest(completer, t1, password, idToken)); } }, - $signature: 79 + $signature: 80 }; A._SettingsWizardState__onSavePressed__closure.prototype = { call$1(_) { @@ -557049,7 +557533,7 @@ b.get$_user_model$_$this()._lastName = t1; return b; }, - $signature: 97 + $signature: 98 }; A._SettingsWizardState_build_closure.prototype = { call$1(value) { @@ -557098,7 +557582,7 @@ var t1 = this.$this; return t1.setState$1(new A._SettingsWizardState_build__closure1(t1, currency)); }, - $signature: 371 + $signature: 373 }; A._SettingsWizardState_build__closure1.prototype = { call$0() { @@ -557122,7 +557606,7 @@ t1 = null; return t1; }, - $signature: 218 + $signature: 237 }; A._SettingsWizardState_build_closure4.prototype = { call$1(language) { @@ -557135,7 +557619,7 @@ t2[0].call$1(new A.UpdateCompanyLanguage(t1)); this.context.findAncestorStateOfType$1$0(type$.AppBuilderState).rebuild$0(); }, - $signature: 52 + $signature: 53 }; A._SettingsWizardState_build__closure0.prototype = { call$0() { @@ -557159,7 +557643,7 @@ t1 = null; return t1; }, - $signature: 218 + $signature: 237 }; A._SettingsWizardState_build_closure6.prototype = { call$2(context, constraints) { @@ -557180,7 +557664,7 @@ t3 = this.state.prefState.darkModeType; return A.ToggleButtons$(_null, A._setArrayType([t2, t4, A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null)], type$.JSArray_Widget), _null, A.BoxConstraints$expand(40, constraints.maxWidth / 3 - 2), A._setArrayType([t3 === "system", t3 === "light", t3 === "dark"], type$.JSArray_bool), new A._SettingsWizardState_build__closure(this.store, context), true, _null, _null); }, - $signature: 681 + $signature: 680 }; A._SettingsWizardState_build__closure.prototype = { call$1(index) { @@ -557195,7 +557679,7 @@ t2[0].call$1(t1); this.context.findAncestorStateOfType$1$0(type$.AppBuilderState).rebuild$0(); }, - $signature: 75 + $signature: 76 }; A._SettingsWizardState_build_closure8.prototype = { call$1(value) { @@ -557798,7 +558282,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TaskSettingsState_build__closure0(value))); }, - $signature: 30 + $signature: 29 }; A._TaskSettingsState_build__closure0.prototype = { call$1(b) { @@ -557825,7 +558309,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.String); }, - $signature: 41 + $signature: 42 }; A.TaskSettingsScreen.prototype = { build$1(context) { @@ -557850,7 +558334,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateCompany(company)); }, - $signature: 134 + $signature: 136 }; A.TaskSettingsVM_fromStore_closure1.prototype = { call$1(settings) { @@ -557858,7 +558342,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateSettings(settings)); }, - $signature: 206 + $signature: 196 }; A.TaskSettingsVM_fromStore_closure.prototype = { call$1(context) { @@ -558124,7 +558608,7 @@ call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._TaxSettingsState_build__closure11(value))); }, - $signature: 535 + $signature: 504 }; A._TaxSettingsState_build__closure11.prototype = { call$1(b) { @@ -558137,7 +558621,7 @@ call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._TaxSettingsState_build__closure10(value))); }, - $signature: 535 + $signature: 504 }; A._TaxSettingsState_build__closure10.prototype = { call$1(b) { @@ -558150,7 +558634,7 @@ call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._TaxSettingsState_build__closure9(value))); }, - $signature: 535 + $signature: 504 }; A._TaxSettingsState_build__closure9.prototype = { call$1(b) { @@ -558163,7 +558647,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TaxSettingsState_build__closure8(value))); }, - $signature: 30 + $signature: 29 }; A._TaxSettingsState_build__closure8.prototype = { call$1(b) { @@ -558176,7 +558660,7 @@ call$1(taxRate) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TaxSettingsState_build__closure7(taxRate))); }, - $signature: 119 + $signature: 120 }; A._TaxSettingsState_build__closure7.prototype = { call$1(b) { @@ -558191,7 +558675,7 @@ call$1(taxRate) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TaxSettingsState_build__closure6(taxRate))); }, - $signature: 119 + $signature: 120 }; A._TaxSettingsState_build__closure6.prototype = { call$1(b) { @@ -558206,7 +558690,7 @@ call$1(taxRate) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TaxSettingsState_build__closure5(taxRate))); }, - $signature: 119 + $signature: 120 }; A._TaxSettingsState_build__closure5.prototype = { call$1(b) { @@ -558227,7 +558711,7 @@ call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._TaxSettingsState_build__closure4(value))); }, - $signature: 30 + $signature: 29 }; A._TaxSettingsState_build__closure4.prototype = { call$1(b) { @@ -558262,7 +558746,7 @@ } return A.DropdownMenuItem$(A.Text$(t1, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, code, type$.String); }, - $signature: 41 + $signature: 42 }; A._TaxSettingsState_build_closure10.prototype = { call$1(region) { @@ -558354,13 +558838,13 @@ b.get$_tax_model$_$this()._taxAll = this.value; return b; }, - $signature: 544 + $signature: 512 }; A._TaxSettingsState_build__closure.prototype = { call$1(element) { return this.taxDataRegion.subregions._map$_map.$index(0, element).applyTax; }, - $signature: 11 + $signature: 12 }; A._TaxSettingsState_build__closure1.prototype = { call$0() { @@ -558449,7 +558933,7 @@ b.get$subregions().$indexSet(0, this.subregion, this.taxDataSubregion.rebuild$1(new A._TaxSettingsState_build_______closure(this.value))); return b; }, - $signature: 544 + $signature: 512 }; A._TaxSettingsState_build_______closure.prototype = { call$1(b) { @@ -558603,7 +559087,7 @@ b.get$subregions().$indexSet(0, t1._widget.subregion, this.taxConfigSubregion.rebuild$1(new A.__EditSubregionDialogState__onDone____closure(t1))); return b; }, - $signature: 544 + $signature: 512 }; A.__EditSubregionDialogState__onDone____closure.prototype = { call$1(b) { @@ -558683,7 +559167,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateSettings(settings)); }, - $signature: 206 + $signature: 196 }; A.TaxSettingsVM_fromStore_closure1.prototype = { call$1(company) { @@ -558691,7 +559175,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateCompany(company)); }, - $signature: 134 + $signature: 136 }; A.TaxSettingsVM_fromStore_closure.prototype = { call$1(context) { @@ -559017,7 +559501,7 @@ t15 = A._setArrayType([new A.ScrollableListView(t15, _null, _null, true, false, _null)], t10); if (t11) { t1 = _this._templates_and_reminders$_selectedIndex; - t15.push(new A.ColoredBox(B.Color_4294967295, new A.ExampleEditor(_this._bodyMarkdown, new A.ValueKey("__tab_" + t1 + "__", t8)), _null)); + t15.push(new A.ColoredBox(B.Color_4294967295, new A.ExampleEditor(_this._bodyMarkdown, new A._TemplatesAndRemindersState_build_closure9(_this), new A.ValueKey("__tab_" + t1 + "__", t8)), _null)); } if (A.supportsInlineBrowser()) { t1 = _this._templates_and_reminders$_isLoading; @@ -559027,17 +559511,17 @@ if (_this._templates_and_reminders$_isLoading || _this._bodyPreview.length === 0) t1.push(new A.LoadingIndicator(_null, false, _null)); else - t1.push(A.IgnorePointer$(new A.ColoredBox(B.Color_4294967295, new A.ExampleEditor(A.convert(_this._bodyPreview), _null), _null), true, _null)); + t1.push(A.IgnorePointer$(new A.ColoredBox(B.Color_4294967295, new A.ExampleEditor(A.convert(_this._bodyPreview), _null, _null), _null), true, _null)); t15.push(new A.Stack(B.Alignment_0_m1, _null, B.StackFit_0, B.Clip_1, t1, _null)); } - return A.EditScaffold$(_null, t9, new A.AppTabForm(t14, t13, t15, t12, new A.ValueKey("__" + t2 + "__", t8), _null), _null, _null, _null, false, _null, _null, new A._TemplatesAndRemindersState_build_closure9(_this, viewModel), _null, t7); + return A.EditScaffold$(_null, t9, new A.AppTabForm(t14, t13, t15, t12, new A.ValueKey("__" + t2 + "__", t8), _null), _null, _null, _null, false, _null, _null, new A._TemplatesAndRemindersState_build_closure10(_this, viewModel), _null, t7); } }; A._TemplatesAndRemindersState_initState_closure.prototype = { call$1(duration) { this.$this._renderTemplate$0(); }, - $signature: 12 + $signature: 11 }; A._TemplatesAndRemindersState_dispose_closure.prototype = { call$1(controller) { @@ -559242,7 +559726,7 @@ return; t1.setState$1(new A._TemplatesAndRemindersState__renderTemplate__closure(t1, subject, body, email)); }, - $signature: 690 + $signature: 689 }; A._TemplatesAndRemindersState__renderTemplate__closure.prototype = { call$0() { @@ -559261,7 +559745,7 @@ }, $signature: 0 }; - A._TemplatesAndRemindersState_build_closure9.prototype = { + A._TemplatesAndRemindersState_build_closure10.prototype = { call$1(context) { var t1 = this.$this; this.viewModel.onSavePressed.call$2(context, t1._updateReminders); @@ -559352,7 +559836,7 @@ this.$this._updateReminders = true; this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TemplatesAndRemindersState_build__closure3(enabled, days, schedule, feeAmount, feePercent))); }, - $signature: 566 + $signature: 517 }; A._TemplatesAndRemindersState_build__closure3.prototype = { call$1(b) { @@ -559371,7 +559855,7 @@ this.$this._updateReminders = true; this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TemplatesAndRemindersState_build__closure2(enabled, days, schedule, feeAmount, feePercent))); }, - $signature: 566 + $signature: 517 }; A._TemplatesAndRemindersState_build__closure2.prototype = { call$1(b) { @@ -559390,7 +559874,7 @@ this.$this._updateReminders = true; this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TemplatesAndRemindersState_build__closure1(enabled, days, schedule, feeAmount, feePercent))); }, - $signature: 566 + $signature: 517 }; A._TemplatesAndRemindersState_build__closure1.prototype = { call$1(b) { @@ -559409,7 +559893,7 @@ this.$this._updateReminders = true; this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._TemplatesAndRemindersState_build__closure0(value))); }, - $signature: 115 + $signature: 112 }; A._TemplatesAndRemindersState_build__closure0.prototype = { call$1(b) { @@ -559437,7 +559921,7 @@ var _null = null; return new A.MapEntry(id, A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(frequency), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, id, type$.String), type$.MapEntry_of_String_and_DropdownMenuItem_String); }, - $signature: 485 + $signature: 502 }; A._TemplatesAndRemindersState_build_closure8.prototype = { call$0() { @@ -559445,6 +559929,17 @@ }, $signature: 0 }; + A._TemplatesAndRemindersState_build_closure9.prototype = { + call$1(value) { + var t1 = this.$this, + t2 = t1._templates_and_reminders$_bodyController; + if (B.JSString_methods.trim$0(value) !== B.JSString_methods.trim$0(t2._change_notifier$_value.text)) { + t1._emailPreview = t1._bodyPreview = ""; + t2.set$text(0, value); + } + }, + $signature: 38 + }; A.ReminderSettings.prototype = { createState$0() { var t1 = $.$get$ChangeNotifier__emptyListeners(); @@ -559601,7 +560096,7 @@ t1._templates_and_reminders$_enabled = value; t1._templates_and_reminders$_onChanged$0(); }, - $signature: 115 + $signature: 112 }; A.EmailPreview.prototype = { build$1(context) { @@ -559650,7 +560145,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateSettings(settings)); }, - $signature: 206 + $signature: 196 }; A.TemplatesAndRemindersVM_fromStore_closure.prototype = { call$1(template) { @@ -559677,7 +560172,7 @@ } new A.TemplatesAndRemindersVM_fromStore__closure(updateReminders, t1, this.store, context).call$0(); }, - $signature: 223 + $signature: 210 }; A.TemplatesAndRemindersVM_fromStore__closure.prototype = { call$0() { @@ -559764,7 +560259,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 70 + $signature: 69 }; A.TemplatesAndRemindersVM_fromStore____closure.prototype = { call$1(value) { @@ -560191,7 +560686,7 @@ b.get$_user_model$_$this()._password = t1; return b; }, - $signature: 97 + $signature: 98 }; A._UserDetailsState__onChanged_closure0.prototype = { call$0() { @@ -560468,7 +560963,7 @@ call$1(context) { return new A.UserSmsVerification(false, null, null); }, - $signature: 351 + $signature: 371 }; A._UserDetailsState_build__closure6.prototype = { call$1(context) { @@ -560497,13 +560992,13 @@ t1.get$_company_model$_$this()._accentColor = t2; return b; }, - $signature: 97 + $signature: 98 }; A._UserDetailsState_build_closure9.prototype = { call$1(language) { return this.viewModel.onChanged.call$1(this.user.rebuild$1(new A._UserDetailsState_build__closure3(language))); }, - $signature: 67 + $signature: 64 }; A._UserDetailsState_build__closure3.prototype = { call$1(b) { @@ -560514,7 +561009,7 @@ b.get$_user_model$_$this()._languageId = t1; return b; }, - $signature: 97 + $signature: 98 }; A._UserDetailsState_build_closure11.prototype = { call$1(value) { @@ -560527,40 +561022,40 @@ b.get$userCompany().get$settings().get$_company_model$_$this()._numberYearsActive = this.value; return b; }, - $signature: 97 + $signature: 98 }; A._UserDetailsState_build_closure10.prototype = { call$1(value) { var _null = null; return A.DropdownMenuItem$(A.Text$("" + value, _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, value, type$.int); }, - $signature: 191 + $signature: 192 }; A._UserDetailsState_build_closure12.prototype = { call$1(value) { this.$this._widget.viewModel.onChanged.call$1(this.user.rebuild$1(new A._UserDetailsState_build__closure1(value))); }, - $signature: 115 + $signature: 112 }; A._UserDetailsState_build__closure1.prototype = { call$1(b) { b.get$userCompany().get$settings().get$_company_model$_$this()._includeDeletedClients = this.value; return b; }, - $signature: 97 + $signature: 98 }; A._UserDetailsState_build_closure13.prototype = { call$1(value) { this.$this._widget.viewModel.onChanged.call$1(this.user.rebuild$1(new A._UserDetailsState_build__closure0(value))); }, - $signature: 115 + $signature: 112 }; A._UserDetailsState_build__closure0.prototype = { call$1(b) { b.get$_user_model$_$this()._userLoggedInNotification = this.value; return b; }, - $signature: 97 + $signature: 98 }; A._UserDetailsState_build_closure14.prototype = { call$2(channel, options) { @@ -560573,7 +561068,7 @@ b.get$userCompany().get$notifications().$indexSet(0, this.channel, A.BuiltList_BuiltList$from(this.options, type$.String)); return b; }, - $signature: 97 + $signature: 98 }; A._EnableTwoFactor.prototype = { createState$0() { @@ -560861,7 +561356,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.DisconnectOAuthMailerRequest(completer, password, idToken, t1.user)); }, - $signature: 79 + $signature: 80 }; A.UserDetailsVM_fromStore_closure6.prototype = { call$1(context) { @@ -560892,7 +561387,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.DisconnectOAuthMailerRequest(completer, password, idToken, t1.user)); }, - $signature: 79 + $signature: 80 }; A.UserDetailsVM_fromStore_closure7.prototype = { call$1(context) { @@ -560918,7 +561413,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.DisableTwoFactorRequest(this.completer, password, idToken)); }, - $signature: 79 + $signature: 80 }; A.UserDetailsVM_fromStore_closure2.prototype = { call$1(context) { @@ -560962,7 +561457,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.DisconnecOAuthUserRequest(t2.user, completer, password, idToken)); }, - $signature: 79 + $signature: 80 }; A.UserDetailsVM_fromStore____closure.prototype = { call$1(_) { @@ -561046,7 +561541,7 @@ }); return A._asyncStartSync($async$call$2, $async$completer); }, - $signature: 572 + $signature: 524 }; A.UserDetailsVM_fromStore___closure7.prototype = { call$2(idToken, accessToken) { @@ -561066,7 +561561,7 @@ t1[0].call$1(new A.ConnecOAuthUserRequest(_this.completer, "google", _this.password, idToken, accessToken)); } }, - $signature: 170 + $signature: 179 }; A.UserDetailsVM_fromStore_closure4.prototype = { call$1(context) { @@ -561115,7 +561610,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.DisconnecOAuthUserRequest(t1.user, completer, password, idToken)); }, - $signature: 79 + $signature: 80 }; A.UserDetailsVM_fromStore_closure8.prototype = { call$1(context) { @@ -561164,7 +561659,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.DisconnecOAuthUserRequest(t1.user, completer, password, idToken)); }, - $signature: 79 + $signature: 80 }; A.UserDetailsVM_fromStore_closure3.prototype = { call$1(context) { @@ -561213,7 +561708,7 @@ }); return A._asyncStartSync($async$call$2, $async$completer); }, - $signature: 572 + $signature: 524 }; A.UserDetailsVM_fromStore___closure4.prototype = { call$2(idToken, accessToken) { @@ -561221,7 +561716,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.ConnecOAuthUserRequest(this.completer, "microsoft", this.password, idToken, accessToken)); }, - $signature: 170 + $signature: 179 }; A.UserDetailsVM_fromStore___closure5.prototype = { call$1(error) { @@ -561336,7 +561831,7 @@ call$1(context) { return A.SimpleDialog$(A._setArrayType([new A.LoadingDialog(null)], type$.JSArray_Widget), null); }, - $signature: 182 + $signature: 190 }; A.UserDetailsVM_fromStore____closure2.prototype = { call$1(value) { @@ -561360,7 +561855,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SaveAuthUserRequest(this.completer, t2.settingsUIState.user, password, idToken)); }, - $signature: 79 + $signature: 80 }; A.WorkflowSettings.prototype = { createState$0() { @@ -561499,7 +561994,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._WorkflowSettingsState_build__closure5(value))); }, - $signature: 30 + $signature: 29 }; A._WorkflowSettingsState_build__closure5.prototype = { call$1(b) { @@ -561512,7 +562007,7 @@ call$1(value) { return this.viewModel.onCompanyChanged.call$1(this.company.rebuild$1(new A._WorkflowSettingsState_build__closure4(value))); }, - $signature: 30 + $signature: 29 }; A._WorkflowSettingsState_build__closure4.prototype = { call$1(b) { @@ -561525,7 +562020,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._WorkflowSettingsState_build__closure3(value))); }, - $signature: 30 + $signature: 29 }; A._WorkflowSettingsState_build__closure3.prototype = { call$1(b) { @@ -561538,7 +562033,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._WorkflowSettingsState_build__closure2(value))); }, - $signature: 30 + $signature: 29 }; A._WorkflowSettingsState_build__closure2.prototype = { call$1(b) { @@ -561565,13 +562060,13 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(option), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, option, type$.String); }, - $signature: 41 + $signature: 42 }; A._WorkflowSettingsState_build_closure5.prototype = { call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._WorkflowSettingsState_build__closure0(value))); }, - $signature: 30 + $signature: 29 }; A._WorkflowSettingsState_build__closure0.prototype = { call$1(b) { @@ -561584,7 +562079,7 @@ call$1(value) { return this.viewModel.onSettingsChanged.call$1(this.settings.rebuild$1(new A._WorkflowSettingsState_build__closure(value))); }, - $signature: 30 + $signature: 29 }; A._WorkflowSettingsState_build__closure.prototype = { call$1(b) { @@ -561631,7 +562126,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateSettings(settings)); }, - $signature: 206 + $signature: 196 }; A.WorkflowSettingsVM_fromStore_closure1.prototype = { call$1(company) { @@ -561639,7 +562134,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.UpdateCompany(company)); }, - $signature: 134 + $signature: 136 }; A.WorkflowSettingsVM_fromStore_closure.prototype = { call$1(context) { @@ -562143,7 +562638,7 @@ t3.get$_subscription_model$_$this()._postPurchaseUrl = t1; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState__onChanged_closure0.prototype = { call$0() { @@ -562155,7 +562650,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._SubscriptionEditState_build_closure.prototype = { call$1(groupId) { @@ -562168,7 +562663,7 @@ b.get$_subscription_model$_$this()._subscription_model$_groupId = this.groupId; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure0.prototype = { call$1(userId) { @@ -562181,7 +562676,7 @@ b.get$_subscription_model$_$this()._subscription_model$_assignedUserId = this.userId; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure1.prototype = { call$1(value) { @@ -562192,7 +562687,7 @@ $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._SubscriptionEditState_build__closure28(this.context)); } }, - $signature: 52 + $signature: 53 }; A._SubscriptionEditState_build__closure27.prototype = { call$1(b) { @@ -562203,25 +562698,25 @@ b.get$_subscription_model$_$this()._productIds = t1; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build___closure7.prototype = { call$1(part) { return part.length !== 0; }, - $signature: 11 + $signature: 12 }; A._SubscriptionEditState_build__closure28.prototype = { call$1(duration) { A.FocusScope_of(this.context).unfocus$0(); }, - $signature: 12 + $signature: 11 }; A._SubscriptionEditState_build_closure2.prototype = { call$1(element) { return element.length !== 0; }, - $signature: 11 + $signature: 12 }; A._SubscriptionEditState_build_closure3.prototype = { call$1(productId) { @@ -562229,7 +562724,7 @@ t1 = this.state; return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, A.Text$(t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].productState.$get$1(0, productId).productKey, _null, _null, _null, _null, _null, _null, _null, _null, _null), A.IconButton$(_null, _null, _null, _null, A.Icon$(B.IconData_57704_MaterialIcons_null_false, _null, _null, _null), _null, new A._SubscriptionEditState_build__closure26(this.subscription, productId, this.viewModel), _null, _null, _null, _null, _null), _null); }, - $signature: 209 + $signature: 231 }; A._SubscriptionEditState_build__closure26.prototype = { call$0() { @@ -562246,7 +562741,7 @@ b.get$_subscription_model$_$this()._productIds = t1; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure4.prototype = { call$1(value) { @@ -562254,7 +562749,7 @@ this.viewModel.onChanged.call$1(t1.rebuild$1(new A._SubscriptionEditState_build__closure24(A._setArrayType(t1.recurringProductIds.split(","), type$.JSArray_String), value))); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._SubscriptionEditState_build__closure25(this.context)); }, - $signature: 52 + $signature: 53 }; A._SubscriptionEditState_build__closure24.prototype = { call$1(b) { @@ -562265,25 +562760,25 @@ b.get$_subscription_model$_$this()._recurringProductIds = t1; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build___closure5.prototype = { call$1(part) { return part.length !== 0; }, - $signature: 11 + $signature: 12 }; A._SubscriptionEditState_build__closure25.prototype = { call$1(duration) { A.FocusScope_of(this.context).unfocus$0(); }, - $signature: 12 + $signature: 11 }; A._SubscriptionEditState_build_closure5.prototype = { call$1(element) { return element.length !== 0; }, - $signature: 11 + $signature: 12 }; A._SubscriptionEditState_build_closure6.prototype = { call$1(productId) { @@ -562291,7 +562786,7 @@ t1 = this.state; return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, A.Text$(t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].productState.$get$1(0, productId).productKey, _null, _null, _null, _null, _null, _null, _null, _null, _null), A.IconButton$(_null, _null, _null, _null, A.Icon$(B.IconData_57704_MaterialIcons_null_false, _null, _null, _null), _null, new A._SubscriptionEditState_build__closure23(this.subscription, productId, this.viewModel), _null, _null, _null, _null, _null), _null); }, - $signature: 209 + $signature: 231 }; A._SubscriptionEditState_build__closure23.prototype = { call$0() { @@ -562308,7 +562803,7 @@ b.get$_subscription_model$_$this()._recurringProductIds = t1; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure7.prototype = { call$1(value) { @@ -562319,7 +562814,7 @@ $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._SubscriptionEditState_build__closure22(this.context)); } }, - $signature: 52 + $signature: 53 }; A._SubscriptionEditState_build__closure21.prototype = { call$1(b) { @@ -562330,25 +562825,25 @@ b.get$_subscription_model$_$this()._optionalProductIds = t1; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build___closure3.prototype = { call$1(part) { return part.length !== 0; }, - $signature: 11 + $signature: 12 }; A._SubscriptionEditState_build__closure22.prototype = { call$1(duration) { A.FocusScope_of(this.context).unfocus$0(); }, - $signature: 12 + $signature: 11 }; A._SubscriptionEditState_build_closure8.prototype = { call$1(element) { return element.length !== 0; }, - $signature: 11 + $signature: 12 }; A._SubscriptionEditState_build_closure9.prototype = { call$1(productId) { @@ -562356,7 +562851,7 @@ t1 = this.state; return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, A.Text$(t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].productState.$get$1(0, productId).productKey, _null, _null, _null, _null, _null, _null, _null, _null, _null), A.IconButton$(_null, _null, _null, _null, A.Icon$(B.IconData_57704_MaterialIcons_null_false, _null, _null, _null), _null, new A._SubscriptionEditState_build__closure20(this.subscription, productId, this.viewModel), _null, _null, _null, _null, _null), _null); }, - $signature: 209 + $signature: 231 }; A._SubscriptionEditState_build__closure20.prototype = { call$0() { @@ -562373,7 +562868,7 @@ b.get$_subscription_model$_$this()._optionalProductIds = t1; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure10.prototype = { call$1(value) { @@ -562384,7 +562879,7 @@ $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._SubscriptionEditState_build__closure19(this.context)); } }, - $signature: 52 + $signature: 53 }; A._SubscriptionEditState_build__closure18.prototype = { call$1(b) { @@ -562395,25 +562890,25 @@ b.get$_subscription_model$_$this()._optionalRecurringProductIds = t1; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build___closure1.prototype = { call$1(part) { return part.length !== 0; }, - $signature: 11 + $signature: 12 }; A._SubscriptionEditState_build__closure19.prototype = { call$1(duration) { A.FocusScope_of(this.context).unfocus$0(); }, - $signature: 12 + $signature: 11 }; A._SubscriptionEditState_build_closure11.prototype = { call$1(element) { return element.length !== 0; }, - $signature: 11 + $signature: 12 }; A._SubscriptionEditState_build_closure12.prototype = { call$1(productId) { @@ -562421,7 +562916,7 @@ t1 = this.state; return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, A.Text$(t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].productState.$get$1(0, productId).productKey, _null, _null, _null, _null, _null, _null, _null, _null, _null), A.IconButton$(_null, _null, _null, _null, A.Icon$(B.IconData_57704_MaterialIcons_null_false, _null, _null, _null), _null, new A._SubscriptionEditState_build__closure17(this.subscription, productId, this.viewModel), _null, _null, _null, _null, _null), _null); }, - $signature: 209 + $signature: 231 }; A._SubscriptionEditState_build__closure17.prototype = { call$0() { @@ -562438,7 +562933,7 @@ b.get$_subscription_model$_$this()._optionalRecurringProductIds = t1; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure14.prototype = { call$1(value) { @@ -562451,14 +562946,14 @@ b.get$_subscription_model$_$this()._subscription_model$_frequencyId = this.value; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure13.prototype = { call$1(entry) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(entry.value), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, entry.key, type$.String); }, - $signature: 320 + $signature: 295 }; A._SubscriptionEditState_build_closure16.prototype = { call$1(value) { @@ -562471,105 +562966,105 @@ b.get$_subscription_model$_$this()._subscription_model$_autoBill = this.value; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure17.prototype = { call$1(context) { var t1 = type$.MappedListIterable_String_Text; return A.List_List$of(new A.MappedListIterable(A._setArrayType(["", "always", "optout", "optin", "off"], type$.JSArray_String), new A._SubscriptionEditState_build__closure14(this.localization), t1), true, t1._eval$1("ListIterable.E")); }, - $signature: 290 + $signature: 323 }; A._SubscriptionEditState_build__closure14.prototype = { call$1(type) { var _null = null; return A.Text$(this.localization.lookup$1(type), _null, _null, _null, _null, _null, _null, _null, _null, _null); }, - $signature: 289 + $signature: 326 }; A._SubscriptionEditState_build_closure15.prototype = { call$1(value) { return A.DropdownMenuItem$(new A.AutobillDropdownMenuItem(value, null), null, value, type$.String); }, - $signature: 41 + $signature: 42 }; A._SubscriptionEditState_build_closure18.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure13(value))); }, - $signature: 30 + $signature: 29 }; A._SubscriptionEditState_build__closure13.prototype = { call$1(b) { b.get$_subscription_model$_$this()._subscription_model$_isAmountDiscount = this.value; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure19.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure12(value))); }, - $signature: 30 + $signature: 29 }; A._SubscriptionEditState_build__closure12.prototype = { call$1(b) { b.get$_subscription_model$_$this()._registrationRequired = this.value; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure20.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure11(value))); }, - $signature: 30 + $signature: 29 }; A._SubscriptionEditState_build__closure11.prototype = { call$1(b) { b.get$_subscription_model$_$this()._useInventoryManagement = this.value; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure21.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure10(value))); }, - $signature: 30 + $signature: 29 }; A._SubscriptionEditState_build__closure10.prototype = { call$1(b) { b.get$_subscription_model$_$this()._allowQueryOverrides = this.value; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure22.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure9(value))); }, - $signature: 30 + $signature: 29 }; A._SubscriptionEditState_build__closure9.prototype = { call$1(b) { b.get$_subscription_model$_$this()._allowPlanChanges = this.value; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure23.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure8(value))); }, - $signature: 30 + $signature: 29 }; A._SubscriptionEditState_build__closure8.prototype = { call$1(b) { b.get$_subscription_model$_$this()._allowCancellation = this.value; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure24.prototype = { call$1(value) { @@ -562582,13 +563077,13 @@ b.get$_subscription_model$_$this()._refundPeriod = this.value; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure25.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure6(value))); }, - $signature: 30 + $signature: 29 }; A._SubscriptionEditState_build__closure6.prototype = { call$1(b) { @@ -562607,13 +563102,13 @@ b.get$_subscription_model$_$this()._trialDuration = this.value; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure27.prototype = { call$1(value) { return this.viewModel.onChanged.call$1(this.subscription.rebuild$1(new A._SubscriptionEditState_build__closure4(value))); }, - $signature: 30 + $signature: 29 }; A._SubscriptionEditState_build__closure4.prototype = { call$1(b) { @@ -562632,7 +563127,7 @@ b.get$webhookConfiguration().get$_subscription_model$_$this()._postPurchaseRestMethod = this.value; return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure29.prototype = { call$1(value) { @@ -562674,7 +563169,7 @@ b.get$webhookConfiguration().get$postPurchaseHeaders().$indexSet(0, this.key, this.value); return b; }, - $signature: 77 + $signature: 78 }; A._SubscriptionEditState_build_closure32.prototype = { call$1(key) { @@ -562690,7 +563185,7 @@ t3.toString; return A.ListTile$(false, B.EdgeInsets_0_0_0_0, _null, _null, true, _null, _null, false, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, t2, A.IconButton$(_null, _null, _null, _null, t1, _null, new A._SubscriptionEditState_build__closure(_this.viewModel, _this.subscription, key), _null, _null, _null, t3, _null), _null); }, - $signature: 209 + $signature: 231 }; A._SubscriptionEditState_build__closure.prototype = { call$0() { @@ -562703,7 +563198,7 @@ b.get$webhookConfiguration().get$postPurchaseHeaders().get$_safeMap().remove$1(0, this.key); return b; }, - $signature: 77 + $signature: 78 }; A.__SubscriptionEditState_State_SingleTickerProviderStateMixin.prototype = { dispose$0() { @@ -562752,7 +563247,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateSubscription(subscription)); }, - $signature: 431 + $signature: 426 }; A.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -562808,7 +563303,7 @@ t5[0].call$1(new A.SaveSubscriptionRequest(new A._AsyncCompleter(t3, type$._AsyncCompleter_SubscriptionEntity), t2)); return t3.then$1$1(0, new A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure0(t2, t4, this.state, t1, $navigator), type$.Null).catchError$1(new A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure1()); }, - $signature: 136 + $signature: 133 }; A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure.prototype = { call$1(context) { @@ -562869,7 +563364,7 @@ } else A.viewEntity(false, savedSubscription, null, true); }, - $signature: 431 + $signature: 426 }; A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure1.prototype = { call$1(error) { @@ -563082,7 +563577,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SortSubscriptions(value)); }, - $signature: 40 + $signature: 38 }; A.SubscriptionScreen_build_closure5.prototype = { call$2(state, value) { @@ -563090,7 +563585,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterSubscriptionsByState(state)); }, - $signature: 64 + $signature: 66 }; A.SubscriptionScreen_build_closure.prototype = { call$0() { @@ -563512,7 +564007,7 @@ credentials = t2.get$credentials(t2); new A.WebClient().post$5$idToken$password$rawResponse(credentials.url + "/self-update", credentials.token, idToken, password, true).then$1$1(0, new A._UpdateDialogState_updateApp__closure0(t1), type$.Null).catchError$1(new A._UpdateDialogState_updateApp__closure1(t1)); }, - $signature: 79 + $signature: 80 }; A._UpdateDialogState_updateApp__closure.prototype = { call$0() { @@ -563665,7 +564160,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._TaskEditState_build_closure2.prototype = { call$2(context, action) { @@ -563680,7 +564175,7 @@ call$2(context, action) { return this.$this._task_edit$_onSavePressed$2(context, action); }, - $signature: 74 + $signature: 73 }; A._TaskEditState_build_closure.prototype = { call$0() { @@ -564008,7 +564503,7 @@ b.get$_task_model$_$this()._task_model$_customValue4 = t1; return b; }, - $signature: 76 + $signature: 75 }; A._TaskEditDesktopState__onChanged_closure0.prototype = { call$0() { @@ -564020,20 +564515,20 @@ call$1(taskTime) { return taskTime.get$isEmpty(taskTime); }, - $signature: 215 + $signature: 208 }; A._TaskEditDesktopState_build_closure0.prototype = { call$1(b) { b.get$_task_model$_$this()._task_model$_startDate = null; return b; }, - $signature: 260 + $signature: 256 }; A._TaskEditDesktopState_build_closure2.prototype = { call$1(client) { this.viewModel.onChanged.call$1(this.task.rebuild$1(new A._TaskEditDesktopState_build__closure10(client))); }, - $signature: 52 + $signature: 53 }; A._TaskEditDesktopState_build__closure10.prototype = { call$1(b) { @@ -564045,13 +564540,13 @@ b.get$_task_model$_$this()._task_model$_projectId = ""; return b; }, - $signature: 76 + $signature: 75 }; A._TaskEditDesktopState_build_closure1.prototype = { call$1(completer) { this.viewModel.onAddClientPressed.call$2(this.context, completer); }, - $signature: 230 + $signature: 232 }; A._TaskEditDesktopState_build_closure3.prototype = { call$1(selectedId) { @@ -564061,7 +564556,7 @@ t2 = this.task; this.viewModel.onChanged.call$1(t2.rebuild$1(new A._TaskEditDesktopState_build__closure9(t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].projectState.$get$1(0, selectedId), t2))); }, - $signature: 40 + $signature: 38 }; A._TaskEditDesktopState_build__closure9.prototype = { call$1(b) { @@ -564072,13 +564567,13 @@ b.get$_task_model$_$this()._task_model$_clientId = t1; return b; }, - $signature: 76 + $signature: 75 }; A._TaskEditDesktopState_build_closure4.prototype = { call$1(completer) { this.viewModel.onAddProjectPressed.call$2(this.context, completer); }, - $signature: 230 + $signature: 232 }; A._TaskEditDesktopState_build_closure5.prototype = { call$1(userId) { @@ -564091,14 +564586,14 @@ b.get$_task_model$_$this()._task_model$_assignedUserId = this.userId; return b; }, - $signature: 76 + $signature: 75 }; A._TaskEditDesktopState_build_closure6.prototype = { call$1(selectedId) { var t1 = this.state; this.viewModel.onChanged.call$1(this.task.rebuild$1(new A._TaskEditDesktopState_build__closure7(t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskStatusState.map._map$_map.$index(0, selectedId)))); }, - $signature: 40 + $signature: 38 }; A._TaskEditDesktopState_build__closure7.prototype = { call$1(b) { @@ -564110,7 +564605,7 @@ b.get$_task_model$_$this()._statusOrder = null; return b; }, - $signature: 76 + $signature: 75 }; A._TaskEditDesktopState_build_closure7.prototype = { call$1(taskTime) { @@ -564272,7 +564767,7 @@ t1 = _this.$this; t1.setState$1(new A._TaskEditDesktopState_build___closure5(t1)); }, - $signature: 386 + $signature: 405 }; A._TaskEditDesktopState_build___closure5.prototype = { call$0() { @@ -564306,7 +564801,7 @@ t1 = _this.$this; t1.setState$1(new A._TaskEditDesktopState_build___closure3(t1)); }, - $signature: 386 + $signature: 405 }; A._TaskEditDesktopState_build___closure3.prototype = { call$0() { @@ -564341,7 +564836,7 @@ b.get$_task_model$_$this()._description = this.value; return b; }, - $signature: 260 + $signature: 256 }; A._TaskEditDesktopState_build__closure5.prototype = { call$0() { @@ -564355,7 +564850,7 @@ b.get$_task_model$_$this()._isBillable = !this.taskTime.isBillable; return b; }, - $signature: 260 + $signature: 256 }; A._TaskEditDesktopState_build__closure6.prototype = { call$0() { @@ -564537,7 +565032,7 @@ b.get$_task_model$_$this()._task_model$_customValue4 = t1; return b; }, - $signature: 76 + $signature: 75 }; A._TaskEditDetailsState__onChanged_closure0.prototype = { call$0() { @@ -564549,7 +565044,7 @@ call$1(client) { this.viewModel.onChanged.call$1(this.task.rebuild$1(new A._TaskEditDetailsState_build__closure2(client))); }, - $signature: 52 + $signature: 53 }; A._TaskEditDetailsState_build__closure2.prototype = { call$1(b) { @@ -564561,13 +565056,13 @@ b.get$_task_model$_$this()._task_model$_projectId = ""; return b; }, - $signature: 76 + $signature: 75 }; A._TaskEditDetailsState_build_closure.prototype = { call$1(completer) { this.viewModel.onAddClientPressed.call$2(this.context, completer); }, - $signature: 230 + $signature: 232 }; A._TaskEditDetailsState_build_closure1.prototype = { call$1(selectedId) { @@ -564577,7 +565072,7 @@ t2 = this.task; this.viewModel.onChanged.call$1(t2.rebuild$1(new A._TaskEditDetailsState_build__closure1(t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].projectState.$get$1(0, selectedId), t2))); }, - $signature: 40 + $signature: 38 }; A._TaskEditDetailsState_build__closure1.prototype = { call$1(b) { @@ -564588,13 +565083,13 @@ b.get$_task_model$_$this()._task_model$_clientId = t1; return b; }, - $signature: 76 + $signature: 75 }; A._TaskEditDetailsState_build_closure2.prototype = { call$1(completer) { this.viewModel.onAddProjectPressed.call$2(this.context, completer); }, - $signature: 230 + $signature: 232 }; A._TaskEditDetailsState_build_closure3.prototype = { call$1(userId) { @@ -564607,14 +565102,14 @@ b.get$_task_model$_$this()._task_model$_assignedUserId = this.userId; return b; }, - $signature: 76 + $signature: 75 }; A._TaskEditDetailsState_build_closure4.prototype = { call$1(selectedId) { var t1 = this.state; this.viewModel.onChanged.call$1(this.task.rebuild$1(new A._TaskEditDetailsState_build__closure(t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskStatusState.map._map$_map.$index(0, selectedId)))); }, - $signature: 40 + $signature: 38 }; A._TaskEditDetailsState_build__closure.prototype = { call$1(b) { @@ -564624,7 +565119,7 @@ b.get$_task_model$_$this()._statusOrder = null; return b; }, - $signature: 76 + $signature: 75 }; A.TaskEditDetailsScreen.prototype = { build$1(context) { @@ -564661,7 +565156,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateTask(task)); }, - $signature: 262 + $signature: 243 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure0.prototype = { call$2(context, completer) { @@ -564674,7 +565169,7 @@ A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, t1, _null, true); completer.future.then$1$1(0, new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure3(t3), t4); }, - $signature: 127 + $signature: 131 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure2.prototype = { call$1(_) { @@ -564690,7 +565185,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateCurrentRoute("/task/edit")); }, - $signature: 106 + $signature: 103 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure2.prototype = { call$2(taskTime, index) { @@ -564725,14 +565220,14 @@ A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, t1, _null, true); completer.future.then$1$1(0, new A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure1(t3), t4); }, - $signature: 127 + $signature: 131 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure.prototype = { call$1(b) { b.get$_project_model$_$this()._project_model$_clientId = this.task.clientId; return b; }, - $signature: 196 + $signature: 201 }; A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure0.prototype = { call$1(_) { @@ -564748,7 +565243,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateCurrentRoute("/task/edit")); }, - $signature: 106 + $signature: 103 }; A.TaskEditTimes.prototype = { createState$0() { @@ -564813,13 +565308,13 @@ var t1 = this.taskTime; return J.$eq$(time.startDate, t1.startDate) && J.$eq$(time.endDate, t1.endDate); }, - $signature: 215 + $signature: 208 }; A._TaskEditTimesState_build_closure.prototype = { call$1(duration) { this.$this._showTaskTimeEditor$2(this.taskTime, this.context); }, - $signature: 12 + $signature: 11 }; A._TaskEditTimesState_build_closure0.prototype = { call$1(context) { @@ -564958,7 +565453,7 @@ t1 = this.$this; t1.setState$1(new A.TimeEditDetailsState_build__closure5(t1, timeOfDay, this.viewModel)); }, - $signature: 386 + $signature: 405 }; A.TimeEditDetailsState_build__closure5.prototype = { call$0() { @@ -564992,7 +565487,7 @@ var t1 = this.$this; t1.setState$1(new A.TimeEditDetailsState_build__closure3(t1, timeOfDay, this.viewModel)); }, - $signature: 386 + $signature: 405 }; A.TimeEditDetailsState_build__closure3.prototype = { call$0() { @@ -565039,7 +565534,7 @@ b.get$_task_model$_$this()._description = this.value; return b; }, - $signature: 260 + $signature: 256 }; A.TimeEditDetailsState_build_closure5.prototype = { call$1(value) { @@ -565056,7 +565551,7 @@ b.get$_task_model$_$this()._isBillable = this.value; return b; }, - $signature: 260 + $signature: 256 }; A.TimeEditDetailsState_build__closure0.prototype = { call$0() { @@ -565110,7 +565605,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.DeleteTaskTime(index)); }, - $signature: 393 + $signature: 361 }; A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure0.prototype = { call$0() { @@ -565197,7 +565692,7 @@ call$1(time) { return time.endDate == null; }, - $signature: 215 + $signature: 208 }; A.TaskEditVM_TaskEditVM$fromStore_closure.prototype = { call$2(context, action) { @@ -565211,7 +565706,7 @@ call$1(context) { return this.call$2(context, null); }, - $signature: 200 + $signature: 193 }; A.TaskEditVM_TaskEditVM$fromStore__closure0.prototype = { call$0() { @@ -565252,7 +565747,7 @@ return t3.then$1$1(0, new A.TaskEditVM_TaskEditVM$fromStore___closure0(task, t4, origTask, t1, t2, $navigator, t5), type$.Null).catchError$1(new A.TaskEditVM_TaskEditVM$fromStore___closure1()); } }, - $signature: 136 + $signature: 133 }; A.TaskEditVM_TaskEditVM$fromStore___closure.prototype = { call$1(context) { @@ -565321,7 +565816,7 @@ A.viewEntity(false, savedTask, _null, true); } }, - $signature: 262 + $signature: 243 }; A.TaskEditVM_TaskEditVM$fromStore___closure1.prototype = { call$1(error) { @@ -565510,7 +566005,7 @@ var t1 = this.$this; t1.setState$1(new A._KanbanTaskCardState_build___closure(t1)); }, - $signature: 262 + $signature: 243 }; A._KanbanTaskCardState_build___closure.prototype = { call$0() { @@ -565526,7 +566021,7 @@ t1.setState$1(new A._KanbanTaskCardState_build__closure(t1)); } }, - $signature: 247 + $signature: 240 }; A._KanbanTaskCardState_build__closure.prototype = { call$0() { @@ -565727,7 +566222,7 @@ var t1 = this.$this; t1.setState$1(new A._KanbanStatusCardState__onSavePressed__closure(t1)); }, - $signature: 345 + $signature: 293 }; A._KanbanStatusCardState__onSavePressed__closure.prototype = { call$0() { @@ -565876,7 +566371,7 @@ return B.JSInt_methods.compareTo$1(t1, t2 == null ? 99999 : t2); } }, - $signature: 26 + $signature: 25 }; A.KanbanViewState__onBoardChanged_closure.prototype = { call$1(error) { @@ -565888,7 +566383,7 @@ call$1(statusId) { return statusId.length !== 0 || this.$this._kanban_view$_tasks.containsKey$1(0, statusId); }, - $signature: 11 + $signature: 12 }; A.KanbanViewState_build_closure0.prototype = { call$1(statusId) { @@ -565932,7 +566427,7 @@ t1.setState$1(new A.KanbanViewState_build___closure(t1, startIndex, endIndex)); t1._onBoardChanged$0(); }, - $signature: 863 + $signature: 671 }; A.KanbanViewState_build___closure.prototype = { call$0() { @@ -566016,14 +566511,14 @@ b.get$_task_model$_$this()._task_model$_statusId = this.status.id; return b; }, - $signature: 76 + $signature: 75 }; A.KanbanViewState_build__closure3.prototype = { call$1(taskId) { var t1 = this.$this._widget.viewModel.state; return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskState.$get$1(0, taskId); }, - $signature: 669 + $signature: 682 }; A.KanbanViewState_build__closure4.prototype = { call$1(task) { @@ -566209,7 +566704,7 @@ b.get$_task_status_model$_$this()._task_status_model$_statusOrder = t1; return b; }, - $signature: 161 + $signature: 166 }; A.KanbanVM_fromStore_closure0.prototype = { call$5(completer, taskId, statusId, description, statusOrder) { @@ -566257,7 +566752,7 @@ b.get$_task_model$_$this()._task_model$_statusId = _this.statusId; return b; }, - $signature: 76 + $signature: 75 }; A.KanbanVM_fromStore__closure1.prototype = { call$1(b) { @@ -566271,7 +566766,7 @@ b.get$_task_model$_$this()._task_model$_clientId = t1; return b; }, - $signature: 76 + $signature: 75 }; A.KanbanVM_fromStore__closure2.prototype = { call$1(b) { @@ -566286,7 +566781,7 @@ b.get$_task_model$_$this()._task_model$_clientId = this.project.clientId; return b; }, - $signature: 76 + $signature: 75 }; A.KanbanVM_fromStore__closure3.prototype = { call$1(b) { @@ -566300,7 +566795,7 @@ b.get$_task_model$_$this()._task_model$_assignedUserId = t1; return b; }, - $signature: 76 + $signature: 75 }; A.TaskListItem.prototype = { build$1(context) { @@ -566502,7 +566997,7 @@ A.handleEntitiesActions(A._setArrayType([this.$this.task], type$.JSArray_BaseEntity), action, false); return null; }, - $signature: 74 + $signature: 73 }; A.TaskListItem_build__closure5.prototype = { call$0() { @@ -566543,7 +567038,7 @@ t2.toString; return A.TaskListItem$(t1.filter, false, true, null, null, true, t2); }, - $signature: 435 + $signature: 351 }; A.TaskListVM.prototype = { get$user(receiver) { @@ -566702,14 +567197,14 @@ call$1(time) { return time.startDate != null && time.endDate != null; }, - $signature: 215 + $signature: 208 }; A.TaskPresenter_getField_closure0.prototype = { call$1(time) { var t1 = this.context; this.notes.push(A.formatDate(time.startDate.toIso8601String$0(), t1, true, true, true) + " - " + A.formatDate(time.endDate.toIso8601String$0(), t1, false, true, true)); }, - $signature: 220 + $signature: 229 }; A.TaskScreen.prototype = { build$1(context) { @@ -566851,7 +567346,7 @@ b.get$_task_status_model$_$this()._task_status_model$_name = t1; return b; }, - $signature: 161 + $signature: 166 }; A.TaskScreen_build_closure0.prototype = { call$1(b) { @@ -566864,7 +567359,7 @@ b.get$_task_status_model$_$this()._task_status_model$_name = t1; return b; }, - $signature: 161 + $signature: 166 }; A.TaskScreen_build_closure1.prototype = { call$1(b) { @@ -566877,7 +567372,7 @@ b.get$_task_status_model$_$this()._task_status_model$_name = t1; return b; }, - $signature: 161 + $signature: 166 }; A.TaskScreen_build_closure2.prototype = { call$1(b) { @@ -566889,7 +567384,7 @@ b.get$_task_status_model$_$this()._task_status_model$_name = t1; return b; }, - $signature: 161 + $signature: 166 }; A.TaskScreen_build_closure21.prototype = { call$0() { @@ -566921,7 +567416,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterTasksByStatus($status)); }, - $signature: 168 + $signature: 159 }; A.TaskScreen_build_closure20.prototype = { call$0() { @@ -567002,7 +567497,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterTasksByStatus($status)); }, - $signature: 186 + $signature: 177 }; A.TaskScreen_build_closure9.prototype = { call$1(value) { @@ -567042,7 +567537,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterTasksByState(state)); }, - $signature: 64 + $signature: 66 }; A.TaskScreen_build_closure8.prototype = { call$0() { @@ -567229,7 +567724,7 @@ t4 = t2.invoiceId.length === 0; return A.Column$(A._setArrayType([t1, new A.BottomButtons(t2, t3, !t4 ? B.EntityAction_archive : B.EntityAction_invoiceTask, t4, true, _null)], type$.JSArray_Widget), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, - $signature: 270 + $signature: 260 }; A._TaskViewState_build__closure.prototype = { call$0() { @@ -567275,7 +567770,7 @@ call$2(path, isPrivate) { return this.$this.viewModel.onUploadDocuments.call$3(this.context, path, isPrivate); }, - $signature: 144 + $signature: 145 }; A.TaskViewDocuments_build_closure0.prototype = { call$0() { @@ -567346,7 +567841,7 @@ var t1 = this.$this; return t1._framework$_element != null && t1.setState$1(new A._TaskOverviewState_initState__closure()); }, - $signature: 229 + $signature: 215 }; A._TaskOverviewState_initState__closure.prototype = { call$0() { @@ -567418,14 +567913,14 @@ new A.ReversedListIterable(items, A._arrayInstanceType(items)._eval$1("ReversedListIterable<1>")).forEach$1(0, new A._TaskOverviewState_build__buildView_closure(widgets, t1, _this.viewModel)); return widgets; }, - $signature: 292 + $signature: 302 }; A._TaskOverviewState_build__buildView_closure.prototype = { call$1(taskTime) { var t1 = this.task; B.JSArray_methods.addAll$1(this.widgets, A._setArrayType([new A.TaskTimeListTile(new A._TaskOverviewState_build__buildView__closure(this.viewModel, t1, taskTime), t1, taskTime, true, null)], type$.JSArray_Widget)); }, - $signature: 220 + $signature: 229 }; A._TaskOverviewState_build__buildView__closure.prototype = { call$1(context) { @@ -567433,7 +567928,7 @@ t2 = t1.state; return t2.userCompanyStates._list$_list[t2.uiState.selectedCompanyIndex].userCompany.canEditEntity$1(this.task) ? t1.onEditPressed.call$2(context, this.taskTime) : null; }, - $signature: 53 + $signature: 52 }; A._TaskOverviewState_build_closure.prototype = { call$0() { @@ -567525,7 +568020,7 @@ }, "call*": "call$3", $requiredArgCount: 3, - $signature: 112 + $signature: 114 }; A.TaskViewVM_TaskViewVM$fromStore__closure.prototype = { call$1(client) { @@ -567537,7 +568032,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.TaskViewVM_TaskViewVM$fromStore__closure0.prototype = { call$1(error) { @@ -567630,7 +568125,7 @@ b.get$_task_status_model$_$this()._task_status_model$_name = t1; return b; }, - $signature: 161 + $signature: 166 }; A._TaskStatusEditState__onChanged_closure0.prototype = { call$0() { @@ -567642,7 +568137,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._TaskStatusEditState_build_closure.prototype = { call$1(context) { @@ -567657,7 +568152,7 @@ t5 = type$.JSArray_Widget; return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, true, t1._task_status_edit$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t3, _null, _null, false, _null, _null, t1.get$_task_status_edit$_onSavePressed(), true, _null, _null, B.TextAlign_4, new A._TaskStatusEditState_build__closure(t2)), A.FormColorPicker$(t4.color, _null, new A._TaskStatusEditState_build__closure0(_this.viewModel, t4))], t5), _null, _null, false, _null, false, _null, _null)], t5), _null, _null, _null, false, _null); }, - $signature: 142 + $signature: 146 }; A._TaskStatusEditState_build__closure.prototype = { call$1(val) { @@ -567677,14 +568172,14 @@ call$1(value) { return this.viewModel.onChanged.call$1(this.taskStatus.rebuild$1(new A._TaskStatusEditState_build___closure(value))); }, - $signature: 199 + $signature: 204 }; A._TaskStatusEditState_build___closure.prototype = { call$1(b) { b.get$_task_status_model$_$this()._task_status_model$_color = this.value; return b; }, - $signature: 161 + $signature: 166 }; A.TaskStatusEditScreen.prototype = { build$1(context) { @@ -567718,7 +568213,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateTaskStatus(taskStatus)); }, - $signature: 345 + $signature: 293 }; A.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -567759,7 +568254,7 @@ t4[0].call$1(new A.SaveTaskStatusRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_TaskStatusEntity), taskStatus)); return t2.then$1$1(0, new A.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure(taskStatus, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure0()); }, - $signature: 70 + $signature: 69 }; A.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure.prototype = { call$1(savedTaskStatus) { @@ -567794,7 +568289,7 @@ } else A.viewEntity(false, savedTaskStatus, null, true); }, - $signature: 345 + $signature: 293 }; A.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure0.prototype = { call$1(error) { @@ -567868,7 +568363,7 @@ newIndex = J.get$length$asx(t1._widget.viewModel.taskStatusList); t1._widget.viewModel.onSortChanged.call$2(oldIndex, newIndex); }, - $signature: 232 + $signature: 223 }; A._TaskStatusListState_build_closure.prototype = { call$1(taskStatusId) { @@ -567999,14 +568494,14 @@ t3 === $ && A.throwUnnamedLateFieldNI(); t3[0].call$1(new A.SaveTaskStatusRequest(t1, t2)); }, - $signature: 224 + $signature: 222 }; A.TaskStatusListVM_fromStore__closure.prototype = { call$1(b) { b.get$_task_status_model$_$this()._task_status_model$_statusOrder = this.newIndex + 1; return b; }, - $signature: 161 + $signature: 166 }; A.TaskStatusScreen.prototype = { build$1(context) { @@ -568117,7 +568612,7 @@ }); return A._asyncStartSync($async$call$0, $async$completer); }, - $signature: 70 + $signature: 69 }; A.TaskStatusScreen_build__closure.prototype = { call$1(taskStatusId) { @@ -568133,7 +568628,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.ClearTaskStatusMultiselect()); }, - $signature: 103 + $signature: 101 }; A.TaskStatusScreen_build_closure5.prototype = { call$1(value) { @@ -568141,7 +568636,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SortTaskStatuses(value)); }, - $signature: 40 + $signature: 38 }; A.TaskStatusScreen_build_closure6.prototype = { call$2(state, value) { @@ -568149,7 +568644,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterTaskStatusesByState(state)); }, - $signature: 64 + $signature: 66 }; A.TaskStatusScreen_build_closure0.prototype = { call$0() { @@ -568410,7 +568905,7 @@ b.get$_tax_rate_model$_$this()._tax_rate_model$_rate = t1; return b; }, - $signature: 625 + $signature: 626 }; A._TaxRateEditState__onChanged_closure0.prototype = { call$0() { @@ -568464,7 +568959,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateTaxRate(taxRate)); }, - $signature: 163 + $signature: 167 }; A.TaxRateEditVM_TaxRateEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -568505,7 +569000,7 @@ t4[0].call$1(new A.SaveTaxRateRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_TaxRateEntity), taxRate)); return t2.then$1$1(0, new A.TaxRateEditVM_TaxRateEditVM$fromStore___closure(taxRate, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.TaxRateEditVM_TaxRateEditVM$fromStore___closure0()); }, - $signature: 70 + $signature: 69 }; A.TaxRateEditVM_TaxRateEditVM$fromStore___closure.prototype = { call$1(savedTaxRate) { @@ -568540,7 +569035,7 @@ } else A.viewEntity(false, savedTaxRate, null, true); }, - $signature: 163 + $signature: 167 }; A.TaxRateEditVM_TaxRateEditVM$fromStore___closure0.prototype = { call$1(error) { @@ -568757,7 +569252,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterTaxRatesByState(state)); }, - $signature: 64 + $signature: 66 }; A.TaxRateSettingsScreen_build_closure.prototype = { call$0() { @@ -568939,7 +569434,7 @@ b.get$_token_model$_$this()._token_model$_name = t1; return b; }, - $signature: 721 + $signature: 624 }; A._TokenEditState__onChanged_closure0.prototype = { call$0() { @@ -568951,7 +569446,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._TokenEditState_build_closure.prototype = { call$1(context) { @@ -568965,7 +569460,7 @@ t4 = type$.JSArray_Widget; return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([A.DecoratedFormField$(false, _null, true, t1._token_edit$_nameController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_0_null_null, t3, _null, _null, false, _null, _null, t1.get$_token_edit$_onSavePressed(), true, _null, _null, B.TextAlign_4, new A._TokenEditState_build__closure(t2))], t4), _null, _null, false, _null, false, _null, _null)], t4), _null, _null, _null, false, _null); }, - $signature: 142 + $signature: 146 }; A._TokenEditState_build__closure.prototype = { call$1(value) { @@ -569013,7 +569508,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateToken(token)); }, - $signature: 398 + $signature: 439 }; A.TokenEditVM_TokenEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -569061,7 +569556,7 @@ t5[0].call$1(new A.SaveTokenRequest(new A._AsyncCompleter(t1, type$._AsyncCompleter_TokenEntity), t4, password, idToken)); return t1.then$1$1(0, new A.TokenEditVM_TokenEditVM$fromStore____closure(t4, t2, this.state, t3, $navigator), type$.Null).catchError$1(new A.TokenEditVM_TokenEditVM$fromStore____closure0()); }, - $signature: 572 + $signature: 524 }; A.TokenEditVM_TokenEditVM$fromStore____closure.prototype = { call$1(savedToken) { @@ -569096,7 +569591,7 @@ } else A.viewEntity(false, savedToken, null, true); }, - $signature: 398 + $signature: 439 }; A.TokenEditVM_TokenEditVM$fromStore____closure0.prototype = { call$1(error) { @@ -569322,7 +569817,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SortTokens(value)); }, - $signature: 40 + $signature: 38 }; A.TokenScreen_build_closure5.prototype = { call$2(state, value) { @@ -569330,7 +569825,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterTokensByState(state)); }, - $signature: 64 + $signature: 66 }; A.TokenScreen_build_closure.prototype = { call$0() { @@ -569596,13 +570091,13 @@ b.get$_transaction_model$_$this()._transaction_model$_description = t1; return b; }, - $signature: 137 + $signature: 132 }; A._TransactionEditState_build_closure0.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._TransactionEditState_build_closure1.prototype = { call$1(context) { @@ -569657,7 +570152,7 @@ t2 = type$.JSArray_Widget; return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, A._setArrayType([t7, t4, t9, t13, t1, A.DecoratedFormField$(false, _null, false, t10._descriptionController, _null, true, _null, _null, _null, _null, false, false, _null, B.TextInputType_1_null_null, t3, 6, _null, false, _null, _null, _null, true, _null, _null, B.TextAlign_4, _null)], t2), _null, _null, false, _null, false, _null, _null)], t2), _null, _null, _null, false, _null); }, - $signature: 142 + $signature: 146 }; A._TransactionEditState_build__closure.prototype = { call$1(value) { @@ -569670,7 +570165,7 @@ b.get$_transaction_model$_$this()._baseType = this.value; return b; }, - $signature: 137 + $signature: 132 }; A._TransactionEditState_build__closure0.prototype = { call$2(date, _) { @@ -569683,7 +570178,7 @@ b.get$_transaction_model$_$this()._transaction_model$_date = this.date; return b; }, - $signature: 137 + $signature: 132 }; A._TransactionEditState_build__closure1.prototype = { call$1(_) { @@ -569710,7 +570205,7 @@ var t1 = this.viewModel; return t1.onChanged.call$1(t1.transaction.rebuild$1(new A._TransactionEditState_build___closure1(currency))); }, - $signature: 67 + $signature: 64 }; A._TransactionEditState_build___closure1.prototype = { call$1(b) { @@ -569721,13 +570216,13 @@ b.get$_transaction_model$_$this()._transaction_model$_currencyId = t1; return b; }, - $signature: 137 + $signature: 132 }; A._TransactionEditState_build__closure6.prototype = { call$1(bankAccount) { return this.viewModel.onChanged.call$1(this.transaction.rebuild$1(new A._TransactionEditState_build___closure(bankAccount))); }, - $signature: 67 + $signature: 64 }; A._TransactionEditState_build___closure.prototype = { call$1(b) { @@ -569743,7 +570238,7 @@ call$1(completer) { return this.viewModel.onAddBankAccountPressed.call$2(this.context, completer); }, - $signature: 318 + $signature: 292 }; A._TransactionEditState_build__closure5.prototype = { call$2(completer, $name) { @@ -569752,14 +570247,14 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.SaveBankAccountRequest(completer, t1)); }, - $signature: 164 + $signature: 160 }; A._TransactionEditState_build___closure0.prototype = { call$1(b) { b.get$_bank_account_model$_$this()._bank_account_model$_name = this.name; return b; }, - $signature: 266 + $signature: 249 }; A._TransactionEditState_build__closure8.prototype = { call$1(value) { @@ -569773,13 +570268,13 @@ t1 = null; return t1; }, - $signature: 218 + $signature: 237 }; A._TransactionEditState_build__closure7.prototype = { call$1(entity) { return ""; }, - $signature: 508 + $signature: 453 }; A.TransactionEditScreen.prototype = { build$1(context) { @@ -569813,7 +570308,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateTransaction(transaction)); }, - $signature: 222 + $signature: 211 }; A.TransactionEditVM_TransactionEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -569851,7 +570346,7 @@ t5[0].call$1(new A.SaveTransactionRequest(new A._AsyncCompleter(t4, type$._AsyncCompleter_TransactionEntity), transaction)); return t4.then$1$1(0, new A.TransactionEditVM_TransactionEditVM$fromStore___closure(transaction, t3, this.state, t1, t2), type$.Null).catchError$1(new A.TransactionEditVM_TransactionEditVM$fromStore___closure0(t2)); }, - $signature: 70 + $signature: 69 }; A.TransactionEditVM_TransactionEditVM$fromStore___closure.prototype = { call$1(savedTransaction) { @@ -569900,7 +570395,7 @@ } else A.viewEntity(false, savedTransaction, null, true); }, - $signature: 222 + $signature: 211 }; A.TransactionEditVM_TransactionEditVM$fromStore___closure0.prototype = { call$1(error) { @@ -569925,7 +570420,7 @@ A.createEntity(new A._AsyncCompleter(t2, type$._AsyncCompleter_Null), completer, t1, null, true); completer.get$future().then$1$1(0, new A.TransactionEditVM_TransactionEditVM$fromStore__closure0(t3), t4); }, - $signature: 127 + $signature: 131 }; A.TransactionEditVM_TransactionEditVM$fromStore__closure.prototype = { call$1(_) { @@ -569941,7 +570436,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateCurrentRoute("/transaction/edit")); }, - $signature: 106 + $signature: 103 }; A.TransactionListItem.prototype = { build$1(context) { @@ -570066,7 +570561,7 @@ A.handleEntitiesActions(A._setArrayType([this.$this.transaction], type$.JSArray_BaseEntity), action, false); return null; }, - $signature: 74 + $signature: 73 }; A.TransactionListItem_build__closure5.prototype = { call$0() { @@ -570235,7 +570730,7 @@ var t1 = this.state; return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].expenseState.map._map$_map.$index(0, expenseId); }, - $signature: 226 + $signature: 233 }; A.TransactionPresenter_getField_closure2.prototype = { call$1(expense) { @@ -570293,7 +570788,7 @@ b.get$_transaction_model$_$this()._transaction_model$_name = t1; return b; }, - $signature: 291 + $signature: 286 }; A.TransactionScreen_build_closure0.prototype = { call$1(b) { @@ -570315,7 +570810,7 @@ b.get$_transaction_model$_$this()._transaction_model$_name = t1; return b; }, - $signature: 291 + $signature: 286 }; A.TransactionScreen_build_closure1.prototype = { call$1(b) { @@ -570337,7 +570832,7 @@ b.get$_transaction_model$_$this()._transaction_model$_name = t1; return b; }, - $signature: 291 + $signature: 286 }; A.TransactionScreen_build_closure2.prototype = { call$1(b) { @@ -570358,7 +570853,7 @@ b.get$_transaction_model$_$this()._transaction_model$_name = t1; return b; }, - $signature: 291 + $signature: 286 }; A.TransactionScreen_build_closure3.prototype = { call$1(b) { @@ -570373,7 +570868,7 @@ b.get$_transaction_model$_$this()._transaction_model$_name = t1; return b; }, - $signature: 291 + $signature: 286 }; A.TransactionScreen_build_closure17.prototype = { call$0() { @@ -570407,7 +570902,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterTransactionsByStatus($status)); }, - $signature: 168 + $signature: 159 }; A.TransactionScreen_build_closure16.prototype = { call$0() { @@ -570443,7 +570938,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SortTransactions(value)); }, - $signature: 40 + $signature: 38 }; A.TransactionScreen_build_closure11.prototype = { call$2(state, value) { @@ -570451,7 +570946,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterTransactionsByState(state)); }, - $signature: 64 + $signature: 66 }; A.TransactionScreen_build_closure5.prototype = { call$0() { @@ -570600,7 +571095,7 @@ var t1 = this.state; return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].invoiceState.$get$1(0, invoiceId); }, - $signature: 471 + $signature: 600 }; A._TransactionViewState_build_closure1.prototype = { call$1(invoice) { @@ -570841,7 +571336,7 @@ } return true; }, - $signature: 197 + $signature: 194 }; A._MatchDepositsState_updateInvoiceList_closure0.prototype = { call$2(invoiceA, invoiceB) { @@ -570897,7 +571392,7 @@ } return true; }, - $signature: 463 + $signature: 602 }; A._MatchDepositsState_updatePaymentList_closure0.prototype = { call$2(paymentA, paymentB) { @@ -570932,7 +571427,7 @@ var t1 = this.$this; return t1.setState$1(new A._MatchDepositsState_build__closure12(t1, value)); }, - $signature: 75 + $signature: 76 }; A._MatchDepositsState_build__closure12.prototype = { call$0() { @@ -570945,7 +571440,7 @@ var t1 = this.$this; t1.setState$1(new A._MatchDepositsState_build__closure11(t1)); }, - $signature: 40 + $signature: 38 }; A._MatchDepositsState_build__closure11.prototype = { call$0() { @@ -570987,7 +571482,7 @@ var t1 = this.$this; t1.setState$1(new A._MatchDepositsState_build__closure8(t1)); }, - $signature: 40 + $signature: 38 }; A._MatchDepositsState_build__closure8.prototype = { call$0() { @@ -571088,7 +571583,7 @@ call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A._MatchDepositsState_build_closure12.prototype = { call$2(context, index) { @@ -571103,7 +571598,7 @@ t2 = ""; return new A.PaymentListItem(payment, null, true, t2 === payment.id, new A._MatchDepositsState_build__closure1(t1, payment), false, null); }, - $signature: 593 + $signature: 559 }; A._MatchDepositsState_build__closure1.prototype = { call$0() { @@ -571133,7 +571628,7 @@ call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A._MatchDepositsState_build_closure14.prototype = { call$2(context, index) { @@ -571146,7 +571641,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); return new A.InvoiceListItem(invoice, null, true, B.JSArray_methods.contains$1(t2, invoice), new A._MatchDepositsState_build__closure0(t1, invoice), false, null); }, - $signature: 425 + $signature: 349 }; A._MatchDepositsState_build__closure0.prototype = { call$0() { @@ -571195,7 +571690,7 @@ call$1(invoice) { return invoice.id; }, - $signature: 271 + $signature: 320 }; A._MatchWithdrawals.prototype = { createState$0() { @@ -571567,7 +572062,7 @@ } return true; }, - $signature: 507 + $signature: 506 }; A._MatchWithdrawalsState_updateExpenseList_closure0.prototype = { call$2(expenseA, expenseB) { @@ -571578,7 +572073,7 @@ t2.toString; return B.JSString_methods.compareTo$1(t1, t2); }, - $signature: 479 + $signature: 478 }; A._MatchWithdrawalsState_build_closure.prototype = { call$1(expense) { @@ -571591,7 +572086,7 @@ t3.toString; t1.$indexSet(0, t2, t3 + expense.get$grossAmount()); }, - $signature: 326 + $signature: 287 }; A._MatchWithdrawalsState_build_closure0.prototype = { call$1(currencyId) { @@ -571604,7 +572099,7 @@ var t1 = this.$this; return t1.setState$1(new A._MatchWithdrawalsState_build__closure18(t1, value)); }, - $signature: 75 + $signature: 76 }; A._MatchWithdrawalsState_build__closure18.prototype = { call$0() { @@ -571617,7 +572112,7 @@ var t1 = this.$this; t1.setState$1(new A._MatchWithdrawalsState_build__closure17(t1)); }, - $signature: 40 + $signature: 38 }; A._MatchWithdrawalsState_build__closure17.prototype = { call$0() { @@ -571718,7 +572213,7 @@ call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A._MatchWithdrawalsState_build_closure9.prototype = { call$2(context, index) { @@ -571732,7 +572227,7 @@ t3 === $ && A.throwUnnamedLateFieldNI(); return A.ExpenseListItem$(t2, null, B.JSArray_methods.contains$1(t3, t2), true, null, new A._MatchWithdrawalsState_build__closure10(t1, t2, this.store, this.transaction), true, false); }, - $signature: 381 + $signature: 352 }; A._MatchWithdrawalsState_build__closure10.prototype = { call$0() { @@ -571771,20 +572266,20 @@ b.get$_transaction_model$_$this()._pendingExpenseId = t1; return b; }, - $signature: 137 + $signature: 132 }; A._MatchWithdrawalsState_build_____closure.prototype = { call$1(expense) { return expense.id; }, - $signature: 414 + $signature: 398 }; A._MatchWithdrawalsState_build_closure11.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._MatchWithdrawalsState_build__closure9(t1)); }, - $signature: 40 + $signature: 38 }; A._MatchWithdrawalsState_build__closure9.prototype = { call$0() { @@ -571841,7 +572336,7 @@ t2[0].call$1(new A.SaveTransactionSuccess(t1)); t2[0].call$1(new A.UpdateCurrentRoute("/transaction")); }, - $signature: 106 + $signature: 103 }; A._MatchWithdrawalsState_build___closure2.prototype = { call$1(b) { @@ -571850,13 +572345,13 @@ b.get$_transaction_model$_$this()._pendingVendorId = t1; return b; }, - $signature: 137 + $signature: 132 }; A._MatchWithdrawalsState_build_closure15.prototype = { call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A._MatchWithdrawalsState_build_closure14.prototype = { call$2(context, index) { @@ -571906,14 +572401,14 @@ b.get$_transaction_model$_$this()._pendingVendorId = t1; return b; }, - $signature: 137 + $signature: 132 }; A._MatchWithdrawalsState_build_closure16.prototype = { call$1(value) { var t1 = this.$this; t1.setState$1(new A._MatchWithdrawalsState_build__closure4(t1)); }, - $signature: 40 + $signature: 38 }; A._MatchWithdrawalsState_build__closure4.prototype = { call$0() { @@ -571970,7 +572465,7 @@ t2[0].call$1(new A.SaveTransactionSuccess(t1)); t2[0].call$1(new A.UpdateCurrentRoute("/transaction")); }, - $signature: 106 + $signature: 103 }; A._MatchWithdrawalsState_build___closure0.prototype = { call$1(b) { @@ -571979,13 +572474,13 @@ b.get$_transaction_model$_$this()._pendingCategoryId = t1; return b; }, - $signature: 137 + $signature: 132 }; A._MatchWithdrawalsState_build_closure20.prototype = { call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A._MatchWithdrawalsState_build_closure19.prototype = { call$2(context, index) { @@ -571999,7 +572494,7 @@ t3 = t3 == null ? null : t3.id; return A.ExpenseCategoryListItem$(t2, "", t3 === t2.id, new A._MatchWithdrawalsState_build__closure0(t1, t2, this.store, this.transaction), true); }, - $signature: 780 + $signature: 779 }; A._MatchWithdrawalsState_build__closure0.prototype = { call$0() { @@ -572035,7 +572530,7 @@ b.get$_transaction_model$_$this()._pendingCategoryId = t1; return b; }, - $signature: 137 + $signature: 132 }; A._MatchWithdrawalsState_build_closure21.prototype = { call$0() { @@ -572051,7 +572546,7 @@ call$1(expense) { return expense.id; }, - $signature: 414 + $signature: 398 }; A._MatchWithdrawalsState_build_closure22.prototype = { call$0() { @@ -572263,13 +572758,13 @@ b.get$_transaction_rule_model$_$this()._transaction_rule_model$_name = t1; return b; }, - $signature: 177 + $signature: 189 }; A._TransactionRuleEditState_build_closure0.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._TransactionRuleEditState_build_closure1.prototype = { call$1(context) { @@ -572375,7 +572870,7 @@ t3.toString; return new A.ScrollableListView(A._setArrayType([t6, t2, A.FormCard$(_null, A._setArrayType([t13, A.EntityDropdown$(true, false, t12, t10, _null, B.EntityType_expenseCategory, B.List_empty0, t3, _null, new A._TransactionRuleEditState_build__closure8(t4), new A._TransactionRuleEditState_build__closure9(t8, t7), _null, _null, _null)], t9), _null, _null, false, _null, false, _null, _null)], t9), _null, _null, _null, false, _null); }, - $signature: 142 + $signature: 146 }; A._TransactionRuleEditState_build__closure.prototype = { call$1(context) { @@ -572408,7 +572903,7 @@ b.get$_transaction_rule_model$_$this()._matchesOnAll = this.value; return b; }, - $signature: 177 + $signature: 189 }; A._TransactionRuleEditState_build__closure2.prototype = { call$1(value) { @@ -572421,7 +572916,7 @@ b.get$_transaction_rule_model$_$this()._autoConvert = this.value; return b; }, - $signature: 177 + $signature: 189 }; A._TransactionRuleEditState_build__closure3.prototype = { call$0() { @@ -572468,7 +572963,7 @@ B.JSArray_methods.replaceRange$3(t1.get$_safeList(), t2, t2 + 1, iterable); return b; }, - $signature: 177 + $signature: 189 }; A._TransactionRuleEditState_build__closure4.prototype = { call$0() { @@ -572481,7 +572976,7 @@ B.JSArray_methods.remove$1(b.get$rules(b).get$_safeList(), this.rule); return b; }, - $signature: 177 + $signature: 189 }; A._TransactionRuleEditState_build__closure5.prototype = { call$0() { @@ -572523,13 +573018,13 @@ B.JSArray_methods.add$1(t1.get$_safeList(), this.rule); return b; }, - $signature: 177 + $signature: 189 }; A._TransactionRuleEditState_build__closure7.prototype = { call$1(vendor) { this.viewModel.onChanged.call$1(this.transactionRule.rebuild$1(new A._TransactionRuleEditState_build___closure1(vendor))); }, - $signature: 52 + $signature: 53 }; A._TransactionRuleEditState_build___closure1.prototype = { call$1(b) { @@ -572540,7 +573035,7 @@ b.get$_transaction_rule_model$_$this()._transaction_rule_model$_vendorId = t1; return b; }, - $signature: 177 + $signature: 189 }; A._TransactionRuleEditState_build__closure6.prototype = { call$2(completer, $name) { @@ -572549,7 +573044,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.SaveVendorRequest(completer, t1)); }, - $signature: 164 + $signature: 160 }; A._TransactionRuleEditState_build___closure2.prototype = { call$1(b) { @@ -572562,7 +573057,7 @@ call$1(category) { this.viewModel.onChanged.call$1(this.transactionRule.rebuild$1(new A._TransactionRuleEditState_build___closure(category))); }, - $signature: 52 + $signature: 53 }; A._TransactionRuleEditState_build___closure.prototype = { call$1(b) { @@ -572573,7 +573068,7 @@ b.get$_transaction_rule_model$_$this()._transaction_rule_model$_categoryId = t1; return b; }, - $signature: 177 + $signature: 189 }; A._TransactionRuleEditState_build__closure8.prototype = { call$2(completer, $name) { @@ -572582,14 +573077,14 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2[0].call$1(new A.SaveExpenseCategoryRequest(completer, t1)); }, - $signature: 164 + $signature: 160 }; A._TransactionRuleEditState_build___closure0.prototype = { call$1(b) { b.get$_expense_category_model$_$this()._expense_category_model$_name = this.name; return b; }, - $signature: 331 + $signature: 301 }; A._RuleCriteria.prototype = { createState$0() { @@ -572721,7 +573216,7 @@ b.get$_transaction_rule_model$_$this()._operator = t1; return b; }, - $signature: 456 + $signature: 622 }; A.__RuleCriteriaState_build_closure0.prototype = { call$1(value) { @@ -572742,7 +573237,7 @@ b.get$_transaction_rule_model$_$this()._operator = this.value; return b; }, - $signature: 456 + $signature: 622 }; A.__RuleCriteriaState_build_closure1.prototype = { call$1(value) { @@ -572763,7 +573258,7 @@ b.get$_transaction_rule_model$_$this()._transaction_rule_model$_value = this.value; return b; }, - $signature: 456 + $signature: 622 }; A.__RuleCriteriaState_build_closure2.prototype = { call$1(context) { @@ -572823,7 +573318,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateTransactionRule(transactionRule)); }, - $signature: 418 + $signature: 379 }; A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -572861,7 +573356,7 @@ t5[0].call$1(new A.SaveTransactionRuleRequest(new A._AsyncCompleter(t4, type$._AsyncCompleter_TransactionRuleEntity), transactionRule)); return t4.then$1$1(0, new A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore___closure(transactionRule, t3, this.state, t1, t2), type$.Null).catchError$1(new A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore___closure0(t2)); }, - $signature: 70 + $signature: 69 }; A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore___closure.prototype = { call$1(savedTransactionRule) { @@ -572910,7 +573405,7 @@ } else A.viewEntity(false, savedTransactionRule, null, true); }, - $signature: 418 + $signature: 379 }; A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore___closure0.prototype = { call$1(error) { @@ -573137,7 +573632,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SortTransactionRules(value)); }, - $signature: 40 + $signature: 38 }; A.TransactionRuleScreen_build_closure5.prototype = { call$2(state, value) { @@ -573145,7 +573640,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterTransactionRulesByState(state)); }, - $signature: 64 + $signature: 66 }; A.TransactionRuleScreen_build_closure.prototype = { call$0() { @@ -573624,7 +574119,7 @@ b.get$_user_model$_$this()._customValue4 = t1; return b; }, - $signature: 97 + $signature: 98 }; A._UserEditState__onChanged_closure0.prototype = { call$0() { @@ -573636,20 +574131,20 @@ call$1(value) { return value.length !== 0; }, - $signature: 11 + $signature: 12 }; A._UserEditState__togglePermission_closure0.prototype = { call$1(b) { b.get$userCompany().get$_company_model$_$this()._permissions = this.permissionsString; return b; }, - $signature: 97 + $signature: 98 }; A._UserEditState_build_closure15.prototype = { call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._UserEditState_build_closure.prototype = { call$1(val) { @@ -573704,7 +574199,7 @@ b.get$userCompany().get$notifications().$indexSet(0, this.channel, A.BuiltList_BuiltList$from(this.options, type$.String)); return b; }, - $signature: 97 + $signature: 98 }; A._UserEditState_build_closure3.prototype = { call$1(value) { @@ -573717,7 +574212,7 @@ b.get$userCompany().get$_company_model$_$this()._isAdmin = this.value; return b; }, - $signature: 97 + $signature: 98 }; A._UserEditState_build_closure4.prototype = { call$1(value) { @@ -573737,7 +574232,7 @@ call$1(element) { return element.length !== 0; }, - $signature: 11 + $signature: 12 }; A._UserEditState_build__closure10.prototype = { call$1(b) { @@ -573746,7 +574241,7 @@ t1.get$_company_model$_$this()._permissions = t2; return b; }, - $signature: 97 + $signature: 98 }; A._UserEditState_build_closure5.prototype = { call$1(value) { @@ -573766,7 +574261,7 @@ call$1(element) { return element.length !== 0; }, - $signature: 11 + $signature: 12 }; A._UserEditState_build__closure8.prototype = { call$1(b) { @@ -573775,7 +574270,7 @@ t1.get$_company_model$_$this()._permissions = t2; return b; }, - $signature: 97 + $signature: 98 }; A._UserEditState_build_closure6.prototype = { call$0() { @@ -573791,13 +574286,13 @@ t1._togglePermission$1("view_all"); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._UserEditState_build___closure0(t1)); }, - $signature: 12 + $signature: 11 }; A._UserEditState_build___closure0.prototype = { call$1(duration) { this.$this._togglePermission$1("edit_all"); }, - $signature: 12 + $signature: 11 }; A._UserEditState_build_closure7.prototype = { call$1(value) { @@ -573840,7 +574335,7 @@ var t1 = this.state; return t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].userCompany.company.isModuleEnabled$1(entityType); }, - $signature: 267 + $signature: 246 }; A._UserEditState_build_closure14.prototype = { call$1(type) { @@ -573879,13 +574374,13 @@ t1._togglePermission$1(this.viewPermission); $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A._UserEditState_build____closure(t1, this.editPermission)); }, - $signature: 12 + $signature: 11 }; A._UserEditState_build____closure.prototype = { call$1(duration) { this.$this._togglePermission$1(this.editPermission); }, - $signature: 12 + $signature: 11 }; A._UserEditState_build__closure1.prototype = { call$1(value) { @@ -573979,7 +574474,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateUser(user)); }, - $signature: 187 + $signature: 182 }; A.UserEditVM_UserEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -574018,7 +574513,7 @@ A.passwordCallback(false, new A.UserEditVM_UserEditVM$fromStore___closure(t1, new A._AsyncCompleter(t2, type$._AsyncCompleter_UserEntity), user), this.context, false); return t2.then$1$1(0, new A.UserEditVM_UserEditVM$fromStore___closure0(user, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.UserEditVM_UserEditVM$fromStore___closure1()); }, - $signature: 70 + $signature: 69 }; A.UserEditVM_UserEditVM$fromStore___closure.prototype = { call$2(password, idToken) { @@ -574026,7 +574521,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SaveUserRequest(this.completer, this.user, password, idToken)); }, - $signature: 79 + $signature: 80 }; A.UserEditVM_UserEditVM$fromStore___closure0.prototype = { call$1(savedUser) { @@ -574061,7 +574556,7 @@ } else A.viewEntity(false, savedUser, null, true); }, - $signature: 187 + $signature: 182 }; A.UserEditVM_UserEditVM$fromStore___closure1.prototype = { call$1(error) { @@ -574317,7 +574812,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterUsersByState(state)); }, - $signature: 64 + $signature: 66 }; A.UserScreen_build_closure.prototype = { call$0() { @@ -574680,7 +575175,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._VendorEditState_build_closure0.prototype = { call$1(context) { @@ -574831,7 +575326,7 @@ call$1(country) { return this.viewModel.onChanged.call$1(this.vendor.rebuild$1(new A.VendorEditAddressState_build__closure(country))); }, - $signature: 67 + $signature: 64 }; A.VendorEditAddressState_build__closure.prototype = { call$1(b) { @@ -574913,7 +575408,7 @@ call$1(c) { return c.id === this.contact.id; }, - $signature: 194 + $signature: 197 }; A._VendorEditContactsState_build_closure.prototype = { call$1(contact) { @@ -574931,7 +575426,7 @@ call$1(duration) { this.$this._showContactEditor$2(this.contact, this.context); }, - $signature: 12 + $signature: 11 }; A._VendorEditContactsState_build_closure1.prototype = { call$0() { @@ -575133,7 +575628,7 @@ b.get$_vendor_model$_$this()._vendor_model$_customValue4 = t1; return b; }, - $signature: 358 + $signature: 359 }; A.VendorContactEditDetailsState__onChanged_closure0.prototype = { call$0() { @@ -575244,14 +575739,14 @@ b.get$_vendor_model$_$this()._vendor_model$_sendEmail = this.value; return b; }, - $signature: 358 + $signature: 359 }; A.VendorContactEditDetailsState_build__closure1.prototype = { call$1(b) { b.get$_vendor_model$_$this()._vendor_model$_sendEmail = this.value; return b; }, - $signature: 358 + $signature: 359 }; A.VendorContactEditDetailsState_build_closure11.prototype = { call$0() { @@ -575320,7 +575815,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1[0].call$1(new A.DeleteVendorContact(index)); }, - $signature: 393 + $signature: 361 }; A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure1.prototype = { call$0() { @@ -575557,7 +576052,7 @@ var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(classification), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, classification, type$.String); }, - $signature: 41 + $signature: 42 }; A.VendorEditFooter.prototype = { build$1(context) { @@ -575734,7 +576229,7 @@ call$1(currency) { return this.viewModel.onChanged.call$1(this.vendor.rebuild$1(new A.VendorEditSettingsState_build__closure0(currency))); }, - $signature: 67 + $signature: 64 }; A.VendorEditSettingsState_build__closure0.prototype = { call$1(b) { @@ -575751,7 +576246,7 @@ call$1(language) { return this.viewModel.onChanged.call$1(this.vendor.rebuild$1(new A.VendorEditSettingsState_build__closure(language))); }, - $signature: 67 + $signature: 64 }; A.VendorEditSettingsState_build__closure.prototype = { call$1(b) { @@ -575796,7 +576291,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateVendor(vendor)); }, - $signature: 330 + $signature: 281 }; A.VendorEditVM_VendorEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -575850,7 +576345,7 @@ t5[0].call$1(new A.SaveVendorRequest(new A._AsyncCompleter(t3, type$._AsyncCompleter_VendorEntity), t2)); return t3.then$1$1(0, new A.VendorEditVM_VendorEditVM$fromStore___closure0(t2, t4, this.state, t1, $navigator), type$.Null).catchError$1(new A.VendorEditVM_VendorEditVM$fromStore___closure1()); }, - $signature: 136 + $signature: 133 }; A.VendorEditVM_VendorEditVM$fromStore___closure.prototype = { call$1(context) { @@ -575906,7 +576401,7 @@ A.viewEntity(false, savedVendor, null, true); } }, - $signature: 330 + $signature: 281 }; A.VendorEditVM_VendorEditVM$fromStore___closure1.prototype = { call$1(error) { @@ -576046,7 +576541,7 @@ A.handleEntitiesActions(A._setArrayType([this.$this.vendor], type$.JSArray_BaseEntity), action, false); return null; }, - $signature: 74 + $signature: 73 }; A.VendorListItem_build__closure5.prototype = { call$0() { @@ -576221,7 +576716,7 @@ call$0() { return A.launchUrl(A.Uri_parse("mailto:" + this.vendor.get$primaryContact().email, 0, null)); }, - $signature: 65 + $signature: 63 }; A.VendorScreen.prototype = { build$1(context) { @@ -576365,7 +576860,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterVendorsByState(state)); }, - $signature: 64 + $signature: 66 }; A.VendorScreen_build_closure.prototype = { call$0() { @@ -576510,7 +577005,7 @@ t1.push(A.RefreshIndicator$(new A.VendorViewActivity(t3, new A.ValueKey(t4.id, type$.ValueKey_String)), new A._VendorViewState_build__closure2(t3, context))); return A.Column$(A._setArrayType([A.Expanded$(A.TabBarView$(t1, t2, _null), 1), new A.BottomButtons(_this.vendor, B.EntityAction_newExpense, B.EntityAction_archive, true, true, _null)], t5), B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1); }, - $signature: 270 + $signature: 260 }; A._VendorViewState_build__closure.prototype = { call$0() { @@ -576580,13 +577075,13 @@ call$2(context, index) { return new A.ListDivider(null); }, - $signature: 78 + $signature: 77 }; A._VendorViewActivityState_build_closure.prototype = { call$2(context, index) { return new A.ActivityListTile(this.activities._list$_list[index], true, null); }, - $signature: 300 + $signature: 310 }; A.VendorViewDetails.prototype = { createState$0() { @@ -576702,7 +577197,7 @@ listTiles.push(new A.Padding(B.EdgeInsets_16_16_16_16, A.FutureBuilder$(t2.get$_launchStatus(), t2._launched, type$.Null), _null)); return listTiles; }, - $signature: 292 + $signature: 302 }; A._VendorViewDetailsState_build__buildDetailsList_closure.prototype = { call$1(contact) { @@ -576834,7 +577329,7 @@ call$2(path, isPrivate) { return this.$this.viewModel.onUploadDocuments.call$3(this.context, path, isPrivate); }, - $signature: 144 + $signature: 145 }; A.VendorViewDocuments_build_closure0.prototype = { call$0() { @@ -577039,7 +577534,7 @@ } return A.Row$(t13, B.CrossAxisAlignment_0, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); }, - $signature: 525 + $signature: 492 }; A._VendorViewFullwidthState_build__closure.prototype = { call$0() { @@ -577313,7 +577808,7 @@ }, "call*": "call$3", $requiredArgCount: 3, - $signature: 112 + $signature: 114 }; A.VendorViewVM_VendorViewVM$fromStore__closure.prototype = { call$1(client) { @@ -577325,7 +577820,7 @@ t1.toString; A.showToast(t1); }, - $signature: 80 + $signature: 82 }; A.VendorViewVM_VendorViewVM$fromStore__closure0.prototype = { call$1(error) { @@ -577421,7 +577916,7 @@ b.get$_webhook_model$_$this()._targetUrl = t1; return b; }, - $signature: 239 + $signature: 269 }; A._WebhookEditState__onChanged_closure0.prototype = { call$0() { @@ -577433,7 +577928,7 @@ call$1(context) { return this.viewModel.onCancelPressed.call$1(context); }, - $signature: 53 + $signature: 52 }; A._WebhookEditState_build_closure.prototype = { call$1(context) { @@ -577502,7 +577997,7 @@ } return new A.ScrollableListView(A._setArrayType([A.FormCard$(_null, t12, _null, _null, false, _null, false, _null, _null)], t15), _null, _null, _null, false, _null); }, - $signature: 142 + $signature: 146 }; A._WebhookEditState_build__closure.prototype = { call$1(value) { @@ -577529,14 +578024,14 @@ b.get$_webhook_model$_$this()._eventId = this.value; return b; }, - $signature: 239 + $signature: 269 }; A._WebhookEditState_build__closure0.prototype = { call$1(eventId) { var _null = null; return A.DropdownMenuItem$(A.Text$(this.localization.lookup$1(B.Map_AHGNA.$index(0, eventId)), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, eventId, type$.String); }, - $signature: 41 + $signature: 42 }; A._WebhookEditState_build__closure2.prototype = { call$1(value) { @@ -577549,7 +578044,7 @@ b.get$_webhook_model$_$this()._restMethod = this.value; return b; }, - $signature: 239 + $signature: 269 }; A._WebhookEditState_build__closure3.prototype = { call$1(value) { @@ -577592,7 +578087,7 @@ b.get$headers(b).$indexSet(0, this.key, this.value); return b; }, - $signature: 239 + $signature: 269 }; A._WebhookEditState_build__closure6.prototype = { call$1(key) { @@ -577609,7 +578104,7 @@ t4.toString; return A.ListTile$(false, B.EdgeInsets_0_0_0_0, _null, _null, true, _null, _null, false, _null, _null, _null, _null, _null, false, _null, _null, _null, _null, _null, t3, A.IconButton$(_null, _null, _null, _null, t1, _null, new A._WebhookEditState_build___closure(this.viewModel, t2, key), _null, _null, _null, t4, _null), _null); }, - $signature: 209 + $signature: 231 }; A._WebhookEditState_build___closure.prototype = { call$0() { @@ -577622,7 +578117,7 @@ b.get$headers(b).get$_safeMap().remove$1(0, this.key); return b; }, - $signature: 239 + $signature: 269 }; A.WebhookEditScreen.prototype = { build$1(context) { @@ -577656,7 +578151,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.UpdateWebhook(webhook)); }, - $signature: 419 + $signature: 397 }; A.WebhookEditVM_WebhookEditVM$fromStore_closure1.prototype = { call$1(context) { @@ -577697,7 +578192,7 @@ t4[0].call$1(new A.SaveWebhookRequest(new A._AsyncCompleter(t2, type$._AsyncCompleter_WebhookEntity), webhook)); return t2.then$1$1(0, new A.WebhookEditVM_WebhookEditVM$fromStore___closure(webhook, t3, this.state, t1, $navigator), type$.Null).catchError$1(new A.WebhookEditVM_WebhookEditVM$fromStore___closure0()); }, - $signature: 70 + $signature: 69 }; A.WebhookEditVM_WebhookEditVM$fromStore___closure.prototype = { call$1(savedWebhook) { @@ -577732,7 +578227,7 @@ } else A.viewEntity(false, savedWebhook, null, true); }, - $signature: 419 + $signature: 397 }; A.WebhookEditVM_WebhookEditVM$fromStore___closure0.prototype = { call$1(error) { @@ -578040,7 +578535,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.SortWebhooks(value)); }, - $signature: 40 + $signature: 38 }; A.WebhookScreen_build_closure5.prototype = { call$2(state, value) { @@ -578048,7 +578543,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1[0].call$1(new A.FilterWebhooksByState(state)); }, - $signature: 64 + $signature: 66 }; A.WebhookScreen_build_closure.prototype = { call$0() { @@ -578217,7 +578712,7 @@ call$1(context) { return A.SimpleDialog$(A._setArrayType([new A.LoadingDialog(null)], type$.JSArray_Widget), null); }, - $signature: 182 + $signature: 190 }; A.showErrorDialog_closure.prototype = { call$1(context) { @@ -578283,7 +578778,7 @@ t3.toString; return A.PointerInterceptor$(A.AlertDialog$(A._setArrayType([t2, A.TextButton$(t7, A.Text$(J.$index$asx(t3, "ok").toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, new A.confirmCallback__closure3(t4), _null)], type$.JSArray_Widget), _null, _null, t1, _null, t6, t9)); }, - $signature: 703 + $signature: 702 }; A.confirmCallback_closure__onPressed.prototype = { call$0() { @@ -578349,7 +578844,7 @@ A.print("## 3"); return new A.PasswordConfirmation(this.callback, "", null); }, - $signature: 455 + $signature: 532 }; A.passwordCallback_closure1.prototype = { call$2(idToken, accessToken) { @@ -578369,13 +578864,13 @@ A.showDialog(_null, _null, false, _null, new A.passwordCallback__closure0(t2, idToken), _this.context, _null, true, type$.AlertDialog); } }, - $signature: 170 + $signature: 179 }; A.passwordCallback__closure0.prototype = { call$1(context) { return new A.PasswordConfirmation(this.callback, this.idToken, null); }, - $signature: 455 + $signature: 532 }; A.passwordCallback_closure2.prototype = { call$2(idToken, accessToken) { @@ -578395,13 +578890,13 @@ A.showDialog(_null, _null, false, _null, new A.passwordCallback__closure(t2, idToken), _this.context, _null, true, type$.AlertDialog); } }, - $signature: 170 + $signature: 179 }; A.passwordCallback__closure.prototype = { call$1(context) { return new A.PasswordConfirmation(this.callback, this.idToken, null); }, - $signature: 455 + $signature: 532 }; A.passwordCallback_closure3.prototype = { call$1(error) { @@ -578623,7 +579118,7 @@ t3.toString; return A.AlertDialog$(A._setArrayType([A.TextButton$(false, A.Text$(J.$index$asx(t3, "close").toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, new A.cloneToDialog__closure4(context), _null)], t5), _null, _null, t1, _null, _null, t4); }, - $signature: 167 + $signature: 155 }; A.cloneToDialog__closure.prototype = { call$0() { @@ -578670,7 +579165,7 @@ call$1(statusId) { return statusId !== this.task.statusId; }, - $signature: 11 + $signature: 12 }; A.changeTaskStatusDialog_closure0.prototype = { call$1(context) { @@ -578697,7 +579192,7 @@ t3.toString; return A.AlertDialog$(A._setArrayType([A.TextButton$(false, A.Text$(J.$index$asx(t3, "close").toUpperCase(), _null, _null, _null, _null, _null, _null, _null, _null, _null), _null, _null, new A.changeTaskStatusDialog__closure0(context), _null)], type$.JSArray_Widget), _null, _null, t6, _null, _null, t4); }, - $signature: 167 + $signature: 155 }; A.changeTaskStatusDialog__closure.prototype = { call$1(statusId) { @@ -578706,7 +579201,7 @@ t1 = A.Text$(t1.userCompanyStates._list$_list[t1.uiState.selectedCompanyIndex].taskStatusState.$get$1(0, statusId).name, _null, _null, _null, _null, _null, _null, _null, _null, _null); return A.ListTile$(false, _null, _null, _null, true, _null, _null, false, _null, A.Icon$(B.IconData_57689_MaterialIcons_null_false, _null, _null, _null), _null, _null, new A.changeTaskStatusDialog___closure(_this.store, _this.task, statusId, _this.localization, _this.context), false, _null, _null, _null, _null, _null, t1, _null, _null); }, - $signature: 209 + $signature: 231 }; A.changeTaskStatusDialog___closure.prototype = { call$0() { @@ -578737,7 +579232,7 @@ b.get$_task_model$_$this()._task_model$_statusId = this.statusId; return b; }, - $signature: 76 + $signature: 75 }; A.changeTaskStatusDialog__closure0.prototype = { call$0() { @@ -578768,7 +579263,7 @@ t1 = false; return t1; }, - $signature: 197 + $signature: 194 }; A.addToInvoiceDialog_closure0.prototype = { call$1(context) { @@ -578791,7 +579286,7 @@ t3 = t2.$ti._eval$1("MappedIterable<1,SimpleDialogOption>"); return A.SimpleDialog$(A.List_List$of(new A.MappedIterable(t2, new A.addToInvoiceDialog__closure(context, this.items), t3), true, t3._eval$1("Iterable.E")), t1); }, - $signature: 182 + $signature: 190 }; A.addToInvoiceDialog__closure.prototype = { call$1(invoice) { @@ -579063,7 +579558,7 @@ }); return A._asyncStartSync($async$call$1, $async$completer); }, - $signature: 606 + $signature: 546 }; A._RunTemplateDialogState_build___closure0.prototype = { call$0() { @@ -579112,7 +579607,7 @@ var t1 = this.$this; t1.setState$1(new A._RunTemplateDialogState_build__closure0(t1, design)); }, - $signature: 147 + $signature: 139 }; A._RunTemplateDialogState_build__closure0.prototype = { call$0() { @@ -581077,6 +581572,40 @@ t1.push(styledText); } }; + A.AttributedTextMarkdownSerializer.prototype = { + visitAttributions$4(fullText, index, startingAttributions, endingAttributions) { + var t2, markdownStyles, linkMarker, _this = this, + t1 = _this._markdown$_buffer; + t1.toString; + t2 = _this.__AttributedTextMarkdownSerializer__bufferCursor_A; + t2 === $ && A.throwUnnamedLateFieldNI(); + t1._contents += B.JSString_methods.substring$2(fullText.text, t2, index); + if (startingAttributions._collection$_length !== 0) { + markdownStyles = A.AttributedTextMarkdownSerializer__sortAndSerializeAttributions(startingAttributions, B.AttributionVisitEvent_0); + linkMarker = A.AttributedTextMarkdownSerializer__encodeLinkMarker(startingAttributions, B.AttributionVisitEvent_0); + t1 = _this._markdown$_buffer; + t2 = t1._contents += linkMarker; + t1._contents = t2 + markdownStyles; + } + t2 = _this.__AttributedTextMarkdownSerializer__fullText_A; + t2 === $ && A.throwUnnamedLateFieldNI(); + t1._contents += t2[index]; + _this.__AttributedTextMarkdownSerializer__bufferCursor_A = index + 1; + if (endingAttributions._collection$_length !== 0) { + markdownStyles = A.AttributedTextMarkdownSerializer__sortAndSerializeAttributions(endingAttributions, B.AttributionVisitEvent_1); + linkMarker = A.AttributedTextMarkdownSerializer__encodeLinkMarker(endingAttributions, B.AttributionVisitEvent_1); + t1 = _this._markdown$_buffer; + t2 = t1._contents += markdownStyles; + t1._contents = t2 + linkMarker; + } + } + }; + A.AttributedTextMarkdownSerializer__encodeLinkMarker_closure.prototype = { + call$1(element) { + return element instanceof A.LinkAttribution; + }, + $signature: 200 + }; A._EmptyParagraphSyntax.prototype = { get$pattern(_) { return $.$get$_emptyParagraphPattern(); @@ -581106,7 +581635,7 @@ t1 = ""; this.callback.call$2(t2, t1); }, - $signature: 865 + $signature: 866 }; A.GoogleOAuth_signUp_closure.prototype = { call$1(value) { @@ -581119,7 +581648,7 @@ t1 = ""; this.callback.call$2(t2, t1); }, - $signature: 865 + $signature: 866 }; A.toSnakeCase_closure.prototype = { call$1(match) { @@ -581154,7 +581683,7 @@ if (A.matchesString(haystack, this.needle)) this._box_0.isMatch = true; }, - $signature: 99 + $signature: 100 }; A.matchesString_closure.prototype = { call$1(rune) { @@ -581162,7 +581691,7 @@ t1 = this._box_0; t1.regExp = t1.regExp + (character + ".*?"); }, - $signature: 75 + $signature: 76 }; A.matchesString_closure0.prototype = { call$1(needle) { @@ -581177,13 +581706,13 @@ if (value != null) this._box_0.match = value; }, - $signature: 99 + $signature: 100 }; A.getRandomString_closure.prototype = { call$1(_) { return "AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz1234567890".charCodeAt(B.C__JSRandom.nextInt$1(62)); }, - $signature: 133 + $signature: 137 }; A.ExampleEditor.prototype = { createState$0() { @@ -581203,7 +581732,7 @@ }; A._ExampleEditorState.prototype = { initState$0() { - var markdown, t1, t2, t3, t4, t5, editor, _this = this; + var markdown, t1, t2, _this = this; _this.super$State$initState(); markdown = _this._widget.value; markdown = A.stringReplaceAllUnchecked(markdown, "

", "\n"); @@ -581217,28 +581746,46 @@ _this.___ExampleEditorState__composer_A = t1; t2 = _this.get$_hideOrShowToolbar(); t1._selectionNotifier.addListener$1(0, t2); - t1 = A.LinkedHashMap_LinkedHashMap$_literal(["document", _this.___ExampleEditorState__doc_A, "composer", _this.___ExampleEditorState__composer_A], type$.String, type$.Editable); - t3 = A.List_List$from($.$get$defaultRequestHandlers(), true, type$.nullable_EditCommand_Function_EditRequest); - t4 = A.List_List$from($.$get$defaultEditorReactions(), true, type$.EditReaction); - t5 = A._setArrayType([], type$.JSArray_EditListener); - editor = new A.Editor(t3, t4, t5); - t1 = new A.EditContext(t1); - editor.__Editor_context_F = t1; - t3 = type$.JSArray_EditCommand; - editor.__Editor__commandExecutor_F = new A._DocumentEditorCommandExecutor(t1, new A.EditorCommandQueue(A._setArrayType([], t3), A._setArrayType([], t3)), A._setArrayType([], type$.JSArray_EditEvent)); - _this.___ExampleEditorState__docEditor_A = editor; - _this.___ExampleEditorState__docOps_A = new A.CommonEditorOperations(_this.___ExampleEditorState__doc_A, editor, _this.___ExampleEditorState__composer_A, new A._ExampleEditorState_initState_closure(_this)); + t1 = _this.___ExampleEditorState__doc_A; + t1 = A.createDefaultDocumentEditor(_this.___ExampleEditorState__composer_A, t1); + _this.___ExampleEditorState__docEditor_A = t1; + _this.___ExampleEditorState__docOps_A = new A.CommonEditorOperations(_this.___ExampleEditorState__doc_A, t1, _this.___ExampleEditorState__composer_A, new A._ExampleEditorState_initState_closure(_this)); _this.___ExampleEditorState__editorFocusNode_A = A.FocusNode$(true, null, true, true, null, null, false); - t3 = A.ScrollController$(0, true); - t3.addListener$1(0, t2); - _this.___ExampleEditorState__scrollController_A = t3; - t3 = A.SuperEditorIosControlsController$(); + t1 = A.ScrollController$(0, true); + t1.addListener$1(0, t2); + _this.___ExampleEditorState__scrollController_A = t1; + t1 = A.SuperEditorIosControlsController$(); _this.___ExampleEditorState__iosControlsController_F !== $ && A.throwUnnamedLateFieldAI(); - _this.___ExampleEditorState__iosControlsController_F = t3; + _this.___ExampleEditorState__iosControlsController_F = t1; + }, + didUpdateWidget$1(oldWidget) { + var t1, markdown, t2, _this = this; + _this.super$State$didUpdateWidget(oldWidget); + t1 = _this._widget.value; + if (t1 !== oldWidget.value) { + markdown = A.stringReplaceAllUnchecked(t1, "

", "\n"); + markdown = A.stringReplaceAllUnchecked(markdown, "

", "\n"); + markdown = A.stringReplaceAllUnchecked(markdown, "

", "\n"); + markdown = A.stringReplaceAllUnchecked(markdown, "

", ""); + markdown = A.stringReplaceAllUnchecked(markdown, "
", ""); + t1 = _this.___ExampleEditorState__doc_A; + t1 === $ && A.throwUnnamedLateFieldNI(); + t2 = _this.get$_super_editor$_onDocumentChange(); + B.JSArray_methods.remove$1(t1._editor$_listeners, t2); + t1 = A.deserializeMarkdownToDocument(markdown); + t1._editor$_listeners.push(t2); + _this.___ExampleEditorState__doc_A = t1; + t2 = _this.___ExampleEditorState__composer_A; + t2 === $ && A.throwUnnamedLateFieldNI(); + _this.___ExampleEditorState__docEditor_A = A.createDefaultDocumentEditor(t2, t1); + } }, dispose$0() { var _this = this, - t1 = _this.___ExampleEditorState__iosControlsController_F; + t1 = _this.___ExampleEditorState__doc_A; + t1 === $ && A.throwUnnamedLateFieldNI(); + B.JSArray_methods.remove$1(t1._editor$_listeners, _this.get$_super_editor$_onDocumentChange()); + t1 = _this.___ExampleEditorState__iosControlsController_F; t1 === $ && A.throwUnnamedLateFieldNI(); t1.dispose$0(); t1 = _this.___ExampleEditorState__scrollController_A; @@ -581253,8 +581800,15 @@ _this.super$State$dispose(); }, _super_editor$_onDocumentChange$1(_) { - this._hideOrShowToolbar$0(); - this._docChangeSignal.super$ChangeNotifier$notifyListeners(); + var t1, value, _this = this; + _this._hideOrShowToolbar$0(); + _this._docChangeSignal.super$ChangeNotifier$notifyListeners(); + if (_this._widget.onChanged != null) { + t1 = _this.___ExampleEditorState__doc_A; + t1 === $ && A.throwUnnamedLateFieldNI(); + value = A.serializeDocumentToMarkdown(t1); + _this._widget.onChanged.call$1(value); + } }, _hideOrShowToolbar$0() { var t1, t2, t3, selectedNode, _this = this; @@ -581418,7 +581972,7 @@ call$0() { return type$.DocumentLayout._as(this.$this._docLayoutKey.get$currentState()); }, - $signature: 145 + $signature: 141 }; A._ExampleEditorState__showEditorToolbar_closure.prototype = { call$1(timeStamp) { @@ -581446,7 +582000,7 @@ docBox = type$.RenderBox._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2).get$renderObject()); t1._textSelectionAnchor.set$value(0, A.Rect$fromPoints(A.MatrixUtils_transformPoint(docBox.getTransformTo$1(0, null), new A.Offset(t5.left, t5.top)), A.MatrixUtils_transformPoint(docBox.getTransformTo$1(0, null), new A.Offset(t5.right, t5.bottom))).get$topCenter()); }, - $signature: 12 + $signature: 11 }; A._ExampleEditorState__showImageToolbar_closure.prototype = { call$1(timeStamp) { @@ -581474,7 +582028,7 @@ docBox = type$.RenderBox._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t2).get$renderObject()); t1._imageSelectionAnchor.set$value(0, A.Rect$fromPoints(A.MatrixUtils_transformPoint(docBox.getTransformTo$1(0, null), new A.Offset(t5.left, t5.top)), A.MatrixUtils_transformPoint(docBox.getTransformTo$1(0, null), new A.Offset(t5.right, t5.bottom))).get$center()); }, - $signature: 12 + $signature: 11 }; A._ExampleEditorState_build_closure.prototype = { call$3(context, brightness, child) { @@ -581483,7 +582037,7 @@ child.toString; return new A.Theme(t1, child, _null); }, - $signature: 3295 + $signature: 3296 }; A._ExampleEditorState_build_closure0.prototype = { call$1(themedContext) { @@ -581494,7 +582048,7 @@ t3.push(t1._buildMountedToolbar$0()); return A.OverlayPortal$(A.OverlayPortal$(new A.Stack(B.AlignmentDirectional_m1_m1, null, B.StackFit_0, B.Clip_1, A._setArrayType([A.Column$(t3, B.CrossAxisAlignment_2, null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1)], t2), null), t1._imageFormatBarOverlayController, t1.get$_buildImageToolbar()), t1._textFormatBarOverlayController, t1.get$_buildFloatingToolbar()); }, - $signature: 3296 + $signature: 3297 }; A._ExampleEditorState__buildMountedToolbar_closure.prototype = { call$1(_) { @@ -581519,7 +582073,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return new A.KeyboardEditingToolbar(t2, t3, t4, t1, null); }, - $signature: 46 + $signature: 44 }; A._ExampleEditorState__buildImageToolbar_closure.prototype = { call$2(nodeId, width) { @@ -581531,25 +582085,111 @@ t1.toString; t1.putMetadataValue$2("singleColumnLayout", A.LinkedHashMap_LinkedHashMap$_literal(["width", width, "padding", A.SingleColumnLayoutComponentStyles_SingleColumnLayoutComponentStyles$fromMetadata(t1).padding], type$.String, type$.nullable_Object)); }, - $signature: 3297 + $signature: 3298 }; A._darkModeStyles_closure.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["textStyle", B.TextStyle_gkc0], type$.String, type$.dynamic); }, - $signature: 120 + $signature: 122 }; A._darkModeStyles_closure0.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["textStyle", B.TextStyle_gkc], type$.String, type$.dynamic); }, - $signature: 120 + $signature: 122 }; A._darkModeStyles_closure1.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["textStyle", B.TextStyle_gkc], type$.String, type$.dynamic); }, - $signature: 120 + $signature: 122 + }; + A.SuperEditorDemoTextItemSelector.prototype = { + createState$0() { + return new A._SuperEditorDemoTextItemSelectorState(new A.PopoverController($.$get$ChangeNotifier__emptyListeners()), A.FocusNode$(true, null, true, true, null, null, false), B._StateLifecycle_0); + }, + onSelected$1(arg0) { + return this.onSelected.call$1(arg0); + }, + get$id(receiver) { + return this.id; + } + }; + A._SuperEditorDemoTextItemSelectorState.prototype = { + dispose$0() { + var t1 = this._super_editor_item_selector$_popoverController; + t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); + t1.ChangeNotifier__count = 0; + this._popoverFocusNode.dispose$0(); + this.super$State$dispose(); + }, + _onItemSelected$1(value) { + this._super_editor_item_selector$_popoverController.close$0(0); + this._widget.onSelected$1(value); + }, + build$1(context) { + var _this = this, + t1 = _this._widget; + return new A.PopoverScaffold(_this._super_editor_item_selector$_popoverController, _this.get$_super_editor_item_selector$_buildButton(), new A._SuperEditorDemoTextItemSelectorState_build_closure(_this), _this._popoverFocusNode, t1.parentFocusNode, t1.boundaryKey, null); + }, + _super_editor_item_selector$_buildButton$1(context) { + var _null = null, + t1 = A.Text$(this._widget.id.label, _null, _null, _null, _null, _null, B.TextStyle_cMb1, _null, _null, _null); + return new A.SuperEditorPopoverButton(B.EdgeInsets_16_0_24_0, new A._SuperEditorDemoTextItemSelectorState__buildButton_closure(this), t1, _null); + }, + _buildPopoverListItem$4(context, item, isActive, onTap) { + var _null = null, + t1 = isActive ? A.Color$fromARGB(51, 158, 158, 158) : B.Color_0; + return A.DecoratedBox$(A.InkWell$(false, _null, true, A.Container$(B.Alignment_m1_0, A.Text$(item.label, _null, _null, _null, _null, _null, B.TextStyle_cMb1, _null, _null, _null), B.Clip_0, _null, B.BoxConstraints_mlX2, _null, _null, _null, _null, _null, B.EdgeInsets_20_0_20_0, _null, _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, onTap, _null, _null, _null, _null, _null, _null, _null), new A.BoxDecoration(t1, _null, _null, _null, _null, _null, B.BoxShape_0), B.DecorationPosition_0); + } + }; + A._SuperEditorDemoTextItemSelectorState_build_closure.prototype = { + call$1(context) { + var t1 = this.$this, + t2 = t1._widget; + return new A.RoundedRectanglePopoverAppearance(new A.ItemSelectionList(t2.id, t2.items, t1.get$_buildPopoverListItem(), t1.get$_onItemSelected(), new A._SuperEditorDemoTextItemSelectorState_build__closure(t1), t1._popoverFocusNode, null, type$.ItemSelectionList_SuperEditorDemoTextItem), null); + }, + $signature: 3302 + }; + A._SuperEditorDemoTextItemSelectorState_build__closure.prototype = { + call$0() { + return this.$this._super_editor_item_selector$_popoverController.close$0(0); + }, + $signature: 0 + }; + A._SuperEditorDemoTextItemSelectorState__buildButton_closure.prototype = { + call$0() { + return this.$this._super_editor_item_selector$_popoverController.open$0(0); + }, + $signature: 0 + }; + A.SuperEditorDemoTextItem.prototype = { + $eq(_, other) { + var t1; + if (other == null) + return false; + if (this !== other) + t1 = other instanceof A.SuperEditorDemoTextItem && A.getRuntimeTypeOfDartObject(this) === A.getRuntimeTypeOfDartObject(other) && this.id === other.id; + else + t1 = true; + return t1; + }, + get$hashCode(_) { + return B.JSString_methods.get$hashCode(this.id); + }, + get$id(receiver) { + return this.id; + } + }; + A.SuperEditorPopoverButton.prototype = { + build$1(context) { + var _null = null, + t1 = A._setArrayType([], type$.JSArray_Widget); + t1.push(new A.Padding(this.padding, this.child, _null)); + t1.push(B.Positioned_wrt); + return A.InkWell$(false, _null, true, A.Center$(new A.Stack(B.Alignment_m1_0, _null, B.StackFit_0, B.Clip_1, t1, _null), _null, _null), _null, true, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, this.onTap, _null, _null, _null, _null, _null, _null, _null); + } }; A.EditorToolbar.prototype = { createState$0() { @@ -581598,6 +582238,132 @@ t1.dispose$0(); _this.super$State$dispose(); }, + _isConvertibleNode$0() { + var t2, selectedNode, + t1 = this._widget.composer._selectionNotifier; + if (t1._pausable_value_notifier$_isPaused) { + t1 = t1.__PausableValueNotifier__currentValueDuringPause_A; + t1 === $ && A.throwUnnamedLateFieldNI(); + } else + t1 = A.ValueNotifier.prototype.get$value.call(t1, t1); + t2 = t1.base; + t1 = t1.extent.nodeId; + if (t2.nodeId !== t1) + return false; + selectedNode = this._widget.document._nodesById.$index(0, t1); + return selectedNode instanceof A.ParagraphNode || selectedNode instanceof A.ListItemNode; + }, + _getCurrentTextType$0() { + var selectedNode, type, + t1 = this._widget, + t2 = t1.document; + t1 = t1.composer._selectionNotifier; + if (t1._pausable_value_notifier$_isPaused) { + t1 = t1.__PausableValueNotifier__currentValueDuringPause_A; + t1 === $ && A.throwUnnamedLateFieldNI(); + } else + t1 = A.ValueNotifier.prototype.get$value.call(t1, t1); + selectedNode = t2._nodesById.$index(0, t1.extent.nodeId); + if (selectedNode instanceof A.ParagraphNode) { + type = selectedNode._metadata.$index(0, "blockType"); + t1 = J.getInterceptor$(type); + if (t1.$eq(type, B.NamedAttribution_header1)) + return B._TextType_0; + else if (t1.$eq(type, B.NamedAttribution_header2)) + return B._TextType_1; + else if (t1.$eq(type, B.NamedAttribution_header3)) + return B._TextType_2; + else if (t1.$eq(type, B.NamedAttribution_blockquote)) + return B._TextType_4; + else + return B._TextType_3; + } else if (selectedNode instanceof A.ListItemNode) + return selectedNode.type === B.ListItemType_0 ? B._TextType_5 : B._TextType_6; + else + throw A.wrapException(A.Exception_Exception("Invalid node type: " + A.S(selectedNode))); + }, + _convertTextToNewType$1(newType) { + var t1, t2, t3, _this = this, + existingTextType = _this._getCurrentTextType$0(); + if (existingTextType === newType) + return; + t1 = existingTextType !== B._TextType_5; + if (!t1 || existingTextType === B._TextType_6) + t2 = newType === B._TextType_5 || newType === B._TextType_6; + else + t2 = false; + if (t2) { + t1 = _this._widget; + t2 = t1.editor; + t1 = t1.composer._selectionNotifier; + if (t1._pausable_value_notifier$_isPaused) { + t1 = t1.__PausableValueNotifier__currentValueDuringPause_A; + t1 === $ && A.throwUnnamedLateFieldNI(); + } else + t1 = A.ValueNotifier.prototype.get$value.call(t1, t1); + t1 = t1.extent; + t3 = newType === B._TextType_5 ? B.ListItemType_0 : B.ListItemType_1; + t2.execute$1(A._setArrayType([new A.ChangeListItemTypeRequest(t1.nodeId, t3)], type$.JSArray_EditRequest)); + } else { + if (!t1 || existingTextType === B._TextType_6) + t2 = !(newType === B._TextType_5 || newType === B._TextType_6); + else + t2 = false; + if (t2) { + t1 = _this._widget; + t2 = t1.editor; + t1 = t1.composer._selectionNotifier; + if (t1._pausable_value_notifier$_isPaused) { + t1 = t1.__PausableValueNotifier__currentValueDuringPause_A; + t1 === $ && A.throwUnnamedLateFieldNI(); + } else + t1 = A.ValueNotifier.prototype.get$value.call(t1, t1); + t2.execute$1(A._setArrayType([new A.ConvertListItemToParagraphRequest(t1.extent.nodeId, A.LinkedHashMap_LinkedHashMap$_literal(["blockType", _this._getBlockTypeAttribution$1(newType)], type$.String, type$.dynamic))], type$.JSArray_EditRequest)); + } else { + if (!(!t1 || existingTextType === B._TextType_6)) + t1 = newType === B._TextType_5 || newType === B._TextType_6; + else + t1 = false; + t2 = _this._widget; + if (t1) { + t1 = t2.editor; + t2 = t2.composer._selectionNotifier; + if (t2._pausable_value_notifier$_isPaused) { + t2 = t2.__PausableValueNotifier__currentValueDuringPause_A; + t2 === $ && A.throwUnnamedLateFieldNI(); + } else + t2 = A.ValueNotifier.prototype.get$value.call(t2, t2); + t2 = t2.extent; + t3 = newType === B._TextType_5 ? B.ListItemType_0 : B.ListItemType_1; + t1.execute$1(A._setArrayType([new A.ConvertParagraphToListItemRequest(t2.nodeId, t3)], type$.JSArray_EditRequest)); + } else { + t1 = t2.editor; + t2 = t2.composer._selectionNotifier; + if (t2._pausable_value_notifier$_isPaused) { + t2 = t2.__PausableValueNotifier__currentValueDuringPause_A; + t2 === $ && A.throwUnnamedLateFieldNI(); + } else + t2 = A.ValueNotifier.prototype.get$value.call(t2, t2); + t1.execute$1(A._setArrayType([new A.ChangeParagraphBlockTypeRequest(t2.extent.nodeId, _this._getBlockTypeAttribution$1(newType))], type$.JSArray_EditRequest)); + } + } + } + }, + _getBlockTypeAttribution$1(newType) { + switch (newType.index) { + case 0: + return B.NamedAttribution_header1; + case 1: + return B.NamedAttribution_header2; + case 2: + return B.NamedAttribution_header3; + case 4: + return B.NamedAttribution_blockquote; + case 3: + default: + return null; + } + }, _toggleBold$0() { var t1 = this._widget, t2 = t1.editor; @@ -581724,12 +582490,34 @@ } return new A.SpanRange(startOffset, endOffset); }, + _getTextTypeName$1(textType) { + switch (textType.index) { + case 0: + return "Header 1"; + case 1: + return "Header 2"; + case 2: + return "Header 3"; + case 3: + return "Paragraph"; + case 4: + return "Blockquote"; + case 5: + return "Ordered List Item"; + case 6: + return "Unordered List Item"; + } + }, + _onBlockTypeSelected$1(selectedItem) { + if (selectedItem != null) + this.setState$1(new A._EditorToolbarState__onBlockTypeSelected_closure(this, selectedItem)); + }, _toolbar0$_onPerformAction$1(action) { if (action === B.TextInputAction_2) this._applyLink$0(); }, build$1(context) { - var t4, t5, t6, t7, t8, t9, t10, t11, _this = this, _null = null, + var t4, t5, t6, t7, t8, t9, _this = this, _null = null, t1 = _this._widget, t2 = t1.anchor, t3 = _this.___EditorToolbarState__screenBoundary_A; @@ -581739,22 +582527,33 @@ t5 = _this.___EditorToolbarState__popoverFocusNode_A; t5 === $ && A.throwUnnamedLateFieldNI(); t1 = t1.editorFocusNode; - t6 = A.Center$(A.IconButton$(_null, _null, _null, _null, B.Icon_8xm, _null, _this.get$_toggleBold(), _null, 16, _null, "Bold", _null), _null, _null); - t7 = A.Center$(A.IconButton$(_null, _null, _null, _null, B.Icon_Dlh, _null, _this.get$_toggleItalics(), _null, 16, _null, "Italics", _null), _null, _null); - t8 = A.Center$(A.IconButton$(_null, _null, _null, _null, B.Icon_MXY0, _null, _this.get$_toggleStrikethrough(), _null, 16, _null, "Strikethrough", _null), _null, _null); - t9 = _this._getSelectedLinkSpans$0()._collection$_length >= 2 ? _null : _this.get$_onLinkPressed(); + t6 = type$.JSArray_Widget; + t7 = A._setArrayType([], t6); + if (_this._isConvertibleNode$0()) + B.JSArray_methods.addAll$1(t7, A._setArrayType([A.Tooltip$(_this._buildBlockTypeSelector$0(), "Block Type"), A.Container$(_null, _null, B.Clip_0, B.Color_4292927712, _null, _null, _null, _null, _null, _null, _null, _null, _null, 1)], t6)); + t7.push(A.Center$(A.IconButton$(_null, _null, _null, _null, B.Icon_8xm, _null, _this.get$_toggleBold(), _null, 16, _null, "Bold", _null), _null, _null)); + t7.push(A.Center$(A.IconButton$(_null, _null, _null, _null, B.Icon_Dlh, _null, _this.get$_toggleItalics(), _null, 16, _null, "Italics", _null), _null, _null)); + t7.push(A.Center$(A.IconButton$(_null, _null, _null, _null, B.Icon_MXY0, _null, _this.get$_toggleStrikethrough(), _null, 16, _null, "Strikethrough", _null), _null, _null)); + t8 = _this._getSelectedLinkSpans$0()._collection$_length >= 2 ? _null : _this.get$_onLinkPressed(); if (_this._getSelectedLinkSpans$0()._collection$_length === 1) - t10 = B.Color_4278221567; + t9 = B.Color_4278221567; else { - t10 = _this._framework$_element; - t10.toString; - t10 = A.IconTheme_of(t10).color; + t9 = _this._framework$_element; + t9.toString; + t9 = A.IconTheme_of(t9).color; } - t11 = type$.JSArray_Widget; - t9 = A._setArrayType([A.IntrinsicWidth$(A.Material$(B.Duration_200000, true, _null, new A.SizedBox(_null, 40, A.Row$(A._setArrayType([t6, t7, t8, A.Center$(A.IconButton$(_null, t10, _null, _null, B.Icon_gkc, _null, t9, _null, 16, _null, "Link", _null), _null, _null)], t11), B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), B.Clip_1, _null, 5, _null, _null, B.StadiumBorder_Sik, _null, _null, B.MaterialType_0), _null)], t11); + t7.push(A.Center$(A.IconButton$(_null, t9, _null, _null, B.Icon_gkc, _null, t8, _null, 16, _null, "Link", _null), _null, _null)); + t7 = A._setArrayType([A.IntrinsicWidth$(A.Material$(B.Duration_200000, true, _null, new A.SizedBox(_null, 40, A.Row$(t7, B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), B.Clip_1, _null, 5, _null, _null, B.StadiumBorder_Sik, _null, _null, B.MaterialType_0), _null)], t6); if (_this._showUrlField) - B.JSArray_methods.addAll$1(t9, A._setArrayType([B.SizedBox_null_8_null_null, _this._buildUrlField$0()], t11)); - return new A.BuildInOrder(A._setArrayType([A.FollowerFadeOutBeyondBoundary$(t3, A.Follower$withAligner(t4, t3, new A.SuperEditorPopover(t5, t1, A.Column$(t9, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null), t2, false), t2)], t11), _null); + B.JSArray_methods.addAll$1(t7, A._setArrayType([B.SizedBox_null_8_null_null, _this._buildUrlField$0()], t6)); + return new A.BuildInOrder(A._setArrayType([A.FollowerFadeOutBeyondBoundary$(t3, A.Follower$withAligner(t4, t3, new A.SuperEditorPopover(t5, t1, A.Column$(t7, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null), t2, false), t2)], t6), _null); + }, + _buildBlockTypeSelector$0() { + var _this = this, + currentBlockType = _this._getCurrentTextType$0(), + t1 = _this._widget, + t2 = type$.MappedListIterable__TextType_SuperEditorDemoTextItem; + return new A.SuperEditorDemoTextItemSelector(t1.editorFocusNode, t1.editorViewportKey, new A.SuperEditorDemoTextItem(currentBlockType._core$_name, _this._getTextTypeName$1(currentBlockType)), A.List_List$of(new A.MappedListIterable(B.List_tCu, new A._EditorToolbarState__buildBlockTypeSelector_closure(_this), t2), true, t2._eval$1("ListIterable.E")), _this.get$_onBlockTypeSelected(), null); }, _buildUrlField$0() { var t2, _this = this, _null = null, @@ -581769,13 +582568,13 @@ call$1(attribution) { return attribution instanceof A.LinkAttribution; }, - $signature: 213 + $signature: 200 }; A._EditorToolbarState__onLinkPressed_closure.prototype = { call$1(attribution) { return attribution instanceof A.LinkAttribution; }, - $signature: 213 + $signature: 200 }; A._EditorToolbarState__onLinkPressed_closure0.prototype = { call$0() { @@ -581799,17 +582598,36 @@ }, $signature: 0 }; + A._EditorToolbarState__onBlockTypeSelected_closure.prototype = { + call$0() { + var t1 = new A.WhereIterable(B.List_tCu, new A._EditorToolbarState__onBlockTypeSelected__closure(this.selectedItem), type$.WhereIterable__TextType); + this.$this._convertTextToNewType$1(t1.get$first(t1)); + }, + $signature: 0 + }; + A._EditorToolbarState__onBlockTypeSelected__closure.prototype = { + call$1(e) { + return e._core$_name === this.selectedItem.id; + }, + $signature: 3304 + }; + A._EditorToolbarState__buildBlockTypeSelector_closure.prototype = { + call$1(blockType) { + return new A.SuperEditorDemoTextItem(blockType._core$_name, this.$this._getTextTypeName$1(blockType)); + }, + $signature: 3305 + }; A._EditorToolbarState__buildUrlField_closure0.prototype = { call$1(context) { return B.Text_TVF; }, - $signature: 3301 + $signature: 3306 }; A._EditorToolbarState__buildUrlField_closure.prototype = { call$1(_) { return B.TextStyle_cMb0; }, - $signature: 205 + $signature: 202 }; A._EditorToolbarState__buildUrlField_closure1.prototype = { call$0() { @@ -581829,6 +582647,11 @@ }, $signature: 0 }; + A._TextType.prototype = { + _enumToString$0() { + return "_TextType." + this._core$_name; + } + }; A.ImageFormatToolbar.prototype = { createState$0() { return new A._ImageFormatToolbarState(B._StateLifecycle_0); @@ -581875,7 +582698,7 @@ t1 = this.$this; return A.Material$(B.Duration_200000, true, _null, new A.SizedBox(_null, 40, new A.Padding(B.EdgeInsets_16_0_16_0, A.Row$(A._setArrayType([A.Center$(A.IconButton$(_null, _null, _null, _null, B.Icon_MXY1, _null, t1.get$_makeImageConfined(), _null, 16, _null, "Bold", _null), _null, _null), A.Center$(A.IconButton$(_null, _null, _null, _null, B.Icon_xk6, _null, t1.get$_makeImageFullBleed(), _null, 16, _null, "Italics", _null), _null, _null)], type$.JSArray_Widget), B.CrossAxisAlignment_3, B.MainAxisAlignment_0, B.MainAxisSize_1, _null), _null), _null), B.Clip_1, _null, 5, _null, _null, B.StadiumBorder_Sik, _null, _null, B.MaterialType_0); }, - $signature: 3303 + $signature: 3308 }; A._PositionedToolbar.prototype = { build$1(context) { @@ -581901,7 +582724,7 @@ t2 = offset._dy; return A.SizedBox$expand(new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, A._setArrayType([A.Positioned$(_null, A.FractionalTranslation$(this.$this.child, true, B.Offset_omC), _null, _null, t1, _null, t2, _null)], type$.JSArray_Widget), _null)); }, - $signature: 3304 + $signature: 3309 }; A.SingleLineAttributedTextEditingController.prototype = { insertNewline$0() { @@ -581935,7 +582758,7 @@ t2.border = "none"; return t1; }, - $signature: 3305 + $signature: 3310 }; A.WebUtils_warnChanges_closure.prototype = { call$1(e) { @@ -581944,7 +582767,7 @@ if (t1.hasChanges$0()) type$.BeforeUnloadEvent._as(e).returnValue = "Changes you made may not be saved."; }, - $signature: 547 + $signature: 534 }; A.WebUtils_microsoftLogin_closure.prototype = { call$1(result) { @@ -581952,7 +582775,7 @@ t2 = J.getInterceptor$x(t1); this.succesCallback.call$2(t2.get$idToken(t1), t2.get$accessToken(t1)); }, - $signature: 3306 + $signature: 3311 }; A.WebUtils_microsoftLogin_closure0.prototype = { call$1(error) { @@ -582422,7 +583245,7 @@ $parent._logger$_children.$indexSet(0, thisName, t1); return t1; }, - $signature: 3307 + $signature: 3312 }; A.Element1.prototype = { get$isEmpty(_) { @@ -582450,7 +583273,7 @@ call$1(child) { return child.get$textContent(); }, - $signature: 3308 + $signature: 3313 }; A.Text1.prototype = { accept$1(_, visitor) { @@ -582527,7 +583350,7 @@ var t1 = this.parser; return s.canParse$1(0, t1) && s.canEndBlock$1(t1); }, - $signature: 871 + $signature: 872 }; A.EmptyBlockSyntax.prototype = { get$pattern(_) { @@ -582671,7 +583494,7 @@ call$1(s) { return s.canParse$1(0, this.parser); }, - $signature: 871 + $signature: 872 }; A.CodeBlockSyntax.prototype = { get$pattern(_) { @@ -583035,7 +583858,7 @@ t1.__late_helper$_value = pattern.firstMatch$1(t2.lines[t2._pos]); return t1._readLocal$0() != null; }, - $signature: 3311 + $signature: 3316 }; A.UnorderedListSyntax.prototype = { get$pattern(_) { @@ -583155,13 +583978,13 @@ call$1(i) { return B.JSString_methods.startsWith$1(this.lines[i], $.$get$ParagraphSyntax__reflinkDefinitionStart()); }, - $signature: 146 + $signature: 140 }; A.ParagraphSyntax__parseReflinkDefinition_closure.prototype = { call$0() { return new A.LinkReference(this.destination, this._box_0.title); }, - $signature: 3312 + $signature: 3317 }; A.Document0.prototype = {}; A.LinkReference.prototype = {}; @@ -583377,25 +584200,25 @@ call$1(s) { return !B.JSArray_methods.contains$1(this.$this.document.extensionSet.inlineSyntaxes, s); }, - $signature: 872 + $signature: 873 }; A.InlineParser_parse_closure.prototype = { call$1(syntax) { return syntax.tryMatch$1(this.$this); }, - $signature: 872 + $signature: 873 }; A.InlineParser__linkOrImage_closure.prototype = { call$1(d) { return d.get$char() === 91 || d.get$char() === 33; }, - $signature: 873 + $signature: 874 }; A.InlineParser__linkOrImage_closure0.prototype = { call$1(n) { return n === this.delimiter.node; }, - $signature: 3315 + $signature: 3320 }; A.InlineParser__linkOrImage_closure1.prototype = { call$0() { @@ -583408,26 +584231,26 @@ B.JSArray_methods.removeRange$2(t1, t2, t1.length); return children; }, - $signature: 874 + $signature: 875 }; A.InlineParser__processEmphasis_closure.prototype = { call$0() { return A.List_List$filled(3, this.bottomIndex, false, type$.int); }, - $signature: 852 + $signature: 664 }; A.InlineParser__processEmphasis_closure0.prototype = { call$1(d) { var t1 = this.closer; return d.get$char() === t1.get$char() && d.get$canOpen() && this.$this._canFormEmphasis$2(d, t1); }, - $signature: 873 + $signature: 874 }; A.InlineParser__processEmphasis_closure1.prototype = { call$0() { return B.JSArray_methods.sublist$2(this.$this._inline_parser$_tree, this.openerTextNodeIndex + 1, this._box_0.closerTextNodeIndex); }, - $signature: 874 + $signature: 875 }; A.InlineSyntax.prototype = { tryMatch$1(parser) { @@ -583854,7 +584677,7 @@ $defaultValues() { return [null]; }, - $signature: 3317 + $signature: 3322 }; A.ImageSyntax.prototype = { _inline_parser$_createNode$3$getChildren(destination, title, getChildren) { @@ -583872,7 +584695,7 @@ call$1(node) { return node.get$textContent(); }, - $signature: 3318 + $signature: 3323 }; A.CodeSyntax.prototype = { tryMatch$1(parser) { @@ -584475,7 +585298,7 @@ call$1(child) { type$.OverflowViewParentData._as(child.parentData).offstage = null; }, - $signature: 63 + $signature: 67 }; A.RenderOverflowView_performFixedLayout_getChildOffset.prototype = { call$1(index) { @@ -584485,20 +585308,20 @@ else return new A.Offset(0, mainAxisOffset); }, - $signature: 3319 + $signature: 3324 }; A.RenderOverflowView_performFlexibleLayout_closure.prototype = { call$2(previousValue, element) { return Math.max(previousValue, this.$this._overflow_view$_getCrossSize$1(element)); }, - $signature: 3320 + $signature: 3325 }; A.RenderOverflowView_visitOnlyOnStageChildren_closure.prototype = { call$1(child) { if (type$.OverflowViewParentData._as(child.parentData).offstage === false) this.visitor.call$1(child); }, - $signature: 63 + $signature: 67 }; A.RenderOverflowView_paint_paintChild.prototype = { call$1(child) { @@ -584512,13 +585335,13 @@ t1.paintChild$2(child, t2.get$size(t2).bottomRight$1(0, B.Offset_0_0)); } }, - $signature: 63 + $signature: 67 }; A.RenderOverflowView_paint_defaultPaint.prototype = { call$2(context, offset) { this.$this.visitOnlyOnStageChildren$1(this.paintChild); }, - $signature: 90 + $signature: 91 }; A.RenderOverflowView_hitTestChildren_closure.prototype = { call$1(renderObject) { @@ -584528,13 +585351,13 @@ t1 = this.position; this.result.addWithPaintOffset$3$hitTest$offset$position(new A.RenderOverflowView_hitTestChildren__closure(t1, childParentData, renderObject), childParentData.offset, t1); }, - $signature: 63 + $signature: 67 }; A.RenderOverflowView_hitTestChildren__closure.prototype = { call$2(result, transformed) { return this.child.hitTest$2$position(result, transformed); }, - $signature: 72 + $signature: 71 }; A._RenderOverflowView_RenderBox_ContainerRenderObjectMixin.prototype = { attach$1(owner) { @@ -584595,7 +585418,7 @@ call$2(context, constraints) { return this.builder.call$2(context, constraints.value); }, - $signature: 3321 + $signature: 3326 }; A._OverflowViewElement.prototype = {}; A.CupertinoPopoverToolbarAligner.prototype = { @@ -584871,7 +585694,7 @@ t2.toString; innerContext.paintChild$2(t2, innerOffset.$add(0, t1._contentOffset)); }, - $signature: 90 + $signature: 91 }; A.RenderPopover_hitTestChildren_closure.prototype = { call$2(result, transformed) { @@ -584879,7 +585702,7 @@ t1 = t1 == null ? null : t1.hitTest$2$position(result, transformed); return t1 === true; }, - $signature: 72 + $signature: 71 }; A.ArrowDirection.prototype = { _enumToString$0() { @@ -584919,7 +585742,7 @@ t6 = A.TextButton$(false, A.Icon$(B.IconData_57695_MaterialIcons_null_true, t5 === t7 ? t1.inactiveButtonTextColor : t1.activeButtonTextColor, _null, _null), _null, _null, t3.get$next(t3), t6); return new A.SizedBox(_null, t2, A._IosToolbarMenuContent$(t1.children, t3, t2, t6, _null, t4), _null); }, - $signature: 3322 + $signature: 3327 }; A._MenuPageController.prototype = { set$currentPage(value) { @@ -585132,13 +585955,13 @@ call$2(result, transformed) { return this.child.hitTest$2$position(result, transformed); }, - $signature: 72 + $signature: 71 }; A._RenderIosPagedMenu__scheduleUpdateControllerPageCount_closure.prototype = { call$1(d) { return this.$this._updateControllerPageCount$0(); }, - $signature: 12 + $signature: 11 }; A._MenuPageInfo.prototype = {}; A.__RenderIosPagedMenu_RenderBox_ContainerRenderObjectMixin.prototype = { @@ -585366,19 +586189,19 @@ call$1(part) { return part !== ""; }, - $signature: 11 + $signature: 12 }; A.Context_split_closure.prototype = { call$1(part) { return part.length !== 0; }, - $signature: 11 + $signature: 12 }; A._validateArgList_closure.prototype = { call$1(arg) { return arg == null ? "null" : '"' + arg + '"'; }, - $signature: 3323 + $signature: 3328 }; A.InternalStyle.prototype = { getRoot$1(path) { @@ -585767,7 +586590,7 @@ } else t1._widget.toString; }, - $signature: 465 + $signature: 614 }; A._PinchZoomState_build_closure.prototype = { call$1(_) { @@ -585785,7 +586608,7 @@ t1.___PinchZoomState__controllerReset_A.forward$0(0); return null; }, - $signature: 488 + $signature: 531 }; A.__PinchZoomState_State_SingleTickerProviderStateMixin.prototype = { dispose$0() { @@ -586237,13 +587060,13 @@ t5 === $ && A.throwUnnamedLateFieldNI(); return A.MouseRegion$(A.TextFieldTapRegion$(A.IgnorePointer$(A.AnimatedBuilder$(t3, new A._PinputState__buildPinput__closure(t4, t1), t5.buildGestureDetector$2$behavior$child(B.HitTestBehavior_2, new A.Stack(B.Alignment_0_m1, _null, B.StackFit_0, B.Clip_1, A._setArrayType([t1._buildEditable$2(t4.textSelectionControls, field), t1._buildFields$0()], type$.JSArray_Widget), _null))), false, _null), _null, _null), t2, _null, _null, new A._PinputState__buildPinput__closure0(t1), new A._PinputState__buildPinput__closure1(t1), _null); }, - $signature: 3325 + $signature: 3330 }; A._PinputState__buildPinput__closure0.prototype = { call$1($event) { return this.$this._pinput$_handleHover$1(true); }, - $signature: 132 + $signature: 134 }; A._PinputState__buildPinput__closure1.prototype = { call$1($event) { @@ -586263,7 +587086,7 @@ t4 = this._box_0.handleDidGainAccessibilityFocus; return new A.Semantics(A.SemanticsProperties$(_null, _null, _null, _null, _null, _null, _null, t3, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t2, _null, _null, _null, _null, _null, _null, _null, t4, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, t1.get$_semanticsOnTap(), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null), false, false, false, false, child, _null); }, - $signature: 800 + $signature: 844 }; A._PinputState__buildEditable_closure.prototype = { call$1(value) { @@ -586288,13 +587111,13 @@ var t1 = this.$this; return new A._SeparatedRaw(A.Iterable_Iterable$generate(t1._widget.length, null, type$.int).map$1$1(0, new A._PinputState__buildFields_onlyFields_closure(t1), type$.Widget).toList$0(0), B.MainAxisAlignment_2, null, null); }, - $signature: 141 + $signature: 151 }; A._PinputState__buildFields_onlyFields_closure.prototype = { call$1(index) { return new A._PinItem(this.$this, index, null); }, - $signature: 3326 + $signature: 3331 }; A._PinputState__buildFields_closure.prototype = { call$2(context, child) { @@ -586302,7 +587125,7 @@ t1._widget.toString; return A.AnimatedSize$(B.Alignment_0_m1, A.Column$(A._setArrayType([this.onlyFields.call$0(), t1._pinput$_buildError$0()], type$.JSArray_Widget), B.CrossAxisAlignment_0, null, B.MainAxisAlignment_0, B.MainAxisSize_1, B.VerticalDirection_1), B.C__Linear, B.Duration_180000, null); }, - $signature: 225 + $signature: 212 }; A.PinputAutovalidateMode.prototype = { _enumToString$0() { @@ -586500,7 +587323,7 @@ t1 = B.SizedBox_8_null_null_null; return t1; }, - $signature: 3327 + $signature: 3332 }; A._PinputCursor.prototype = { build$1(context) { @@ -586561,7 +587384,7 @@ if (!property._restoration0$_disposed) property.removeListener$1(0, listener); }, - $signature: 129 + $signature: 130 }; A.__PinputAnimatedCursorState_State_SingleTickerProviderStateMixin.prototype = { dispose$0() { @@ -586679,7 +587502,7 @@ } return htmlElement; }, - $signature: 3328 + $signature: 3333 }; A.PointerInterceptor.prototype = { build$1(context) { @@ -587116,7 +587939,7 @@ call$1(input) { return input; }, - $signature: 565 + $signature: 556 }; A.PrintingPlugin_layoutPdf_closure0.prototype = { call$1($event) { @@ -587124,7 +587947,7 @@ J.removeEventListener$2$x(_this.frame, "load", _this._box_0.load); A.Timer_Timer(A.Duration$(0, 0, 0, _this.isSafari ? 500 : 0, 0, 0), new A.PrintingPlugin_layoutPdf__closure(_this.$this, _this.stopWatch, _this.completer, _this.result)); }, - $signature: 3330 + $signature: 3335 }; A.PrintingPlugin_layoutPdf__closure.prototype = { call$0() { @@ -587147,14 +587970,14 @@ call$1(index) { return index; }, - $signature: 133 + $signature: 137 }; A.PrintingPlugin_raster_closure0.prototype = { call$1(e) { this.data.add$1(0, type$.List_int._as(B.FileReader_methods.get$result(this.r))); this.completer.complete$0(0); }, - $signature: 513 + $signature: 528 }; A._WebPdfRaster.prototype = { get$pixels() { @@ -587421,7 +588244,7 @@ call$1(input) { return input; }, - $signature: 565 + $signature: 556 }; A.Mutex.prototype = { acquire$0() { @@ -587731,7 +588554,7 @@ return; t1.setState$1(new A.PdfPreviewCustomState_didChangeDependencies__closure(t1, printingInfo)); }, - $signature: 877 + $signature: 878 }; A.PdfPreviewCustomState_didChangeDependencies__closure.prototype = { call$0() { @@ -587749,7 +588572,7 @@ t3 = t1._widget; return A.GestureDetector$(_null, new A.PdfPreviewPage(t2, t3.pdfPreviewPageDecoration, t3.previewPageMargin, _null), B.DragStartBehavior_1, false, _null, new A.PdfPreviewCustomState__createPreview__closure(t1, index), _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, _null, false, B.Offset_O5r); }, - $signature: 3333 + $signature: 3338 }; A.PdfPreviewCustomState__createPreview__closure.prototype = { call$0() { @@ -587981,7 +588804,7 @@ return; t1.setState$1(new A.PdfPreviewState_didChangeDependencies__closure(t1, printingInfo)); }, - $signature: 877 + $signature: 878 }; A.PdfPreviewState_didChangeDependencies__closure.prototype = { call$0() { @@ -588000,7 +588823,7 @@ t4 === $ && A.throwUnnamedLateFieldNI(); return new A.PdfPreviewCustom(t4, controller.buildDocument, t3, _null, _null, _null, t2.pages, _null, _null, false, _null, _null, _null, t1.previewWidget); }, - $signature: 3335 + $signature: 3340 }; A.PdfPreviewRaster.prototype = { raster$0() { @@ -588316,7 +589139,7 @@ call$1(image) { return this.comp.complete$1(0, image); }, - $signature: 3336 + $signature: 3341 }; A.QrBitBuffer.prototype = { $indexSet(_, index, value) { @@ -588687,7 +589510,7 @@ t1 = t1._qrWidget$2(null, widgetSize); return t1; }, - $signature: 237 + $signature: 221 }; A._QrContentView.prototype = { build$1(context) { @@ -589191,7 +590014,7 @@ call$2(context, snapshot) { return A.AnimatedSwitcher$(J.$eq$(snapshot.data, B.ButtonState_1) ? this._loader : this.$this._widget.child, B.Duration_200000, B.C__Linear, B.C__Linear, A.animated_switcher_AnimatedSwitcher_defaultTransitionBuilder$closure()); }, - $signature: 3338 + $signature: 3343 }; A.RoundedLoadingButtonState_initState_closure.prototype = { call$0() { @@ -589246,7 +590069,7 @@ return; t1._widget.controller._rounded_loading_button$_state.add$1(0, $event); }, - $signature: 3339 + $signature: 3344 }; A.RoundedLoadingButtonController.prototype = {}; A._RoundedLoadingButtonState_State_TickerProviderStateMixin.prototype = { @@ -589586,7 +590409,7 @@ call$0() { return this.call$1(null); }, - $signature: 878 + $signature: 879 }; A._forwardMulti__closure.prototype = { call$0() { @@ -589639,7 +590462,7 @@ call$0() { return this.call$1(null); }, - $signature: 878 + $signature: 879 }; A._forward__listenToUpstream_closure.prototype = { call$0() { @@ -589820,7 +590643,7 @@ call$1(p) { return p.toJson$0(); }, - $signature: 3341 + $signature: 3346 }; A.SentryId.prototype = { toString$0(_) { @@ -590074,7 +590897,7 @@ call$2(key, value) { return new A.MapEntry(key, J.toString$0$(value), type$.MapEntry_String_String); }, - $signature: 3342 + $signature: 3347 }; A.SharePlusWebPlugin.prototype = {}; A.SharePlatform.prototype = {}; @@ -590317,7 +591140,7 @@ t1 = false; return t1; }, - $signature: 11 + $signature: 12 }; A.AppleLogoPainter.prototype = { paint$2(canvas, size) { @@ -590650,7 +591473,7 @@ return "name"; } }, - $signature: 3343 + $signature: 3348 }; A.SignInWithApplePlatform.prototype = {}; A.WebAuthenticationOptions.prototype = {}; @@ -591219,7 +592042,7 @@ t1 = new A.WhereIterable(t1, new A.Highlighter$___closure(), A._arrayInstanceType(t1)._eval$1("WhereIterable<1>")); return t1.get$length(t1); }, - $signature: 3344 + $signature: 3349 }; A.Highlighter$___closure.prototype = { call$1(highlight) { @@ -591229,26 +592052,26 @@ t1 = t1.get$end(t1); return t2 !== t1.get$line(t1); }, - $signature: 540 + $signature: 557 }; A.Highlighter$__closure0.prototype = { call$1(line) { return line.url; }, - $signature: 3346 + $signature: 3351 }; A.Highlighter__collateLines_closure.prototype = { call$1(highlight) { var t1 = highlight.span.get$sourceUrl(); return t1 == null ? new A.Object() : t1; }, - $signature: 3347 + $signature: 3352 }; A.Highlighter__collateLines_closure0.prototype = { call$2(highlight1, highlight2) { return highlight1.span.compareTo$1(0, highlight2.span); }, - $signature: 3348 + $signature: 3353 }; A.Highlighter__collateLines_closure1.prototype = { call$1(entry) { @@ -591294,7 +592117,7 @@ } return lines; }, - $signature: 3349 + $signature: 3354 }; A.Highlighter__collateLines__closure.prototype = { call$1(highlight) { @@ -591302,13 +592125,13 @@ t1 = t1.get$end(t1); return t1.get$line(t1) < this.line.number; }, - $signature: 540 + $signature: 557 }; A.Highlighter_highlight_closure.prototype = { call$1(highlight) { return true; }, - $signature: 540 + $signature: 557 }; A.Highlighter__writeFileStart_closure.prototype = { call$0() { @@ -591407,7 +592230,7 @@ t2 = t2._contents += B.JSString_methods.$mul("^", Math.max(endColumn + (tabsBefore + tabsInside) * 3 - startColumn, 1)); return t2.length - t3.length; }, - $signature: 174 + $signature: 181 }; A.Highlighter__writeIndicator_closure0.prototype = { call$0() { @@ -591430,7 +592253,7 @@ } return t2._contents.length - t3.length; }, - $signature: 174 + $signature: 181 }; A.Highlighter__writeSidebar_closure.prototype = { call$0() { @@ -591472,7 +592295,7 @@ } return A._Highlight__normalizeEndOfLine(A._Highlight__normalizeTrailingNewline(A._Highlight__normalizeNewlines(t1))); }, - $signature: 3350 + $signature: 3355 }; A._Line.prototype = { toString$0(_) { @@ -591687,7 +592510,7 @@ var t1 = A._setArrayType([this.listenTo], type$.JSArray_ReactiveModelImp_dynamic); return t1; }, - $signature: 3352 + $signature: 3357 }; A.OnBuilder_closure0.prototype = { call$3(_, __, ___) { @@ -591841,7 +592664,7 @@ return; t1.setState$1(new A._MyStatefulWidgetState_initState__closure(t1, model)); }, - $signature: 3353 + $signature: 3358 }; A._MyStatefulWidgetState_initState__closure.prototype = { call$0() { @@ -592413,7 +593236,7 @@ throw A.wrapException(e); } }, - $signature: 383 + $signature: 356 }; A.ReactiveModelImp__handleAsyncState__closure.prototype = { call$0() { @@ -592953,6 +593776,7 @@ }, $isEditCommand: 1 }; + A.ClearComposingRegionRequest.prototype = {$isEditRequest: 1}; A.ChangeInteractionModeRequest.prototype = { $eq(_, other) { var t1; @@ -593186,7 +594010,7 @@ call$0() { return A.InspectDocumentAffinity_getAffinityBetween(this._this, this.position1, this.position2); }, - $signature: 3355 + $signature: 3360 }; A.SuperEditorContext.prototype = { get$document(receiver) { @@ -593459,7 +594283,7 @@ call$1(edit) { return edit.change; }, - $signature: 3356 + $signature: 3361 }; A.Stylesheet.prototype = {}; A.StyleRule.prototype = { @@ -593698,7 +594522,7 @@ baseStyle = B.TextStyle_SVP1; return type$.TextStyle_Function_2_Set_Attribution_and_TextStyle._as(t1.$index(0, "inlineTextStyler")).call$2(attributions, baseStyle); }, - $signature: 205 + $signature: 202 }; A._BlockquoteComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel.prototype = { applyStyles$1(styles) { @@ -595308,7 +596132,7 @@ call$1(pastedLine) { return A.ParagraphNode$(B.C_Uuid.v4$0(), null, pastedLine); }, - $signature: 3357 + $signature: 3362 }; A.DeleteUpstreamCharacterRequest.prototype = {$isEditRequest: 1}; A.DeleteUpstreamCharacterCommand.prototype = { @@ -595463,19 +596287,19 @@ call$1(element) { return element instanceof A.SelectionChangeEvent; }, - $signature: 880 + $signature: 881 }; A.UpdateComposerTextStylesReaction__updateComposerStylesAtCaret_closure.prototype = { call$1(attribution) { return this.$this._stylesToExtend._collection$_source.contains$1(0, attribution); }, - $signature: 213 + $signature: 200 }; A.UpdateComposerTextStylesReaction__updateComposerStylesAtCaret_closure0.prototype = { call$1(attribution) { return attribution instanceof A.LinkAttribution; }, - $signature: 213 + $signature: 200 }; A.SuperEditorDebugVisuals.prototype = { updateShouldNotify$1(oldWidget) { @@ -595519,87 +596343,93 @@ call$1(request) { return request instanceof A.ChangeSelectionRequest ? new A.ChangeSelectionCommand(request.newSelection, request.changeType, request.reason) : null; }, - $signature: 881 + $signature: 882 }; A.defaultRequestHandlers_closure0.prototype = { call$1(request) { return request instanceof A.ClearSelectionRequest ? B.ChangeSelectionCommand_I9t : null; }, - $signature: 881 + $signature: 882 }; A.defaultRequestHandlers_closure1.prototype = { call$1(request) { return request instanceof A.ChangeComposingRegionRequest ? new A.ChangeComposingRegionCommand(request.composingRegion) : null; }, - $signature: 3360 + $signature: 883 }; A.defaultRequestHandlers_closure2.prototype = { call$1(request) { - return request instanceof A.ChangeInteractionModeRequest ? new A.ChangeInteractionModeCommand(request.isInteractionModeDesired) : null; + return request instanceof A.ClearComposingRegionRequest ? new A.ChangeComposingRegionCommand(null) : null; }, - $signature: 3361 + $signature: 883 }; A.defaultRequestHandlers_closure3.prototype = { call$1(request) { - return request instanceof A.InsertTextRequest ? new A.InsertTextCommand(request.documentPosition, request.textToInsert, request.attributions) : null; + return request instanceof A.ChangeInteractionModeRequest ? new A.ChangeInteractionModeCommand(request.isInteractionModeDesired) : null; }, - $signature: 882 + $signature: 3366 }; A.defaultRequestHandlers_closure4.prototype = { call$1(request) { - return request instanceof A.InsertNodeAtIndexRequest ? new A.InsertNodeAtIndexCommand(request.nodeIndex, request.newNode) : null; + return request instanceof A.InsertTextRequest ? new A.InsertTextCommand(request.documentPosition, request.textToInsert, request.attributions) : null; }, - $signature: 3363 + $signature: 884 }; A.defaultRequestHandlers_closure5.prototype = { call$1(request) { - return request instanceof A.InsertNodeBeforeNodeRequest ? new A.InsertNodeBeforeNodeCommand(request.existingNodeId, request.newNode) : null; + return request instanceof A.InsertNodeAtIndexRequest ? new A.InsertNodeAtIndexCommand(request.nodeIndex, request.newNode) : null; }, - $signature: 3364 + $signature: 3368 }; A.defaultRequestHandlers_closure6.prototype = { call$1(request) { - return request instanceof A.InsertNodeAfterNodeRequest ? new A.InsertNodeAfterNodeCommand(request.existingNodeId, request.newNode) : null; + return request instanceof A.InsertNodeBeforeNodeRequest ? new A.InsertNodeBeforeNodeCommand(request.existingNodeId, request.newNode) : null; }, - $signature: 3365 + $signature: 3369 }; A.defaultRequestHandlers_closure7.prototype = { call$1(request) { - return null; + return request instanceof A.InsertNodeAfterNodeRequest ? new A.InsertNodeAfterNodeCommand(request.existingNodeId, request.newNode) : null; }, - $signature: 3366 + $signature: 3370 }; A.defaultRequestHandlers_closure8.prototype = { call$1(request) { return null; }, - $signature: 3367 + $signature: 3371 }; A.defaultRequestHandlers_closure9.prototype = { call$1(request) { - return request instanceof A.CombineParagraphsRequest ? new A.CombineParagraphsCommand(request.firstNodeId, request.secondNodeId) : null; + return null; }, - $signature: 3368 + $signature: 3372 }; A.defaultRequestHandlers_closure10.prototype = { call$1(request) { - return request instanceof A.ReplaceNodeRequest ? new A.ReplaceNodeCommand(request.existingNodeId, request.newNode) : null; + return request instanceof A.CombineParagraphsRequest ? new A.CombineParagraphsCommand(request.firstNodeId, request.secondNodeId) : null; }, - $signature: 3369 + $signature: 3373 }; A.defaultRequestHandlers_closure11.prototype = { call$1(request) { - return request instanceof A.ReplaceNodeWithEmptyParagraphWithCaretRequest ? new A.ReplaceNodeWithEmptyParagraphWithCaretCommand(request.nodeId) : null; + return request instanceof A.ReplaceNodeRequest ? new A.ReplaceNodeCommand(request.existingNodeId, request.newNode) : null; }, - $signature: 3370 + $signature: 3374 }; A.defaultRequestHandlers_closure12.prototype = { call$1(request) { - return request instanceof A.DeleteContentRequest ? new A.DeleteContentCommand(request.documentRange) : null; + return request instanceof A.ReplaceNodeWithEmptyParagraphWithCaretRequest ? new A.ReplaceNodeWithEmptyParagraphWithCaretCommand(request.nodeId) : null; }, - $signature: 3371 + $signature: 3375 }; A.defaultRequestHandlers_closure13.prototype = { + call$1(request) { + return request instanceof A.DeleteContentRequest ? new A.DeleteContentCommand(request.documentRange) : null; + }, + $signature: 3376 + }; + A.defaultRequestHandlers_closure14.prototype = { call$1(request) { var t1; if (request instanceof A.DeleteUpstreamAtBeginningOfNodeRequest && request.node instanceof A.ListItemNode) { @@ -595609,69 +596439,75 @@ t1 = null; return t1; }, - $signature: 883 - }; - A.defaultRequestHandlers_closure14.prototype = { - call$1(request) { - return request instanceof A.DeleteUpstreamAtBeginningOfNodeRequest && request.node instanceof A.ParagraphNode ? new A.DeleteUpstreamAtBeginningOfParagraphCommand(request.node) : null; - }, - $signature: 3373 + $signature: 885 }; A.defaultRequestHandlers_closure15.prototype = { call$1(request) { - return request instanceof A.DeleteUpstreamAtBeginningOfNodeRequest && request.node instanceof A.BlockNode ? new A.DeleteUpstreamAtBeginningOfBlockNodeCommand(request.node) : null; - }, - $signature: 3374 - }; - A.defaultRequestHandlers_closure16.prototype = { - call$1(request) { - return request instanceof A.DeleteNodeRequest ? new A.DeleteNodeCommand(request.nodeId) : null; - }, - $signature: 3375 - }; - A.defaultRequestHandlers_closure17.prototype = { - call$1(request) { - return request instanceof A.DeleteUpstreamCharacterRequest ? B.C_DeleteUpstreamCharacterCommand : null; - }, - $signature: 3376 - }; - A.defaultRequestHandlers_closure18.prototype = { - call$1(request) { - return null; - }, - $signature: 3377 - }; - A.defaultRequestHandlers_closure19.prototype = { - call$1(request) { - return request instanceof A.InsertTextRequest ? new A.InsertTextCommand(request.documentPosition, request.textToInsert, request.attributions) : null; - }, - $signature: 882 - }; - A.defaultRequestHandlers_closure20.prototype = { - call$1(request) { - return request instanceof A.InsertCharacterAtCaretRequest ? new A.InsertCharacterAtCaretCommand(" ", false) : null; + return request instanceof A.DeleteUpstreamAtBeginningOfNodeRequest && request.node instanceof A.ParagraphNode ? new A.DeleteUpstreamAtBeginningOfParagraphCommand(request.node) : null; }, $signature: 3378 }; - A.defaultRequestHandlers_closure21.prototype = { + A.defaultRequestHandlers_closure16.prototype = { call$1(request) { - return request instanceof A.ChangeParagraphBlockTypeRequest ? new A.ChangeParagraphBlockTypeCommand(request.nodeId, request.blockType) : null; + return request instanceof A.DeleteUpstreamAtBeginningOfNodeRequest && request.node instanceof A.BlockNode ? new A.DeleteUpstreamAtBeginningOfBlockNodeCommand(request.node) : null; }, $signature: 3379 }; - A.defaultRequestHandlers_closure22.prototype = { + A.defaultRequestHandlers_closure17.prototype = { call$1(request) { - return request instanceof A.SplitParagraphRequest ? new A.SplitParagraphCommand(request.nodeId, request.splitPosition, request.newNodeId, request.replicateExistingMetadata, A.paragraph0__defaultAttributionsToExtendToNewParagraph$closure()) : null; + return request instanceof A.DeleteNodeRequest ? new A.DeleteNodeCommand(request.nodeId) : null; }, $signature: 3380 }; - A.defaultRequestHandlers_closure23.prototype = { + A.defaultRequestHandlers_closure18.prototype = { call$1(request) { - return null; + return request instanceof A.DeleteUpstreamCharacterRequest ? B.C_DeleteUpstreamCharacterCommand : null; }, $signature: 3381 }; + A.defaultRequestHandlers_closure19.prototype = { + call$1(request) { + return null; + }, + $signature: 3382 + }; + A.defaultRequestHandlers_closure20.prototype = { + call$1(request) { + return request instanceof A.InsertTextRequest ? new A.InsertTextCommand(request.documentPosition, request.textToInsert, request.attributions) : null; + }, + $signature: 884 + }; + A.defaultRequestHandlers_closure21.prototype = { + call$1(request) { + return request instanceof A.InsertCharacterAtCaretRequest ? new A.InsertCharacterAtCaretCommand(" ", false) : null; + }, + $signature: 3383 + }; + A.defaultRequestHandlers_closure22.prototype = { + call$1(request) { + return null; + }, + $signature: 3384 + }; + A.defaultRequestHandlers_closure23.prototype = { + call$1(request) { + return request instanceof A.ChangeParagraphBlockTypeRequest ? new A.ChangeParagraphBlockTypeCommand(request.nodeId, request.blockType) : null; + }, + $signature: 3385 + }; A.defaultRequestHandlers_closure24.prototype = { + call$1(request) { + return request instanceof A.SplitParagraphRequest ? new A.SplitParagraphCommand(request.nodeId, request.splitPosition, request.newNodeId, request.replicateExistingMetadata, A.paragraph0__defaultAttributionsToExtendToNewParagraph$closure()) : null; + }, + $signature: 3386 + }; + A.defaultRequestHandlers_closure25.prototype = { + call$1(request) { + return null; + }, + $signature: 3387 + }; + A.defaultRequestHandlers_closure26.prototype = { call$1(request) { var t1; if (request instanceof A.DeleteUpstreamAtBeginningOfNodeRequest && request.node instanceof A.TaskNode) { @@ -595681,85 +596517,85 @@ t1 = null; return t1; }, - $signature: 3382 - }; - A.defaultRequestHandlers_closure25.prototype = { - call$1(request) { - return request instanceof A.ChangeTaskCompletionRequest ? new A.ChangeTaskCompletionCommand(request.nodeId, request.isComplete) : null; - }, - $signature: 3383 - }; - A.defaultRequestHandlers_closure26.prototype = { - call$1(request) { - return request instanceof A.SplitExistingTaskRequest ? new A.SplitExistingTaskCommand(request.splitOffset, request.newNodeId) : null; - }, - $signature: 3384 + $signature: 3388 }; A.defaultRequestHandlers_closure27.prototype = { call$1(request) { - return request instanceof A.SplitListItemRequest ? new A.SplitListItemCommand(request.nodeId, request.splitPosition, request.newNodeId) : null; - }, - $signature: 3385 - }; - A.defaultRequestHandlers_closure28.prototype = { - call$1(request) { - return request instanceof A.IndentListItemRequest ? new A.IndentListItemCommand(request.nodeId) : null; - }, - $signature: 3386 - }; - A.defaultRequestHandlers_closure29.prototype = { - call$1(request) { - return request instanceof A.UnIndentListItemRequest ? new A.UnIndentListItemCommand(request.nodeId) : null; - }, - $signature: 3387 - }; - A.defaultRequestHandlers_closure30.prototype = { - call$1(request) { - return null; - }, - $signature: 3388 - }; - A.defaultRequestHandlers_closure31.prototype = { - call$1(request) { - return null; - }, - $signature: 883 - }; - A.defaultRequestHandlers_closure32.prototype = { - call$1(request) { - return null; + return request instanceof A.ChangeTaskCompletionRequest ? new A.ChangeTaskCompletionCommand(request.nodeId, request.isComplete) : null; }, $signature: 3389 }; - A.defaultRequestHandlers_closure33.prototype = { + A.defaultRequestHandlers_closure28.prototype = { call$1(request) { - return null; + return request instanceof A.SplitExistingTaskRequest ? new A.SplitExistingTaskCommand(request.splitOffset, request.newNodeId) : null; }, $signature: 3390 }; - A.defaultRequestHandlers_closure34.prototype = { + A.defaultRequestHandlers_closure29.prototype = { call$1(request) { - return request instanceof A.ToggleTextAttributionsRequest ? new A.ToggleTextAttributionsCommand(request.documentRange, request.attributions) : null; + return request instanceof A.SplitListItemRequest ? new A.SplitListItemCommand(request.nodeId, request.splitPosition, request.newNodeId) : null; }, $signature: 3391 }; + A.defaultRequestHandlers_closure30.prototype = { + call$1(request) { + return request instanceof A.IndentListItemRequest ? new A.IndentListItemCommand(request.nodeId) : null; + }, + $signature: 3392 + }; + A.defaultRequestHandlers_closure31.prototype = { + call$1(request) { + return request instanceof A.UnIndentListItemRequest ? new A.UnIndentListItemCommand(request.nodeId) : null; + }, + $signature: 3393 + }; + A.defaultRequestHandlers_closure32.prototype = { + call$1(request) { + return request instanceof A.ChangeListItemTypeRequest ? new A.ChangeListItemTypeCommand(request.nodeId, request.newType) : null; + }, + $signature: 3394 + }; + A.defaultRequestHandlers_closure33.prototype = { + call$1(request) { + return request instanceof A.ConvertListItemToParagraphRequest ? new A.ConvertListItemToParagraphCommand(request.nodeId, request.paragraphMetadata) : null; + }, + $signature: 885 + }; + A.defaultRequestHandlers_closure34.prototype = { + call$1(request) { + return request instanceof A.ConvertParagraphToListItemRequest ? new A.ConvertParagraphToListItemCommand(request.nodeId, request.type) : null; + }, + $signature: 3395 + }; A.defaultRequestHandlers_closure35.prototype = { call$1(request) { return null; }, - $signature: 3392 + $signature: 3396 }; A.defaultRequestHandlers_closure36.prototype = { call$1(request) { - return request instanceof A.ConvertTextNodeToParagraphRequest ? new A.ConvertTextNodeToParagraphCommand(request.nodeId, request.newMetadata) : null; + return request instanceof A.ToggleTextAttributionsRequest ? new A.ToggleTextAttributionsCommand(request.documentRange, request.attributions) : null; }, - $signature: 3393 + $signature: 3397 }; A.defaultRequestHandlers_closure37.prototype = { + call$1(request) { + return null; + }, + $signature: 3398 + }; + A.defaultRequestHandlers_closure38.prototype = { + call$1(request) { + return request instanceof A.ConvertTextNodeToParagraphRequest ? new A.ConvertTextNodeToParagraphCommand(request.nodeId, request.newMetadata) : null; + }, + $signature: 3399 + }; + A.defaultRequestHandlers_closure39.prototype = { call$1(request) { return request instanceof A.PasteEditorRequest ? new A.PasteEditorCommand(request.content, request.pastePosition, request.composer) : null; }, - $signature: 3394 + $signature: 3400 }; A.HeaderConversionReaction.prototype = { get$pattern(_) { @@ -595780,7 +596616,7 @@ call$0() { return A.HeaderConversionReaction__getHeaderAttributionForLevel(this.prefixLength); }, - $signature: 3395 + $signature: 3401 }; A.UnorderedListItemConversionReaction.prototype = { get$pattern(_) { @@ -595954,19 +596790,19 @@ call$1(item) { return item instanceof A.SelectionChangeEvent; }, - $signature: 880 + $signature: 881 }; A.ImageUrlConversionReaction_react_closure0.prototype = { call$2(value, element) { return element instanceof A.UrlElement ? value + 1 : value; }, - $signature: 884 + $signature: 886 }; A.ImageUrlConversionReaction_react_closure1.prototype = { call$1(element) { return element instanceof A.UrlElement; }, - $signature: 3397 + $signature: 3403 }; A.ImageUrlConversionReaction_react_closure2.prototype = { call$1(isImage) { @@ -595989,7 +596825,7 @@ t1 = node.id; _this.requestDispatcher.execute$1(A._setArrayType([new A.ReplaceNodeRequest(t1, A.ImageNode$("", t1, _this.url))], type$.JSArray_EditRequest)); }, - $signature: 188 + $signature: 175 }; A.LinkifyReaction.prototype = { react$3(editContext, requestDispatcher, edits) { @@ -596081,13 +596917,13 @@ call$1(attribution) { return attribution instanceof A.LinkAttribution; }, - $signature: 213 + $signature: 200 }; A.LinkifyReaction__extractUpstreamWordAndLinkify_closure0.prototype = { call$2(value, element) { return element instanceof A.UrlElement ? value + 1 : value; }, - $signature: 884 + $signature: 886 }; A.LinkifyReaction__moveOffsetByWord_closure.prototype = { call$1(char) { @@ -596096,39 +596932,39 @@ t1.remainingOffset = remainingOffset; return remainingOffset >= 0; }, - $signature: 11 + $signature: 12 }; A.LinkifyReaction__moveOffsetByWord_closure0.prototype = { call$1(char) { return char !== " "; }, - $signature: 11 + $signature: 12 }; A.LinkifyReaction__moveOffsetByWord_closure1.prototype = { call$1(char) { return char !== " "; }, - $signature: 11 + $signature: 12 }; A.CaretDocumentOverlay.prototype = { createState$0() { - return new A._CaretDocumentOverlayState(null, null, B._StateLifecycle_0); + return new A.CaretDocumentOverlayState(null, null, B._StateLifecycle_0); } }; - A._CaretDocumentOverlayState.prototype = { + A.CaretDocumentOverlayState.prototype = { initState$0() { var t1, _this = this; _this.super$State$initState(); switch (_this._widget.blinkTimingMode.index) { case 0: t1 = A.BlinkController$(_this); - _this.___CaretDocumentOverlayState__blinkController_F !== $ && A.throwUnnamedLateFieldAI(); - _this.___CaretDocumentOverlayState__blinkController_F = t1; + _this.__CaretDocumentOverlayState__blinkController_F !== $ && A.throwUnnamedLateFieldAI(); + _this.__CaretDocumentOverlayState__blinkController_F = t1; break; case 1: t1 = $.$get$ChangeNotifier__emptyListeners(); - _this.___CaretDocumentOverlayState__blinkController_F !== $ && A.throwUnnamedLateFieldAI(); - _this.___CaretDocumentOverlayState__blinkController_F = new A.BlinkController(B.Duration_0, t1); + _this.__CaretDocumentOverlayState__blinkController_F !== $ && A.throwUnnamedLateFieldAI(); + _this.__CaretDocumentOverlayState__blinkController_F = new A.BlinkController(B.Duration_0, t1); break; } _this._widget.composer._selectionNotifier.addListener$1(0, _this.get$_document_caret_overlay$_onSelectionChange()); @@ -596148,15 +596984,15 @@ dispose$0() { var t1, _this = this; _this._widget.composer._selectionNotifier.removeListener$1(0, _this.get$_document_caret_overlay$_onSelectionChange()); - t1 = _this.___CaretDocumentOverlayState__blinkController_F; + t1 = _this.__CaretDocumentOverlayState__blinkController_F; t1 === $ && A.throwUnnamedLateFieldNI(); t1.dispose$0(); - _this.super$__CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin$dispose(); + _this.super$_CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin$dispose(); }, _document_caret_overlay$_onSelectionChange$0() { this._updateCaretFlash$0(); if ($.SchedulerBinding__instance.SchedulerBinding__schedulerPhase !== B.SchedulerPhase_3) - this.setState$1(new A._CaretDocumentOverlayState__onSelectionChange_closure()); + this.setState$1(new A.CaretDocumentOverlayState__onSelectionChange_closure()); }, _startOrStopBlinking$0() { var wantsToBlink, t2, _this = this, @@ -596169,7 +597005,7 @@ t1 = t1 == null; wantsToBlink = !t1; if (wantsToBlink) { - t2 = _this.___CaretDocumentOverlayState__blinkController_F; + t2 = _this.__CaretDocumentOverlayState__blinkController_F; t2 === $ && A.throwUnnamedLateFieldNI(); t2 = t2.get$isBlinking(); } else @@ -596177,14 +597013,14 @@ if (t2) return; if (t1) { - t1 = _this.___CaretDocumentOverlayState__blinkController_F; + t1 = _this.__CaretDocumentOverlayState__blinkController_F; t1 === $ && A.throwUnnamedLateFieldNI(); t1 = !t1.get$isBlinking(); } else t1 = false; if (t1) return; - t1 = _this.___CaretDocumentOverlayState__blinkController_F; + t1 = _this.__CaretDocumentOverlayState__blinkController_F; if (wantsToBlink) { t1 === $ && A.throwUnnamedLateFieldNI(); t1.startBlinking$0(); @@ -596202,12 +597038,12 @@ } else t1 = A.ValueNotifier.prototype.get$value.call(t1, t1); if (t1 == null) { - t1 = _this.___CaretDocumentOverlayState__blinkController_F; + t1 = _this.__CaretDocumentOverlayState__blinkController_F; t1 === $ && A.throwUnnamedLateFieldNI(); t1.stopBlinking$0(); return; } - t1 = _this.___CaretDocumentOverlayState__blinkController_F; + t1 = _this.__CaretDocumentOverlayState__blinkController_F; t1 === $ && A.throwUnnamedLateFieldNI(); t1.jumpToOpaque$0(); _this._startOrStopBlinking$0(); @@ -596246,31 +597082,31 @@ t2 = caret.top; t3 = caret.left; t4 = caret.bottom; - t5 = this.___CaretDocumentOverlayState__blinkController_F; + t5 = this.__CaretDocumentOverlayState__blinkController_F; t5 === $ && A.throwUnnamedLateFieldNI(); - t1.push(A.Positioned$(_null, A.AnimatedBuilder$(t5, new A._CaretDocumentOverlayState_doBuild_closure(this), _null), t4 - t2, _null, t3, _null, t2, _null)); + t1.push(A.Positioned$(_null, A.AnimatedBuilder$(t5, new A.CaretDocumentOverlayState_doBuild_closure(this), _null), t4 - t2, _null, t3, _null, t2, _null)); } return A.IgnorePointer$(new A.RepaintBoundary(new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t1, _null), _null), true, _null); } }; - A._CaretDocumentOverlayState__onSelectionChange_closure.prototype = { + A.CaretDocumentOverlayState__onSelectionChange_closure.prototype = { call$0() { }, $signature: 0 }; - A._CaretDocumentOverlayState_doBuild_closure.prototype = { + A.CaretDocumentOverlayState_doBuild_closure.prototype = { call$2(context, child) { var _null = null, t1 = this.$this, t2 = t1._widget.caretStyle, t3 = t2.color, - t4 = t1.___CaretDocumentOverlayState__blinkController_F; + t4 = t1.__CaretDocumentOverlayState__blinkController_F; t4 === $ && A.throwUnnamedLateFieldNI(); return A.Container$(_null, _null, B.Clip_0, _null, _null, new A.BoxDecoration(A.Color$fromARGB(B.JSInt_methods.round$0(255 * (t4._blink_controller$_isVisible ? 1 : 0)), t3.get$value(t3) >>> 16 & 255, t3.get$value(t3) >>> 8 & 255, t3.get$value(t3) & 255), _null, _null, t1._widget.caretStyle.borderRadius, _null, _null, B.BoxShape_0), _null, _null, B.ValueKey_document_caret, _null, _null, _null, _null, t2.width); }, - $signature: 3398 + $signature: 3404 }; - A.__CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin.prototype = { + A._CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin.prototype = { dispose$0() { var _this = this, t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; @@ -596305,7 +597141,7 @@ _this.super$State$initState(); _this._widget.focusNode.addListener$1(0, _this.get$_document_focus_and_selection_policies$_onFocusChange()); _this._wasFocused = _this._widget.focusNode.get$hasFocus(); - _this._widget.selection.addListener$1(0, _this.get$_document_focus_and_selection_policies$_onSelectionChange()); + _this._widget.selection.addListener$1(0, _this.get$_onSelectionChange()); t1 = _this._widget.selection; if (t1._pausable_value_notifier$_isPaused) { t1 = t1.__PausableValueNotifier__currentValueDuringPause_A; @@ -596326,16 +597162,16 @@ } t1 = oldWidget.selection; if (_this._widget.selection !== t1) { - t2 = _this.get$_document_focus_and_selection_policies$_onSelectionChange(); + t2 = _this.get$_onSelectionChange(); t1.removeListener$1(0, t2); _this._widget.selection.addListener$1(0, t2); - _this._document_focus_and_selection_policies$_onSelectionChange$0(); + _this._onSelectionChange$0(); } }, dispose$0() { var _this = this; _this._widget.focusNode.removeListener$1(0, _this.get$_document_focus_and_selection_policies$_onFocusChange()); - _this._widget.selection.removeListener$1(0, _this.get$_document_focus_and_selection_policies$_onSelectionChange()); + _this._widget.selection.removeListener$1(0, _this.get$_onSelectionChange()); _this.super$State$dispose(); }, _document_focus_and_selection_policies$_onFocusChange$0() { @@ -596395,7 +597231,7 @@ } _this._wasFocused = _this._widget.focusNode.get$hasFocus(); }, - _document_focus_and_selection_policies$_onSelectionChange$0() { + _onSelectionChange$0() { var t1 = this._widget.selection; if (t1._pausable_value_notifier$_isPaused) { t1 = t1.__PausableValueNotifier__currentValueDuringPause_A; @@ -596423,7 +597259,7 @@ return; t1._document_focus_and_selection_policies$_onFocusChange$0(); }, - $signature: 12 + $signature: 11 }; A.DocumentMouseInteractor.prototype = { createState$0() { @@ -596629,7 +597465,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); } else t1 = A.ValueNotifier.prototype.get$value.call(t1, t1); - t2.execute$1(A._setArrayType([new A.ChangeSelectionRequest(t1.copyWith$1$extent(docPosition), B.SelectionChangeType_4, "userInteraction")], type$.JSArray_EditRequest)); + t2.execute$1(A._setArrayType([new A.ChangeSelectionRequest(t1.copyWith$1$extent(docPosition), B.SelectionChangeType_4, "userInteraction"), B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); } else { _this._document_gestures_mouse$_selectionType = B.SelectionType_0; _this._document_gestures_mouse$_selectPosition$1(docPosition); @@ -596733,7 +597569,7 @@ }, _document_gestures_mouse$_selectPosition$1(position) { $.$get$editorGesturesLog().log$4(B.Level_FINE_500, "Setting document selection to " + position.toString$0(0), null, null); - this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(A.DocumentSelection$collapsed(position), B.SelectionChangeType_0, "userInteraction")], type$.JSArray_EditRequest)); + this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(A.DocumentSelection$collapsed(position), B.SelectionChangeType_0, "userInteraction"), B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); }, _document_gestures_mouse$_onPanStart$1(details) { var _this = this, _null = null, @@ -596818,9 +597654,14 @@ t1 = $.$get$editorGesturesLog(); t1.log$4(B.Level_INFO_800, "Selecting region with selection mode: " + selectionType.toString$0(0), _null, _null); selection = documentLayout.getDocumentSelectionInRegion$2(baseOffsetInDocument, extentOffsetInDocument); - t2 = selection == null; - basePosition = t2 ? _null : selection.base; - extentPosition = t2 ? _null : selection.extent; + t2 = _this._dragSelectionBase; + if (t2 == null) { + t2 = selection == null ? _null : selection.base; + _this._dragSelectionBase = t2; + basePosition = t2; + } else + basePosition = t2; + extentPosition = selection == null ? _null : selection.extent; t1.log$4(B.Level_FINE_500, " - base: " + A.S(basePosition) + ", extent: " + A.S(extentPosition), _null, _null); if (basePosition == null || extentPosition == null) { _this._document_gestures_mouse$_clearSelection$0(); @@ -596886,7 +597727,7 @@ }, _document_gestures_mouse$_clearSelection$0() { $.$get$editorGesturesLog().log$4(B.Level_FINE_500, "Clearing document selection", null, null); - this._widget.editor.execute$1(A._setArrayType([B.C_ClearSelectionRequest], type$.JSArray_EditRequest)); + this._widget.editor.execute$1(A._setArrayType([B.C_ClearSelectionRequest, B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); }, _onMouseMove$1($event) { this._widget.autoScroller.goIdle$0(); @@ -596938,7 +597779,7 @@ if (globalExtentRect != null) t1._widget.autoScroller.ensureGlobalRectIsVisible$1(globalExtentRect); }, - $signature: 12 + $signature: 11 }; A._DocumentMouseInteractorState__onPanUpdate_closure.prototype = { call$0() { @@ -596957,7 +597798,7 @@ A._DocumentMouseInteractorState__onDragEnd_closure.prototype = { call$0() { var t1 = this.$this; - t1._dragEndGlobal = t1._dragStartGlobal = null; + t1._dragEndGlobal = t1._dragSelectionBase = t1._dragStartGlobal = null; t1._expandSelectionDuringDrag = false; t1._wordSelectionDownstream = t1._wordSelectionUpstream = null; }, @@ -596968,14 +597809,14 @@ this.$this._widget.autoScroller.goIdle$0(); return null; }, - $signature: 190 + $signature: 165 }; A._DocumentMouseInteractorState_build_closure0.prototype = { call$1($event) { this.$this._widget.autoScroller.goIdle$0(); return null; }, - $signature: 563 + $signature: 599 }; A._DocumentMouseInteractorState__buildCursorStyle_closure.prototype = { call$3(context, value, child) { @@ -596983,7 +597824,7 @@ t1 = this.$this; return A.MouseRegion$(child, t1._mouseCursor._change_notifier$_value, _null, _null, _null, new A._DocumentMouseInteractorState__buildCursorStyle__closure(t1), _null); }, - $signature: 3400 + $signature: 3406 }; A._DocumentMouseInteractorState__buildCursorStyle__closure.prototype = { call$1(_) { @@ -596995,7 +597836,7 @@ call$0() { return A.TapSequenceGestureRecognizer$(); }, - $signature: 261 + $signature: 254 }; A._DocumentMouseInteractorState__buildGestureInput_closure0.prototype = { call$1(recognizer) { @@ -597007,13 +597848,13 @@ recognizer.onTripleTap = t1.get$_document_gestures_mouse$_onTripleTap(); recognizer.gestureSettings = this.gestureSettings; }, - $signature: 264 + $signature: 267 }; A._DocumentMouseInteractorState__buildGestureInput_closure1.prototype = { call$0() { return A.PanGestureRecognizer$(null, null); }, - $signature: 242 + $signature: 262 }; A._DocumentMouseInteractorState__buildGestureInput_closure2.prototype = { call$1(recognizer) { @@ -597024,7 +597865,7 @@ recognizer.onCancel = t1.get$_document_gestures_mouse$_onPanCancel(); recognizer.gestureSettings = this.gestureSettings; }, - $signature: 243 + $signature: 258 }; A.__DocumentMouseInteractorState_State_SingleTickerProviderStateMixin.prototype = { dispose$0() { @@ -597060,7 +597901,7 @@ this._box_0.root = element; return true; }, - $signature: 126 + $signature: 128 }; A.SuperEditorAndroidControlsController.prototype = { dispose$0() { @@ -597372,7 +598213,7 @@ t1 = position.nodeId; t2 = new A.DocumentPosition(t1, B.UpstreamDownstreamNodePosition_TextAffinity_0); t1 = new A.DocumentPosition(t1, B.UpstreamDownstreamNodePosition_TextAffinity_1); - this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(new A.DocumentSelection(t2, t1, t2, t1), B.SelectionChangeType_0, "userInteraction")], type$.JSArray_EditRequest)); + this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(new A.DocumentSelection(t2, t1, t2, t1), B.SelectionChangeType_0, "userInteraction"), B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); return true; }, _document_gestures_touch_android$_onTripleTapDown$1(details) { @@ -597547,7 +598388,7 @@ } else t1 = A.ValueNotifier.prototype.get$value.call(t1, t1); if (!newSelection.$eq(0, t1)) { - _this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(newSelection, B.SelectionChangeType_4, "userInteraction")], type$.JSArray_EditRequest)); + _this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(newSelection, B.SelectionChangeType_4, "userInteraction"), B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); A.HapticFeedback_lightImpact(); } t1 = _this._widget.getDocumentLayout$0(); @@ -597648,7 +598489,7 @@ _document_gestures_touch_android$_selectWordAt$2$docLayout$docPosition(docLayout, docPosition) { var newSelection = A.getWordSelection(docLayout, docPosition); if (newSelection != null) { - this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(newSelection, B.SelectionChangeType_4, "userInteraction")], type$.JSArray_EditRequest)); + this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(newSelection, B.SelectionChangeType_4, "userInteraction"), B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); return true; } else return false; @@ -597656,18 +598497,18 @@ _document_gestures_touch_android$_selectParagraphAt$2$docLayout$docPosition(docLayout, docPosition) { var newSelection = A.getParagraphSelection(docLayout, docPosition); if (newSelection != null) { - this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(newSelection, B.SelectionChangeType_4, "userInteraction")], type$.JSArray_EditRequest)); + this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(newSelection, B.SelectionChangeType_4, "userInteraction"), B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); return true; } else return false; }, _document_gestures_touch_android$_selectPosition$1(position) { $.$get$editorGesturesLog().log$4(B.Level_FINE_500, "Setting document selection to " + position.toString$0(0), null, null); - this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(A.DocumentSelection$collapsed(position), B.SelectionChangeType_0, "userInteraction")], type$.JSArray_EditRequest)); + this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(A.DocumentSelection$collapsed(position), B.SelectionChangeType_0, "userInteraction"), B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); }, _document_gestures_touch_android$_clearSelection$0() { $.$get$editorGesturesLog().log$4(B.Level_FINE_500, "Clearing document selection", null, null); - this._widget.editor.execute$1(A._setArrayType([B.C_ClearSelectionRequest], type$.JSArray_EditRequest)); + this._widget.editor.execute$1(A._setArrayType([B.C_ClearSelectionRequest, B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); }, build$1(context) { var _null = null, @@ -597682,13 +598523,13 @@ call$0() { return this.$this.get$scrollPosition(); }, - $signature: 377 + $signature: 422 }; A._AndroidDocumentTouchInteractorState_initState_closure0.prototype = { call$0() { return this.$this.get$viewportBox(); }, - $signature: 396 + $signature: 425 }; A._AndroidDocumentTouchInteractorState_didChangeDependencies_closure.prototype = { call$1(_) { @@ -597698,7 +598539,7 @@ t1._document_gestures_touch_android$_activeScrollPosition = newScrollPosition; return null; }, - $signature: 12 + $signature: 11 }; A._AndroidDocumentTouchInteractorState_didChangeMetrics_closure.prototype = { call$1(_) { @@ -597706,7 +598547,7 @@ t1._document_gestures_touch_android$_ensureSelectionExtentIsVisible$0(); t1.setState$1(new A._AndroidDocumentTouchInteractorState_didChangeMetrics__closure()); }, - $signature: 12 + $signature: 11 }; A._AndroidDocumentTouchInteractorState_didChangeMetrics__closure.prototype = { call$0() { @@ -597718,19 +598559,19 @@ var t1 = this.$this; return t1.get$scrollPosition().isScrollingNotifier.addListener$1(0, t1.get$_document_gestures_touch_android$_onScrollActivityChange()); }, - $signature: 12 + $signature: 11 }; A._AndroidDocumentTouchInteractorState__onScrollActivityChange_closure.prototype = { call$1(_) { this.$this._document_gestures_touch_android$_isScrolling = false; }, - $signature: 12 + $signature: 11 }; A._AndroidDocumentTouchInteractorState__onDocumentChange_closure.prototype = { call$1(_) { this.$this._document_gestures_touch_android$_ensureSelectionExtentIsVisible$0(); }, - $signature: 12 + $signature: 11 }; A._AndroidDocumentTouchInteractorState__onPanStart_closure.prototype = { call$0() { @@ -597742,7 +598583,7 @@ call$0() { return A.TapSequenceGestureRecognizer$(); }, - $signature: 261 + $signature: 254 }; A._AndroidDocumentTouchInteractorState_build_closure0.prototype = { call$1(recognizer) { @@ -597753,13 +598594,13 @@ recognizer.onTripleTapDown = t1.get$_document_gestures_touch_android$_onTripleTapDown(); recognizer.gestureSettings = this.gestureSettings; }, - $signature: 264 + $signature: 267 }; A._AndroidDocumentTouchInteractorState_build_closure1.prototype = { call$0() { return A.VerticalDragGestureRecognizer$(null, null); }, - $signature: 295 + $signature: 299 }; A._AndroidDocumentTouchInteractorState_build_closure2.prototype = { call$1(recognizer) { @@ -597772,7 +598613,7 @@ recognizer.onCancel = t1.get$_document_gestures_touch_android$_onPanCancel(); recognizer.gestureSettings = this.gestureSettings; }, - $signature: 296 + $signature: 305 }; A.SuperEditorAndroidControlsOverlayManager.prototype = { createState$0() { @@ -597982,11 +598823,15 @@ return A.OverlayPortal$(t1, this._document_gestures_touch_android$_overlayController, this.get$_document_gestures_touch_android$_buildOverlay()); }, _document_gestures_touch_android$_buildOverlay$1(context) { - var _this = this, - t1 = A._setArrayType([_this._document_gestures_touch_android$_buildMagnifierFocalPoint$0(), _this._buildDebugSelectionFocalPoint$0(), _this._document_gestures_touch_android$_buildMagnifier$0(), _this._document_gestures_touch_android$_buildCollapsedHandle$0()], type$.JSArray_Widget); - B.JSArray_methods.addAll$1(t1, _this._document_gestures_touch_android$_buildExpandedHandles$0()); - t1.push(_this._document_gestures_touch_android$_buildToolbar$0()); - return new A.Stack(B.AlignmentDirectional_m1_m1, null, B.StackFit_0, B.Clip_1, t1, null); + var _this = this, _null = null, + t1 = _this._widget.tapRegionGroupId, + t2 = A._setArrayType([_this._document_gestures_touch_android$_buildMagnifierFocalPoint$0()], type$.JSArray_Widget); + _this._widget.toString; + t2.push(_this._document_gestures_touch_android$_buildMagnifier$0()); + t2.push(_this._document_gestures_touch_android$_buildCollapsedHandle$0()); + B.JSArray_methods.addAll$1(t2, _this._document_gestures_touch_android$_buildExpandedHandles$0()); + t2.push(_this._document_gestures_touch_android$_buildToolbar$0()); + return A.TapRegion$(new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t2, _null), _null, true, t1, _null, _null, _null); }, _document_gestures_touch_android$_buildCollapsedHandle$0() { return new A.ValueListenableBuilder(this._document_gestures_touch_android$_controlsController._document_gestures_touch_android$_shouldShowCollapsedHandle, new A.SuperEditorAndroidControlsOverlayManagerState__buildCollapsedHandle_closure(this), null, null, type$.ValueListenableBuilder_bool); @@ -598031,23 +598876,29 @@ t1 = A.Follower$withOffset(A.FractionalTranslation$(new A.AndroidMagnifyingGlass(1.5, B.Offset_0_m58, B.ValueKey_document_magnifier), true, B.Offset_0), B.Alignment_m1_m1, B.Alignment_0_0, t1, B.Offset_0_m150); return new A.ValueListenableBuilder(t2, new A.SuperEditorAndroidControlsOverlayManagerState__buildMagnifier_closure(), t1, null, type$.ValueListenableBuilder_bool); }, - _buildDebugSelectionFocalPoint$0() { - return new A.ValueListenableBuilder(this._dragHandleSelectionGlobalFocalPoint, new A.SuperEditorAndroidControlsOverlayManagerState__buildDebugSelectionFocalPoint_closure(), null, null, type$.ValueListenableBuilder_nullable_Offset); - }, _toolbarBuilder$3(arg0, arg1, arg2) { return this.get$_toolbarBuilder().call$3(arg0, arg1, arg2); } }; A.SuperEditorAndroidControlsOverlayManagerState__buildCollapsedHandle_closure.prototype = { call$3(context, shouldShow, child) { - var _null = null, + var selection, t3, t4, _null = null, t1 = this.$this, - t2 = t1._document_gestures_touch_android$_controlsController.collapsedHandleFocalPoint, - t3 = shouldShow ? 1 : 0, - t4 = A.Theme_of(context); + t2 = t1._widget.selection; + if (t2._pausable_value_notifier$_isPaused) { + t2 = t2.__PausableValueNotifier__currentValueDuringPause_A; + t2 === $ && A.throwUnnamedLateFieldNI(); + selection = t2; + } else + selection = A.ValueNotifier.prototype.get$value.call(t2, t2); + if (selection == null || !selection.get$isCollapsed(selection)) + return B.SizedBox_null_null_null_null; + t2 = t1._document_gestures_touch_android$_controlsController.collapsedHandleFocalPoint; + t3 = shouldShow ? 1 : 0; + t4 = A.Theme_of(context); return A.Follower$withOffset(A.AnimatedOpacity$(A.IgnorePointer$(A.GestureDetector$(_null, new A.AndroidSelectionHandle(B.HandleType_0, t4.primaryColor, B.ValueKey_document_android_caret_handle), B.DragStartBehavior_0, false, _null, _null, _null, _null, _null, _null, _null, _null, t1.get$_onHandlePanCancel(), _null, t1.get$_onHandlePanEnd(), new A.SuperEditorAndroidControlsOverlayManagerState__buildCollapsedHandle__closure(t1), t1.get$_onHandlePanUpdate(), _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.SuperEditorAndroidControlsOverlayManagerState__buildCollapsedHandle__closure0(), _null, _null, _null, _null, false, B.Offset_O5r), !shouldShow, _null), B.C__Linear, B.Duration_150000, t3), B.Alignment_0_m1, B.Alignment_0_1, t2, B.Offset_0_0); }, - $signature: 3406 + $signature: 585 }; A.SuperEditorAndroidControlsOverlayManagerState__buildCollapsedHandle__closure0.prototype = { call$1(_) { @@ -598058,7 +598909,7 @@ call$1(details) { return this.$this._onHandlePanStart$2(details, B.HandleType_0); }, - $signature: 73 + $signature: 72 }; A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles_closure.prototype = { call$3(context, shouldShow, child) { @@ -598070,7 +598921,7 @@ t3 = A.Theme_of(context); return A.Follower$withOffset(A.GestureDetector$(_null, new A.AndroidSelectionHandle(B.HandleType_1, t3.primaryColor, B.ValueKey_document_upstream_handle), B.DragStartBehavior_0, false, _null, _null, _null, _null, _null, _null, _null, _null, t1.get$_onHandlePanCancel(), _null, t1.get$_onHandlePanEnd(), new A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles__closure1(t1), t1.get$_onHandlePanUpdate(), _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles__closure2(), _null, _null, _null, _null, false, B.Offset_O5r), B.Alignment_1_m1, B.Alignment_m1_1, t2, B.Offset_0_0); }, - $signature: 890 + $signature: 585 }; A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles__closure2.prototype = { call$1(_) { @@ -598081,7 +598932,7 @@ call$1(details) { return this.$this._onHandlePanStart$2(details, B.HandleType_1); }, - $signature: 73 + $signature: 72 }; A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles_closure0.prototype = { call$3(context, shouldShow, child) { @@ -598093,7 +598944,7 @@ t3 = A.Theme_of(context); return A.Follower$withOffset(A.GestureDetector$(_null, new A.AndroidSelectionHandle(B.HandleType_2, t3.primaryColor, B.ValueKey_document_downstream_handle), B.DragStartBehavior_0, false, _null, _null, _null, _null, _null, _null, _null, _null, t1.get$_onHandlePanCancel(), _null, t1.get$_onHandlePanEnd(), new A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles__closure(t1), t1.get$_onHandlePanUpdate(), _null, _null, _null, _null, _null, _null, _null, _null, _null, new A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles__closure0(), _null, _null, _null, _null, false, B.Offset_O5r), B.Alignment_m1_m1, B.Alignment_1_1, t2, B.Offset_0_0); }, - $signature: 890 + $signature: 585 }; A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles__closure0.prototype = { call$1(_) { @@ -598104,7 +598955,7 @@ call$1(details) { return this.$this._onHandlePanStart$2(details, B.HandleType_2); }, - $signature: 73 + $signature: 72 }; A.SuperEditorAndroidControlsOverlayManagerState__buildToolbar_closure.prototype = { call$3(context, shouldShow, child) { @@ -598116,7 +598967,7 @@ t1 = B.SizedBox_null_null_null_null; return t1; }, - $signature: 472 + $signature: 588 }; A.SuperEditorAndroidControlsOverlayManagerState__buildMagnifierFocalPoint_closure.prototype = { call$3(context, focalPoint, child) { @@ -598127,7 +598978,7 @@ t2 = focalPoint._dy; return A.Positioned$(_null, A.Leader$(_null, this.$this._document_gestures_touch_android$_controlsController.magnifierFocalPoint), 1, _null, t1, _null, t2, 1); }, - $signature: 447 + $signature: 894 }; A.SuperEditorAndroidControlsOverlayManagerState__buildMagnifier_closure.prototype = { call$3(context, shouldShow, child) { @@ -598139,18 +598990,7 @@ t1 = B.SizedBox_null_null_null_null; return t1; }, - $signature: 472 - }; - A.SuperEditorAndroidControlsOverlayManagerState__buildDebugSelectionFocalPoint_closure.prototype = { - call$3(context, focalPoint, child) { - var t1, t2, _null = null; - if (focalPoint == null) - return B.SizedBox_null_null_null_null; - t1 = focalPoint._dx; - t2 = focalPoint._dy; - return A.Positioned$(_null, A.FractionalTranslation$(A.Container$(_null, _null, B.Clip_0, B.MaterialColor_Map_JNusp_4294198070, _null, _null, _null, 5, _null, _null, _null, _null, _null, 5), true, B.Offset_0), _null, _null, t1, _null, t2, _null); - }, - $signature: 447 + $signature: 588 }; A.SelectionBound.prototype = { _enumToString$0() { @@ -598192,7 +599032,7 @@ this._box_0.root = element; return true; }, - $signature: 126 + $signature: 128 }; A.SuperEditorIosControlsController.prototype = { dispose$0() { @@ -598536,7 +599376,7 @@ t1 = position.nodeId; t2 = new A.DocumentPosition(t1, B.UpstreamDownstreamNodePosition_TextAffinity_0); t1 = new A.DocumentPosition(t1, B.UpstreamDownstreamNodePosition_TextAffinity_1); - this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(new A.DocumentSelection(t2, t1, t2, t1), B.SelectionChangeType_0, "userInteraction")], type$.JSArray_EditRequest)); + this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(new A.DocumentSelection(t2, t1, t2, t1), B.SelectionChangeType_0, "userInteraction"), B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); return true; }, _onTripleTapUp$1(details) { @@ -598730,7 +599570,7 @@ return; t1 = _this._dragHandleType; if (t1 === B.HandleType_0) - _this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(A.DocumentSelection$collapsed(docDragPosition), B.SelectionChangeType_0, _s15_)], type$.JSArray_EditRequest)); + _this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(A.DocumentSelection$collapsed(docDragPosition), B.SelectionChangeType_0, _s15_), B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); else if (t1 === B.HandleType_1) { t1 = _this._widget; t2 = t1.editor; @@ -598740,7 +599580,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); } else t1 = A.ValueNotifier.prototype.get$value.call(t1, t1); - t2.execute$1(A._setArrayType([new A.ChangeSelectionRequest(t1.copyWith$1$base(docDragPosition), B.SelectionChangeType_4, _s15_)], type$.JSArray_EditRequest)); + t2.execute$1(A._setArrayType([new A.ChangeSelectionRequest(t1.copyWith$1$base(docDragPosition), B.SelectionChangeType_4, _s15_), B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); } else if (t1 === B.HandleType_2) { t1 = _this._widget; t2 = t1.editor; @@ -598750,7 +599590,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); } else t1 = A.ValueNotifier.prototype.get$value.call(t1, t1); - t2.execute$1(A._setArrayType([new A.ChangeSelectionRequest(t1.copyWith$1$extent(docDragPosition), B.SelectionChangeType_4, _s15_)], type$.JSArray_EditRequest)); + t2.execute$1(A._setArrayType([new A.ChangeSelectionRequest(t1.copyWith$1$extent(docDragPosition), B.SelectionChangeType_4, _s15_), B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); } }, _document_gestures_touch_ios$_onPanEnd$1(details) { @@ -598879,7 +599719,7 @@ t2 = _this._widget.editor; t3 = basePosition._readLocal$0(); t4 = extentPosition._readLocal$0(); - t2.execute$1(A._setArrayType([new A.ChangeSelectionRequest(new A.DocumentSelection(t3, t4, t3, t4), changeType._readLocal$0(), "userInteraction")], type$.JSArray_EditRequest)); + t2.execute$1(A._setArrayType([new A.ChangeSelectionRequest(new A.DocumentSelection(t3, t4, t3, t4), changeType._readLocal$0(), "userInteraction"), B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); t4 = _this._widget.selection; if (t4._pausable_value_notifier$_isPaused) { t2 = t4.__PausableValueNotifier__currentValueDuringPause_A; @@ -598897,12 +599737,12 @@ return false; }, _document_gestures_touch_ios$_select$1(newSelection) { - this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(newSelection, B.SelectionChangeType_4, "userInteraction")], type$.JSArray_EditRequest)); + this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(newSelection, B.SelectionChangeType_4, "userInteraction"), B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); }, _selectParagraphAt$2$docLayout$docPosition(docLayout, docPosition) { var newSelection = A.getParagraphSelection(docLayout, docPosition); if (newSelection != null) { - this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(newSelection, B.SelectionChangeType_4, "userInteraction")], type$.JSArray_EditRequest)); + this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(newSelection, B.SelectionChangeType_4, "userInteraction"), B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); return true; } else return false; @@ -598942,7 +599782,7 @@ }, _selectPosition$1(position) { $.$get$editorGesturesLog().log$4(B.Level_FINE_500, "Setting document selection to " + position.toString$0(0), null, null); - this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(A.DocumentSelection$collapsed(position), B.SelectionChangeType_0, "userInteraction")], type$.JSArray_EditRequest)); + this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(A.DocumentSelection$collapsed(position), B.SelectionChangeType_0, "userInteraction"), B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); }, _startDragScrolling$1(details) { var _this = this; @@ -598971,13 +599811,13 @@ call$0() { return this.$this.get$scrollPosition(); }, - $signature: 377 + $signature: 422 }; A._IosDocumentTouchInteractorState_initState_closure0.prototype = { call$0() { return this.$this.get$viewportBox(); }, - $signature: 396 + $signature: 425 }; A._IosDocumentTouchInteractorState_didChangeDependencies_closure.prototype = { call$1(_) { @@ -598987,7 +599827,7 @@ return; t1.setState$1(new A._IosDocumentTouchInteractorState_didChangeDependencies__closure(t1, newScrollPosition)); }, - $signature: 12 + $signature: 11 }; A._IosDocumentTouchInteractorState_didChangeDependencies__closure.prototype = { call$0() { @@ -598999,26 +599839,26 @@ call$1(_) { this.$this._document_gestures_touch_ios$_ensureSelectionExtentIsVisible$0(); }, - $signature: 12 + $signature: 11 }; A._IosDocumentTouchInteractorState__configureScrollController_closure.prototype = { call$1(_) { var t1 = this.$this; return t1.get$scrollPosition().isScrollingNotifier.addListener$1(0, t1.get$_onScrollActivityChange()); }, - $signature: 12 + $signature: 11 }; A._IosDocumentTouchInteractorState__onScrollActivityChange_closure.prototype = { call$1(_) { this.$this._isScrolling = false; }, - $signature: 12 + $signature: 11 }; A._IosDocumentTouchInteractorState__onDocumentChange_closure.prototype = { call$1(_) { this.$this._document_gestures_touch_ios$_ensureSelectionExtentIsVisible$0(); }, - $signature: 12 + $signature: 11 }; A._IosDocumentTouchInteractorState__startDragScrolling_closure.prototype = { call$0() { @@ -599030,7 +599870,7 @@ call$0() { return A.TapSequenceGestureRecognizer$(); }, - $signature: 261 + $signature: 254 }; A._IosDocumentTouchInteractorState_build_closure0.prototype = { call$1(recognizer) { @@ -599041,13 +599881,13 @@ recognizer.onTripleTapUp = t1.get$_onTripleTapUp(); recognizer.gestureSettings = this.gestureSettings; }, - $signature: 264 + $signature: 267 }; A._IosDocumentTouchInteractorState_build_closure1.prototype = { call$0() { return A.VerticalDragGestureRecognizer$(null, null); }, - $signature: 295 + $signature: 299 }; A._IosDocumentTouchInteractorState_build_closure2.prototype = { call$1(instance) { @@ -599061,13 +599901,13 @@ instance.onCancel = t1.get$_document_gestures_touch_ios$_onPanCancel(); instance.gestureSettings = this.gestureSettings; }, - $signature: 296 + $signature: 305 }; A._IosDocumentTouchInteractorState_build_closure3.prototype = { call$0() { return A.HorizontalDragGestureRecognizer$(null, null); }, - $signature: 531 + $signature: 617 }; A._IosDocumentTouchInteractorState_build_closure4.prototype = { call$1(instance) { @@ -599081,7 +599921,7 @@ instance.onCancel = t1.get$_document_gestures_touch_ios$_onPanCancel(); instance.gestureSettings = this.gestureSettings; }, - $signature: 533 + $signature: 607 }; A._IosDocumentTouchInteractorState__buildMagnifierFocalPoint_closure.prototype = { call$3(context, magnifierOffset, child) { @@ -599092,7 +599932,7 @@ t2 = magnifierOffset._dy; return A.Positioned$(_null, A.Leader$(B.SizedBox_1_1_null_null, this.$this._controlsController.magnifierFocalPoint), _null, _null, t1, _null, t2, _null); }, - $signature: 447 + $signature: 894 }; A.DragMode.prototype = { _enumToString$0() { @@ -599118,12 +599958,14 @@ return A.OverlayPortal$(t1, this._overlayPortalController, this.get$_document_gestures_touch_ios$_buildToolbar()); }, _document_gestures_touch_ios$_buildToolbar$1(context) { - var t3, - t1 = this._controlsController, - t2 = t1._shouldShowToolbar; - t1 = t1.toolbarFocalPoint; - t3 = this._widget.defaultToolbarBuilder; - return new A.IosFloatingToolbarOverlay(t2, t1, null, t3, false, null); + var _null = null, + t1 = this._widget, + t2 = t1.tapRegionGroupId, + t3 = this._controlsController, + t4 = t3._shouldShowToolbar; + t3 = t3.toolbarFocalPoint; + t1 = t1.defaultToolbarBuilder; + return A.TapRegion$(new A.IosFloatingToolbarOverlay(t4, t3, _null, t1, false, _null), _null, true, t2, _null, _null, _null); } }; A.SuperEditorIosMagnifierOverlayManager.prototype = { @@ -599161,7 +600003,7 @@ child.toString; return child; }, - $signature: 472 + $signature: 588 }; A.EditorFloatingCursor.prototype = { createState$0() { @@ -599344,7 +600186,7 @@ } nearestDocumentPosition = _this._widget.getDocumentLayout$0().getDocumentPositionNearestToOffset$1(_this._viewportOffsetToDocumentOffset$1(floatingCursorRectInViewport.get$center())); t1.log$4(B.Level_FINER_400, " - selecting nearest position: " + nearestDocumentPosition.toString$0(0), _null, _null); - _this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(A.DocumentSelection$collapsed(nearestDocumentPosition), B.SelectionChangeType_0, "userInteraction")], type$.JSArray_EditRequest)); + _this._widget.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(A.DocumentSelection$collapsed(nearestDocumentPosition), B.SelectionChangeType_0, "userInteraction"), B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); }, _onFloatingCursorStop$0() { var t1, _this = this; @@ -599373,7 +600215,7 @@ return B.SizedBox_null_null_null_null; return A.Positioned$fromRect(A.IgnorePointer$(new A.ColoredBox(A.Color$fromARGB(191, 244, 67, 54), null, null), true, null), floatingCursorRect); }, - $signature: 893 + $signature: 895 }; A.__IosDocumentTouchInteractorState_State_WidgetsBindingObserver.prototype = {}; A.__IosDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin.prototype = { @@ -600021,7 +600863,7 @@ call$1(e) { return e instanceof A.TextEditingDeltaNonTextUpdate; }, - $signature: 3412 + $signature: 3417 }; A._DocumentImeInputClient_TextInputConnectionDecorator_TextInputClient.prototype = {}; A._DocumentImeInputClient_TextInputConnectionDecorator_TextInputClient_DeltaTextInputClient.prototype = {}; @@ -600222,6 +601064,8 @@ t1.log$4(B.Level_INFO_800, "[" + A.getRuntimeTypeOfDartObject(t2).toString$0(0) + string$.x5dx20__cl, null, null); _this._widget.editor.execute$1(A._setArrayType([B.C_ClearSelectionRequest], type$.JSArray_EditRequest)); } + if (!_this._widget.focusNode.get$hasFocus()) + _this._widget.editor.execute$1(A._setArrayType([B.C_ClearComposingRegionRequest], type$.JSArray_EditRequest)); }, _document_ime_interaction_policies$_onSelectionChange$0() { var t2, _this = this, @@ -600321,7 +601165,7 @@ call$1(_) { this.$this._onConnectionChange$0(); }, - $signature: 12 + $signature: 11 }; A._DocumentSelectionOpenAndCloseImePolicyState__onSelectionChange_closure.prototype = { call$0() { @@ -600690,7 +601534,7 @@ call$1(timeStamp) { this.$this._widget.toString; }, - $signature: 12 + $signature: 11 }; A.KeyboardEditingToolbar.prototype = { createState$0() { @@ -600783,13 +601627,13 @@ t3 = t3 ? B.Color_4278190080 : B.Color_4294967295; return new A.Padding(new A.EdgeInsets(0, 0, 0, keyboardHeight), new A.Align(B.Alignment_m1_1, _null, _null, new A.Theme(t2, A.IconTheme$(new A.Builder(new A._KeyboardEditingToolbarState__buildToolbarOverlay__closure(t1), _null), new A.IconThemeData(_null, _null, _null, _null, _null, t3, _null, _null), _null), _null), _null), _null); }, - $signature: 3413 + $signature: 3418 }; A._KeyboardEditingToolbarState__buildToolbarOverlay__closure.prototype = { call$1(themedContext) { return this.$this._mobile_toolbar$_buildToolbar$1(themedContext); }, - $signature: 46 + $signature: 44 }; A._KeyboardEditingToolbarState__buildToolbar_closure.prototype = { call$2(context, constraints) { @@ -600802,7 +601646,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return A.Row$(A._setArrayType([t2, t3, A.IconButton$(_null, _null, _null, _null, B.Icon_Iik, _null, t1.get$closeKeyboard(), _null, _null, _null, _null, _null)], type$.JSArray_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_1, _null); }, - $signature: 525 + $signature: 492 }; A._KeyboardEditingToolbarState__buildToolbar__closure.prototype = { call$2(context, _) { @@ -600867,7 +601711,7 @@ t9 = A.IconButton$(_null, _null, _null, _null, B.Icon_l3B, _null, t2 ? t1.___KeyboardEditingToolbarState__toolbarOps_A.get$convertToBlockquote() : _null, _null, _null, _null, _null, _null); return A.Row$(A._setArrayType([t3, t4, t6, t7, t5, t8, t10, t11, t12, t9, A.IconButton$(_null, _null, _null, _null, B.Icon_S8r, _null, isSingleNodeSelected && selectedNode instanceof A.ParagraphNode && selectedNode._text$_text.text.length === 0 ? t1.___KeyboardEditingToolbarState__toolbarOps_A.get$convertToHr() : _null, _null, _null, _null, _null, _null)], type$.JSArray_Widget), B.CrossAxisAlignment_2, B.MainAxisAlignment_0, B.MainAxisSize_0, _null); }, - $signature: 3414 + $signature: 3419 }; A.KeyboardHeightBuilder.prototype = { createState$0() { @@ -601294,13 +602138,13 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.performAction$1(action); }, - $signature: 281 + $signature: 290 }; A.SuperEditorImeInteractorState__reportVisualInformationToIme_closure.prototype = { call$1(_) { return this.$this._supereditor_ime_interactor$_reportVisualInformationToIme$0(); }, - $signature: 12 + $signature: 11 }; A.SuperEditorImeInteractorState_build_closure.prototype = { call$0() { @@ -601308,7 +602152,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1; }, - $signature: 894 + $signature: 896 }; A.SuperEditorImeInteractorState_build_closure0.prototype = { call$0() { @@ -601316,7 +602160,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1; }, - $signature: 894 + $signature: 896 }; A.SuperEditorImePolicies.prototype = { $eq(_, other) { @@ -601460,31 +602304,31 @@ if (t2 != null) t2.attach$1(t1.get$_document_scrollable$_scrollPosition()); }, - $signature: 12 + $signature: 11 }; A._DocumentScrollableState_initState__closure.prototype = { call$0() { return this.$this.get$_document_scrollable$_viewport(); }, - $signature: 396 + $signature: 425 }; A._DocumentScrollableState_initState__closure0.prototype = { call$0() { return this.$this.get$_document_scrollable$_scrollPosition(); }, - $signature: 377 + $signature: 422 }; A._DocumentScrollableState_didUpdateWidget_closure.prototype = { call$0() { return this.$this.get$_document_scrollable$_viewport(); }, - $signature: 396 + $signature: 425 }; A._DocumentScrollableState_didUpdateWidget_closure0.prototype = { call$0() { return this.$this.get$_document_scrollable$_scrollPosition(); }, - $signature: 377 + $signature: 422 }; A.AutoScrollController.prototype = { dispose$0() { @@ -602381,19 +603225,19 @@ t1.toString; return t1; }, - $signature: 3417 + $signature: 3422 }; A._SingleColumnDocumentLayoutState__buildDocComponents_closure.prototype = { call$2(context, newComponentViewModel) { return new A._Component(this.$this._widget.componentBuilders, this.componentKey, newComponentViewModel, null); }, - $signature: 3418 + $signature: 3423 }; A._SingleColumnDocumentLayoutState__buildDocComponents_closure0.prototype = { call$2(key, value) { $.$get$editorLayoutLog().log$4(B.Level_FINER_400, " - " + key + ": " + value.toString$0(0), null, null); }, - $signature: 3419 + $signature: 3424 }; A._PresenterComponentBuilder.prototype = { createState$0() { @@ -602811,7 +603655,7 @@ call$1(selectedNode) { return selectedNode.get$id(selectedNode) === this.node.id; }, - $signature: 896 + $signature: 898 }; A._DocumentNodeSelection.prototype = { $eq(_, other) { @@ -603079,7 +603923,7 @@ var t1 = this.node; return selectedNode.get$id(selectedNode) === t1.get$id(t1); }, - $signature: 896 + $signature: 898 }; A.DocumentNodeSelection.prototype = { $eq(_, other) { @@ -603295,6 +604139,7 @@ }, $isEditCommand: 1 }; + A.ConvertListItemToParagraphRequest.prototype = {$isEditRequest: 1}; A.ConvertListItemToParagraphCommand.prototype = { execute$2(context, executor) { var newMetadata, @@ -603315,6 +604160,28 @@ }, $isEditCommand: 1 }; + A.ConvertParagraphToListItemRequest.prototype = {$isEditRequest: 1}; + A.ConvertParagraphToListItemCommand.prototype = { + execute$2(context, executor) { + var $document = context.find$1$1(0, "document", type$.MutableDocument), + paragraphNode = type$.ParagraphNode._as($document._nodesById.$index(0, this.nodeId)), + t1 = paragraphNode.id; + $document.replaceNode$2$newNode$oldNode(A.ListItemNode$(t1, 0, this.type, paragraphNode._text$_text), paragraphNode); + B.JSArray_methods.addAll$1(executor._changeList, A._setArrayType([new A.DocumentEdit(new A.NodeChangeEvent(t1))], type$.JSArray_EditEvent)); + }, + $isEditCommand: 1 + }; + A.ChangeListItemTypeRequest.prototype = {$isEditRequest: 1}; + A.ChangeListItemTypeCommand.prototype = { + execute$2(context, executor) { + var $document = context.find$1$1(0, "document", type$.MutableDocument), + existingListItem = type$.ListItemNode._as($document._nodesById.$index(0, this.nodeId)), + t1 = existingListItem.id; + $document.replaceNode$2$newNode$oldNode(A.ListItemNode$(t1, 0, this.newType, existingListItem._text$_text), existingListItem); + B.JSArray_methods.addAll$1(executor._changeList, A._setArrayType([new A.DocumentEdit(new A.NodeChangeEvent(t1))], type$.JSArray_EditEvent)); + }, + $isEditCommand: 1 + }; A.SplitListItemRequest.prototype = {$isEditRequest: 1}; A.SplitListItemCommand.prototype = { execute$2(context, executor) { @@ -603352,7 +604219,7 @@ baseStyle = B.TextStyle_SVP1; return type$.TextStyle_Function_2_Set_Attribution_and_TextStyle._as(t1.$index(0, "inlineTextStyler")).call$2(attributions, baseStyle); }, - $signature: 205 + $signature: 202 }; A._ListItemComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel.prototype = { applyStyles$1(styles) { @@ -603740,14 +604607,13 @@ if (other == null) return false; if (_this !== other) - t1 = other instanceof A.ChangeParagraphBlockTypeRequest && A.getRuntimeTypeOfDartObject(_this) === A.getRuntimeTypeOfDartObject(other) && _this.nodeId === other.nodeId && _this.blockType.$eq(0, other.blockType); + t1 = other instanceof A.ChangeParagraphBlockTypeRequest && A.getRuntimeTypeOfDartObject(_this) === A.getRuntimeTypeOfDartObject(other) && _this.nodeId === other.nodeId && J.$eq$(_this.blockType, other.blockType); else t1 = true; return t1; }, get$hashCode(_) { - var t1 = this.blockType; - return (B.JSString_methods.get$hashCode(this.nodeId) ^ t1.get$hashCode(t1)) >>> 0; + return (B.JSString_methods.get$hashCode(this.nodeId) ^ J.get$hashCode$(this.blockType)) >>> 0; }, $isEditRequest: 1 }; @@ -603882,7 +604748,7 @@ call$1(a) { return true; }, - $signature: 213 + $signature: 200 }; A.DeleteUpstreamAtBeginningOfParagraphCommand.prototype = { execute$2(context, executor) { @@ -603968,7 +604834,7 @@ baseStyle = B.TextStyle_SVP1; return type$.TextStyle_Function_2_Set_Attribution_and_TextStyle._as(t1.$index(0, "inlineTextStyler")).call$2(attributions, baseStyle); }, - $signature: 205 + $signature: 202 }; A._ParagraphComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel.prototype = { applyStyles$1(styles) { @@ -604025,7 +604891,7 @@ t3 = type$.LabeledGlobalKey_State_StatefulWidget, t4 = A.SuperEditorIosControlsController$(), t5 = type$.void_Function; - return new A.SuperEditorState(new A.LayerLink(), new A.ValueNotifier(false, t1, t2), new A.SignalNotifier(t1), new A.ValueNotifier(null, t1, type$.ValueNotifier_nullable_DragHandleAutoScroller), new A.LabeledGlobalKey(null, t3), t4, new A.LabeledGlobalKey(null, t3), new A.SuperEditorAndroidControlsController(new A.ValueNotifier(false, t1, t2), new A.SignalNotifier(t1), new A.LeaderLink(A.LinkedHashSet_LinkedHashSet$_empty(t5), t1), new A.ValueNotifier(false, t1, t2), new A.LeaderLink(A.LinkedHashSet_LinkedHashSet$_empty(t5), t1), new A.LeaderLink(A.LinkedHashSet_LinkedHashSet$_empty(t5), t1), new A.ValueNotifier(false, t1, t2), new A.ValueNotifier(false, t1, t2), new A.LeaderLink(A.LinkedHashSet_LinkedHashSet$_empty(t5), t1), new A.ValueNotifier(false, t1, t2), new A.LeaderLink(A.LinkedHashSet_LinkedHashSet$_empty(t5), t1)), B._StateLifecycle_0); + return new A.SuperEditorState(new A.LayerLink(), new A.ValueNotifier(false, t1, t2), new A.SignalNotifier(t1), new A.ValueNotifier(null, t1, type$.ValueNotifier_nullable_DragHandleAutoScroller), new A.LabeledGlobalKey(null, t3), t4, new A.LabeledGlobalKey(null, t3), new A.SuperEditorAndroidControlsController(new A.ValueNotifier(true, t1, t2), new A.SignalNotifier(t1), new A.LeaderLink(A.LinkedHashSet_LinkedHashSet$_empty(t5), t1), new A.ValueNotifier(false, t1, t2), new A.LeaderLink(A.LinkedHashSet_LinkedHashSet$_empty(t5), t1), new A.LeaderLink(A.LinkedHashSet_LinkedHashSet$_empty(t5), t1), new A.ValueNotifier(false, t1, t2), new A.ValueNotifier(false, t1, t2), new A.LeaderLink(A.LinkedHashSet_LinkedHashSet$_empty(t5), t1), new A.ValueNotifier(false, t1, t2), new A.LeaderLink(A.LinkedHashSet_LinkedHashSet$_empty(t5), t1)), B._StateLifecycle_0); }, get$document(receiver) { return this.document; @@ -604248,13 +605114,14 @@ switch (_this.get$gestureMode().index) { case 2: t1 = _this._widget; - return new A.SuperEditorIosToolbarOverlayManager(new A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure(_this, context), new A.SuperEditorIosMagnifierOverlayManager(new A.EditorFloatingCursor(t1.editor, t1.document, new A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure0(_this), t1.composer._selectionNotifier, _this._scrollChangeSignal, child, _null), _null), _null); + return new A.SuperEditorIosToolbarOverlayManager(_null, new A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure(_this, context), new A.SuperEditorIosMagnifierOverlayManager(new A.EditorFloatingCursor(t1.editor, t1.document, new A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure0(_this), t1.composer._selectionNotifier, _this._scrollChangeSignal, child, _null), _null), _null); case 1: + _this._widget.toString; t1 = _this.__SuperEditorState_editContext_A; t1 === $ && A.throwUnnamedLateFieldNI(); t2 = _this.__SuperEditorState__composer_A; t2 === $ && A.throwUnnamedLateFieldNI(); - return new A.SuperEditorAndroidControlsOverlayManager(t1.document, new A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure1(_this), t2._selectionNotifier, new A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure2(_this), _this._scrollChangeSignal, _this._dragHandleAutoScroller, new A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure3(_this, context), child, _null); + return new A.SuperEditorAndroidControlsOverlayManager(_null, t1.document, new A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure1(_this), t2._selectionNotifier, new A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure2(_this), _this._scrollChangeSignal, _this._dragHandleAutoScroller, new A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure3(_this, context), child, _null); case 0: return child; } @@ -604304,7 +605171,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return type$.DocumentLayout._as(t1.get$currentState()); }, - $signature: 145 + $signature: 141 }; A.SuperEditorState_didUpdateWidget_closure.prototype = { call$0() { @@ -604312,7 +605179,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return type$.DocumentLayout._as(t1.get$currentState()); }, - $signature: 145 + $signature: 141 }; A.SuperEditorState__createEditContext_closure.prototype = { call$0() { @@ -604320,7 +605187,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return type$.DocumentLayout._as(t1.get$currentState()); }, - $signature: 145 + $signature: 141 }; A.SuperEditorState__createEditContext_closure0.prototype = { call$0() { @@ -604328,7 +605195,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return type$.DocumentLayout._as(t1.get$currentState()); }, - $signature: 145 + $signature: 141 }; A.SuperEditorState_build_closure.prototype = { call$1(controlsScopeContext) { @@ -604363,7 +605230,7 @@ t1._widget.toString; return new A.SuperEditorFocusDebugVisuals(t2, new A.EditorSelectionAndFocusPolicy(new A.SuperEditorState_build__closure2(t1), t2, t4, t5, t6._selectionNotifier, new A.SuperEditorState_build__closure3(t1), true, true, true, t1._buildTextInputSystem$1$child(t1._buildPlatformSpecificViewportDecorations$2$child(controlsScopeContext, new A.DocumentScaffold(t1._documentLayoutLink, t7, t1.get$_buildGestureInteractor(), t8, t9, t10, t11, t3, t13, t12, B.C_DebugPaintConfig, null, type$.DocumentScaffold_dynamic))), null), null); }, - $signature: 3421 + $signature: 3426 }; A.SuperEditorState_build__closure2.prototype = { call$0() { @@ -604382,7 +605249,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1._getDocumentLayout.call$0(); }, - $signature: 145 + $signature: 141 }; A.SuperEditorState_build__closure.prototype = { call$1(context) { @@ -604390,7 +605257,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return this.underlayBuilder.build$2(context, t1); }, - $signature: 617 + $signature: 589 }; A.SuperEditorState_build__closure0.prototype = { call$1(context) { @@ -604401,7 +605268,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return new A._SelectionLeadersDocumentLayerBuilder(t2, false).build$2(context, t1); }, - $signature: 617 + $signature: 589 }; A.SuperEditorState_build__closure1.prototype = { call$1(context) { @@ -604409,7 +605276,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return this.overlayBuilder.build$2(context, t1); }, - $signature: 617 + $signature: 589 }; A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure.prototype = { call$3(overlayContext, mobileToolbarKey, focalPoint) { @@ -604419,7 +605286,7 @@ }, "call*": "call$3", $requiredArgCount: 3, - $signature: 898 + $signature: 900 }; A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure0.prototype = { call$0() { @@ -604427,7 +605294,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return type$.DocumentLayout._as(t1.get$currentState()); }, - $signature: 145 + $signature: 141 }; A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure1.prototype = { call$0() { @@ -604435,7 +605302,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return type$.DocumentLayout._as(t1.get$currentState()); }, - $signature: 145 + $signature: 141 }; A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure2.prototype = { call$1(newSelection) { @@ -604443,7 +605310,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1.editor.execute$1(A._setArrayType([new A.ChangeSelectionRequest(newSelection, B.SelectionChangeType_2, "userInteraction")], type$.JSArray_EditRequest)); }, - $signature: 3424 + $signature: 3429 }; A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure3.prototype = { call$3(overlayContext, mobileToolbarKey, focalPoint) { @@ -604453,7 +605320,7 @@ }, "call*": "call$3", $requiredArgCount: 3, - $signature: 898 + $signature: 900 }; A.SuperEditorState__buildGestureInteractor_closure.prototype = { call$0() { @@ -604461,7 +605328,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1._getDocumentLayout.call$0(); }, - $signature: 145 + $signature: 141 }; A.SuperEditorState__buildGestureInteractor_closure0.prototype = { call$0() { @@ -604469,7 +605336,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1._getDocumentLayout.call$0(); }, - $signature: 145 + $signature: 141 }; A.SuperEditorState__buildGestureInteractor_closure1.prototype = { call$0() { @@ -604477,7 +605344,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return t1._getDocumentLayout.call$0(); }, - $signature: 145 + $signature: 141 }; A.DefaultAndroidEditorToolbar.prototype = { build$1(context) { @@ -604538,67 +605405,67 @@ call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["maxWidth", 640, "padding", B.CascadingPadding_24_24_null_null, "textStyle", B.TextStyle_sBb], type$.String, type$.dynamic); }, - $signature: 120 + $signature: 122 }; A.defaultStylesheet_closure0.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_40_null, "textStyle", B.TextStyle_o8I1], type$.String, type$.dynamic); }, - $signature: 120 + $signature: 122 }; A.defaultStylesheet_closure1.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_32_null, "textStyle", B.TextStyle_o8I0], type$.String, type$.dynamic); }, - $signature: 120 + $signature: 122 }; A.defaultStylesheet_closure2.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_28_null, "textStyle", B.TextStyle_o8I], type$.String, type$.dynamic); }, - $signature: 120 + $signature: 122 }; A.defaultStylesheet_closure3.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_24_null], type$.String, type$.dynamic); }, - $signature: 120 + $signature: 122 }; A.defaultStylesheet_closure4.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_0_null], type$.String, type$.dynamic); }, - $signature: 120 + $signature: 122 }; A.defaultStylesheet_closure5.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_0_null], type$.String, type$.dynamic); }, - $signature: 120 + $signature: 122 }; A.defaultStylesheet_closure6.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_0_null], type$.String, type$.dynamic); }, - $signature: 120 + $signature: 122 }; A.defaultStylesheet_closure7.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_24_null], type$.String, type$.dynamic); }, - $signature: 120 + $signature: 122 }; A.defaultStylesheet_closure8.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["textStyle", B.TextStyle_CcT], type$.String, type$.dynamic); }, - $signature: 120 + $signature: 122 }; A.defaultStylesheet_closure9.prototype = { call$2(doc, docNode) { return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_null_96], type$.String, type$.dynamic); }, - $signature: 120 + $signature: 122 }; A.SuperEditorLaunchLinkTapHandler.prototype = { dispose$0() { @@ -604686,7 +605553,7 @@ return A.LinkedHashMap_LinkedHashMap$_empty(type$.String, type$.dynamic); return A.LinkedHashMap_LinkedHashMap$_literal(["padding", B.CascadingPadding_null_null_24_null], type$.String, type$.dynamic); }, - $signature: 120 + $signature: 122 }; A.TaskComponentBuilder.prototype = { createViewModel$2($document, node) { @@ -604906,7 +605773,7 @@ baseStyle = B.TextStyle_SVP1; return type$.TextStyle_Function_2_Set_Attribution_and_TextStyle._as(t1.$index(0, "inlineTextStyler")).call$2(attributions, baseStyle); }, - $signature: 205 + $signature: 202 }; A._TaskComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel.prototype = { applyStyles$1(styles) { @@ -605281,7 +606148,7 @@ } return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t1, _null); }, - $signature: 391 + $signature: 428 }; A.ToggleTextAttributionsRequest.prototype = {$isEditRequest: 1}; A.ToggleTextAttributionsCommand.prototype = { @@ -605354,7 +606221,7 @@ call$0() { return this.selectionRange; }, - $signature: 3426 + $signature: 3431 }; A.InsertTextRequest.prototype = {$isEditRequest: 1}; A.InsertTextCommand.prototype = { @@ -605611,7 +606478,7 @@ var t1 = B.JSString_methods.substring$2(this._this.text, attributedSpan.start, attributedSpan.end + 1); return A.TextSpan$(null, null, this.styleBuilder.call$1(attributedSpan.attributions), t1); }, - $signature: 3427 + $signature: 3432 }; A.ProxyTextComposable.prototype = { getWordSelectionAt$1(textNodePosition) { @@ -605860,7 +606727,7 @@ t2._temporarilyForgetLayers$0(); } }, - $signature: 12 + $signature: 11 }; A.ContentLayersElement__isSubtreeDirty_closure.prototype = { call$1(childElement) { @@ -606060,19 +606927,19 @@ call$1(child) { child.attach$1(this.owner); }, - $signature: 63 + $signature: 67 }; A.RenderContentLayers_detach_closure.prototype = { call$1(child) { child.detach$0(0); }, - $signature: 63 + $signature: 67 }; A.RenderContentLayers_performLayout_closure.prototype = { call$1(constraints) { this.$this._content_layers$_element.buildLayers$0(); }, - $signature: 44 + $signature: 45 }; A._UnderlaySlot.prototype = { toString$0(_) { @@ -606137,7 +607004,7 @@ } return true; }, - $signature: 126 + $signature: 128 }; A.ContentLayerState.prototype = { build$1(context) { @@ -606151,6 +607018,52 @@ return _this.doBuild$2(context, _this._layoutData); } }; + A.RoundedRectanglePopoverAppearance.prototype = { + createState$0() { + return new A._RoundedRectanglePopoverAppearanceState(null, null, B._StateLifecycle_0); + } + }; + A._RoundedRectanglePopoverAppearanceState.prototype = { + initState$0() { + var t1, t2, _this = this, _null = null; + _this.super$State$initState(); + t1 = A.AnimationController$(_null, B.Duration_300000, _null, 1, _null, _this); + _this.___RoundedRectanglePopoverAppearanceState__animationController_F !== $ && A.throwUnnamedLateFieldAI(); + _this.___RoundedRectanglePopoverAppearanceState__animationController_F = t1; + t2 = A.CurvedAnimation$(B.Cubic_xDo, t1, _null); + _this.___RoundedRectanglePopoverAppearanceState__containerFadeInAnimation_F !== $ && A.throwUnnamedLateFieldAI(); + _this.___RoundedRectanglePopoverAppearanceState__containerFadeInAnimation_F = t2; + t1.forward$0(0); + }, + dispose$0() { + var t1 = this.___RoundedRectanglePopoverAppearanceState__animationController_F; + t1 === $ && A.throwUnnamedLateFieldNI(); + t1.dispose$0(); + this.super$__RoundedRectanglePopoverAppearanceState_State_SingleTickerProviderStateMixin$dispose(); + }, + build$1(context) { + var _null = null, + t1 = A.BorderRadius$circular(12), + t2 = this.___RoundedRectanglePopoverAppearanceState__containerFadeInAnimation_F; + t2 === $ && A.throwUnnamedLateFieldNI(); + return A.Material$(B.Duration_200000, true, t1, new A.FadeTransition(t2, false, this._widget.child, _null), B.Clip_1, _null, 8, _null, _null, _null, _null, _null, B.MaterialType_0); + } + }; + A.__RoundedRectanglePopoverAppearanceState_State_SingleTickerProviderStateMixin.prototype = { + dispose$0() { + var _this = this, + t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; + if (t1 != null) + t1.removeListener$1(0, _this.get$_updateTicker()); + _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; + _this.super$State$dispose(); + }, + activate$0() { + this.super$State$activate(); + this._updateTickerModeNotifier$0(); + this._updateTicker$0(); + } + }; A.AxisOffset.prototype = { toString$0(_) { return "[AxisOffset] - leading: " + this.leading + ", trailing: " + this.trailing; @@ -606231,7 +607144,7 @@ t2 = t1.documentLayoutKey; return new A.SingleColumnDocumentLayout(t1.presenter, t1.componentBuilders, onBuildScheduled, t2); }, - $signature: 3428 + $signature: 3433 }; A.DocumentScroller.prototype = { dispose$0() { @@ -606495,14 +607408,14 @@ call$1(_) { return A.HapticFeedback_mediumImpact(); }, - $signature: 506 + $signature: 613 }; A.Scheduler_runAsSoonAsPossible_closure.prototype = { call$1(timeStamp) { $.$get$schedulerLog().log$4(B.Level_INFO_800, "Flutter is done building widgets. Running '" + this.debugLabel + "' at the end of the frame.", null, null); this.action.call$0(); }, - $signature: 12 + $signature: 11 }; A.Frames_setStateAsSoonAsPossible_closure.prototype = { call$0() { @@ -606525,13 +607438,13 @@ return; this.work.call$1(timeStamp); }, - $signature: 12 + $signature: 11 }; A.Frames_scheduleBuildAfterBuild_closure.prototype = { call$1(_) { this._this.setState$1(new A.Frames_scheduleBuildAfterBuild__closure(this.stateChange)); }, - $signature: 12 + $signature: 11 }; A.Frames_scheduleBuildAfterBuild__closure.prototype = { call$0() { @@ -606782,7 +607695,7 @@ t1 = t1 == null ? null : t1.resolve$1(0, states); return t1 == null ? false : t1; }, - $signature: 801 + $signature: 845 }; A._MaterialScrollbarState__thumbColor_closure0.prototype = { call$1(states) { @@ -606820,7 +607733,7 @@ t1.toString; return t1; }, - $signature: 25 + $signature: 26 }; A._MaterialScrollbarState__trackColor_closure0.prototype = { call$1(states) { @@ -606838,7 +607751,7 @@ } return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._MaterialScrollbarState__trackBorderColor_closure0.prototype = { call$1(states) { @@ -606856,7 +607769,7 @@ } return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._MaterialScrollbarState__thickness_closure0.prototype = { call$1(states) { @@ -606885,7 +607798,7 @@ t1 = t2; return t1; }, - $signature: 411 + $signature: 407 }; A._MaterialScrollbarState_initState_closure0.prototype = { call$0() { @@ -606943,7 +607856,7 @@ call$2(a, b) { return 0; }, - $signature: 3429 + $signature: 3434 }; A.OverlayGroupPriority.prototype = { compareTo$1(_, other) { @@ -607508,7 +608421,7 @@ t5 = A.long_press_LongPressGestureRecognizer__defaultButtonAcceptBehavior$closure(); return new A._ThumbPressGestureRecognizer0(t1._scrollbar1$_scrollbarPainterKey, t2, null, B.GestureRecognizerState_0, A.LinkedHashMap_LinkedHashMap$_empty(t3, type$.GestureArenaEntry), t4, t1, null, t5, A.LinkedHashMap_LinkedHashMap$_empty(t3, type$.PointerDeviceKind)); }, - $signature: 3430 + $signature: 3435 }; A.RawScrollbarWithCustomPhysicsState__gestures_closure0.prototype = { call$1(instance) { @@ -607518,19 +608431,19 @@ instance.onLongPressMoveUpdate = new A.RawScrollbarWithCustomPhysicsState__gestures__closure0(t1); instance.onLongPressEnd = new A.RawScrollbarWithCustomPhysicsState__gestures__closure1(t1); }, - $signature: 3431 + $signature: 3436 }; A.RawScrollbarWithCustomPhysicsState__gestures__closure.prototype = { call$1(details) { return this.$this.handleThumbPressStart$1(details.localPosition); }, - $signature: 233 + $signature: 225 }; A.RawScrollbarWithCustomPhysicsState__gestures__closure0.prototype = { call$1(details) { return this.$this.handleThumbPressUpdate$1(details.localPosition); }, - $signature: 307 + $signature: 313 }; A.RawScrollbarWithCustomPhysicsState__gestures__closure1.prototype = { call$1(details) { @@ -607545,13 +608458,13 @@ t3 = A.HashSet_HashSet(t2); return new A._TrackTapGestureRecognizer0(t1._scrollbar1$_scrollbarPainterKey, B.Duration_100000, 18, B.GestureRecognizerState_0, A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.GestureArenaEntry), t3, t1, null, A.recognizer_GestureRecognizer__defaultButtonAcceptBehavior$closure(), A.LinkedHashMap_LinkedHashMap$_empty(t2, type$.PointerDeviceKind)); }, - $signature: 3432 + $signature: 3437 }; A.RawScrollbarWithCustomPhysicsState__gestures_closure2.prototype = { call$1(instance) { instance.onTapDown = this.$this.get$_scrollbar1$_handleTrackTapDown(); }, - $signature: 3433 + $signature: 3438 }; A.RawScrollbarWithCustomPhysicsState_handleHover_closure.prototype = { call$0() { @@ -607603,7 +608516,7 @@ break; } }, - $signature: 247 + $signature: 240 }; A.ScrollbarPainter0.prototype = { set$color(_, value) { @@ -608200,7 +609113,7 @@ t1 = false; return t1; }, - $signature: 758 + $signature: 800 }; A._ThumbPressGestureRecognizer0.prototype = { isPointerAllowed$1($event) { @@ -608378,8 +609291,8 @@ if (t1 === t2.focusNode) { if (!J.$eq$(t2.get$onKey(), _this.get$focusNode(_this).onKey)) _this.get$focusNode(_this).onKey = _this._widget.get$onKey(); - _this._widget.get$onKeyEvent(); - _this.get$focusNode(_this); + if (!J.$eq$(_this._widget.get$onKeyEvent(), _this.get$focusNode(_this).onKeyEvent)) + _this.get$focusNode(_this).onKeyEvent = _this._widget.get$onKeyEvent(); _this.get$focusNode(_this).set$skipTraversal(_this._widget.get$skipTraversal()); _this._widget.toString; _this.get$focusNode(_this).set$descendantsAreFocusable(_this._widget.get$descendantsAreFocusable()); @@ -609110,7 +610023,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); return new A.ColoredBox(A.Color$fromARGB(B.JSInt_methods.round$0(255 * (t1._blink_controller$_isVisible ? 1 : 0)), t2.get$value(t2) >>> 16 & 255, t2.get$value(t2) >>> 8 & 255, t2.get$value(t2) & 255), null, B.ValueKey_document_caret); }, - $signature: 3435 + $signature: 3440 }; A._AndroidControlsDocumentLayerState_DocumentLayoutLayerState_SingleTickerProviderStateMixin.prototype = { dispose$0() { @@ -609584,7 +610497,7 @@ t3._widget.toString; return new A.Padding(new A.EdgeInsets(0, 0, 0, t2.viewInsets.bottom), A.ClipRect$(new A.SizedBox(1 / 0, 1 / 0, new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t5, _null), t4), B.Clip_1, _null), _null); }, - $signature: 3436 + $signature: 3441 }; A.FloatingCursorController0.prototype = { dispose$0() { @@ -609764,7 +610677,7 @@ call$1(e) { return e instanceof A.ActivateIntent; }, - $signature: 3437 + $signature: 3442 }; A._PreventPrioritizedIntentsFromBubblingUp.prototype = { consumesKey$1(intent) { @@ -609893,11 +610806,284 @@ } }; A._MagnifierAndToolbarController_Object_ChangeNotifier.prototype = {}; + A.PopoverScaffold.prototype = { + createState$0() { + var _null = null; + return new A._PopoverScaffoldState(new A.OverlayPortalController(_null), new A.LeaderLink(A.LinkedHashSet_LinkedHashSet$_empty(type$.void_Function), $.$get$ChangeNotifier__emptyListeners()), A.FocusNode$(true, _null, true, true, _null, _null, false), B._StateLifecycle_0); + }, + buttonBuilder$1(arg0) { + return this.buttonBuilder.call$1(arg0); + }, + popoverBuilder$1(arg0) { + return this.popoverBuilder.call$1(arg0); + }, + onTapOutside$1(arg0) { + return A.popover_scaffold__PopoverScaffoldState_closePopoverOnTapOutside$closure().call$1(arg0); + } + }; + A._PopoverScaffoldState.prototype = { + initState$0() { + this.super$State$initState(); + this._widget.controller.addListener$1(0, this.get$_onPopoverControllerChanged()); + }, + didChangeDependencies$0() { + this.super$State$didChangeDependencies(); + this._updateFollowerBoundary$0(); + }, + didUpdateWidget$1(oldWidget) { + var t1, t2, _this = this; + _this.super$State$didUpdateWidget(oldWidget); + t1 = oldWidget.controller; + if (t1 !== _this._widget.controller) { + t2 = _this.get$_onPopoverControllerChanged(); + t1.removeListener$1(0, t2); + _this._widget.controller.addListener$1(0, t2); + } + if (oldWidget.boundaryKey !== _this._widget.boundaryKey) + _this._updateFollowerBoundary$0(); + }, + dispose$0() { + var t1, _this = this; + _this._widget.controller.removeListener$1(0, _this.get$_onPopoverControllerChanged()); + t1 = _this._popoverLink; + t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); + t1.ChangeNotifier__count = 0; + _this._scaffoldFocusNode.dispose$0(); + _this.super$State$dispose(); + }, + _updateFollowerBoundary$0() { + var t2, t3, _this = this, + t1 = _this._framework$_element; + t1.toString; + t2 = type$.MediaQuery; + _this.___PopoverScaffoldState__screenSize_A = A.InheritedModel_inheritFrom(t1, B._MediaQueryAspect_0, t2).data.size; + t1 = _this._widget.boundaryKey; + t3 = _this._framework$_element; + t3.toString; + _this.___PopoverScaffoldState__screenBoundary_A = new A.WidgetFollowerBoundary(t1, A.InheritedModel_inheritFrom(t3, B._MediaQueryAspect_2, t2).data.devicePixelRatio); + }, + _onPopoverControllerChanged$0() { + var _this = this, + t1 = _this._popover_scaffold$_overlayController; + if (_this._widget.controller._shouldShow) { + t1.show$0(0); + _this._widget.toString; + A.Frames_onNextFrame(_this, new A._PopoverScaffoldState__onPopoverControllerChanged_closure(_this)); + } else + t1.hide$0(); + }, + _onTapOutsideOfPopover$1(e) { + var t1 = this._widget; + t1.onTapOutside$1(t1.controller); + }, + _computePopoverConstraints$0() { + var boundaryBox, t2, + t1 = this._widget; + t1 = t1.boundaryKey; + boundaryBox = type$.RenderBox._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject()); + t1 = boundaryBox.get$size(boundaryBox); + t2 = boundaryBox.get$size(boundaryBox); + return new A.BoxConstraints(0, t2._dx, 0, t1._dy); + }, + build$1(context) { + var _this = this; + return A.OverlayPortal$(A.Leader$(_this._widget.buttonBuilder$1(context), _this._popoverLink), _this._popover_scaffold$_overlayController, _this.get$_buildPopover()); + }, + _buildPopover$1(context) { + var t3, t4, t5, _this = this, _null = null, + t1 = $.$get$disabledMacIntents(), + t2 = _this.___PopoverScaffoldState__screenBoundary_A; + t2 === $ && A.throwUnnamedLateFieldNI(); + t3 = _this._computePopoverConstraints$0(); + t4 = _this._widget; + t5 = t4.parentFocusNode; + return A.TapRegion$(A.Actions$(t1, A.Follower$withAligner(new A.FunctionalAligner(new A._PopoverScaffoldState__buildPopover_closure(_this)), t2, new A.ConstrainedBox(t3, A.Focus$(false, _null, t4.popoverBuilder$1(context), _null, _null, _null, _null, true, _null, _null, _null, _null, t5, _null), _null), _this._popoverLink, false)), _null, true, _null, _null, _null, _this.get$_onTapOutsideOfPopover()); + } + }; + A._PopoverScaffoldState__onPopoverControllerChanged_closure.prototype = { + call$1(timeStamp) { + this.$this._widget.popoverFocusNode.requestFocus$0(); + }, + $signature: 11 + }; + A._PopoverScaffoldState__buildPopover_closure.prototype = { + call$2(globalLeaderRect, followerSize) { + var t1 = this.$this, + t2 = t1._widget; + t2.toString; + t1 = t1.___PopoverScaffoldState__screenSize_A; + t1 === $ && A.throwUnnamedLateFieldNI(); + return A.popover_scaffold__defaultPopoverAligner$closure().call$4(globalLeaderRect, followerSize, t1, t2.boundaryKey); + }, + $signature: 3443 + }; + A.PopoverController.prototype = { + open$0(_) { + if (this._shouldShow) + return; + this._shouldShow = true; + this.notifyListeners$0(); + }, + close$0(_) { + if (!this._shouldShow) + return; + this._shouldShow = false; + this.notifyListeners$0(); + }, + $isListenable: 1 + }; + A.PopoverGeometry.prototype = {}; + A._PopoverController_Object_ChangeNotifier.prototype = {}; A.SuperEditorPopover.prototype = { build$1(context) { return A.Actions$($.$get$disabledMacIntents(), new A.FocusWithCustomParent(this.child, this.popoverFocusNode, this.editorFocusNode, null, null)); } }; + A.ItemSelectionList.prototype = { + createState$0() { + return new A.ItemSelectionListState(new A.LabeledGlobalKey(null, type$.LabeledGlobalKey_State_StatefulWidget), A.ScrollController$(0, true), A._setArrayType([], type$.JSArray_GlobalKey_State_StatefulWidget), null, null, B._StateLifecycle_0, this.$ti._eval$1("ItemSelectionListState<1>")); + }, + get$value(receiver) { + return this.value; + } + }; + A.ItemSelectionListState.prototype = { + initState$0() { + this.super$State$initState(); + this._activateSelectedItem$0(); + }, + dispose$0() { + this.scrollController.dispose$0(); + this.super$_ItemSelectionListState_State_SingleTickerProviderStateMixin$dispose(); + }, + _activateSelectedItem$0() { + var t1 = this._widget, + selectedItem = t1.value, + selectedItemIndex = B.JSArray_methods.indexOf$1(t1.items, selectedItem); + if (selectedItemIndex < 0) { + this._activeIndex = null; + return; + } + this._activateItem$2$animationDuration(selectedItemIndex, B.Duration_0); + }, + _activateItem$2$animationDuration(itemIndex, animationDuration) { + var _this = this; + _this._activeIndex = itemIndex; + if (itemIndex != null) + _this._widget.toString; + A.Frames_onNextFrame(_this, new A.ItemSelectionListState__activateItem_closure(_this, animationDuration)); + }, + _scrollToShowActiveItem$1(animationDuration) { + var key, t2, + t1 = this._activeIndex; + if (t1 == null) + return; + key = this._itemKeys[t1]; + t1 = $.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, key); + t1 = t1 == null ? null : t1.get$renderObject(); + type$.nullable_RenderBox._as(t1); + if (t1 == null) + return; + t2 = t1.get$size(t1); + t1.showOnScreen$3$curve$duration$rect(B.Cubic_JUR0, animationDuration, new A.Rect(0, 0, 0 + t2._dx, 0 + t2._dy)); + }, + _selectable_list$_onKeyEvent$2(node, $event) { + var t2, t3, _this = this, t1 = {}; + if (!($event instanceof A.KeyDownEvent) && !($event instanceof A.KeyRepeatEvent)) + return B.KeyEventResult_1; + t2 = $event.logicalKey; + if (!B.JSArray_methods.contains$1(B.List_m2n, t2)) + return B.KeyEventResult_1; + if (t2.$eq(0, B.LogicalKeyboardKey_4294967323)) { + _this._widget.onCancel.call$0(); + return B.KeyEventResult_0; + } + if (t2.$eq(0, B.LogicalKeyboardKey_4294967309) || t2.$eq(0, B.LogicalKeyboardKey_8589935117)) { + t1 = _this._activeIndex; + if (t1 == null) { + _this._widget.onItemSelected.call$1(null); + return B.KeyEventResult_0; + } + t2 = _this._widget; + t1 = t2.items[t1]; + t2.onItemSelected.call$1(t1); + return B.KeyEventResult_0; + } + t1.newActiveIndex = null; + if (t2.$eq(0, B.LogicalKeyboardKey_4294968065)) { + t3 = _this._activeIndex; + if (t3 == null || t3 >= _this._widget.items.length - 1) + t1.newActiveIndex = 0; + else { + t3.toString; + t1.newActiveIndex = t3 + 1; + } + } + if (t2.$eq(0, B.LogicalKeyboardKey_4294968068)) { + t2 = _this._activeIndex; + if (t2 == null || t2 <= 0) + t1.newActiveIndex = _this._widget.items.length - 1; + else { + t2.toString; + t1.newActiveIndex = t2 - 1; + } + } + _this.setState$1(new A.ItemSelectionListState__onKeyEvent_closure(t1, _this)); + return B.KeyEventResult_0; + }, + build$1(context) { + var t2, i, t3, t4, t5, t6, t7, t8, _this = this, _null = null, + t1 = _this._itemKeys; + B.JSArray_methods.clear$0(t1); + for (t2 = type$.LabeledGlobalKey_State_StatefulWidget, i = 0; t3 = _this._widget, i < t3.items.length; ++i) + t1.push(new A.LabeledGlobalKey(_null, t2)); + t2 = t3.focusNode; + t3 = A.ScrollConfiguration_of(context).copyWith$3$overscroll$physics$scrollbars(false, B.ClampingScrollPhysics_null, false); + t4 = A._setArrayType([], type$.JSArray_Widget); + for (i = 0; t5 = _this._widget, t6 = t5.items, i < t6.length; ++i) { + t7 = t1[i]; + t6 = t6[i]; + t8 = _this._activeIndex; + t4.push(new A.KeyedSubtree(t5.itemBuilder.call$4(context, t6, i === t8, new A.ItemSelectionListState_build_closure(_this, i)), t7)); + } + return A.Focus$(false, _null, A.ScrollConfiguration$(t3, A.PrimaryScrollController$(A.Scrollbar$(A.SingleChildScrollView$(A.IntrinsicWidth$(A.Column$(t4, B.CrossAxisAlignment_2, _null, B.MainAxisAlignment_0, B.MainAxisSize_0, B.VerticalDirection_1), _null), _null, B.DragStartBehavior_1, _this._selectable_list$_scrollableKey, _null, _null, true, _null, false, B.Axis_1), _null, true), _this.scrollController)), _null, _null, _null, t2, true, _null, _null, _null, _this.get$_selectable_list$_onKeyEvent(), _null, _null); + } + }; + A.ItemSelectionListState__activateItem_closure.prototype = { + call$1(timeStamp) { + this.$this._scrollToShowActiveItem$1(this.animationDuration); + }, + $signature: 11 + }; + A.ItemSelectionListState__onKeyEvent_closure.prototype = { + call$0() { + this.$this._activateItem$2$animationDuration(this._box_0.newActiveIndex, B.Duration_100000); + }, + $signature: 0 + }; + A.ItemSelectionListState_build_closure.prototype = { + call$0() { + var t1 = this.$this._widget, + t2 = t1.items[this.i]; + return t1.onItemSelected.call$1(t2); + }, + $signature: 0 + }; + A._ItemSelectionListState_State_SingleTickerProviderStateMixin.prototype = { + dispose$0() { + var _this = this, + t1 = _this.SingleTickerProviderStateMixin__tickerModeNotifier; + if (t1 != null) + t1.removeListener$1(0, _this.get$_updateTicker()); + _this.SingleTickerProviderStateMixin__tickerModeNotifier = null; + _this.super$State$dispose(); + }, + activate$0() { + this.super$State$activate(); + this._updateTickerModeNotifier$0(); + this._updateTicker$0(); + } + }; A.SignalNotifier.prototype = { notifyListeners$0() { this.super$ChangeNotifier$notifyListeners(); @@ -609910,21 +611096,21 @@ t1.remainingOffset = remainingOffset; return remainingOffset >= 0; }, - $signature: 11 + $signature: 12 }; A.CharacterMovement__moveOffsetByWord_closure0.prototype = { call$1(char) { var t1 = $.$get$_separatorRegex(); return t1._nativeRegExp.test(char); }, - $signature: 11 + $signature: 12 }; A.CharacterMovement__moveOffsetByWord_closure1.prototype = { call$1(char) { var t1 = $.$get$_separatorRegex(); return !t1._nativeRegExp.test(char); }, - $signature: 11 + $signature: 12 }; A.CharacterMovement__moveOffsetByCharacter_closure.prototype = { call$1(char) { @@ -609933,7 +611119,7 @@ t1.remainingOffset = remainingOffset; return remainingOffset >= 0; }, - $signature: 11 + $signature: 12 }; A.TextInputSource.prototype = { _enumToString$0() { @@ -610084,7 +611270,7 @@ t2 = t1.textScrollController; t1 = t1.textFieldKey; t2.updateAutoScrollingForTouchOffset$1$userInteractionOffsetInViewport(type$.RenderBox._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject()).globalToLocal$1(globalOffsetInMiddleOfLine)); - _this._widget.textScrollController.addListener$1(0, _this.get$__editing_controls0$_updateSelectionForNewDragHandleLocation()); + _this._widget.textScrollController.addListener$1(0, _this.get$_updateSelectionForDragHandleAfterScrollChange()); _this.setState$1(new A._AndroidEditingOverlayControlsState__onCollapsedPanStart_closure(_this, details)); }, __editing_controls0$_onBasePanStart$1(details) { @@ -610107,7 +611293,7 @@ t5 = _this._touchHandleOffsetFromLineOfText; t5.toString; t4.updateAutoScrollingForTouchOffset$1$userInteractionOffsetInViewport(t3.globalToLocal$1(t2.$add(0, t5))); - _this._widget.textScrollController.addListener$1(0, _this.get$__editing_controls0$_updateSelectionForNewDragHandleLocation()); + _this._widget.textScrollController.addListener$1(0, _this.get$_updateSelectionForDragHandleAfterScrollChange()); t1.log$4(B.Level_FINE_500, string$.x20__upd, _null, _null); _this.setState$1(new A._AndroidEditingOverlayControlsState__onBasePanStart_closure(_this, details)); }, @@ -610127,7 +611313,7 @@ t4 = _this._touchHandleOffsetFromLineOfText; t4.toString; t3.updateAutoScrollingForTouchOffset$1$userInteractionOffsetInViewport(t2.globalToLocal$1(t1.$add(0, t4))); - _this._widget.textScrollController.addListener$1(0, _this.get$__editing_controls0$_updateSelectionForNewDragHandleLocation()); + _this._widget.textScrollController.addListener$1(0, _this.get$_updateSelectionForDragHandleAfterScrollChange()); _this.setState$1(new A._AndroidEditingOverlayControlsState__onExtentPanStart_closure(_this, details)); }, __editing_controls0$_onPanUpdate$1(details) { @@ -610136,7 +611322,7 @@ t1.log$4(B.Level_FINE_500, "_onPanUpdate", _null, _null); t2 = _this.__editing_controls0$_globalDragOffset = details.globalPosition; t1.log$4(B.Level_FINE_500, " - global offset: " + t2.toString$0(0), _null, _null); - _this.__editing_controls0$_updateSelectionForNewDragHandleLocation$0(); + _this._updateSelectionForCurrentDragHandleOffset$0(); t1.log$4(B.Level_FINE_500, " - done updating selection for new drag handle location", _null, _null); t3 = _this._widget; t4 = t3.textScrollController; @@ -610148,7 +611334,11 @@ t1.log$4(B.Level_FINE_500, string$.x20__upd, _null, _null); _this.setState$1(new A._AndroidEditingOverlayControlsState__onPanUpdate_closure(_this, details)); }, - __editing_controls0$_updateSelectionForNewDragHandleLocation$0() { + _updateSelectionForDragHandleAfterScrollChange$0() { + this._needToSyncSelectionWithHandleLocation = true; + A.Frames_onNextFrame(this, new A._AndroidEditingOverlayControlsState__updateSelectionForDragHandleAfterScrollChange_closure(this)); + }, + _updateSelectionForCurrentDragHandleOffset$0() { var t2, textOffset, _this = this, t1 = _this._widget.textContentKey, textBox = type$.RenderBox._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject()); @@ -610182,7 +611372,7 @@ var _this = this; $.$get$_log6().log$4(B.Level_FINE_500, "_onHandleDragEnd()", null, null); _this._widget.textScrollController.stopScrolling$0(); - _this._widget.textScrollController.removeListener$1(0, _this.get$__editing_controls0$_updateSelectionForNewDragHandleLocation()); + _this._widget.textScrollController.removeListener$1(0, _this.get$_updateSelectionForDragHandleAfterScrollChange()); _this.setState$1(new A._AndroidEditingOverlayControlsState__onHandleDragEnd_closure(_this)); }, __editing_controls0$_textOffsetToViewportOffset$1(textOffset) { @@ -610397,13 +611587,13 @@ call$1(_) { return this.$this._updateOffsetForCollapsedHandle$0(); }, - $signature: 12 + $signature: 11 }; A._AndroidEditingOverlayControlsState_didUpdateWidget_closure.prototype = { call$1(_) { return this.$this._updateOffsetForCollapsedHandle$0(); }, - $signature: 12 + $signature: 11 }; A._AndroidEditingOverlayControlsState__rebuildOnNextFrame_closure.prototype = { call$0() { @@ -610459,6 +611649,16 @@ }, $signature: 0 }; + A._AndroidEditingOverlayControlsState__updateSelectionForDragHandleAfterScrollChange_closure.prototype = { + call$1(timeStamp) { + var t1 = this.$this; + if (!t1._needToSyncSelectionWithHandleLocation) + return; + t1._updateSelectionForCurrentDragHandleOffset$0(); + t1._needToSyncSelectionWithHandleLocation = false; + }, + $signature: 11 + }; A._AndroidEditingOverlayControlsState__onHandleDragEnd_closure.prototype = { call$0() { var t2, @@ -610483,7 +611683,7 @@ call$1(_) { return this.$this._updateOffsetForCollapsedHandle$0(); }, - $signature: 12 + $signature: 11 }; A._AndroidEditingOverlayControlsState__updateOffsetForCollapsedHandle_closure0.prototype = { call$0() { @@ -610512,7 +611712,7 @@ t1.push(t2.__editing_controls0$_buildToolbar$0()); return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t1, _null); }, - $signature: 900 + $signature: 902 }; A._AndroidEditingOverlayControlsState__buildToolbar_closure.prototype = { call$1(context) { @@ -610523,7 +611723,7 @@ this.textFieldGlobalOffset.$add(0, this._box_0.toolbarTopAnchor); return A.TapRegion$(t1.popoverToolbarBuilder$3(context, t3, new A.ToolbarConfig()), _null, true, t2, _null, _null, _null); }, - $signature: 3439 + $signature: 3446 }; A.AndroidEditingOverlayController.prototype = { dispose$0() { @@ -610569,16 +611769,27 @@ A.AndroidTextFieldTouchInteractor.prototype = { createState$0() { return new A.AndroidTextFieldTouchInteractorState(new A.LayerLink(), null, null, B._StateLifecycle_0); + }, + getGlobalCaretRect$0() { + return this.getGlobalCaretRect.call$0(); } }; A.AndroidTextFieldTouchInteractorState.prototype = { initState$0() { - this.super$State$initState(); - this._widget.textScrollController.addListener$1(0, this.get$__user_interaction0$_onScrollChange()); + var _this = this; + _this.super$State$initState(); + _this._widget.textController.addListener$1(0, _this.get$__user_interaction0$_onTextOrSelectionChange()); + _this._widget.textScrollController.addListener$1(0, _this.get$__user_interaction0$_onScrollChange()); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; _this.super$State$didUpdateWidget(oldWidget); + t1 = oldWidget.textController; + if (_this._widget.textController !== t1) { + t2 = _this.get$__user_interaction0$_onTextOrSelectionChange(); + t1.removeListener$1(0, t2); + _this._widget.textController.addListener$1(0, t2); + } t1 = oldWidget.textScrollController; if (_this._widget.textScrollController !== t1) { t2 = _this.get$__user_interaction0$_onScrollChange(); @@ -610587,8 +611798,14 @@ } }, dispose$0() { - this._widget.textScrollController.removeListener$1(0, this.get$__user_interaction0$_onScrollChange()); - this.super$_AndroidTextFieldTouchInteractorState_State_TickerProviderStateMixin$dispose(); + var _this = this; + _this._widget.textController.removeListener$1(0, _this.get$__user_interaction0$_onTextOrSelectionChange()); + _this._widget.textScrollController.removeListener$1(0, _this.get$__user_interaction0$_onScrollChange()); + _this.super$_AndroidTextFieldTouchInteractorState_State_TickerProviderStateMixin$dispose(); + }, + __user_interaction0$_onTextOrSelectionChange$0() { + if (!this.__user_interaction0$_isDraggingCaret) + this._widget.textScrollController.ensureExtentIsVisible$0(); }, __user_interaction0$_onTapDown$1(details) { var _null = null, @@ -610601,18 +611818,18 @@ t1 = this._widget.editingOverlayController; t1._isToolbarVisible = false; t1.notifyListeners$0(); - this.__user_interaction0$_selectAtOffset$1(details.localPosition); }, __user_interaction0$_onTapUp$1(details) { - var t1, t2, tapTextPosition, previousSelection, t3, didTapOnExistingSelection, t4, _this = this; + var t1, t2, t3, tapTextPosition, previousSelection, didTapOnExistingSelection, t4, _this = this; $.$get$_log7().log$4(B.Level_FINE_500, "User released a tap", null, null); - t1 = _this._widget.focusNode.get$hasFocus() && _this._widget.textController.get$isAttachedToIme(); - t2 = _this._widget; - if (t1) - t2.textController.showKeyboard$0(); - else - t2.focusNode.requestFocus$0(); t1 = details.localPosition; + _this.__user_interaction0$_selectAtOffset$1(t1); + t2 = _this._widget.focusNode.get$hasFocus() && _this._widget.textController.get$isAttachedToIme(); + t3 = _this._widget; + if (t2) + t3.textController.showKeyboard$0(); + else + t3.focusNode.requestFocus$0(); tapTextPosition = _this.__user_interaction0$_getTextPositionAtOffset$1(t1); previousSelection = _this._widget.textController._realController.get$selection(); t2 = previousSelection.start; @@ -610649,6 +611866,7 @@ t2 = tapTextPosition.offset; t2 = t2 >= 0 ? A.TextSelection$collapsed(B.TextAffinity_1, t2) : B.TextSelection_3Ex; t1._realController.set$selection(t2); + _this._widget.textController._realController.set$composingRegion(B.TextRange_m1_m1); t1 = _this._widget.editingOverlayController; if (!t1._areHandlesVisible) { t1._areHandlesVisible = true; @@ -610680,20 +611898,26 @@ t1.startCollapsedHandleAutoHideCountdown$0(); } }, - _onTextPanStart$1(details) { + __user_interaction0$_onPanStart$1(details) { + var globalCaretRect; $.$get$_log7().log$4(B.Level_FINE_500, "User started a pan", null, null); - this.setState$1(new A.AndroidTextFieldTouchInteractorState__onTextPanStart_closure(this, details)); + globalCaretRect = this._widget.getGlobalCaretRect$0(); + if (globalCaretRect == null) + return; + if (Math.abs(globalCaretRect.get$center().$sub(0, details.globalPosition)._dx) > 48) + return; + this.setState$1(new A.AndroidTextFieldTouchInteractorState__onPanStart_closure(this, details)); }, __user_interaction0$_onPanUpdate$1(details) { var t1, t2, _this = this; $.$get$_log7().log$4(B.Level_FINER_400, "User panned to new offset", null, null); - if (_this.__user_interaction0$_isDraggingCaret) { - t1 = _this._widget; - t2 = t1.textController; - t1 = A.RenderSuperTextLayout_textLayoutFrom(t1.textKey.get$currentState()._textLayoutKey); - t1.toString; - t2._realController.set$selection(A.TextSelection$collapsed(B.TextAffinity_1, t1.getPositionNearestToOffset$1(_this.__user_interaction0$_globalOffsetToTextOffset$1(details.globalPosition)).offset)); - } + if (!_this.__user_interaction0$_isDraggingCaret) + return; + t1 = _this._widget; + t2 = t1.textController; + t1 = A.RenderSuperTextLayout_textLayoutFrom(t1.textKey.get$currentState()._textLayoutKey); + t1.toString; + t2._realController.set$selection(A.TextSelection$collapsed(B.TextAffinity_1, t1.getPositionNearestToOffset$1(_this.__user_interaction0$_globalOffsetToTextOffset$1(details.globalPosition)).offset)); _this.setState$1(new A.AndroidTextFieldTouchInteractorState__onPanUpdate_closure(_this, details)); }, __user_interaction0$_onPanEnd$1(details) { @@ -610788,7 +612012,7 @@ }, $signature: 0 }; - A.AndroidTextFieldTouchInteractorState__onTextPanStart_closure.prototype = { + A.AndroidTextFieldTouchInteractorState__onPanStart_closure.prototype = { call$0() { var t2, t1 = this.$this; @@ -610848,7 +612072,7 @@ t2.toString; t3._realController.set$selection(A.TextSelection$collapsed(B.TextAffinity_1, t2.getPositionNearestToOffset$1(t1.__user_interaction0$_globalOffsetToTextOffset$1(t4)).offset)); }, - $signature: 12 + $signature: 11 }; A.AndroidTextFieldTouchInteractorState_build_closure.prototype = { call$0() { @@ -610860,7 +612084,7 @@ call$0() { return A.TapSequenceGestureRecognizer$(); }, - $signature: 261 + $signature: 254 }; A.AndroidTextFieldTouchInteractorState__buildTapAndDragDetector_closure0.prototype = { call$1(recognizer) { @@ -610871,38 +612095,38 @@ recognizer.onTripleTapDown = t1.get$__user_interaction0$_onTripleTapDown(); recognizer.gestureSettings = this.gestureSettings; }, - $signature: 264 + $signature: 267 }; A.AndroidTextFieldTouchInteractorState__buildTapAndDragDetector_closure1.prototype = { call$0() { return A.LongPressGestureRecognizer$(null, null, null); }, - $signature: 528 + $signature: 445 }; A.AndroidTextFieldTouchInteractorState__buildTapAndDragDetector_closure2.prototype = { call$1(recognizer) { recognizer.onLongPress = this.$this.get$__user_interaction0$_onLongPress(); recognizer.gestureSettings = this.gestureSettings; }, - $signature: 530 + $signature: 618 }; A.AndroidTextFieldTouchInteractorState__buildTapAndDragDetector_closure3.prototype = { call$0() { return A.PanGestureRecognizer$(null, null); }, - $signature: 242 + $signature: 262 }; A.AndroidTextFieldTouchInteractorState__buildTapAndDragDetector_closure4.prototype = { call$1(recognizer) { var _null = null, t1 = this.$this; - recognizer.onStart = t1._widget.focusNode.get$hasFocus() ? t1.get$_onTextPanStart() : _null; + recognizer.onStart = t1._widget.focusNode.get$hasFocus() ? t1.get$__user_interaction0$_onPanStart() : _null; recognizer.onUpdate = t1._widget.focusNode.get$hasFocus() ? t1.get$__user_interaction0$_onPanUpdate() : _null; recognizer.onEnd = t1._widget.focusNode.get$hasFocus() || t1.__user_interaction0$_isDraggingCaret ? t1.get$__user_interaction0$_onPanEnd() : _null; recognizer.onCancel = t1._widget.focusNode.get$hasFocus() || t1.__user_interaction0$_isDraggingCaret ? t1.get$__user_interaction0$_onPanCancel() : _null; recognizer.gestureSettings = this.gestureSettings; }, - $signature: 243 + $signature: 258 }; A._AndroidTextFieldTouchInteractorState_State_TickerProviderStateMixin.prototype = { activate$0() { @@ -610947,6 +612171,8 @@ $.WidgetsBinding__instance.WidgetsBinding__observers.push(_this); if (_this.__SuperAndroidTextFieldState__focusNode_A.get$hasFocus()) A.Frames_onNextFrame(_this, new A.SuperAndroidTextFieldState_initState_closure(_this)); + if (_this.__SuperAndroidTextFieldState__textEditingController_A._realController.get$selection().get$isValid()) + A.Frames_onNextFrame(_this, new A.SuperAndroidTextFieldState_initState_closure0(_this)); }, didUpdateWidget$1(oldWidget) { var t1, t2, t3, _this = this; @@ -611018,6 +612244,27 @@ didChangeMetrics$0() { A.Frames_onNextFrame(this, new A.SuperAndroidTextFieldState_didChangeMetrics_closure(this)); }, + _android_textfield$_getGlobalCaretRect$0() { + var globalTextOffset, caretPosition, caretOffset, t2, t3, _this = this, + t1 = _this.__SuperAndroidTextFieldState__textEditingController_A; + t1 === $ && A.throwUnnamedLateFieldNI(); + if (t1._realController.get$selection().get$isValid()) { + t1 = _this.__SuperAndroidTextFieldState__textEditingController_A._realController.get$selection(); + t1 = t1.start !== t1.end; + } else + t1 = true; + if (t1) + return null; + t1 = _this._android_textfield$_textContentKey; + globalTextOffset = A.MatrixUtils_transformPoint(type$.RenderBox._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject()).getTransformTo$1(0, null), B.Offset_0_0); + caretPosition = _this.__SuperAndroidTextFieldState__textEditingController_A._realController.get$selection().get$extent(); + caretOffset = A.RenderSuperTextLayout_textLayoutFrom(t1.get$currentState()._textLayoutKey).getOffsetForCaret$1(caretPosition).$add(0, globalTextOffset); + t1 = A.RenderSuperTextLayout_textLayoutFrom(t1.get$currentState()._textLayoutKey).getHeightForCaret$1(caretPosition); + t1.toString; + t2 = caretOffset._dx; + t3 = caretOffset._dy; + return new A.Rect(t2, t3, t2 + 1, t3 + t1); + }, get$_android_textfield$_isMultiline() { var t1 = this._widget, t2 = t1.minLines; @@ -611049,9 +612296,6 @@ t1._isToolbarVisible = false; t1.notifyListeners$0(); } - t1 = this.__SuperAndroidTextFieldState__textScrollController_A; - t1 === $ && A.throwUnnamedLateFieldNI(); - t1.ensureExtentIsVisible$0(); }, _android_textfield$_onTextScrollChange$0() { var t1 = this._android_textfield$_popoverController; @@ -611147,7 +612391,7 @@ t10 = t7.textAlign; t11 = t7.minLines; t12 = t7.maxLines; - return A.TapRegion$(new A.NonReparentingFocus(t2, _this.get$_onKeyPressed(), new A.CompositedTransformTarget(_this._android_textfield$_textFieldLayerLink, new A.AndroidTextFieldTouchInteractor(t2, t4, t5, t6, t3, false, A.TextScrollView$(new A.ListenableBuilder(new A.SuperAndroidTextFieldState__buildTextField_closure(_this), _null, t9, _null), _this._android_textfield$_scrollKey, t7.lineHeight, t12, t11, t7.padding, B.Duration_100000, false, t10, t9, t3, t8), _null), _null), _this._android_textfield$_textFieldKey), _null, true, t1, _null, _null, _null); + return A.TapRegion$(new A.NonReparentingFocus(t2, _this.get$_onKeyPressed(), new A.CompositedTransformTarget(_this._android_textfield$_textFieldLayerLink, new A.AndroidTextFieldTouchInteractor(t2, t4, t5, t6, t3, _this.get$_android_textfield$_getGlobalCaretRect(), false, A.TextScrollView$(new A.ListenableBuilder(new A.SuperAndroidTextFieldState__buildTextField_closure(_this), _null, t9, _null), _this._android_textfield$_scrollKey, t7.lineHeight, t12, t11, t7.padding, B.Duration_100000, false, t10, t9, t3, t8), _null), _null), _this._android_textfield$_textFieldKey), _null, true, t1, _null, _null, _null); }, _android_textfield$_buildSelectableText$0() { var textSpan, t2, _this = this, _null = null, @@ -611176,7 +612420,15 @@ call$1(_) { return this.$this._android_textfield$_updateSelectionAndImeConnectionOnFocusChange$0(); }, - $signature: 12 + $signature: 11 + }; + A.SuperAndroidTextFieldState_initState_closure0.prototype = { + call$1(_) { + var t1 = this.$this.__SuperAndroidTextFieldState__textScrollController_A; + t1 === $ && A.throwUnnamedLateFieldNI(); + return t1.ensureExtentIsVisible$0(); + }, + $signature: 11 }; A.SuperAndroidTextFieldState_dispose_closure.prototype = { call$1(timeStamp) { @@ -611184,7 +612436,7 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1.dispose$0(); }, - $signature: 12 + $signature: 11 }; A.SuperAndroidTextFieldState_didChangeMetrics_closure.prototype = { call$1(_) { @@ -611195,7 +612447,7 @@ return; t1._android_textfield$_autoScrollToKeepTextFieldVisible$0(); }, - $signature: 12 + $signature: 11 }; A.SuperAndroidTextFieldState__updateSelectionAndImeConnectionOnFocusChange_closure.prototype = { call$0() { @@ -611223,6 +612475,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2.detachFromIme$0(); t1.__SuperAndroidTextFieldState__textEditingController_A._realController.set$selection(B.TextSelection_ke5); + t1.__SuperAndroidTextFieldState__textEditingController_A._realController.set$composingRegion(B.TextRange_m1_m1); t1 = t1._android_textfield$_popoverController; if (t1.get$isShowing()) t1.hide$0(); @@ -611255,7 +612508,7 @@ t2.push(t1._android_textfield$_buildSelectableText$0()); return new A.CompositedTransformTarget(t1._android_textfield$_textContentLayerLink, new A.Stack(B.AlignmentDirectional_m1_m1, null, B.StackFit_0, B.Clip_1, t2, null), null); }, - $signature: 901 + $signature: 904 }; A.SuperAndroidTextFieldState__buildSelectableText_closure0.prototype = { call$2(context, textLayout) { @@ -611283,7 +612536,7 @@ } return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t1, _null); }, - $signature: 391 + $signature: 428 }; A.SuperAndroidTextFieldState__buildSelectableText_closure.prototype = { call$2(context, textLayout) { @@ -611300,7 +612553,7 @@ t3 = t3.start === t3.end ? t1.__SuperAndroidTextFieldState__textEditingController_A._realController.get$selection().get$extent() : null; return A.TextLayoutCaret$(t1._widget.blinkTimingMode, t3, t2, textLayout); }, - $signature: 608 + $signature: 597 }; A.SuperAndroidTextFieldState__buildPopoverToolbar_closure.prototype = { call$2(context, _) { @@ -611313,7 +612566,7 @@ t4 = t1._widget; return new A.AndroidEditingOverlayControls(t2, t3, t1._android_textfield$_textFieldKey, t1._android_textfield$_textContentLayerLink, t1._android_textfield$_textContentKey, t4.tapRegionGroupId, t4.handlesColor, false, A.android_textfield___defaultAndroidToolbarBuilder$closure(), null); }, - $signature: 3442 + $signature: 3450 }; A._defaultAndroidToolbarBuilder_closure.prototype = { call$0() { @@ -611410,7 +612663,7 @@ var t1, t2, _this = this; _this.super$State$initState(); t1 = _this._widget.focusNode; - t1.addListener$1(0, _this.get$_updateSelectionOnFocusChange()); + t1.addListener$1(0, _this.get$_updateSelectionAndComposingRegionOnFocusChange()); _this.__SuperDesktopTextFieldState__focusNode_A = t1; t1 = _this._widget; t1 = t1.textController; @@ -611422,7 +612675,7 @@ t2._text_field_scroller$_scrollController = t1; _this.__SuperDesktopTextFieldState__textFieldScroller_A = t2; _this._createTextFieldContext$0(); - _this._updateSelectionOnFocusChange$0(); + _this._updateSelectionAndComposingRegionOnFocusChange$0(); }, didUpdateWidget$1(oldWidget) { var t1, t2, _this = this; @@ -611430,12 +612683,12 @@ if (_this._widget.focusNode !== oldWidget.focusNode) { t1 = _this.__SuperDesktopTextFieldState__focusNode_A; t1 === $ && A.throwUnnamedLateFieldNI(); - t2 = _this.get$_updateSelectionOnFocusChange(); + t2 = _this.get$_updateSelectionAndComposingRegionOnFocusChange(); t1.removeListener$1(0, t2); t1 = _this._widget.focusNode; t1.addListener$1(0, t2); _this.__SuperDesktopTextFieldState__focusNode_A = t1; - _this._updateSelectionOnFocusChange$0(); + _this._updateSelectionAndComposingRegionOnFocusChange$0(); } if (_this._widget.textController !== oldWidget.textController) { t1 = _this.__SuperDesktopTextFieldState__controller_A; @@ -611466,7 +612719,7 @@ t1.dispose$0(); t1 = _this.__SuperDesktopTextFieldState__focusNode_A; t1 === $ && A.throwUnnamedLateFieldNI(); - t1.removeListener$1(0, _this.get$_updateSelectionOnFocusChange()); + t1.removeListener$1(0, _this.get$_updateSelectionAndComposingRegionOnFocusChange()); _this._widget.toString; t1 = _this.__SuperDesktopTextFieldState__controller_A; t1 === $ && A.throwUnnamedLateFieldNI(); @@ -611487,7 +612740,7 @@ t4 === $ && A.throwUnnamedLateFieldNI(); _this.__SuperDesktopTextFieldState__textFieldContext_A = new A.SuperTextFieldContext(t1, t2, t3, new A.SuperDesktopTextFieldState__createTextFieldContext_closure(_this), t4); }, - _updateSelectionOnFocusChange$0() { + _updateSelectionAndComposingRegionOnFocusChange$0() { var _this = this, t1 = _this.__SuperDesktopTextFieldState__focusNode_A; t1 === $ && A.throwUnnamedLateFieldNI(); @@ -611506,6 +612759,11 @@ t1 = t1._realController; t1.set$selection(A.TextSelection$collapsed(B.TextAffinity_1, t1.get$text(t1).text.length)); } + if (!_this.__SuperDesktopTextFieldState__focusNode_A.get$hasFocus()) { + t1 = _this.__SuperDesktopTextFieldState__controller_A; + t1 === $ && A.throwUnnamedLateFieldNI(); + t1._realController.set$composingRegion(B.TextRange_m1_m1); + } _this._desktop_textfield$_hasFocus = _this.__SuperDesktopTextFieldState__focusNode_A.get$hasFocus(); }, _onSelectionOrContentChange$0() { @@ -611632,13 +612890,13 @@ t1.toString; return t1; }, - $signature: 3443 + $signature: 3451 }; A.SuperDesktopTextFieldState__onSelectionOrContentChange_closure.prototype = { call$1(_) { return this.$this._updateViewportHeight$0(); }, - $signature: 12 + $signature: 11 }; A.SuperDesktopTextFieldState__updateViewportHeight_closure.prototype = { call$0() { @@ -611686,7 +612944,7 @@ t1._widget.toString; return new A.SuperTextFieldScrollview(t2, t1._desktop_textfield$_textKey, t3, t6, t4, t5, this.isMultiline, new A.Stack(B.AlignmentDirectional_m1_m1, null, B.StackFit_0, B.Clip_1, t7, null), t1._textScrollKey); }, - $signature: 46 + $signature: 44 }; A.SuperDesktopTextFieldState__buildSelectableText_closure0.prototype = { call$2(context, textLayout) { @@ -611713,7 +612971,7 @@ } return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t1, _null); }, - $signature: 391 + $signature: 428 }; A.SuperDesktopTextFieldState__buildSelectableText_closure.prototype = { call$2(context, textLayout) { @@ -611729,7 +612987,7 @@ t3 = t3._realController.get$selection().get$extent(); return A.TextLayoutCaret$(t1._widget.blinkTimingMode, t3, t2, textLayout); }, - $signature: 608 + $signature: 597 }; A.SuperTextFieldGestureInteractor.prototype = { createState$0() { @@ -611984,6 +613242,7 @@ t3 = this.tapTextPosition.offset; t3 = this.expandSelection ? A.TextSelection$(B.TextAffinity_1, t2._realController.get$selection().baseOffset, t3, false) : A.TextSelection$collapsed(B.TextAffinity_1, t3); t2._realController.set$selection(t3); + t1._widget.textController._realController.set$composingRegion(B.TextRange_m1_m1); $.$get$_log0().log$4(B.Level_FINER_400, "New text field selection: " + t1._widget.textController._realController.get$selection().toString$0(0), null, null); }, $signature: 0 @@ -612076,7 +613335,7 @@ t1.goIdle$0(); return null; }, - $signature: 247 + $signature: 240 }; A._SuperTextFieldGestureInteractorState_build_closure3.prototype = { call$1($event) { @@ -612085,7 +613344,7 @@ t1.goIdle$0(); return null; }, - $signature: 190 + $signature: 165 }; A._SuperTextFieldGestureInteractorState_build_closure5.prototype = { call$1($event) { @@ -612094,13 +613353,13 @@ t1.goIdle$0(); return null; }, - $signature: 563 + $signature: 599 }; A._SuperTextFieldGestureInteractorState_build_closure.prototype = { call$0() { return A.TapSequenceGestureRecognizer$(); }, - $signature: 261 + $signature: 254 }; A._SuperTextFieldGestureInteractorState_build_closure0.prototype = { call$1(recognizer) { @@ -612112,13 +613371,13 @@ recognizer.onTripleTap = t1.get$_onTripleTap(); recognizer.gestureSettings = this.gestureSettings; }, - $signature: 264 + $signature: 267 }; A._SuperTextFieldGestureInteractorState_build_closure1.prototype = { call$0() { return A.PanGestureRecognizer$(null, null); }, - $signature: 242 + $signature: 262 }; A._SuperTextFieldGestureInteractorState_build_closure2.prototype = { call$1(recognizer) { @@ -612129,7 +613388,7 @@ recognizer.onCancel = t1.get$_desktop_textfield$_onPanCancel(); recognizer.gestureSettings = this.gestureSettings; }, - $signature: 243 + $signature: 258 }; A.SuperTextFieldKeyboardInteractor.prototype = { createState$0() { @@ -612373,13 +613632,13 @@ call$1(_) { return this.$this._desktop_textfield$_updateSelectionAndImeConnectionOnFocusChange$0(); }, - $signature: 12 + $signature: 11 }; A._SuperTextFieldImeInteractorState_didUpdateWidget_closure.prototype = { call$1(_) { return this.$this._desktop_textfield$_updateSelectionAndImeConnectionOnFocusChange$0(); }, - $signature: 12 + $signature: 11 }; A._SuperTextFieldImeInteractorState__updateSelectionAndImeConnectionOnFocusChange_closure.prototype = { call$0() { @@ -612413,7 +613672,7 @@ call$1(_) { return this.$this._reportVisualInformationToIme$0(); }, - $signature: 12 + $signature: 11 }; A.SuperTextFieldScrollview.prototype = { createState$0() { @@ -612679,13 +613938,13 @@ call$1(_) { return this.$this._ensureSelectionExtentIsVisible$0(); }, - $signature: 12 + $signature: 11 }; A.SuperTextFieldScrollviewState__onSelectionOrContentChange_closure.prototype = { call$1(_) { return this.$this._ensureSelectionExtentIsVisible$0(); }, - $signature: 12 + $signature: 11 }; A._SelectionType.prototype = { _enumToString$0() { @@ -613218,18 +614477,28 @@ return t1 > 1; }, get$endScrollOffset() { - var t1, _this = this, + var t1, lastCharacterPosition, t2, _this = this, + viewportWidth = _this.get$viewportWidth(), viewportHeight = _this.get$viewportHeight(); - if (viewportHeight == null) + if (viewportWidth == null || viewportHeight == null) return 0; t1 = _this._widget.textEditingController._realController; - t1 = t1.get$text(t1); - t1 = A.RenderSuperTextLayout_textLayoutFrom(_this._widget.textKey.get$currentState()._textLayoutKey).getCharacterBox$1(new A.TextPosition(t1.text.length - 1, B.TextAffinity_1)); - t1 = t1 == null ? null : t1.bottom; - if (t1 == null) - t1 = A.RenderSuperTextLayout_textLayoutFrom(_this._widget.textKey.get$currentState()._textLayoutKey).get$estimatedLineHeight(); - _this._widget.toString; - return t1 - viewportHeight + 0; + lastCharacterPosition = new A.TextPosition(t1.get$text(t1).text.length - 1, B.TextAffinity_1); + t1 = _this.get$isMultiline(); + t2 = _this._widget; + if (t1) { + t1 = A.RenderSuperTextLayout_textLayoutFrom(t2.textKey.get$currentState()._textLayoutKey).getCharacterBox$1(lastCharacterPosition); + t1 = t1 == null ? null : t1.bottom; + if (t1 == null) + t1 = A.RenderSuperTextLayout_textLayoutFrom(_this._widget.textKey.get$currentState()._textLayoutKey).get$estimatedLineHeight(); + _this._widget.toString; + t1 = t1 - viewportHeight + 0; + } else { + t1 = A.RenderSuperTextLayout_textLayoutFrom(t2.textKey.get$currentState()._textLayoutKey).getCharacterBox$1(lastCharacterPosition).right; + _this._widget.toString; + t1 = t1 - viewportWidth + 0; + } + return t1; }, isTextPositionVisible$1(position) { var viewportHeight, characterBox, t1, t2, t3, t4, viewportWidth, _this = this; @@ -613603,9 +614872,10 @@ t2.log$4(B.Level_FINER_400, _s28_ + A.S(t1), _null, _null); } else { t1 = extentCharacterRectInContentSpace.right; - t3 = _this._text_scrollview$_delegate.get$viewportWidth(); - t3.toString; - if (t1 > t3) { + t3 = _this._scrollOffset; + t4 = _this._text_scrollview$_delegate.get$viewportWidth(); + t4.toString; + if (t1 - t3 > t4) { t3 = _this._text_scrollview$_delegate.get$viewportWidth(); t3.toString; t3 = t1 - t3; @@ -614301,14 +615571,14 @@ t2.push(A.Center$(A.IOSFollowingMagnifier$roundedRectangle(t1._magnifierFocalPoint, _null, B.Offset_0_m72), _null, _null)); return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t2, _null); }, - $signature: 900 + $signature: 902 }; A._IOSEditingControlsState__buildToolbar_closure.prototype = { call$1(context) { var t1 = this.$this._widget; return t1.popoverToolbarBuilder$2(context, t1.editingController); }, - $signature: 46 + $signature: 44 }; A.IOSEditingOverlayController.prototype = { dispose$0() { @@ -614345,7 +615615,7 @@ } return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t1, _null); }, - $signature: 3444 + $signature: 3452 }; A.FloatingCursorController.prototype = { updateFloatingCursor$2(textLayout, point) { @@ -614381,13 +615651,16 @@ A.IOSTextFieldTouchInteractor.prototype = { createState$0() { return new A.IOSTextFieldTouchInteractorState(new A.LayerLink(), new A.ValueNotifier(null, $.$get$ChangeNotifier__emptyListeners(), type$.ValueNotifier_nullable_Rect), null, null, B._StateLifecycle_0); + }, + getGlobalCaretRect$0() { + return this.getGlobalCaretRect.call$0(); } }; A.IOSTextFieldTouchInteractorState.prototype = { initState$0() { var _this = this; _this.super$State$initState(); - _this._widget.textController.addListener$1(0, _this.get$_onSelectionChange()); + _this._widget.textController.addListener$1(0, _this.get$_onTextOrSelectionChange()); _this._widget.textScrollController.addListener$1(0, _this.get$_onScrollChange()); }, didUpdateWidget$1(oldWidget) { @@ -614395,7 +615668,7 @@ _this.super$State$didUpdateWidget(oldWidget); t1 = oldWidget.textController; if (_this._widget.textController !== t1) { - t2 = _this.get$_onSelectionChange(); + t2 = _this.get$_onTextOrSelectionChange(); t1.removeListener$1(0, t2); _this._widget.textController.addListener$1(0, t2); } @@ -614411,42 +615684,45 @@ t1 = _this._toolbarFocusSelectionRect; t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; - _this._widget.textController.removeListener$1(0, _this.get$_onSelectionChange()); + _this._widget.textController.removeListener$1(0, _this.get$_onTextOrSelectionChange()); _this._widget.textScrollController.removeListener$1(0, _this.get$_onScrollChange()); _this.super$_IOSTextFieldTouchInteractorState_State_TickerProviderStateMixin$dispose(); }, - _onSelectionChange$0() { - if (!this._widget.textController._realController.get$selection().$eq(0, this._previousToolbarFocusSelection)) { - var t1 = $.WidgetsBinding__instance; + _onTextOrSelectionChange$0() { + var t1, _this = this; + if (!_this._widget.textController._realController.get$selection().$eq(0, _this._previousToolbarFocusSelection)) { + t1 = $.WidgetsBinding__instance; t1.toString; - A.Scheduler_runAsSoonAsPossible(t1, this.get$_computeSelectionRect(), "anonymous action"); + A.Scheduler_runAsSoonAsPossible(t1, _this.get$_computeSelectionRect(), "anonymous action"); } + if (!_this._isDraggingCaret) + _this._widget.textScrollController.ensureExtentIsVisible$0(); }, __user_interaction$_onTapDown$1(details) { - var _this = this, _null = null, + var _null = null, t1 = $.$get$_log3(); t1.log$4(B.Level_FINE_500, "User tapped down", _null, _null); - if (!_this._widget.focusNode.get$hasFocus()) { + if (!this._widget.focusNode.get$hasFocus()) { t1.log$4(B.Level_FINER_400, "Field isn't focused. Ignoring press.", _null, _null); return; } - _this._selectionBeforeTap = _this._widget.textController._realController.get$selection(); - _this._selectAtOffset$1(details.localPosition); }, __user_interaction$_onTapUp$1(details) { - var t1, t2, exactTapTextPosition, t3, t4, didTapOnExistingSelection, didCaretStayInSamePlace, _this = this; + var t1, t2, t3, exactTapTextPosition, t4, didTapOnExistingSelection, didCaretStayInSamePlace, _this = this; $.$get$_log3().log$4(B.Level_FINE_500, "User released a tap", null, null); + _this._selectionBeforeTap = _this._widget.textController._realController.get$selection(); + t1 = details.localPosition; + _this._selectAtOffset$1(t1); if (_this._widget.focusNode.get$hasFocus() && _this._widget.textController.get$isAttachedToIme()) _this._widget.textController.showKeyboard$0(); else { - t1 = _this._widget.focusNode.get$hasFocus(); - t2 = _this._widget; - if (t1) - t2.textController.attachToIme$0(); + t2 = _this._widget.focusNode.get$hasFocus(); + t3 = _this._widget; + if (t2) + t3.textController.attachToIme$0(); else - t2.focusNode.requestFocus$0(); + t3.focusNode.requestFocus$0(); } - t1 = details.localPosition; exactTapTextPosition = _this._getTextPositionAtOffset$1(t1); if (exactTapTextPosition != null) { t2 = _this._selectionBeforeTap; @@ -614489,13 +615765,15 @@ _this._selectionBeforeTap = null; }, _selectAtOffset$1(localOffset) { - var t1 = this._getTextPositionNearestToOffset$1(localOffset).offset; + var _this = this, + t1 = _this._getTextPositionNearestToOffset$1(localOffset).offset; if (t1 < 0) { - t1 = this._widget.textController._realController; + t1 = _this._widget.textController._realController; t1.set$selection(A.TextSelection$collapsed(B.TextAffinity_1, t1.get$text(t1).text.length)); return; } - this._widget.textController._realController.set$selection(A.TextSelection$collapsed(B.TextAffinity_1, t1)); + _this._widget.textController._realController.set$selection(A.TextSelection$collapsed(B.TextAffinity_1, t1)); + _this._widget.textController._realController.set$composingRegion(B.TextRange_m1_m1); }, _onDoubleTapDown$1(details) { var _this = this; @@ -614511,20 +615789,20 @@ this._widget.textController._realController.set$selection(A.paragraphExpansionFilter(textLayout._richText.toPlainText$0(), t1, B.TextAffinity_1)); }, _onPanStart$1(details) { + var globalCaretRect; $.$get$_log3().log$4(B.Level_FINE_500, "_onPanStart()", null, null); + globalCaretRect = this._widget.getGlobalCaretRect$0(); + if (globalCaretRect == null) + return; + if (Math.abs(globalCaretRect.get$center().$sub(0, details.globalPosition)._dx) > 48) + return; this.setState$1(new A.IOSTextFieldTouchInteractorState__onPanStart_closure(this, details)); }, __user_interaction$_onPanUpdate$1(details) { - var t1, t2, _this = this; $.$get$_log3().log$4(B.Level_FINE_500, "_onPanUpdate handle mode", null, null); - if (_this._isDraggingCaret) { - t1 = _this._widget; - t2 = t1.textController; - t1 = A.RenderSuperTextLayout_textLayoutFrom(t1.selectableTextKey.get$currentState()._textLayoutKey); - t1.toString; - t2._realController.set$selection(A.TextSelection$collapsed(B.TextAffinity_1, t1.getPositionNearestToOffset$1(_this._globalOffsetToTextOffset$1(details.globalPosition)).offset)); - } - _this.setState$1(new A.IOSTextFieldTouchInteractorState__onPanUpdate_closure(_this, details)); + if (!this._isDraggingCaret) + return; + this.setState$1(new A.IOSTextFieldTouchInteractorState__onPanUpdate_closure(this, details)); }, __user_interaction$_onPanEnd$1(details) { $.$get$_log3().log$4(B.Level_FINE_500, "_onPanEnd()", null, null); @@ -614589,17 +615867,24 @@ return new A.ValueListenableBuilder(this._toolbarFocusSelectionRect, new A.IOSTextFieldTouchInteractorState__buildTrackerForToolbarFocus_closure(this), null, null, type$.ValueListenableBuilder_nullable_Rect); }, _computeSelectionRect$0() { - var t1, textBoxes, boundingBox, i, _this = this; + var t1, selectionExtent, caretOffset, caretHeight, t2, textBoxes, boundingBox, i, _this = this; _this._previousToolbarFocusSelection = _this._widget.textController._realController.get$selection(); - if (_this._widget.textController._realController.get$selection().get$isValid()) { - t1 = _this._widget.textController._realController.get$selection(); - t1 = t1.start === t1.end; - } else - t1 = true; - if (t1) { + if (!_this._widget.textController._realController.get$selection().get$isValid()) { _this._toolbarFocusSelectionRect.set$value(0, null); return; } + t1 = _this._widget.textController._realController.get$selection(); + if (t1.start === t1.end) { + selectionExtent = _this._widget.textController._realController.get$selection().get$extent(); + caretOffset = A.RenderSuperTextLayout_textLayoutFrom(_this._widget.selectableTextKey.get$currentState()._textLayoutKey).getOffsetForCaret$1(selectionExtent); + caretHeight = A.RenderSuperTextLayout_textLayoutFrom(_this._widget.selectableTextKey.get$currentState()._textLayoutKey).getHeightForCaret$1(selectionExtent); + if (caretHeight == null) + caretHeight = A.RenderSuperTextLayout_textLayoutFrom(_this._widget.selectableTextKey.get$currentState()._textLayoutKey).getLineHeightAtPosition$1(selectionExtent); + t1 = caretOffset._dx; + t2 = caretOffset._dy; + _this._toolbarFocusSelectionRect.set$value(0, new A.Rect(t1, t2, t1 + 0, t2 + caretHeight)); + return; + } t1 = A.RenderSuperTextLayout_textLayoutFrom(_this._widget.selectableTextKey.get$currentState()._textLayoutKey); t1.toString; textBoxes = t1.getBoxesForSelection$1(_this._widget.textController._realController.get$selection()); @@ -614647,14 +615932,20 @@ A.IOSTextFieldTouchInteractorState__onPanUpdate_closure.prototype = { call$0() { var t1 = this.$this, - t2 = this.details.delta; - t1.__user_interaction$_globalDragOffset = t1.__user_interaction$_globalDragOffset.$add(0, t2); - t2 = t1.__user_interaction$_dragOffset.$add(0, t2); - t1.__user_interaction$_dragOffset = t2; - t1._widget.textScrollController.updateAutoScrollingForTouchOffset$1$userInteractionOffsetInViewport(t2); - t2 = t1._widget.editingOverlayController; + t2 = t1._widget, + t3 = t2.textController, + t4 = this.details; + t2 = A.RenderSuperTextLayout_textLayoutFrom(t2.selectableTextKey.get$currentState()._textLayoutKey); + t2.toString; + t3._realController.set$selection(A.TextSelection$collapsed(B.TextAffinity_1, t2.getPositionNearestToOffset$1(t1._globalOffsetToTextOffset$1(t4.globalPosition)).offset)); + t4 = t4.delta; + t1.__user_interaction$_globalDragOffset = t1.__user_interaction$_globalDragOffset.$add(0, t4); + t4 = t1.__user_interaction$_dragOffset.$add(0, t4); + t1.__user_interaction$_dragOffset = t4; + t1._widget.textScrollController.updateAutoScrollingForTouchOffset$1$userInteractionOffsetInViewport(t4); + t4 = t1._widget.editingOverlayController; t1.__user_interaction$_globalDragOffset.toString; - t2.overlayController.showMagnifier$0(); + t4.overlayController.showMagnifier$0(); }, $signature: 0 }; @@ -614683,7 +615974,7 @@ t2.toString; t3._realController.set$selection(A.TextSelection$collapsed(B.TextAffinity_1, t2.getPositionNearestToOffset$1(t1._globalOffsetToTextOffset$1(t4)).offset)); }, - $signature: 12 + $signature: 11 }; A.IOSTextFieldTouchInteractorState_build_closure0.prototype = { call$0() { @@ -614701,7 +615992,7 @@ call$0() { return A.TapSequenceGestureRecognizer$(); }, - $signature: 261 + $signature: 254 }; A.IOSTextFieldTouchInteractorState__buildTapAndDragDetector_closure0.prototype = { call$1(recognizer) { @@ -614712,13 +616003,13 @@ recognizer.onTripleTapDown = t1.get$_onTripleTapDown(); recognizer.gestureSettings = this.gestureSettings; }, - $signature: 264 + $signature: 267 }; A.IOSTextFieldTouchInteractorState__buildTapAndDragDetector_closure1.prototype = { call$0() { return A.PanGestureRecognizer$(null, null); }, - $signature: 242 + $signature: 262 }; A.IOSTextFieldTouchInteractorState__buildTapAndDragDetector_closure2.prototype = { call$1(recognizer) { @@ -614730,7 +616021,7 @@ recognizer.onCancel = t1._widget.focusNode.get$hasFocus() || t1._isDraggingCaret ? t1.get$__user_interaction$_onPanCancel() : _null; recognizer.gestureSettings = this.gestureSettings; }, - $signature: 243 + $signature: 258 }; A.IOSTextFieldTouchInteractorState__buildTrackerForToolbarFocus_closure.prototype = { call$3(context, selectionRect, child) { @@ -614740,7 +616031,7 @@ t1 = this.$this._widget.editingOverlayController; return A.Positioned$fromRect(A.Leader$(B.SizedBox_null_null_null_null, t1._toolbarFocalPoint), selectionRect); }, - $signature: 893 + $signature: 895 }; A._IOSTextFieldTouchInteractorState_State_TickerProviderStateMixin.prototype = { activate$0() { @@ -614776,7 +616067,7 @@ t1.addListener$1(0, _this.get$_updateSelectionAndImeConnectionOnFocusChange()); _this.__SuperIOSTextFieldState__focusNode_A = t1; t1 = _this._widget.textController; - t1.addListener$1(0, _this.get$_onTextOrSelectionChange()); + t1.addListener$1(0, _this.get$_ios_textfield$_onTextOrSelectionChange()); t1._onIOSFloatingCursorChange = _this.get$_onFloatingCursorChange(); if (t1.__ime_text_editing_controller$_onPerformActionPressed == null) t1.__ime_text_editing_controller$_onPerformActionPressed = _this.get$_onPerformActionPressed(); @@ -614794,6 +616085,8 @@ $.WidgetsBinding__instance.WidgetsBinding__observers.push(_this); if (_this.__SuperIOSTextFieldState__focusNode_A.get$hasFocus()) A.Frames_onNextFrame(_this, new A.SuperIOSTextFieldState_initState_closure(_this)); + if (_this.__SuperIOSTextFieldState__textEditingController_A._realController.get$selection().get$isValid()) + A.Frames_onNextFrame(_this, new A.SuperIOSTextFieldState_initState_closure0(_this)); }, didUpdateWidget$1(oldWidget) { var t1, t2, t3, _this = this; @@ -614810,7 +616103,7 @@ if (_this._widget.textController !== oldWidget.textController) { t1 = _this.__SuperIOSTextFieldState__textEditingController_A; t1 === $ && A.throwUnnamedLateFieldNI(); - t2 = _this.get$_onTextOrSelectionChange(); + t2 = _this.get$_ios_textfield$_onTextOrSelectionChange(); t1.removeListener$1(0, t2); t1._onIOSFloatingCursorChange = null; t1 = _this.get$_onPerformActionPressed(); @@ -614832,7 +616125,7 @@ $.WidgetsBinding__instance.SchedulerBinding__postFrameCallbacks.push(new A.SuperIOSTextFieldState_dispose_closure(_this)); t1 = _this.__SuperIOSTextFieldState__textEditingController_A; t1 === $ && A.throwUnnamedLateFieldNI(); - t1.removeListener$1(0, _this.get$_onTextOrSelectionChange()); + t1.removeListener$1(0, _this.get$_ios_textfield$_onTextOrSelectionChange()); t1._onIOSFloatingCursorChange = null; t1.detachFromIme$0(); _this._widget.toString; @@ -614855,6 +616148,27 @@ didChangeMetrics$0() { A.Frames_onNextFrame(this, new A.SuperIOSTextFieldState_didChangeMetrics_closure(this)); }, + _getGlobalCaretRect$0() { + var globalTextOffset, caretPosition, caretOffset, t2, t3, _this = this, + t1 = _this.__SuperIOSTextFieldState__textEditingController_A; + t1 === $ && A.throwUnnamedLateFieldNI(); + if (t1._realController.get$selection().get$isValid()) { + t1 = _this.__SuperIOSTextFieldState__textEditingController_A._realController.get$selection(); + t1 = t1.start !== t1.end; + } else + t1 = true; + if (t1) + return null; + t1 = _this._textContentKey; + globalTextOffset = A.MatrixUtils_transformPoint(type$.RenderBox._as($.WidgetsBinding__instance.WidgetsBinding__buildOwner._globalKeyRegistry.$index(0, t1).get$renderObject()).getTransformTo$1(0, null), B.Offset_0_0); + caretPosition = _this.__SuperIOSTextFieldState__textEditingController_A._realController.get$selection().get$extent(); + caretOffset = A.RenderSuperTextLayout_textLayoutFrom(t1.get$currentState()._textLayoutKey).getOffsetForCaret$1(caretPosition).$add(0, globalTextOffset); + t1 = A.RenderSuperTextLayout_textLayoutFrom(t1.get$currentState()._textLayoutKey).getHeightForCaret$1(caretPosition); + t1.toString; + t2 = caretOffset._dx; + t3 = caretOffset._dy; + return new A.Rect(t2, t3, t2 + 1, t3 + t1); + }, get$_isMultiline() { var t1 = this._widget, t2 = t1.minLines; @@ -614876,7 +616190,7 @@ _this.setState$1(new A.SuperIOSTextFieldState__updateSelectionAndImeConnectionOnFocusChange_closure0(_this)); } }, - _onTextOrSelectionChange$0() { + _ios_textfield$_onTextOrSelectionChange$0() { var t1 = this.__SuperIOSTextFieldState__textEditingController_A; t1 === $ && A.throwUnnamedLateFieldNI(); t1 = t1._realController.get$selection(); @@ -614885,9 +616199,6 @@ t1 === $ && A.throwUnnamedLateFieldNI(); t1.overlayController.hideToolbar$0(); } - t1 = this.__SuperIOSTextFieldState__textScrollController_A; - t1 === $ && A.throwUnnamedLateFieldNI(); - t1.ensureExtentIsVisible$0(); }, _ios_textfield$_onTextScrollChange$0() { if (this._popoverController.get$isShowing()) @@ -614973,7 +616284,7 @@ t10 = t7.textAlign; t11 = t7.minLines; t12 = t7.maxLines; - return A.TapRegion$(new A.NonReparentingFocus(t2, _null, new A.CompositedTransformTarget(_this._textFieldLayerLink, new A.IOSTextFieldTouchInteractor(t2, t4, t5, t6, t3, false, A.TextScrollView$(new A.ListenableBuilder(new A.SuperIOSTextFieldState__buildTextField_closure(_this), _null, t9, _null), _this._scrollKey, t7.lineHeight, t12, t11, t7.padding, B.Duration_100000, false, t10, t9, t3, t8), _null), _null), _this._textFieldKey), _null, true, t1, _null, _null, _null); + return A.TapRegion$(new A.NonReparentingFocus(t2, _null, new A.CompositedTransformTarget(_this._textFieldLayerLink, new A.IOSTextFieldTouchInteractor(t2, t4, t5, t6, t3, _this.get$_getGlobalCaretRect(), false, A.TextScrollView$(new A.ListenableBuilder(new A.SuperIOSTextFieldState__buildTextField_closure(_this), _null, t9, _null), _this._scrollKey, t7.lineHeight, t12, t11, t7.padding, B.Duration_100000, false, t10, t9, t3, t8), _null), _null), _this._textFieldKey), _null, true, t1, _null, _null, _null); }, _buildSelectableText$0() { var textSpan, caretStyle, caretColorOverride, t2, _this = this, _null = null, @@ -615008,7 +616319,15 @@ call$1(_) { return this.$this._updateSelectionAndImeConnectionOnFocusChange$0(); }, - $signature: 12 + $signature: 11 + }; + A.SuperIOSTextFieldState_initState_closure0.prototype = { + call$1(_) { + var t1 = this.$this.__SuperIOSTextFieldState__textScrollController_A; + t1 === $ && A.throwUnnamedLateFieldNI(); + return t1.ensureExtentIsVisible$0(); + }, + $signature: 11 }; A.SuperIOSTextFieldState_dispose_closure.prototype = { call$1(timeStamp) { @@ -615022,7 +616341,7 @@ t1.ChangeNotifier__listeners = $.$get$ChangeNotifier__emptyListeners(); t1.ChangeNotifier__count = 0; }, - $signature: 12 + $signature: 11 }; A.SuperIOSTextFieldState_didChangeMetrics_closure.prototype = { call$1(_) { @@ -615033,7 +616352,7 @@ return; t1._autoScrollToKeepTextFieldVisible$0(); }, - $signature: 12 + $signature: 11 }; A.SuperIOSTextFieldState__updateSelectionAndImeConnectionOnFocusChange_closure.prototype = { call$0() { @@ -615061,6 +616380,7 @@ t2 === $ && A.throwUnnamedLateFieldNI(); t2.detachFromIme$0(); t1.__SuperIOSTextFieldState__textEditingController_A._realController.set$selection(B.TextSelection_ke5); + t1.__SuperIOSTextFieldState__textEditingController_A._realController.set$composingRegion(B.TextRange_m1_m1); t1 = t1._popoverController; if (t1.get$isShowing()) t1.hide$0(); @@ -615096,7 +616416,7 @@ t2.push(A.Positioned$(0, new A.IOSFloatingCursor(t3, _null), _null, _null, 0, 0, 0, _null)); return new A.CompositedTransformTarget(t1._textContentLayerLink, new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t2, _null), _null); }, - $signature: 901 + $signature: 904 }; A.SuperIOSTextFieldState__buildSelectableText_closure0.prototype = { call$2(context, textLayout) { @@ -615124,7 +616444,7 @@ } return new A.Stack(B.AlignmentDirectional_m1_m1, _null, B.StackFit_0, B.Clip_1, t1, _null); }, - $signature: 391 + $signature: 428 }; A.SuperIOSTextFieldState__buildSelectableText_closure.prototype = { call$2(context, textLayout) { @@ -615141,7 +616461,7 @@ t3 = t3.start === t3.end ? t1.__SuperIOSTextFieldState__textEditingController_A._realController.get$selection().get$extent() : null; return A.TextLayoutCaret$(t1._widget.blinkTimingMode, t3, t2, textLayout); }, - $signature: 608 + $signature: 597 }; A.SuperIOSTextFieldState__buildPopoverToolbar_closure.prototype = { call$2(context, _) { @@ -615154,7 +616474,7 @@ t4 = t1._widget; return new A.IOSEditingControls(t2, t3, t1._textFieldKey, t1._textContentLayerLink, t1._textContentKey, t4.tapRegionGroupId, t4.handlesColor, false, A.ios_textfield___defaultPopoverToolbarBuilder$closure(), null); }, - $signature: 3446 + $signature: 3454 }; A._defaultPopoverToolbarBuilder_closure.prototype = { call$0() { @@ -615239,22 +616559,34 @@ }; A.SuperTextFieldState.prototype = { initState$0() { - this.super$State$initState(); - var t1 = this._widget.textController; + var t1, t2, _this = this; + _this.super$State$initState(); + t1 = _this._widget; + t2 = t1.focusNode; + _this.__SuperTextFieldState__focusNode_A = t2; + t1 = t1.textController; if (!(t1 != null)) t1 = A.ImeAttributedTextEditingController$(null, true); - this.__SuperTextFieldState__controller_A = t1; + _this.__SuperTextFieldState__controller_A = t1; }, didUpdateWidget$1(oldWidget) { - var t1; - this.super$State$didUpdateWidget(oldWidget); - t1 = this._widget.textController; + var t1, t2, _this = this; + _this.super$State$didUpdateWidget(oldWidget); + t1 = _this._widget; + t2 = t1.focusNode; + if (t2 !== oldWidget.focusNode) + _this.__SuperTextFieldState__focusNode_A = t2; + t1 = t1.textController; if (t1 != oldWidget.textController) { if (!(t1 != null)) t1 = A.ImeAttributedTextEditingController$(null, true); - this.__SuperTextFieldState__controller_A = t1; + _this.__SuperTextFieldState__controller_A = t1; } }, + dispose$0() { + this._widget.toString; + this.super$State$dispose(); + }, get$_textInputAction() { var t1 = this._widget, t2 = t1.minLines; @@ -615280,53 +616612,44 @@ return t1; }, build$1(context) { - var t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, _this = this, _null = null; + var t1, t2, t3, t4, t5, t6, t7, t8, _this = this, _null = null; switch (_this.get$_super_textfield$_configuration().index) { case 0: - t1 = _this._widget; - t2 = t1.focusNode; + t1 = _this.__SuperTextFieldState__focusNode_A; + t1 === $ && A.throwUnnamedLateFieldNI(); + t2 = _this._widget; + t2.toString; t3 = _this.__SuperTextFieldState__controller_A; t3 === $ && A.throwUnnamedLateFieldNI(); - t4 = t1.textStyleBuilder; - t5 = t1.hintBehavior; - t6 = t1.hintBuilder; - t7 = new A.CaretStyle(B.Color_4278190080, 1, B.BorderRadius_tLn0); - t8 = t1.minLines; - t1 = t1.maxLines; - t9 = _this.get$_inputSource(); - t10 = _this.get$_textInputAction(); + t4 = new A.CaretStyle(B.Color_4278190080, 1, B.BorderRadius_tLn0); + t5 = _this.get$_inputSource(); + t6 = _this.get$_textInputAction(); _this._widget.toString; - t11 = A.defaultTargetPlatform(); - t12 = t9 === B.TextInputSource_0 ? B.List_Iqz : B.List_aoW; - return new A.SuperDesktopTextField(t2, _null, t3, t4, t5, t6, B.TextAlign_0, new A.SelectionHighlightStyle(B.Color_4289515255), t7, B.BlinkTimingMode_0, B.EdgeInsets_0_0_0_0, t8, t1, t9, t12, _null, t10, _null, t11 === B.TargetPlatform_4, _this._platformFieldKey); + t7 = A.defaultTargetPlatform(); + t8 = t5 === B.TextInputSource_0 ? B.List_Iqz : B.List_aoW; + return new A.SuperDesktopTextField(t1, _null, t3, t2.textStyleBuilder, t2.hintBehavior, t2.hintBuilder, B.TextAlign_0, new A.SelectionHighlightStyle(B.Color_4289515255), t4, B.BlinkTimingMode_0, B.EdgeInsets_0_0_0_0, t2.minLines, t2.maxLines, t5, t8, _null, t6, _null, t7 === B.TargetPlatform_4, _this._platformFieldKey); case 1: - t1 = _this._widget; - t2 = t1.focusNode; + t1 = _this.__SuperTextFieldState__focusNode_A; + t1 === $ && A.throwUnnamedLateFieldNI(); + t2 = _this._widget; + t2.toString; t3 = _this.__SuperTextFieldState__controller_A; t3 === $ && A.throwUnnamedLateFieldNI(); - t4 = t1.textStyleBuilder; - t5 = t1.hintBehavior; - t6 = t1.hintBuilder; - t7 = new A.CaretStyle(B.Color_4288988729, 2, B.BorderRadius_tLn0); - t8 = t1.minLines; - t1 = t1.maxLines; - t9 = _this.get$_textInputAction(); + t4 = new A.CaretStyle(B.Color_4288988729, 2, B.BorderRadius_tLn0); + t5 = _this.get$_textInputAction(); _this._widget.toString; - return A.Shortcuts$(new A.SuperAndroidTextField(t2, _null, t3, B.TextAlign_0, t4, t5, t6, t7, B.BlinkTimingMode_0, B.Color_4289515255, B.Color_4288988729, t8, t1, _null, t9, _null, true, _null, _this._platformFieldKey), _null, _this._scrollShortcutOverrides); + return A.Shortcuts$(new A.SuperAndroidTextField(t1, _null, t3, B.TextAlign_0, t2.textStyleBuilder, t2.hintBehavior, t2.hintBuilder, t4, B.BlinkTimingMode_0, B.Color_4289515255, B.Color_4288988729, t2.minLines, t2.maxLines, _null, t5, _null, true, _null, _this._platformFieldKey), _null, _this._scrollShortcutOverrides); case 2: - t1 = _this._widget; - t2 = t1.focusNode; + t1 = _this.__SuperTextFieldState__focusNode_A; + t1 === $ && A.throwUnnamedLateFieldNI(); + t2 = _this._widget; + t2.toString; t3 = _this.__SuperTextFieldState__controller_A; t3 === $ && A.throwUnnamedLateFieldNI(); - t4 = t1.textStyleBuilder; - t5 = t1.hintBehavior; - t6 = t1.hintBuilder; - t7 = new A.CaretStyle(B.Color_4280391411, 2, B.BorderRadius_tLn0); - t8 = t1.minLines; - t1 = t1.maxLines; - t9 = _this.get$_textInputAction(); + t4 = new A.CaretStyle(B.Color_4280391411, 2, B.BorderRadius_tLn0); + t5 = _this.get$_textInputAction(); _this._widget.toString; - return A.Shortcuts$(new A.SuperIOSTextField(t2, _null, t3, B.TextAlign_0, t4, t5, t6, t7, B.BlinkTimingMode_0, B.Color_4289515255, B.Color_4280391411, t8, t1, _null, t9, _null, true, _null, _this._platformFieldKey), _null, _this._scrollShortcutOverrides); + return A.Shortcuts$(new A.SuperIOSTextField(t1, _null, t3, B.TextAlign_0, t2.textStyleBuilder, t2.hintBehavior, t2.hintBuilder, t4, B.BlinkTimingMode_0, B.Color_4289515255, B.Color_4280391411, t2.minLines, t2.maxLines, _null, t5, _null, true, _null, _this._platformFieldKey), _null, _this._scrollShortcutOverrides); } } }; @@ -615575,7 +616898,7 @@ else return B.SizedBox_null_null_null_null; }, - $signature: 237 + $signature: 221 }; A.SuperTextState_build_closure0.prototype = { call$2(context, constraints) { @@ -615590,7 +616913,7 @@ } else return B.SizedBox_null_null_null_null; }, - $signature: 237 + $signature: 221 }; A._SuperTextLayout.prototype = { createRenderObject$1(context) { @@ -615707,6 +617030,13 @@ } }; A.RenderLayoutAwareParagraph.prototype = { + set$textAlign(_, value) { + var _this = this; + if (value === A.RenderParagraph.prototype.get$textAlign.call(_this, _this)) + return; + _this.super$RenderParagraph$textAlign(0, value); + _this.markNeedsLayout$0(); + }, markNeedsLayout$0() { this.super$RenderParagraph$markNeedsLayout(); this._super_text$_needsLayout = true; @@ -615815,11 +617145,14 @@ return null; return t1.getFullHeightForCaret$1(position); }, - getBoxesForSelection$1(selection) { + getBoxesForSelection$2$boxHeightStyle(selection, boxHeightStyle) { var t1 = this._renderParagraph; if (t1._super_text$_needsLayout) return A._setArrayType([], type$.JSArray_TextBox); - return t1.getBoxesForSelection$1(selection); + return t1.getBoxesForSelection$3$boxHeightStyle$boxWidthStyle(selection, boxHeightStyle, B.BoxWidthStyle_0); + }, + getBoxesForSelection$1(selection) { + return this.getBoxesForSelection$2$boxHeightStyle(selection, B.BoxHeightStyle_0); }, getCharacterBox$1(position) { var t2, lineHeightEstimate, characterPosition, boxes, t3, t4, t5, t6, t7, @@ -616000,7 +617333,7 @@ t4 = t4.end; t6 = t5 < t4; t7 = t6 ? t5 : t4; - boxes = t3.getBoxesForSelection$1(new A.TextSelection(t5, t4, B.TextAffinity_1, false, t7, t6 ? t4 : t5)); + boxes = t3.getBoxesForSelection$2$boxHeightStyle(new A.TextSelection(t5, t4, B.TextAffinity_1, false, t7, t6 ? t4 : t5), B.BoxHeightStyle_1); lines = A._setArrayType([], t2); for (t3 = boxes.length, _i0 = 0; _i0 < boxes.length; boxes.length === t3 || (0, A.throwConcurrentModificationError)(boxes), ++_i0) { box = boxes[_i0]; @@ -617885,7 +619218,7 @@ call$1(str) { return str.length !== 0; }, - $signature: 11 + $signature: 12 }; A.LaunchMode.prototype = { _enumToString$0() { @@ -617903,7 +619236,7 @@ call$1(value) { return value === true; }, - $signature: 3447 + $signature: 3455 }; A.PreferredLaunchMode.prototype = { _enumToString$0() { @@ -619394,7 +620727,7 @@ t1.toString; return t1; }, - $signature: 25 + $signature: 26 }; A._MaterialScrollbarState__trackColor_closure1.prototype = { call$1(states) { @@ -619417,7 +620750,7 @@ } return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._MaterialScrollbarState__trackBorderColor_closure1.prototype = { call$1(states) { @@ -619440,7 +620773,7 @@ } return B.Color_0; }, - $signature: 25 + $signature: 26 }; A._MaterialScrollbarState__thickness_closure1.prototype = { call$1(states) { @@ -619471,7 +620804,7 @@ t1 = t2; return t1; }, - $signature: 411 + $signature: 407 }; A._MaterialScrollbarState_initState_closure1.prototype = { call$0() { @@ -619576,13 +620909,13 @@ call$1(e) { return this.onData.call$1(e); }, - $signature: 29 + $signature: 30 }; A._EventStreamSubscription_onData_closure0.prototype = { call$1(e) { return this.handleData.call$1(e); }, - $signature: 29 + $signature: 30 }; A.HttpRequest_request_closure.prototype = { call$1(e) { @@ -619597,7 +620930,7 @@ else t3.completeError$1(e); }, - $signature: 29 + $signature: 30 }; A.WindowListener.prototype = {}; A.main_closure0.prototype = { @@ -620088,6 +621421,7 @@ _.super$_InterestingSemanticsFragment$addTags = _.addTags$1; _ = A.RenderParagraph.prototype; _.super$RenderParagraph$markNeedsLayout = _.markNeedsLayout$0; + _.super$RenderParagraph$textAlign = _.set$textAlign; _.super$RenderParagraph$performLayout = _.performLayout$0; _ = A._RenderParagraph_RenderBox_ContainerRenderObjectMixin.prototype; _.super$_RenderParagraph_RenderBox_ContainerRenderObjectMixin$attach = _.attach$1; @@ -620558,8 +621892,8 @@ _.super$DocumentNode$$eq = _.$eq; _ = A._BlockquoteComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel.prototype; _.super$_BlockquoteComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel$applyStyles = _.applyStyles$1; - _ = A.__CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin.prototype; - _.super$__CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin$dispose = _.dispose$0; + _ = A._CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin.prototype; + _.super$_CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__DocumentMouseInteractorState_State_SingleTickerProviderStateMixin.prototype; _.super$__DocumentMouseInteractorState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin.prototype; @@ -620575,6 +621909,8 @@ _.super$SingleColumnLayoutComponentViewModel$$eq = _.$eq; _ = A.TextNode.prototype; _.super$TextNode$$eq = _.$eq; + _ = A.__RoundedRectanglePopoverAppearanceState_State_SingleTickerProviderStateMixin.prototype; + _.super$__RoundedRectanglePopoverAppearanceState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.__SelectionLeadersDocumentLayerState_DocumentLayoutLayerState_SingleTickerProviderStateMixin.prototype; _.super$__SelectionLeadersDocumentLayerState_DocumentLayoutLayerState_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A.RawScrollbarWithCustomPhysicsState.prototype; @@ -620590,6 +621926,8 @@ _.super$_RawScrollbarWithCustomPhysicsState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A._AndroidControlsDocumentLayerState_DocumentLayoutLayerState_SingleTickerProviderStateMixin.prototype; _.super$_AndroidControlsDocumentLayerState_DocumentLayoutLayerState_SingleTickerProviderStateMixin$dispose = _.dispose$0; + _ = A._ItemSelectionListState_State_SingleTickerProviderStateMixin.prototype; + _.super$_ItemSelectionListState_State_SingleTickerProviderStateMixin$dispose = _.dispose$0; _ = A._AndroidTextFieldTouchInteractorState_State_TickerProviderStateMixin.prototype; _.super$_AndroidTextFieldTouchInteractorState_State_TickerProviderStateMixin$dispose = _.dispose$0; _ = A._SuperAndroidTextFieldState_State_TickerProviderStateMixin.prototype; @@ -620617,130 +621955,130 @@ _instance_0_i = hunkHelpers._instance_0i, _instance_2_u = hunkHelpers._instance_2u, _instance_2_i = hunkHelpers._instance_2i; - _static_2(A, "_engine__canvasKitWasmModuleUrl$closure", "canvasKitWasmModuleUrl", 536); - _static_1(A, "_engine_BitmapCanvas__onEvictElement$closure", "BitmapCanvas__onEvictElement", 29); + _static_2(A, "_engine__canvasKitWasmModuleUrl$closure", "canvasKitWasmModuleUrl", 476); + _static_1(A, "_engine_BitmapCanvas__onEvictElement$closure", "BitmapCanvas__onEvictElement", 30); _static(A, "_engine___defaultFactory$closure", 1, function() { return {params: null}; }, ["call$2$params", "call$1"], ["_defaultFactory", function(viewId) { return A._defaultFactory(viewId, null); - }], 3449, 0); - _static_1(A, "_engine___noopCallback$closure", "_noopCallback", 152); + }], 3457, 0); + _static_1(A, "_engine___noopCallback$closure", "_noopCallback", 163); _static_1(A, "_engine___emptyCallback$closure", "_emptyCallback", 10); _instance_0_u(A.AlarmClock.prototype, "get$_timerDidFire", "_timerDidFire$0", 0); var _; - _instance_1_u(_ = A.HtmlViewEmbedder.prototype, "get$_releaseOverlay", "_releaseOverlay$1", 75); - _instance_1_u(_, "get$_initializeOverlay", "_initializeOverlay$1", 75); - _instance_1_u(A.CkNWayCanvas.prototype, "get$addCanvas", "addCanvas$1", 3452); - _instance_1_u(_ = A.Surface.prototype, "get$_contextRestoredListener", "_contextRestoredListener$1", 29); - _instance_1_u(_, "get$_contextLostListener", "_contextLostListener$1", 29); - _instance_1_u(A.SurfaceFactory.prototype, "get$_removeFromDom", "_removeFromDom$1", 1245); - _instance_1_u(A.FlutterViewEmbedder.prototype, "get$_metricsDidChange", "_metricsDidChange$1", 1134); - _instance_1_i(_ = A.FallbackFontDownloadQueue.prototype, "get$add", "add$1", 1743); + _instance_1_u(_ = A.HtmlViewEmbedder.prototype, "get$_releaseOverlay", "_releaseOverlay$1", 76); + _instance_1_u(_, "get$_initializeOverlay", "_initializeOverlay$1", 76); + _instance_1_u(A.CkNWayCanvas.prototype, "get$addCanvas", "addCanvas$1", 926); + _instance_1_u(_ = A.Surface.prototype, "get$_contextRestoredListener", "_contextRestoredListener$1", 30); + _instance_1_u(_, "get$_contextLostListener", "_contextLostListener$1", 30); + _instance_1_u(A.SurfaceFactory.prototype, "get$_removeFromDom", "_removeFromDom$1", 1247); + _instance_1_u(A.FlutterViewEmbedder.prototype, "get$_metricsDidChange", "_metricsDidChange$1", 1142); + _instance_1_i(_ = A.FallbackFontDownloadQueue.prototype, "get$add", "add$1", 1746); _instance_0_u(_, "get$startDownloads", "startDownloads$0", 20); - _instance_1_u(A.KeyboardBinding.prototype, "get$_onKeyData", "_onKeyData$1", 494); - _instance_1_i(A.MultiEntriesBrowserHistory.prototype, "get$onPopState", "onPopState$1", 44); - _instance_1_i(A.SingleEntryBrowserHistory.prototype, "get$onPopState", "onPopState$1", 44); - _instance_1_u(A.HighContrastSupport.prototype, "get$_onHighContrastChange", "_onHighContrastChange$1", 29); + _instance_1_u(A.KeyboardBinding.prototype, "get$_onKeyData", "_onKeyData$1", 620); + _instance_1_i(A.MultiEntriesBrowserHistory.prototype, "get$onPopState", "onPopState$1", 45); + _instance_1_i(A.SingleEntryBrowserHistory.prototype, "get$onPopState", "onPopState$1", 45); + _instance_1_u(A.HighContrastSupport.prototype, "get$_onHighContrastChange", "_onHighContrastChange$1", 30); _instance_0_u(_ = A.EnginePlatformDispatcher.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(_, "get$_updateHighContrast", "_updateHighContrast$1", 13); - _instance_1_u(A.PointerBinding.prototype, "get$_onPointerData", "_onPointerData$1", 1401); - _instance_1_u(A.TextLayoutService.prototype, "get$_positionLineFragments", "_positionLineFragments$1", 2088); - _instance_1_u(A.Spanometer.prototype, "get$measureFragment", "measureFragment$1", 2093); + _instance_1_u(A.PointerBinding.prototype, "get$_onPointerData", "_onPointerData$1", 1402); + _instance_1_u(A.TextLayoutService.prototype, "get$_positionLineFragments", "_positionLineFragments$1", 2093); + _instance_1_u(A.Spanometer.prototype, "get$measureFragment", "measureFragment$1", 2095); _instance_0_u(A.RulerHost.prototype, "get$dispose", "dispose$0", 0); - _instance_1_u(_ = A.CompositionAwareMixin.prototype, "get$_handleCompositionStart", "_handleCompositionStart$1", 29); - _instance_1_u(_, "get$_handleCompositionUpdate", "_handleCompositionUpdate$1", 29); - _instance_1_u(_, "get$_handleCompositionEnd", "_handleCompositionEnd$1", 29); - _instance_1_u(_ = A.DefaultTextEditingStrategy.prototype, "get$handleChange", "handleChange$1", 29); - _instance_1_u(_, "get$handleBeforeInput", "handleBeforeInput$1", 29); - _instance_1_u(_, "get$maybeSendAction", "maybeSendAction$1", 29); - _instance_1_u(A.CustomElementDimensionsProvider.prototype, "get$_broadcastSize", "_broadcastSize$1", 490); - _instance_1_u(A.FullPageDimensionsProvider.prototype, "get$_onVisualViewportResize", "_onVisualViewportResize$1", 29); - _static_2(J, "_interceptors_JSArray__compareAny$closure", "JSArray__compareAny", 532); - _instance_1_i(_ = J.JSArray.prototype, "get$add", "add$1", 44); + _instance_1_u(_ = A.CompositionAwareMixin.prototype, "get$_handleCompositionStart", "_handleCompositionStart$1", 30); + _instance_1_u(_, "get$_handleCompositionUpdate", "_handleCompositionUpdate$1", 30); + _instance_1_u(_, "get$_handleCompositionEnd", "_handleCompositionEnd$1", 30); + _instance_1_u(_ = A.DefaultTextEditingStrategy.prototype, "get$handleChange", "handleChange$1", 30); + _instance_1_u(_, "get$handleBeforeInput", "handleBeforeInput$1", 30); + _instance_1_u(_, "get$maybeSendAction", "maybeSendAction$1", 30); + _instance_1_u(A.CustomElementDimensionsProvider.prototype, "get$_broadcastSize", "_broadcastSize$1", 547); + _instance_1_u(A.FullPageDimensionsProvider.prototype, "get$_onVisualViewportResize", "_onVisualViewportResize$1", 30); + _static_2(J, "_interceptors_JSArray__compareAny$closure", "JSArray__compareAny", 598); + _instance_1_i(_ = J.JSArray.prototype, "get$add", "add$1", 45); _instance(_, "get$toList", 1, 0, function() { return {growable: true}; }, ["call$1$growable", "call$0"], ["toList$1$growable", "toList$0"], "List<1>({growable:bool})", 0, 0); - _instance(J.JSString.prototype, "get$startsWith", 1, 1, null, ["call$2", "call$1"], ["startsWith$2", "startsWith$1"], 3003, 0, 0); - _instance_1_i(A._CastIterableBase.prototype, "get$contains", "contains$1", 128); - _static_0(A, "_js_helper_Primitives_dateNow$closure", "Primitives_dateNow", 174); - _instance_1_i(A.ConstantStringSet.prototype, "get$contains", "contains$1", 128); - _instance_1_i(A.GeneralConstantSet.prototype, "get$contains", "contains$1", 128); + _instance(J.JSString.prototype, "get$startsWith", 1, 1, null, ["call$2", "call$1"], ["startsWith$2", "startsWith$1"], 3007, 0, 0); + _instance_1_i(A._CastIterableBase.prototype, "get$contains", "contains$1", 127); + _static_0(A, "_js_helper_Primitives_dateNow$closure", "Primitives_dateNow", 181); + _instance_1_i(A.ConstantStringSet.prototype, "get$contains", "contains$1", 127); + _instance_1_i(A.GeneralConstantSet.prototype, "get$contains", "contains$1", 127); _instance_1_i(A.JsLinkedHashMap.prototype, "get$remove", "remove$1", "2?(Object?)"); - _instance_1_u(A._MatchImplementation.prototype, "get$group", "group$1", 3169); - _instance_1_u(A.StringMatch.prototype, "get$group", "group$1", 367); - _static_1(A, "async__AsyncRun__scheduleImmediateJsOverride$closure", "_AsyncRun__scheduleImmediateJsOverride", 257); - _static_1(A, "async__AsyncRun__scheduleImmediateWithSetImmediate$closure", "_AsyncRun__scheduleImmediateWithSetImmediate", 257); - _static_1(A, "async__AsyncRun__scheduleImmediateWithTimer$closure", "_AsyncRun__scheduleImmediateWithTimer", 257); + _instance_1_u(A._MatchImplementation.prototype, "get$group", "group$1", 3170); + _instance_1_u(A.StringMatch.prototype, "get$group", "group$1", 419); + _static_1(A, "async__AsyncRun__scheduleImmediateJsOverride$closure", "_AsyncRun__scheduleImmediateJsOverride", 247); + _static_1(A, "async__AsyncRun__scheduleImmediateWithSetImmediate$closure", "_AsyncRun__scheduleImmediateWithSetImmediate", 247); + _static_1(A, "async__AsyncRun__scheduleImmediateWithTimer$closure", "_AsyncRun__scheduleImmediateWithTimer", 247); _static_0(A, "async___startMicrotaskLoop$closure", "_startMicrotaskLoop", 0); _static_1(A, "async___nullDataHandler$closure", "_nullDataHandler", 10); - _static_2(A, "async___nullErrorHandler$closure", "_nullErrorHandler", 155); + _static_2(A, "async___nullErrorHandler$closure", "_nullErrorHandler", 162); _static_0(A, "async___nullDoneHandler$closure", "_nullDoneHandler", 0); _instance_0_u(_ = A._BroadcastSubscription.prototype, "get$_onPause", "_onPause$0", 0); _instance_0_u(_, "get$_onResume", "_onResume$0", 0); - _instance_1_i(_ = A._BroadcastStreamController.prototype, "get$add", "add$1", 44); - _instance_0_i(_, "get$close", "close$0", 265); - _instance_1_i(_, "get$_async$_add", "_async$_add$1", 44); - _instance_2_u(_, "get$_addError", "_addError$2", 155); + _instance_1_i(_ = A._BroadcastStreamController.prototype, "get$add", "add$1", 45); + _instance_0_i(_, "get$close", "close$0", 259); + _instance_1_i(_, "get$_async$_add", "_async$_add$1", 45); + _instance_2_u(_, "get$_addError", "_addError$2", 162); _instance_0_u(_, "get$_async$_close", "_async$_close$0", 0); _instance(A._Completer.prototype, "get$completeError", 0, 1, function() { return [null]; - }, ["call$2", "call$1"], ["completeError$2", "completeError$1"], 470, 0, 0); + }, ["call$2", "call$1"], ["completeError$2", "completeError$1"], 493, 0, 0); _instance(A._AsyncCompleter.prototype, "get$complete", 1, 0, function() { return [null]; - }, ["call$1", "call$0"], ["complete$1", "complete$0"], 891, 0, 0); - _instance_2_u(A._Future.prototype, "get$_completeError", "_completeError$2", 155); - _instance_1_i(_ = A._StreamController.prototype, "get$add", "add$1", 44); + }, ["call$1", "call$0"], ["complete$1", "complete$0"], 751, 0, 0); + _instance_2_u(A._Future.prototype, "get$_completeError", "_completeError$2", 162); + _instance_1_i(_ = A._StreamController.prototype, "get$add", "add$1", 45); _instance(_, "get$addError", 0, 1, function() { return [null]; - }, ["call$2", "call$1"], ["addError$2", "addError$1"], 470, 0, 0); - _instance_0_i(_, "get$close", "close$0", 265); - _instance_1_i(_, "get$_async$_add", "_async$_add$1", 44); - _instance_2_u(_, "get$_addError", "_addError$2", 155); + }, ["call$2", "call$1"], ["addError$2", "addError$1"], 493, 0, 0); + _instance_0_i(_, "get$close", "close$0", 259); + _instance_1_i(_, "get$_async$_add", "_async$_add$1", 45); + _instance_2_u(_, "get$_addError", "_addError$2", 162); _instance_0_u(_, "get$_async$_close", "_async$_close$0", 0); _instance_0_u(_ = A._ControllerSubscription.prototype, "get$_onPause", "_onPause$0", 0); _instance_0_u(_, "get$_onResume", "_onResume$0", 0); - _instance(_ = A._BufferingStreamSubscription.prototype, "get$pause", 1, 0, null, ["call$1", "call$0"], ["pause$1", "pause$0"], 889, 0, 0); + _instance(_ = A._BufferingStreamSubscription.prototype, "get$pause", 1, 0, null, ["call$1", "call$0"], ["pause$1", "pause$0"], 728, 0, 0); _instance_0_i(_, "get$resume", "resume$0", 0); - _instance_0_i(_, "get$cancel", "cancel$0", 265); + _instance_0_i(_, "get$cancel", "cancel$0", 259); _instance_0_u(_, "get$_onPause", "_onPause$0", 0); _instance_0_u(_, "get$_onResume", "_onResume$0", 0); - _instance_1_u(A._PendingEvents.prototype, "get$schedule", "schedule$1", 44); - _instance(_ = A._DoneStreamSubscription.prototype, "get$pause", 1, 0, null, ["call$1", "call$0"], ["pause$1", "pause$0"], 889, 0, 0); + _instance_1_u(A._PendingEvents.prototype, "get$schedule", "schedule$1", 45); + _instance(_ = A._DoneStreamSubscription.prototype, "get$pause", 1, 0, null, ["call$1", "call$0"], ["pause$1", "pause$0"], 728, 0, 0); _instance_0_i(_, "get$resume", "resume$0", 0); - _instance_0_i(_, "get$cancel", "cancel$0", 265); + _instance_0_i(_, "get$cancel", "cancel$0", 259); _instance_0_u(_, "get$_onMicrotask", "_onMicrotask$0", 0); - _instance_1_u(_ = A._StreamIterator.prototype, "get$_onData", "_onData$1", 44); - _instance_2_u(_, "get$_onError", "_onError$2", 155); + _instance_1_u(_ = A._StreamIterator.prototype, "get$_onData", "_onData$1", 45); + _instance_2_u(_, "get$_onError", "_onError$2", 162); _instance_0_u(_, "get$_onDone", "_onDone$0", 0); _instance_0_u(_ = A._ForwardingStreamSubscription.prototype, "get$_onPause", "_onPause$0", 0); _instance_0_u(_, "get$_onResume", "_onResume$0", 0); - _instance_1_u(_, "get$_handleData", "_handleData$1", 44); - _instance_2_u(_, "get$_async$_handleError", "_async$_handleError$2", 1341); + _instance_1_u(_, "get$_handleData", "_handleData$1", 45); + _instance_2_u(_, "get$_async$_handleError", "_async$_handleError$2", 1342); _instance_0_u(_, "get$_handleDone", "_handleDone$0", 0); _instance_0_u(_ = A._SinkTransformerStreamSubscription.prototype, "get$_onPause", "_onPause$0", 0); _instance_0_u(_, "get$_onResume", "_onResume$0", 0); - _instance_1_u(_, "get$_handleData", "_handleData$1", 44); - _instance_2_u(_, "get$_async$_handleError", "_async$_handleError$2", 155); + _instance_1_u(_, "get$_handleData", "_handleData$1", 45); + _instance_2_u(_, "get$_async$_handleError", "_async$_handleError$2", 162); _instance_0_u(_, "get$_handleDone", "_handleDone$0", 0); - _static_2(A, "collection___defaultEquals$closure", "_defaultEquals", 491); - _static_1(A, "collection___defaultHashCode$closure", "_defaultHashCode", 256); - _static_2(A, "collection_ListBase__compareAny$closure", "ListBase__compareAny", 532); - _static_2(A, "collection___dynamicCompare$closure", "_dynamicCompare", 532); + _static_2(A, "collection___defaultEquals$closure", "_defaultEquals", 496); + _static_1(A, "collection___defaultHashCode$closure", "_defaultHashCode", 251); + _static_2(A, "collection_ListBase__compareAny$closure", "ListBase__compareAny", 598); + _static_2(A, "collection___dynamicCompare$closure", "_dynamicCompare", 598); _instance_1_i(A._LinkedCustomHashMap.prototype, "get$remove", "remove$1", "2?(Object?)"); - _instance(_ = A._HashSet.prototype, "get$_newSimilarSet", 0, 0, null, ["call$1$0", "call$0"], ["_newSimilarSet$1$0", "_newSimilarSet$0"], 581, 0, 0); - _instance_1_i(_, "get$contains", "contains$1", 128); - _instance(_ = A._LinkedHashSet.prototype, "get$_newSimilarSet", 0, 0, null, ["call$1$0", "call$0"], ["_newSimilarSet$1$0", "_newSimilarSet$0"], 581, 0, 0); - _instance_1_i(_, "get$contains", "contains$1", 128); - _instance_1_i(A.UnmodifiableSetView.prototype, "get$contains", "contains$1", 128); - _instance(_ = A.SplayTreeSet.prototype, "get$_newSet", 0, 0, null, ["call$1$0", "call$0"], ["_newSet$1$0", "_newSet$0"], 581, 0, 0); - _instance_1_i(_, "get$contains", "contains$1", 128); + _instance(_ = A._HashSet.prototype, "get$_newSimilarSet", 0, 0, null, ["call$1$0", "call$0"], ["_newSimilarSet$1$0", "_newSimilarSet$0"], 484, 0, 0); + _instance_1_i(_, "get$contains", "contains$1", 127); + _instance(_ = A._LinkedHashSet.prototype, "get$_newSimilarSet", 0, 0, null, ["call$1$0", "call$0"], ["_newSimilarSet$1$0", "_newSimilarSet$0"], 484, 0, 0); + _instance_1_i(_, "get$contains", "contains$1", 127); + _instance_1_i(A.UnmodifiableSetView.prototype, "get$contains", "contains$1", 127); + _instance(_ = A.SplayTreeSet.prototype, "get$_newSet", 0, 0, null, ["call$1$0", "call$0"], ["_newSet$1$0", "_newSet$0"], 484, 0, 0); + _instance_1_i(_, "get$contains", "contains$1", 127); _static_1(A, "convert___defaultToEncodable$closure", "_defaultToEncodable", 33); _instance_0_i(A._JsonDecoderSink.prototype, "get$close", "close$0", 0); - _instance_1_i(_ = A._ByteCallbackSink.prototype, "get$add", "add$1", 44); + _instance_1_i(_ = A._ByteCallbackSink.prototype, "get$add", "add$1", 45); _instance_0_i(_, "get$close", "close$0", 0); - _static_1(A, "core__identityHashCode$closure", "identityHashCode", 256); - _static_2(A, "core__identical$closure", "identical", 491); - _static_2(A, "core_Comparable_compare$closure", "Comparable_compare", 3451); + _static_1(A, "core__identityHashCode$closure", "identityHashCode", 251); + _static_2(A, "core__identical$closure", "identical", 496); + _static_2(A, "core_Comparable_compare$closure", "Comparable_compare", 3459); _static(A, "core_DateTime___new_tearOff$closure", 1, null, ["call$8", "call$1", "call$2", "call$3", "call$4", "call$5", "call$6", "call$7"], ["DateTime___new_tearOff", function(year) { return A.DateTime___new_tearOff(year, 1, 1, 0, 0, 0, 0, 0); }, function(year, month) { @@ -620755,7 +622093,7 @@ return A.DateTime___new_tearOff(year, month, day, hour, minute, second, 0, 0); }, function(year, month, day, hour, minute, second, millisecond) { return A.DateTime___new_tearOff(year, month, day, hour, minute, second, millisecond, 0); - }], 904, 0); + }], 907, 0); _static(A, "core_DateTime___utc_tearOff$closure", 1, null, ["call$8", "call$1", "call$2", "call$3", "call$4", "call$5", "call$6", "call$7"], ["DateTime___utc_tearOff", function(year) { return A.DateTime___utc_tearOff(year, 1, 1, 0, 0, 0, 0, 0); }, function(year, month) { @@ -620770,71 +622108,71 @@ return A.DateTime___utc_tearOff(year, month, day, hour, minute, second, 0, 0); }, function(year, month, day, hour, minute, second, millisecond) { return A.DateTime___utc_tearOff(year, month, day, hour, minute, second, millisecond, 0); - }], 904, 0); - _static_1(A, "core__GeneratorIterable__id$closure", "_GeneratorIterable__id", 133); + }], 907, 0); + _static_1(A, "core__GeneratorIterable__id$closure", "_GeneratorIterable__id", 137); _static_1(A, "core_Uri_decodeComponent$closure", "Uri_decodeComponent", 31); - _static_0(A, "core__Uri__createList$closure", "_Uri__createList", 750); - _static_2(A, "core___toUnmodifiableStringList$closure", "_toUnmodifiableStringList", 3453); - _instance_1_i(A.Iterable.prototype, "get$contains", "contains$1", 128); - _instance(A.StringBuffer.prototype, "get$writeln", 0, 0, null, ["call$1", "call$0"], ["writeln$1", "writeln$0"], 891, 0, 0); - _instance_2_i(A.HttpRequest.prototype, "get$setRequestHeader", "setRequestHeader$2", 189); - _instance_0_i(_ = A._EventStreamSubscription.prototype, "get$cancel", "cancel$0", 265); - _instance(_, "get$pause", 1, 0, null, ["call$1", "call$0"], ["pause$1", "pause$0"], 879, 0, 0); + _static_0(A, "core__Uri__createList$closure", "_Uri__createList", 785); + _static_2(A, "core___toUnmodifiableStringList$closure", "_toUnmodifiableStringList", 3461); + _instance_1_i(A.Iterable.prototype, "get$contains", "contains$1", 127); + _instance(A.StringBuffer.prototype, "get$writeln", 0, 0, null, ["call$1", "call$0"], ["writeln$1", "writeln$0"], 751, 0, 0); + _instance_2_i(A.HttpRequest.prototype, "get$setRequestHeader", "setRequestHeader$2", 178); + _instance_0_i(_ = A._EventStreamSubscription.prototype, "get$cancel", "cancel$0", 259); + _instance(_, "get$pause", 1, 0, null, ["call$1", "call$0"], ["pause$1", "pause$0"], 708, 0, 0); _instance_0_i(_, "get$resume", "resume$0", 0); - _instance_2_i(A.Database.prototype, "get$transaction", "transaction$2", 2057); + _instance_2_i(A.Database.prototype, "get$transaction", "transaction$2", 2058); _instance_0_u(_ = A._FileStream.prototype, "get$_readBlock", "_readBlock$0", 0); _instance_0_i(_, "get$_io$_start", "_io$_start$0", 0); - _instance_0_i(A._File.prototype, "get$length", "length$0", 443); + _instance_0_i(A._File.prototype, "get$length", "length$0", 372); _instance_0_i(_ = A._RandomAccessFile.prototype, "get$close", "close$0", 20); - _instance_0_i(_, "get$length", "length$0", 443); - _static_1(A, "js___convertToJS$closure", "_convertToJS", 388); - _static_1(A, "js___convertToDart$closure", "_convertToDart", 202); + _instance_0_i(_, "get$length", "length$0", 372); + _static_1(A, "js___convertToJS$closure", "_convertToJS", 380); + _static_1(A, "js___convertToDart$closure", "_convertToDart", 205); _static(A, "math__max$closure", 2, null, ["call$1$2", "call$2"], ["max", function(a, b) { return A.max(a, b, type$.num); - }], 3454, 1); - _static(A, "ui_Size_lerp$closure", 3, null, ["call$3"], ["Size_lerp"], 3455, 0); - _static(A, "ui__lerpDouble$closure", 3, null, ["call$3"], ["lerpDouble"], 3456, 0); - _static(A, "ui_Color_lerp$closure", 3, null, ["call$3"], ["Color_lerp"], 3457, 0); - _instance_1_u(A._StoredMessage.prototype, "get$invoke", "invoke$1", 152); + }], 3462, 1); + _static(A, "ui_Size_lerp$closure", 3, null, ["call$3"], ["Size_lerp"], 3463, 0); + _static(A, "ui__lerpDouble$closure", 3, null, ["call$3"], ["lerpDouble"], 3464, 0); + _static(A, "ui_Color_lerp$closure", 3, null, ["call$3"], ["Color_lerp"], 3465, 0); + _instance_1_u(A._StoredMessage.prototype, "get$invoke", "invoke$1", 163); _instance_0_u(A._Channel.prototype, "get$_drainStep", "_drainStep$0", 0); - _instance_2_u(A.BoardItemState.prototype, "get$onDropItem", "onDropItem$2", 863); - _instance_1_u(A.BoardListState.prototype, "get$onDropList", "onDropList$1", 859); - _instance_1_i(A.CopyOnWriteSet.prototype, "get$contains", "contains$1", 128); - _instance_1_u(_ = A.StringCharacterRange.prototype, "get$dropBackWhile", "dropBackWhile$1", 855); - _instance_1_u(_, "get$expandWhile", "expandWhile$1", 855); + _instance_2_u(A.BoardItemState.prototype, "get$onDropItem", "onDropItem$2", 671); + _instance_1_u(A.BoardListState.prototype, "get$onDropList", "onDropList$1", 657); + _instance_1_i(A.CopyOnWriteSet.prototype, "get$contains", "contains$1", 127); + _instance_1_u(_ = A.StringCharacterRange.prototype, "get$dropBackWhile", "dropBackWhile$1", 628); + _instance_1_u(_, "get$expandWhile", "expandWhile$1", 628); _instance_1_u(A.CartesianChart.prototype, "get$makeSeries", "makeSeries$1", "MutableSeries(Object?)"); - _instance_1_u(_ = A.DomainHighlighter0.prototype, "get$_selectionChanged", "_selectionChanged$1", 44); - _instance_1_u(_, "get$_updateColorFunctions", "_updateColorFunctions$1", 44); - _instance_1_u(_ = A.Legend.prototype, "get$defaultLegendMeasureFormatter", "defaultLegendMeasureFormatter$1", 848); - _instance_1_u(_, "get$_preProcess", "_preProcess$1", 44); - _instance_1_u(_, "get$_postProcess", "_postProcess$1", 44); - _instance_1_u(_, "get$_legend$_selectionChanged", "_legend$_selectionChanged$1", 44); - _instance_1_u(A.SeriesLegend0.prototype, "get$onData", "onData$1", 44); - _instance_1_u(_ = A.LinePointHighlighter0.prototype, "get$_line_point_highlighter$_selectionChanged", "_line_point_highlighter$_selectionChanged$1", 44); + _instance_1_u(_ = A.DomainHighlighter0.prototype, "get$_selectionChanged", "_selectionChanged$1", 45); + _instance_1_u(_, "get$_updateColorFunctions", "_updateColorFunctions$1", 45); + _instance_1_u(_ = A.Legend.prototype, "get$defaultLegendMeasureFormatter", "defaultLegendMeasureFormatter$1", 672); + _instance_1_u(_, "get$_preProcess", "_preProcess$1", 45); + _instance_1_u(_, "get$_postProcess", "_postProcess$1", 45); + _instance_1_u(_, "get$_legend$_selectionChanged", "_legend$_selectionChanged$1", 45); + _instance_1_u(A.SeriesLegend0.prototype, "get$onData", "onData$1", 45); + _instance_1_u(_ = A.LinePointHighlighter0.prototype, "get$_line_point_highlighter$_selectionChanged", "_line_point_highlighter$_selectionChanged$1", 45); _instance_0_u(_, "get$_updateViewData", "_updateViewData$0", 0); - _instance_1_u(_ = A.SelectNearest0.prototype, "get$_onTapTest", "_onTapTest$1", 553); - _instance_1_u(_, "get$_onLongPressSelect", "_onLongPressSelect$1", 553); - _instance(_, "get$_onSelect", 0, 1, null, ["call$2", "call$1"], ["_onSelect$2", "_onSelect$1"], 940, 0, 0); - _instance(_, "get$_onDeselectAll", 0, 3, null, ["call$3"], ["_onDeselectAll$3"], 942, 0, 0); - _instance_1_u(A.BaseChart.prototype, "get$_notACustomBehavior", "_notACustomBehavior$1", 840); + _instance_1_u(_ = A.SelectNearest0.prototype, "get$_onTapTest", "_onTapTest$1", 605); + _instance_1_u(_, "get$_onLongPressSelect", "_onLongPressSelect$1", 605); + _instance(_, "get$_onSelect", 0, 1, null, ["call$2", "call$1"], ["_onSelect$2", "_onSelect$1"], 942, 0, 0); + _instance(_, "get$_onDeselectAll", 0, 3, null, ["call$3"], ["_onDeselectAll$3"], 943, 0, 0); + _instance_1_u(A.BaseChart.prototype, "get$_notACustomBehavior", "_notACustomBehavior$1", 716); _instance_0_u(A.BaseChartState.prototype, "get$_animationTick", "_animationTick$0", 0); - _instance_1_u(A.ChartContainerCustomPaint.prototype, "get$_buildSemantics", "_buildSemantics$1", 1339); + _instance_1_u(A.ChartContainerCustomPaint.prototype, "get$_buildSemantics", "_buildSemantics$1", 1340); _instance_1_u(_ = A.ChartGestureDetector.prototype, "get$onTapDown", "onTapDown$1", 50); - _instance_1_u(_, "get$onTapUp", "onTapUp$1", 113); - _instance_1_u(_, "get$onScaleStart", "onScaleStart$1", 465); - _instance_1_u(_, "get$onScaleUpdate", "onScaleUpdate$1", 837); - _instance_1_u(_, "get$onScaleEnd", "onScaleEnd$1", 488); - _instance_2_u(_ = A.DeepCollectionEquality.prototype, "get$equals", "equals$2", 491); - _instance_1_i(_, "get$hash", "hash$1", 256); - _instance_1_u(_, "get$isValidKey", "isValidKey$1", 128); - _instance_0_i(A.XFileBase.prototype, "get$length", "length$0", 443); - _instance_0_i(_ = A.XFile.prototype, "get$length", "length$0", 443); - _instance_1_u(_, "get$_blobToByteBuffer", "_blobToByteBuffer$1", 1375); - _instance_1_u(A.DesktopDropWeb.prototype, "get$handleMethodCall", "handleMethodCall$1", 180); - _instance_1_u(A._DropTargetState.prototype, "get$_onDropEvent", "_onDropEvent$1", 1487); - _instance(_ = A.AnimationController.prototype, "get$reverse", 1, 0, null, ["call$1$from", "call$0"], ["reverse$1$from", "reverse$0"], 1550, 0, 0); - _instance_1_u(_, "get$_directionSetter", "_directionSetter$1", 1597); - _instance_1_u(_, "get$_animation_controller$_tick", "_animation_controller$_tick$1", 12); + _instance_1_u(_, "get$onTapUp", "onTapUp$1", 115); + _instance_1_u(_, "get$onScaleStart", "onScaleStart$1", 614); + _instance_1_u(_, "get$onScaleUpdate", "onScaleUpdate$1", 760); + _instance_1_u(_, "get$onScaleEnd", "onScaleEnd$1", 531); + _instance_2_u(_ = A.DeepCollectionEquality.prototype, "get$equals", "equals$2", 496); + _instance_1_i(_, "get$hash", "hash$1", 251); + _instance_1_u(_, "get$isValidKey", "isValidKey$1", 127); + _instance_0_i(A.XFileBase.prototype, "get$length", "length$0", 372); + _instance_0_i(_ = A.XFile.prototype, "get$length", "length$0", 372); + _instance_1_u(_, "get$_blobToByteBuffer", "_blobToByteBuffer$1", 1376); + _instance_1_u(A.DesktopDropWeb.prototype, "get$handleMethodCall", "handleMethodCall$1", 184); + _instance_1_u(A._DropTargetState.prototype, "get$_onDropEvent", "_onDropEvent$1", 1488); + _instance(_ = A.AnimationController.prototype, "get$reverse", 1, 0, null, ["call$1$from", "call$0"], ["reverse$1$from", "reverse$0"], 1581, 0, 0); + _instance_1_u(_, "get$_directionSetter", "_directionSetter$1", 1598); + _instance_1_u(_, "get$_animation_controller$_tick", "_animation_controller$_tick$1", 11); _instance_1_u(A.ReverseAnimation.prototype, "get$_statusChangeHandler", "_statusChangeHandler$1", 47); _instance_1_u(A.CurvedAnimation.prototype, "get$_updateCurveDirection", "_updateCurveDirection$1", 47); _instance_1_u(_ = A.TrainHoppingAnimation.prototype, "get$_statusChangeHandler", "_statusChangeHandler$1", 47); @@ -620845,92 +622183,92 @@ _instance_1_u(A.AnimationLocalStatusListenersMixin.prototype, "get$notifyStatusListeners", "notifyStatusListeners$1", 47); _instance_1_i(A._Interval.prototype, "get$value", "value$1", 6); _instance_1_u(_ = A._CupertinoButtonState.prototype, "get$_handleTapDown", "_handleTapDown$1", 50); - _instance_1_u(_, "get$_handleTapUp", "_handleTapUp$1", 113); + _instance_1_u(_, "get$_handleTapUp", "_handleTapUp$1", 115); _instance_0_u(_, "get$_handleTapCancel", "_handleTapCancel$0", 0); _instance_1_u(A._CupertinoCheckboxState.prototype, "get$onFocusChange", "onFocusChange$1", 13); - _instance_1_u(_ = A._CupertinoDesktopTextSelectionToolbarButtonState.prototype, "get$_onEnter", "_onEnter$1", 132); + _instance_1_u(_ = A._CupertinoDesktopTextSelectionToolbarButtonState.prototype, "get$_onEnter", "_onEnter$1", 134); _instance_1_u(_, "get$_onExit", "_onExit$1", 110); _instance_0_u(A._CupertinoTextMagnifierState.prototype, "get$_magnifier0$_determineMagnifierPositionAndFocalPoint", "_magnifier0$_determineMagnifierPositionAndFocalPoint$0", 0); _instance_1_u(_ = A._CupertinoRadioState.prototype, "get$_radio0$_handleChanged", "_radio0$_handleChanged$1", 17); _instance_1_u(_, "get$onFocusChange", "onFocusChange$1", 13); - _instance_1_u(_ = A._CupertinoBackGestureDetectorState.prototype, "get$_route$_handleDragStart", "_route$_handleDragStart$1", 73); - _instance_1_u(_, "get$_route$_handleDragUpdate", "_route$_handleDragUpdate$1", 69); + _instance_1_u(_ = A._CupertinoBackGestureDetectorState.prototype, "get$_route$_handleDragStart", "_route$_handleDragStart$1", 72); + _instance_1_u(_, "get$_route$_handleDragUpdate", "_route$_handleDragUpdate$1", 70); _instance_1_u(_, "get$_route$_handleDragEnd", "_route$_handleDragEnd$1", 94); _instance_0_u(_, "get$_route$_handleDragCancel", "_route$_handleDragCancel$0", 0); - _instance_1_u(_, "get$_route$_handlePointerDown", "_route$_handlePointerDown$1", 190); + _instance_1_u(_, "get$_route$_handlePointerDown", "_route$_handlePointerDown$1", 165); _instance_0_u(A._CupertinoScrollbarState.prototype, "get$handleThumbPress", "handleThumbPress$0", 0); _instance_1_u(_ = A._CupertinoSwitchState.prototype, "get$_switch$_handleTapDown", "_switch$_handleTapDown$1", 50); _instance(_, "get$_switch$_handleTap", 0, 0, function() { return [null]; - }, ["call$1", "call$0"], ["_switch$_handleTap$1", "_switch$_handleTap$0"], 413, 0, 0); - _instance_1_u(_, "get$_switch$_handleTapUp", "_switch$_handleTapUp$1", 113); + }, ["call$1", "call$0"], ["_switch$_handleTap$1", "_switch$_handleTap$0"], 440, 0, 0); + _instance_1_u(_, "get$_switch$_handleTapUp", "_switch$_handleTapUp$1", 115); _instance_0_u(_, "get$_switch$_handleTapCancel", "_switch$_handleTapCancel$0", 0); - _instance_1_u(_, "get$_switch$_handleDragStart", "_switch$_handleDragStart$1", 73); - _instance_1_u(_, "get$_switch$_handleDragUpdate", "_switch$_handleDragUpdate$1", 69); + _instance_1_u(_, "get$_switch$_handleDragStart", "_switch$_handleDragStart$1", 72); + _instance_1_u(_, "get$_switch$_handleDragUpdate", "_switch$_handleDragUpdate$1", 70); _instance_1_u(_, "get$_switch$_handleDragEnd", "_switch$_handleDragEnd$1", 94); _instance_1_u(_, "get$_onShowFocusHighlight", "_onShowFocusHighlight$1", 13); - _static(A, "text_selection_toolbar0_CupertinoTextSelectionToolbar__defaultToolbarBuilder$closure", 4, null, ["call$4"], ["CupertinoTextSelectionToolbar__defaultToolbarBuilder"], 3458, 0); + _static(A, "text_selection_toolbar0_CupertinoTextSelectionToolbar__defaultToolbarBuilder$closure", 4, null, ["call$4"], ["CupertinoTextSelectionToolbar__defaultToolbarBuilder"], 3466, 0); _instance_1_u(_ = A._CupertinoTextSelectionToolbarContentState.prototype, "get$_onHorizontalDragEnd", "_onHorizontalDragEnd$1", 94); _instance_0_u(_, "get$_handleNextPage", "_handleNextPage$0", 0); _instance_0_u(_, "get$_handlePreviousPage", "_handlePreviousPage$0", 0); _instance_1_u(_, "get$_statusListener", "_statusListener$1", 47); _instance_1_u(_ = A._CupertinoTextSelectionToolbarButtonState.prototype, "get$_onTapDown", "_onTapDown$1", 50); - _instance_1_u(_, "get$_onTapUp", "_onTapUp$1", 113); + _instance_1_u(_, "get$_onTapUp", "_onTapUp$1", 115); _instance_0_u(_, "get$_onTapCancel", "_onTapCancel$0", 0); _instance_1_u(_ = A.ToggleableStateMixin.prototype, "get$_toggleable0$_handleTapDown", "_toggleable0$_handleTapDown$1", 50); _instance(_, "get$_toggleable0$_handleTap", 0, 0, function() { return [null]; - }, ["call$1", "call$0"], ["_toggleable0$_handleTap$1", "_toggleable0$_handleTap$0"], 413, 0, 0); - _instance(_, "get$_toggleable0$_handleTapEnd", 0, 0, null, ["call$1", "call$0"], ["_toggleable0$_handleTapEnd$1", "_toggleable0$_handleTapEnd$0"], 830, 0, 0); + }, ["call$1", "call$0"], ["_toggleable0$_handleTap$1", "_toggleable0$_handleTap$0"], 440, 0, 0); + _instance(_, "get$_toggleable0$_handleTapEnd", 0, 0, null, ["call$1", "call$0"], ["_toggleable0$_handleTapEnd$1", "_toggleable0$_handleTapEnd$0"], 906, 0, 0); _instance_1_u(_, "get$_toggleable0$_handleFocusHighlightChanged", "_toggleable0$_handleFocusHighlightChanged$1", 13); _static(A, "assertions_FlutterError_dumpErrorToConsole$closure", 1, null, ["call$2$forceReport", "call$1"], ["FlutterError_dumpErrorToConsole", function(details) { return A.FlutterError_dumpErrorToConsole(details, false); - }], 3459, 0); - _static_1(A, "assertions_FlutterError_defaultStackFilter$closure", "FlutterError_defaultStackFilter", 565); - _static_1(A, "assertions_DiagnosticsStackTrace__createStackFrame$closure", "DiagnosticsStackTrace__createStackFrame", 3460); - _instance_1_i(_ = A.ChangeNotifier.prototype, "get$addListener", "addListener$1", 257); - _instance_1_i(_, "get$removeListener", "removeListener$1", 257); + }], 3467, 0); + _static_1(A, "assertions_FlutterError_defaultStackFilter$closure", "FlutterError_defaultStackFilter", 556); + _static_1(A, "assertions_DiagnosticsStackTrace__createStackFrame$closure", "DiagnosticsStackTrace__createStackFrame", 3468); + _instance_1_i(_ = A.ChangeNotifier.prototype, "get$addListener", "addListener$1", 247); + _instance_1_i(_, "get$removeListener", "removeListener$1", 247); _instance_0_u(_, "get$dispose", "dispose$0", 0); _instance_0_u(_, "get$notifyListeners", "notifyListeners$0", 0); - _instance_1_i(A.DiagnosticPropertiesBuilder.prototype, "get$add", "add$1", 828); - _static_1(A, "stack_frame_StackFrame_fromStackTraceLine$closure", "StackFrame_fromStackTraceLine", 3461); - _instance_1_u(_ = A.GestureBinding.prototype, "get$_handlePointerDataPacket", "_handlePointerDataPacket$1", 2532); - _instance_1_u(_, "get$_devicePixelRatioForView", "_devicePixelRatioForView$1", 2534); - _instance_1_u(_, "get$cancelPointer", "cancelPointer$1", 75); + _instance_1_i(A.DiagnosticPropertiesBuilder.prototype, "get$add", "add$1", 901); + _static_1(A, "stack_frame_StackFrame_fromStackTraceLine$closure", "StackFrame_fromStackTraceLine", 3469); + _instance_1_u(_ = A.GestureBinding.prototype, "get$_handlePointerDataPacket", "_handlePointerDataPacket$1", 2534); + _instance_1_u(_, "get$_devicePixelRatioForView", "_devicePixelRatioForView$1", 2536); + _instance_1_u(_, "get$cancelPointer", "cancelPointer$1", 76); _instance_0_u(_, "get$_flushPointerEventQueue", "_flushPointerEventQueue$0", 0); _instance_1_u(_, "get$_handlePointerEventImmediately", "_handlePointerEventImmediately$1", 109); _instance_0_u(_, "get$_handleSampleTimeChanged", "_handleSampleTimeChanged$0", 0); - _static(A, "force_press_ForcePressGestureRecognizer__inverseLerp$closure", 3, null, ["call$3"], ["ForcePressGestureRecognizer__inverseLerp"], 3462, 0); + _static(A, "force_press_ForcePressGestureRecognizer__inverseLerp$closure", 3, null, ["call$3"], ["ForcePressGestureRecognizer__inverseLerp"], 3470, 0); _instance_1_u(A.ForcePressGestureRecognizer.prototype, "get$handleEvent", "handleEvent$1", 109); - _static_1(A, "long_press_LongPressGestureRecognizer__defaultButtonAcceptBehavior$closure", "LongPressGestureRecognizer__defaultButtonAcceptBehavior", 146); - _static_1(A, "monodrag_DragGestureRecognizer__defaultBuilder$closure", "DragGestureRecognizer__defaultBuilder", 761); - _static_1(A, "monodrag_DragGestureRecognizer__defaultButtonAcceptBehavior$closure", "DragGestureRecognizer__defaultButtonAcceptBehavior", 146); + _static_1(A, "long_press_LongPressGestureRecognizer__defaultButtonAcceptBehavior$closure", "LongPressGestureRecognizer__defaultButtonAcceptBehavior", 140); + _static_1(A, "monodrag_DragGestureRecognizer__defaultBuilder$closure", "DragGestureRecognizer__defaultBuilder", 803); + _static_1(A, "monodrag_DragGestureRecognizer__defaultButtonAcceptBehavior$closure", "DragGestureRecognizer__defaultButtonAcceptBehavior", 140); _instance_1_u(A.DragGestureRecognizer.prototype, "get$handleEvent", "handleEvent$1", 109); - _static_1(A, "multidrag_MultiDragGestureRecognizer__defaultButtonAcceptBehavior$closure", "MultiDragGestureRecognizer__defaultButtonAcceptBehavior", 146); + _static_1(A, "multidrag_MultiDragGestureRecognizer__defaultButtonAcceptBehavior$closure", "MultiDragGestureRecognizer__defaultButtonAcceptBehavior", 140); _instance_1_u(_ = A.MultiDragGestureRecognizer.prototype, "get$_multidrag$_handleEvent", "_multidrag$_handleEvent$1", 109); - _instance_1_u(_, "get$_removeState", "_removeState$1", 75); + _instance_1_u(_, "get$_removeState", "_removeState$1", 76); _instance_0_u(A._DelayedPointerState.prototype, "get$_delayPassed", "_delayPassed$0", 0); - _static_1(A, "multitap_DoubleTapGestureRecognizer__defaultButtonAcceptBehavior$closure", "DoubleTapGestureRecognizer__defaultButtonAcceptBehavior", 146); + _static_1(A, "multitap_DoubleTapGestureRecognizer__defaultButtonAcceptBehavior$closure", "DoubleTapGestureRecognizer__defaultButtonAcceptBehavior", 140); _instance_0_u(A._CountdownZoned.prototype, "get$_onTimeout", "_onTimeout$0", 0); _instance_1_u(_ = A.DoubleTapGestureRecognizer.prototype, "get$_multitap$_handleEvent", "_multitap$_handleEvent$1", 109); - _instance_1_u(_, "get$_reject", "_reject$1", 2590); + _instance_1_u(_, "get$_reject", "_reject$1", 2591); _instance_0_u(_, "get$_multitap$_reset", "_multitap$_reset$0", 0); - _static_1(A, "recognizer_GestureRecognizer__defaultButtonAcceptBehavior$closure", "GestureRecognizer__defaultButtonAcceptBehavior", 146); - _instance(A.OneSequenceGestureRecognizer.prototype, "get$stopTrackingPointer", 0, 1, null, ["call$1"], ["stopTrackingPointer$1"], 75, 0, 1); + _static_1(A, "recognizer_GestureRecognizer__defaultButtonAcceptBehavior$closure", "GestureRecognizer__defaultButtonAcceptBehavior", 140); + _instance(A.OneSequenceGestureRecognizer.prototype, "get$stopTrackingPointer", 0, 1, null, ["call$1"], ["stopTrackingPointer$1"], 76, 0, 1); _instance_1_u(A.PrimaryPointerGestureRecognizer.prototype, "get$handleEvent", "handleEvent$1", 109); _instance_1_u(A.ScaleGestureRecognizer.prototype, "get$handleEvent", "handleEvent$1", 109); _instance_1_u(_ = A._TapStatusTrackerMixin.prototype, "get$handleEvent", "handleEvent$1", 109); _instance_0_u(_, "get$_consecutiveTapTimerTimeout", "_consecutiveTapTimerTimeout$0", 0); _instance_1_u(A.BaseTapAndDragGestureRecognizer.prototype, "get$handleEvent", "handleEvent$1", 109); - _instance(_ = A._LicensePageState.prototype, "get$_packageLicensePage", 0, 3, null, ["call$3"], ["_packageLicensePage$3"], 917, 0, 0); - _instance_2_u(_, "get$_packagesView", "_packagesView$2", 818); - _instance_2_u(_ = A._MaterialAppState.prototype, "get$_inspectorSelectButtonBuilder", "_inspectorSelectButtonBuilder$2", 3001); - _instance_2_u(_, "get$_materialBuilder", "_materialBuilder$2", 225); - _instance_1_u(A._AppBarState.prototype, "get$_app_bar$_handleScrollNotification", "_app_bar$_handleScrollNotification$1", 3015); - _instance_1_u(_ = A._BottomSheetState.prototype, "get$_bottom_sheet$_handleDragStart", "_bottom_sheet$_handleDragStart$1", 73); - _instance_1_u(_, "get$_bottom_sheet$_handleDragUpdate", "_bottom_sheet$_handleDragUpdate$1", 69); + _instance(_ = A._LicensePageState.prototype, "get$_packageLicensePage", 0, 3, null, ["call$3"], ["_packageLicensePage$3"], 891, 0, 0); + _instance_2_u(_, "get$_packagesView", "_packagesView$2", 890); + _instance_2_u(_ = A._MaterialAppState.prototype, "get$_inspectorSelectButtonBuilder", "_inspectorSelectButtonBuilder$2", 3003); + _instance_2_u(_, "get$_materialBuilder", "_materialBuilder$2", 212); + _instance_1_u(A._AppBarState.prototype, "get$_app_bar$_handleScrollNotification", "_app_bar$_handleScrollNotification$1", 3019); + _instance_1_u(_ = A._BottomSheetState.prototype, "get$_bottom_sheet$_handleDragStart", "_bottom_sheet$_handleDragStart$1", 72); + _instance_1_u(_, "get$_bottom_sheet$_handleDragUpdate", "_bottom_sheet$_handleDragUpdate$1", 70); _instance_1_u(_, "get$_bottom_sheet$_handleDragEnd", "_bottom_sheet$_handleDragEnd$1", 94); - _instance_1_u(_, "get$extentChanged", "extentChanged$1", 816); + _instance_1_u(_, "get$extentChanged", "extentChanged$1", 880); _instance_1_u(_, "get$_handleDragHandleHover", "_handleDragHandleHover$1", 13); _instance_1_u(_ = A._RenderInputPadding.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); @@ -620941,80 +622279,80 @@ _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); - _instance_1_u(_ = A._CalendarDatePickerState.prototype, "get$_handleMonthChanged", "_handleMonthChanged$1", 299); - _instance_1_u(_, "get$_handleYearChanged", "_handleYearChanged$1", 299); - _instance_1_u(_, "get$_handleDayChanged", "_handleDayChanged$1", 299); - _instance_1_u(_ = A._MonthPickerState.prototype, "get$_handleDateSelected", "_handleDateSelected$1", 299); - _instance_1_u(_, "get$_handleMonthPageChanged", "_handleMonthPageChanged$1", 75); + _instance_1_u(_ = A._CalendarDatePickerState.prototype, "get$_handleMonthChanged", "_handleMonthChanged$1", 283); + _instance_1_u(_, "get$_handleYearChanged", "_handleYearChanged$1", 283); + _instance_1_u(_, "get$_handleDayChanged", "_handleDayChanged$1", 283); + _instance_1_u(_ = A._MonthPickerState.prototype, "get$_handleDateSelected", "_handleDateSelected$1", 283); + _instance_1_u(_, "get$_handleMonthPageChanged", "_handleMonthPageChanged$1", 76); _instance_0_u(_, "get$_handleNextMonth", "_handleNextMonth$0", 0); _instance_0_u(_, "get$_handlePreviousMonth", "_handlePreviousMonth$0", 0); _instance_1_u(_, "get$_handleGridFocusChange", "_handleGridFocusChange$1", 13); - _instance_1_u(_, "get$_handleGridNextFocus", "_handleGridNextFocus$1", 3119); - _instance_1_u(_, "get$_handleGridPreviousFocus", "_handleGridPreviousFocus$1", 3124); - _instance_1_u(_, "get$_handleDirectionFocus", "_handleDirectionFocus$1", 3147); - _instance_2_u(_, "get$_buildItems", "_buildItems$2", 104); - _instance_2_u(A._YearPickerState.prototype, "get$_buildYearItem", "_buildYearItem$2", 104); + _instance_1_u(_, "get$_handleGridNextFocus", "_handleGridNextFocus$1", 3124); + _instance_1_u(_, "get$_handleGridPreviousFocus", "_handleGridPreviousFocus$1", 3147); + _instance_1_u(_, "get$_handleDirectionFocus", "_handleDirectionFocus$1", 3152); + _instance_2_u(_, "get$_buildItems", "_buildItems$2", 106); + _instance_2_u(A._YearPickerState.prototype, "get$_buildYearItem", "_buildYearItem$2", 106); _instance_0_u(A.CheckboxListTile.prototype, "get$_handleValueChange", "_handleValueChange$0", 0); - _instance_1_u(_ = A.TableRowInkWell.prototype, "get$getRectCallback", "getRectCallback$1", 3181); - _instance_1_u(_, "get$debugCheckContext", "debugCheckContext$1", 810); + _instance_1_u(_ = A.TableRowInkWell.prototype, "get$getRectCallback", "getRectCallback$1", 3194); + _instance_1_u(_, "get$debugCheckContext", "debugCheckContext$1", 865); _instance_0_u(_ = A._SortArrowState.prototype, "get$_data_table$_rebuild", "_data_table$_rebuild$0", 0); _instance_1_u(_, "get$_resetOrientationAnimation", "_resetOrientationAnimation$1", 47); _instance_0_u(_ = A._DatePickerDialogState.prototype, "get$_handleOk", "_handleOk$0", 0); _instance_0_u(_, "get$_handleCancel", "_handleCancel$0", 0); _instance_0_u(_, "get$_handleEntryModeToggle", "_handleEntryModeToggle$0", 0); - _instance_1_u(_, "get$_handleDateChanged", "_handleDateChanged$1", 299); - _static(A, "dialog___buildMaterialDialogTransitions$closure", 4, null, ["call$4"], ["_buildMaterialDialogTransitions"], 3463, 0); + _instance_1_u(_, "get$_handleDateChanged", "_handleDateChanged$1", 283); + _static(A, "dialog___buildMaterialDialogTransitions$closure", 4, null, ["call$4"], ["_buildMaterialDialogTransitions"], 3471, 0); _instance_0_u(_ = A.DrawerControllerState.prototype, "get$_animationChanged", "_animationChanged$0", 0); _instance_1_u(_, "get$_animationStatusChanged", "_animationStatusChanged$1", 47); _instance_0_u(_, "get$_handleHistoryEntryRemoved", "_handleHistoryEntryRemoved$0", 0); - _instance_1_u(_, "get$_handleDragDown", "_handleDragDown$1", 571); + _instance_1_u(_, "get$_handleDragDown", "_handleDragDown$1", 533); _instance_0_u(_, "get$_handleDragCancel", "_handleDragCancel$0", 0); - _instance_1_u(_, "get$_move", "_move$1", 69); + _instance_1_u(_, "get$_move", "_move$1", 70); _instance_1_u(_, "get$_settle", "_settle$1", 94); _instance_0_i(_, "get$close", "close$0", 0); _instance_1_u(_ = A._DropdownMenuItemButtonState.prototype, "get$_dropdown$_handleFocusChange", "_dropdown$_handleFocusChange$1", 13); _instance_0_u(_, "get$_handleOnTap", "_handleOnTap$0", 0); _instance_0_u(A._DropdownButtonState.prototype, "get$_dropdown$_handleTap", "_dropdown$_handleTap$0", 0); - _instance_1_u(A._DropdownButtonFormFieldState.prototype, "get$didChange", "didChange$1", 44); + _instance_1_u(A._DropdownButtonFormFieldState.prototype, "get$didChange", "didChange$1", 45); _instance_0_u(A._ExpandIconState.prototype, "get$_handlePressed", "_handlePressed$0", 0); _instance_1_u(_ = A._RenderChildOverflowBox.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_0_u(_ = A._InkState.prototype, "get$_handleRemoved", "_handleRemoved$0", 0); - _instance_1_u(_, "get$_ink_decoration$_build", "_ink_decoration$_build$1", 46); + _instance_1_u(_, "get$_ink_decoration$_build", "_ink_decoration$_build$1", 44); _instance_0_u(A.InkDecoration.prototype, "get$_handleChanged", "_handleChanged$0", 0); _instance_1_u(A.InkHighlight.prototype, "get$_handleAlphaStatusChanged", "_handleAlphaStatusChanged$1", 47); _instance_1_u(A.InkRipple.prototype, "get$_ink_ripple$_handleAlphaStatusChanged", "_ink_ripple$_handleAlphaStatusChanged$1", 47); _instance_1_u(A.InkSplash.prototype, "get$_ink_splash$_handleAlphaStatusChanged", "_ink_splash$_handleAlphaStatusChanged$1", 47); - _instance_1_u(_ = A.InkResponse.prototype, "get$getRectCallback", "getRectCallback$1", 929); - _instance_1_u(_, "get$debugCheckContext", "debugCheckContext$1", 810); - _instance_1_u(_ = A._InkResponseState.prototype, "get$activateOnIntent", "activateOnIntent$1", 930); - _instance(_, "get$simulateTap", 0, 0, null, ["call$1", "call$0"], ["simulateTap$1", "simulateTap$0"], 413, 0, 0); + _instance_1_u(_ = A.InkResponse.prototype, "get$getRectCallback", "getRectCallback$1", 930); + _instance_1_u(_, "get$debugCheckContext", "debugCheckContext$1", 865); + _instance_1_u(_ = A._InkResponseState.prototype, "get$activateOnIntent", "activateOnIntent$1", 932); + _instance(_, "get$simulateTap", 0, 0, null, ["call$1", "call$0"], ["simulateTap$1", "simulateTap$0"], 440, 0, 0); _instance_0_u(_, "get$simulateLongPress", "simulateLongPress$0", 0); _instance_0_u(_, "get$handleStatesControllerChange", "handleStatesControllerChange$0", 0); - _instance_1_u(_, "get$handleFocusHighlightModeChange", "handleFocusHighlightModeChange$1", 807); + _instance_1_u(_, "get$handleFocusHighlightModeChange", "handleFocusHighlightModeChange$1", 863); _instance_1_u(_, "get$handleFocusUpdate", "handleFocusUpdate$1", 13); _instance_1_u(_, "get$handleTapDown", "handleTapDown$1", 50); - _instance_1_u(_, "get$handleTapUp", "handleTapUp$1", 113); + _instance_1_u(_, "get$handleTapUp", "handleTapUp$1", 115); _instance_1_u(_, "get$handleSecondaryTapDown", "handleSecondaryTapDown$1", 50); - _instance_1_u(_, "get$handleSecondaryTapUp", "handleSecondaryTapUp$1", 113); + _instance_1_u(_, "get$handleSecondaryTapUp", "handleSecondaryTapUp$1", 115); _instance_0_u(_, "get$handleTap", "handleTap$0", 0); _instance_0_u(_, "get$handleTapCancel", "handleTapCancel$0", 0); _instance_0_u(_, "get$handleDoubleTap", "handleDoubleTap$0", 0); _instance_0_u(_, "get$handleLongPress", "handleLongPress$0", 0); _instance_0_u(_, "get$handleSecondaryTap", "handleSecondaryTap$0", 0); _instance_0_u(_, "get$handleSecondaryTapCancel", "handleSecondaryTapCancel$0", 0); - _instance_1_u(_, "get$handleMouseEnter", "handleMouseEnter$1", 132); + _instance_1_u(_, "get$handleMouseEnter", "handleMouseEnter$1", 134); _instance_1_u(_, "get$handleMouseExit", "handleMouseExit$1", 110); - _instance_1_u(_ = A._InputDatePickerFormFieldState.prototype, "get$_validateDate", "_validateDate$1", 150); - _instance_1_u(_, "get$_handleSaved", "_handleSaved$1", 99); + _instance_1_u(_ = A._InputDatePickerFormFieldState.prototype, "get$_validateDate", "_validateDate$1", 142); + _instance_1_u(_, "get$_handleSaved", "_handleSaved$1", 100); _instance_1_u(_, "get$_handleSubmitted", "_handleSubmitted$1", 15); _instance_0_u(A._HelperErrorState.prototype, "get$_input_decorator$_handleChange", "_input_decorator$_handleChange$0", 0); _instance_1_u(_ = A._RenderDecoration.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); - _instance_1_u(_, "get$_childSemanticsConfigurationDelegate", "_childSemanticsConfigurationDelegate$1", 806); - _instance_2_u(_, "get$_paintLabel", "_paintLabel$2", 90); + _instance_1_u(_, "get$_childSemanticsConfigurationDelegate", "_childSemanticsConfigurationDelegate$1", 859); + _instance_2_u(_, "get$_paintLabel", "_paintLabel$2", 91); _instance_0_u(A._InputDecoratorState.prototype, "get$_input_decorator$_handleChange", "_input_decorator$_handleChange$0", 0); _instance_1_u(_ = A._RenderListTile.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); @@ -621031,32 +622369,32 @@ _instance_0_u(A.PopupMenuItemState.prototype, "get$handleTap", "handleTap$0", 0); _instance_0_u(A.PopupMenuButtonState.prototype, "get$showButtonMenu", "showButtonMenu$0", 0); _instance_1_u(A._RadioState.prototype, "get$_radio$_handleChanged", "_radio$_handleChanged$1", 17); - _instance_1_u(_ = A.RefreshIndicatorState.prototype, "get$_refresh_indicator$_handleScrollNotification", "_refresh_indicator$_handleScrollNotification$1", 171); - _instance_1_u(_, "get$_handleIndicatorNotification", "_handleIndicatorNotification$1", 1108); - _instance_2_u(_ = A._ReorderableListViewState.prototype, "get$_itemBuilder", "_itemBuilder$2", 104); - _instance(_, "get$_proxyDecorator", 0, 3, null, ["call$3"], ["_proxyDecorator$3"], 1109, 0, 0); + _instance_1_u(_ = A.RefreshIndicatorState.prototype, "get$_refresh_indicator$_handleScrollNotification", "_refresh_indicator$_handleScrollNotification$1", 173); + _instance_1_u(_, "get$_handleIndicatorNotification", "_handleIndicatorNotification$1", 1109); + _instance_2_u(_ = A._ReorderableListViewState.prototype, "get$_itemBuilder", "_itemBuilder$2", 106); + _instance(_, "get$_proxyDecorator", 0, 3, null, ["call$3"], ["_proxyDecorator$3"], 1110, 0, 0); _instance_1_u(_ = A._FloatingActionButtonTransitionState.prototype, "get$_handlePreviousAnimationStatusChanged", "_handlePreviousAnimationStatusChanged$1", 47); _instance_0_u(_, "get$_onProgressChanged", "_onProgressChanged$0", 0); _instance_1_u(_ = A.ScaffoldState.prototype, "get$_drawerOpenedCallback", "_drawerOpenedCallback$1", 13); _instance_1_u(_, "get$_endDrawerOpenedCallback", "_endDrawerOpenedCallback$1", 13); _instance_0_u(_, "get$_handleStatusBarTap", "_handleStatusBarTap$0", 0); _instance_0_i(_ = A._StandardBottomSheetState.prototype, "get$close", "close$0", 0); - _instance_1_u(_, "get$_scaffold$_handleDragStart", "_scaffold$_handleDragStart$1", 73); - _instance(_, "get$_scaffold$_handleDragEnd", 0, 1, null, ["call$2$isClosing", "call$1"], ["_scaffold$_handleDragEnd$2$isClosing", "_scaffold$_handleDragEnd$1"], 1114, 0, 0); + _instance_1_u(_, "get$_scaffold$_handleDragStart", "_scaffold$_handleDragStart$1", 72); + _instance(_, "get$_scaffold$_handleDragEnd", 0, 1, null, ["call$2$isClosing", "call$1"], ["_scaffold$_handleDragEnd$2$isClosing", "_scaffold$_handleDragEnd$1"], 1115, 0, 0); _instance_1_u(_, "get$_handleStatusChange", "_handleStatusChange$1", 47); - _instance_1_u(_, "get$extentChanged", "extentChanged$1", 816); - _static(A, "scrollbar_theme___lerpBool$closure", 3, null, ["call$3"], ["_lerpBool"], 3464, 0); - _static_2(A, "selectable_text_SelectableText__defaultContextMenuBuilder$closure", "SelectableText__defaultContextMenuBuilder", 366); - _instance_1_u(_ = A._SelectableTextSelectionGestureDetectorBuilder.prototype, "get$onForcePressStart", "onForcePressStart$1", 172); - _instance_1_u(_, "get$onForcePressEnd", "onForcePressEnd$1", 172); - _instance_1_u(_, "get$onSingleLongTapMoveUpdate", "onSingleLongTapMoveUpdate$1", 307); - _instance_1_u(_, "get$onSingleTapUp", "onSingleTapUp$1", 308); - _instance_1_u(_, "get$onSingleLongTapStart", "onSingleLongTapStart$1", 233); + _instance_1_u(_, "get$extentChanged", "extentChanged$1", 880); + _static(A, "scrollbar_theme___lerpBool$closure", 3, null, ["call$3"], ["_lerpBool"], 3472, 0); + _static_2(A, "selectable_text_SelectableText__defaultContextMenuBuilder$closure", "SelectableText__defaultContextMenuBuilder", 435); + _instance_1_u(_ = A._SelectableTextSelectionGestureDetectorBuilder.prototype, "get$onForcePressStart", "onForcePressStart$1", 171); + _instance_1_u(_, "get$onForcePressEnd", "onForcePressEnd$1", 171); + _instance_1_u(_, "get$onSingleLongTapMoveUpdate", "onSingleLongTapMoveUpdate$1", 313); + _instance_1_u(_, "get$onSingleTapUp", "onSingleTapUp$1", 315); + _instance_1_u(_, "get$onSingleLongTapStart", "onSingleLongTapStart$1", 225); _instance_0_u(_ = A._SelectableTextState.prototype, "get$_onControllerChanged", "_onControllerChanged$0", 0); - _instance_2_u(_, "get$_selectable_text$_handleSelectionChanged", "_selectable_text$_handleSelectionChanged$2", 517); + _instance_2_u(_, "get$_selectable_text$_handleSelectionChanged", "_selectable_text$_handleSelectionChanged$2", 508); _instance_0_u(_, "get$_selectable_text$_handleSelectionHandleTapped", "_selectable_text$_handleSelectionHandleTapped$0", 0); - _instance_1_u(_ = A._MaterialSwitchState.prototype, "get$_switch0$_handleDragStart", "_switch0$_handleDragStart$1", 73); - _instance_1_u(_, "get$_switch0$_handleDragUpdate", "_switch0$_handleDragUpdate$1", 69); + _instance_1_u(_ = A._MaterialSwitchState.prototype, "get$_switch0$_handleDragStart", "_switch0$_handleDragStart$1", 72); + _instance_1_u(_, "get$_switch0$_handleDragUpdate", "_switch0$_handleDragUpdate$1", 70); _instance_1_u(_, "get$_switch0$_handleDragEnd", "_switch0$_handleDragEnd$1", 94); _instance_1_u(_, "get$_switch0$_handleChanged", "_switch0$_handleChanged$1", 17); _instance_0_u(_ = A._SwitchPainter.prototype, "get$_handleDecorationChanged", "_handleDecorationChanged$0", 0); @@ -621065,40 +622403,40 @@ _instance_0_u(A._IndicatorPainter.prototype, "get$markNeedsPaint", "markNeedsPaint$0", 0); _instance_0_u(_ = A._TabBarState.prototype, "get$_handleTabControllerAnimationTick", "_handleTabControllerAnimationTick$0", 0); _instance_0_u(_, "get$_handleTabControllerTick", "_handleTabControllerTick$0", 0); - _instance(_, "get$_saveTabOffsets", 0, 3, null, ["call$3"], ["_saveTabOffsets$3"], 1144, 0, 0); + _instance(_, "get$_saveTabOffsets", 0, 3, null, ["call$3"], ["_saveTabOffsets$3"], 1148, 0, 0); _instance_0_u(_ = A._TabBarViewState.prototype, "get$_handleTabControllerAnimationTick", "_handleTabControllerAnimationTick$0", 0); - _instance_1_u(_, "get$_tabs$_handleScrollNotification", "_tabs$_handleScrollNotification$1", 171); - _static_2(A, "text_field_TextField__defaultContextMenuBuilder$closure", "TextField__defaultContextMenuBuilder", 366); - _instance_1_u(_ = A._TextFieldSelectionGestureDetectorBuilder.prototype, "get$onForcePressStart", "onForcePressStart$1", 172); - _instance_1_u(_, "get$onForcePressEnd", "onForcePressEnd$1", 172); - _instance_1_u(_, "get$onSingleTapUp", "onSingleTapUp$1", 308); - _instance_1_u(_, "get$onSingleLongTapStart", "onSingleLongTapStart$1", 233); + _instance_1_u(_, "get$_tabs$_handleScrollNotification", "_tabs$_handleScrollNotification$1", 173); + _static_2(A, "text_field_TextField__defaultContextMenuBuilder$closure", "TextField__defaultContextMenuBuilder", 435); + _instance_1_u(_ = A._TextFieldSelectionGestureDetectorBuilder.prototype, "get$onForcePressStart", "onForcePressStart$1", 171); + _instance_1_u(_, "get$onForcePressEnd", "onForcePressEnd$1", 171); + _instance_1_u(_, "get$onSingleTapUp", "onSingleTapUp$1", 315); + _instance_1_u(_, "get$onSingleLongTapStart", "onSingleLongTapStart$1", 225); _instance_0_u(_ = A._TextFieldState.prototype, "get$_text_field$_handleFocusChanged", "_text_field$_handleFocusChanged$0", 0); - _instance_2_u(_, "get$_text_field$_handleSelectionChanged", "_text_field$_handleSelectionChanged$2", 517); + _instance_2_u(_, "get$_text_field$_handleSelectionChanged", "_text_field$_handleSelectionChanged$2", 508); _instance_0_u(_, "get$_handleSelectionHandleTapped", "_handleSelectionHandleTapped$0", 0); - _static_2(A, "text_form_field_TextFormField__defaultContextMenuBuilder$closure", "TextFormField__defaultContextMenuBuilder", 366); + _static_2(A, "text_form_field_TextFormField__defaultContextMenuBuilder$closure", "TextFormField__defaultContextMenuBuilder", 435); _instance_0_u(A._TextFormFieldState.prototype, "get$_handleControllerChanged", "_handleControllerChanged$0", 0); - _static_2(A, "text_selection_toolbar_TextSelectionToolbar__defaultToolbarBuilder$closure", "TextSelectionToolbar__defaultToolbarBuilder", 3466); + _static_2(A, "text_selection_toolbar_TextSelectionToolbar__defaultToolbarBuilder$closure", "TextSelectionToolbar__defaultToolbarBuilder", 3474); _instance_1_u(_ = A._RenderInputPadding2.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); - _instance_1_u(_ = A._DialState.prototype, "get$_handlePanStart", "_handlePanStart$1", 73); - _instance_1_u(_, "get$_handlePanUpdate", "_handlePanUpdate$1", 69); + _instance_1_u(_ = A._DialState.prototype, "get$_handlePanStart", "_handlePanStart$1", 72); + _instance_1_u(_, "get$_handlePanUpdate", "_handlePanUpdate$1", 70); _instance_1_u(_, "get$_handlePanEnd", "_handlePanEnd$1", 94); - _instance_1_u(_, "get$_time_picker0$_handleTapUp", "_time_picker0$_handleTapUp$1", 113); - _instance_1_u(_ = A._TimePickerInputState.prototype, "get$_handleHourSavedSubmitted", "_handleHourSavedSubmitted$1", 99); + _instance_1_u(_, "get$_time_picker0$_handleTapUp", "_time_picker0$_handleTapUp$1", 115); + _instance_1_u(_ = A._TimePickerInputState.prototype, "get$_handleHourSavedSubmitted", "_handleHourSavedSubmitted$1", 100); _instance_1_u(_, "get$_handleHourChanged", "_handleHourChanged$1", 15); - _instance_1_u(_, "get$_handleMinuteSavedSubmitted", "_handleMinuteSavedSubmitted$1", 99); + _instance_1_u(_, "get$_handleMinuteSavedSubmitted", "_handleMinuteSavedSubmitted$1", 100); _instance_1_u(_, "get$_handleDayPeriodChanged", "_handleDayPeriodChanged$1", 503); - _instance_1_u(_, "get$_validateHour", "_validateHour$1", 150); - _instance_1_u(_, "get$_validateMinute", "_validateMinute$1", 150); + _instance_1_u(_, "get$_validateHour", "_validateHour$1", 142); + _instance_1_u(_, "get$_validateMinute", "_validateMinute$1", 142); _instance_1_u(_ = A._TimePickerDialogState.prototype, "get$_handleTimeChanged", "_handleTimeChanged$1", 503); - _instance_1_u(_, "get$_handleEntryModeChanged", "_handleEntryModeChanged$1", 1210); + _instance_1_u(_, "get$_handleEntryModeChanged", "_handleEntryModeChanged$1", 1211); _instance_0_u(_, "get$_toggleEntryMode", "_toggleEntryMode$0", 0); _instance_0_u(_, "get$_time_picker0$_handleCancel", "_time_picker0$_handleCancel$0", 0); _instance_0_u(_, "get$_time_picker0$_handleOk", "_time_picker0$_handleOk$0", 0); - _instance_1_u(_ = A._TimePickerState0.prototype, "get$_handleHourMinuteModeChanged", "_handleHourMinuteModeChanged$1", 1213); + _instance_1_u(_ = A._TimePickerState0.prototype, "get$_handleHourMinuteModeChanged", "_handleHourMinuteModeChanged$1", 1214); _instance_1_u(_, "get$_handleTimeChanged", "_handleTimeChanged$1", 503); _instance_0_u(_, "get$_handleHourDoubleTapped", "_handleHourDoubleTapped$0", 0); _instance_0_u(_, "get$_handleMinuteDoubleTapped", "_handleMinuteDoubleTapped$0", 0); @@ -621114,43 +622452,43 @@ _instance_1_u(_ = A.ToggleableStateMixin0.prototype, "get$_toggleable$_handleTapDown", "_toggleable$_handleTapDown$1", 50); _instance(_, "get$_toggleable$_handleTap", 0, 0, function() { return [null]; - }, ["call$1", "call$0"], ["_toggleable$_handleTap$1", "_toggleable$_handleTap$0"], 413, 0, 0); - _instance(_, "get$_handleTapEnd", 0, 0, null, ["call$1", "call$0"], ["_handleTapEnd$1", "_handleTapEnd$0"], 830, 0, 0); + }, ["call$1", "call$0"], ["_toggleable$_handleTap$1", "_toggleable$_handleTap$0"], 440, 0, 0); + _instance(_, "get$_handleTapEnd", 0, 0, null, ["call$1", "call$0"], ["_handleTapEnd$1", "_handleTapEnd$0"], 906, 0, 0); _instance_1_u(_, "get$_handleFocusHighlightChanged", "_handleFocusHighlightChanged$1", 13); _instance_1_u(_, "get$_handleHoverChanged", "_handleHoverChanged$1", 13); _instance_0_u(A.ToggleablePainter0.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(_ = A.TooltipState.prototype, "get$_handleStatusChanged", "_handleStatusChanged$1", 47); - _instance_1_u(_, "get$_tooltip$_handlePointerDown", "_tooltip$_handlePointerDown$1", 190); + _instance_1_u(_, "get$_tooltip$_handlePointerDown", "_tooltip$_handlePointerDown$1", 165); _instance_1_u(_, "get$_handleGlobalPointerEvent", "_handleGlobalPointerEvent$1", 109); _instance_0_u(_, "get$_handleTapToDismiss", "_handleTapToDismiss$0", 0); _instance_0_u(_, "get$_handleLongPress", "_handleLongPress$0", 0); _instance_0_u(_, "get$_handlePressUp", "_handlePressUp$0", 0); - _instance_1_u(_, "get$_handleMouseEnter", "_handleMouseEnter$1", 132); + _instance_1_u(_, "get$_handleMouseEnter", "_handleMouseEnter$1", 134); _instance_1_u(_, "get$_handleMouseExit", "_handleMouseExit$1", 110); - _instance_1_u(_, "get$_buildTooltipOverlay", "_buildTooltipOverlay$1", 46); - _instance(_ = A.PaintingBinding.prototype, "get$instantiateImageCodecFromBuffer", 0, 1, null, ["call$4$allowUpscaling$cacheHeight$cacheWidth", "call$1"], ["instantiateImageCodecFromBuffer$4$allowUpscaling$cacheHeight$cacheWidth", "instantiateImageCodecFromBuffer$1"], 1247, 0, 0); - _instance(_, "get$instantiateImageCodecWithSize", 0, 1, null, ["call$2$getTargetSize", "call$1"], ["instantiateImageCodecWithSize$2$getTargetSize", "instantiateImageCodecWithSize$1"], 1249, 0, 0); - _static(A, "borders_OutlinedBorder_lerp$closure", 3, null, ["call$3"], ["OutlinedBorder_lerp"], 3467, 0); - _static(A, "edge_insets_EdgeInsetsGeometry_lerp$closure", 3, null, ["call$3"], ["EdgeInsetsGeometry_lerp"], 3468, 0); - _instance_1_i(_ = A.ImageStreamCompleter.prototype, "get$addListener", "addListener$1", 797); - _instance_1_u(_, "get$reportImageChunkEvent", "reportImageChunkEvent$1", 1293); - _instance_1_u(_ = A.MultiFrameImageStreamCompleter.prototype, "get$_handleCodecReady", "_handleCodecReady$1", 908); - _instance_1_u(_, "get$_handleAppFrame", "_handleAppFrame$1", 12); - _instance_1_i(_, "get$addListener", "addListener$1", 797); - _instance_2_u(A.WordBoundary.prototype, "get$_skipSpacesAndPunctuations", "_skipSpacesAndPunctuations$2", 1338); - _static(A, "text_style_TextStyle_lerp$closure", 3, null, ["call$3"], ["TextStyle_lerp"], 3469, 0); + _instance_1_u(_, "get$_buildTooltipOverlay", "_buildTooltipOverlay$1", 44); + _instance(_ = A.PaintingBinding.prototype, "get$instantiateImageCodecFromBuffer", 0, 1, null, ["call$4$allowUpscaling$cacheHeight$cacheWidth", "call$1"], ["instantiateImageCodecFromBuffer$4$allowUpscaling$cacheHeight$cacheWidth", "instantiateImageCodecFromBuffer$1"], 1249, 0, 0); + _instance(_, "get$instantiateImageCodecWithSize", 0, 1, null, ["call$2$getTargetSize", "call$1"], ["instantiateImageCodecWithSize$2$getTargetSize", "instantiateImageCodecWithSize$1"], 1250, 0, 0); + _static(A, "borders_OutlinedBorder_lerp$closure", 3, null, ["call$3"], ["OutlinedBorder_lerp"], 3475, 0); + _static(A, "edge_insets_EdgeInsetsGeometry_lerp$closure", 3, null, ["call$3"], ["EdgeInsetsGeometry_lerp"], 3476, 0); + _instance_1_i(_ = A.ImageStreamCompleter.prototype, "get$addListener", "addListener$1", 840); + _instance_1_u(_, "get$reportImageChunkEvent", "reportImageChunkEvent$1", 1294); + _instance_1_u(_ = A.MultiFrameImageStreamCompleter.prototype, "get$_handleCodecReady", "_handleCodecReady$1", 659); + _instance_1_u(_, "get$_handleAppFrame", "_handleAppFrame$1", 11); + _instance_1_i(_, "get$addListener", "addListener$1", 840); + _instance_2_u(A.WordBoundary.prototype, "get$_skipSpacesAndPunctuations", "_skipSpacesAndPunctuations$2", 1339); + _static(A, "text_style_TextStyle_lerp$closure", 3, null, ["call$3"], ["TextStyle_lerp"], 3477, 0); _instance_1_i(_ = A.FrictionSimulation.prototype, "get$x", "x$1", 6); _instance_1_i(_, "get$dx", "dx$1", 6); - _static_1(A, "binding2__DefaultRootPipelineOwner__onSemanticsUpdate$closure", "_DefaultRootPipelineOwner__onSemanticsUpdate", 794); - _instance_1_u(_ = A.RendererBinding.prototype, "get$_handleWebFirstFrame", "_handleWebFirstFrame$1", 12); - _instance_1_u(_, "get$_handlePersistentFrameCallback", "_handlePersistentFrameCallback$1", 12); + _static_1(A, "binding2__DefaultRootPipelineOwner__onSemanticsUpdate$closure", "_DefaultRootPipelineOwner__onSemanticsUpdate", 837); + _instance_1_u(_ = A.RendererBinding.prototype, "get$_handleWebFirstFrame", "_handleWebFirstFrame$1", 11); + _instance_1_u(_, "get$_handlePersistentFrameCallback", "_handlePersistentFrameCallback$1", 11); _instance_0_u(A._BindingPipelineManifold.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(_ = A.RenderBox.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); _instance_0_u(_, "get$markNeedsLayout", "markNeedsLayout$0", 0); - _instance_2_u(A.RenderBoxContainerDefaultsMixin.prototype, "get$defaultPaint", "defaultPaint$2", 90); + _instance_2_u(A.RenderBoxContainerDefaultsMixin.prototype, "get$defaultPaint", "defaultPaint$2", 91); _instance_1_u(_ = A.RenderCustomMultiChildLayoutBox.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); @@ -621162,7 +622500,7 @@ _instance_0_u(_ = A.RenderEditable.prototype, "get$markNeedsPaint", "markNeedsPaint$0", 0); _instance_0_u(_, "get$_showHideCursor", "_showHideCursor$0", 0); _instance_1_u(_, "get$_handleSetText", "_handleSetText$1", 15); - _instance_1_u(_, "get$_handleSetSelection", "_handleSetSelection$1", 1358); + _instance_1_u(_, "get$_handleSetSelection", "_handleSetSelection$1", 1359); _instance_1_u(_, "get$_handleMoveCursorForwardByCharacter", "_handleMoveCursorForwardByCharacter$1", 13); _instance_1_u(_, "get$_handleMoveCursorBackwardByCharacter", "_handleMoveCursorBackwardByCharacter$1", 13); _instance_1_u(_, "get$_handleMoveCursorForwardByWord", "_handleMoveCursorForwardByWord$1", 13); @@ -621174,7 +622512,7 @@ _instance_1_u(_, "get$_editable$_handleTapDown", "_editable$_handleTapDown$1", 50); _instance_0_u(_, "get$_handleTap", "_handleTap$0", 0); _instance_0_u(_, "get$_editable$_handleLongPress", "_editable$_handleLongPress$0", 0); - _instance_2_u(_, "get$_editable$_paintContents", "_editable$_paintContents$2", 90); + _instance_2_u(_, "get$_editable$_paintContents", "_editable$_paintContents$2", 91); _instance_1_u(_ = A.RenderErrorBox.prototype, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); _instance_1_u(_ = A.RenderFlex.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); @@ -621189,16 +622527,16 @@ _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); - _static_1(A, "object_RenderObject__cleanChildRelayoutBoundary$closure", "RenderObject__cleanChildRelayoutBoundary", 63); - _static_1(A, "object_RenderObject__propagateRelayoutBoundaryToChild$closure", "RenderObject__propagateRelayoutBoundaryToChild", 63); + _static_1(A, "object_RenderObject__cleanChildRelayoutBoundary$closure", "RenderObject__cleanChildRelayoutBoundary", 67); + _static_1(A, "object_RenderObject__propagateRelayoutBoundaryToChild$closure", "RenderObject__propagateRelayoutBoundaryToChild", 67); _instance_0_u(A.PipelineOwner.prototype, "get$_updateSemanticsOwner", "_updateSemanticsOwner$0", 0); - _instance_1_u(_ = A.RenderObject.prototype, "get$redepthChild", "redepthChild$1", 63); - _instance_1_u(_, "get$dropChild", "dropChild$1", 63); + _instance_1_u(_ = A.RenderObject.prototype, "get$redepthChild", "redepthChild$1", 67); + _instance_1_u(_, "get$dropChild", "dropChild$1", 67); _instance_0_u(_, "get$markNeedsPaint", "markNeedsPaint$0", 0); - _instance(_, "get$paint", 0, 2, null, ["call$2"], ["paint$2"], 90, 0, 1); + _instance(_, "get$paint", 0, 2, null, ["call$2"], ["paint$2"], 91, 0, 1); _instance_0_u(_, "get$markNeedsSemanticsUpdate", "markNeedsSemanticsUpdate$0", 0); - _instance(_, "get$_marksExplicitInMergeGroup", 0, 1, null, ["call$2$isMergeUp", "call$1"], ["_marksExplicitInMergeGroup$2$isMergeUp", "_marksExplicitInMergeGroup$1"], 1373, 0, 0); - _instance(_, "get$showOnScreen", 0, 0, null, ["call$4$curve$descendant$duration$rect", "call$0", "call$1$rect", "call$3$curve$duration$rect", "call$2$descendant$rect"], ["showOnScreen$4$curve$descendant$duration$rect", "showOnScreen$0", "showOnScreen$1$rect", "showOnScreen$3$curve$duration$rect", "showOnScreen$2$descendant$rect"], 348, 0, 0); + _instance(_, "get$_marksExplicitInMergeGroup", 0, 1, null, ["call$2$isMergeUp", "call$1"], ["_marksExplicitInMergeGroup$2$isMergeUp", "_marksExplicitInMergeGroup$1"], 1374, 0, 0); + _instance(_, "get$showOnScreen", 0, 0, null, ["call$4$curve$descendant$duration$rect", "call$0", "call$1$rect", "call$3$curve$duration$rect", "call$2$descendant$rect"], ["showOnScreen$4$curve$descendant$duration$rect", "showOnScreen$0", "showOnScreen$1$rect", "showOnScreen$3$curve$duration$rect", "showOnScreen$2$descendant$rect"], 390, 0, 0); _instance_1_u(_ = A.ContainerRenderObjectMixin.prototype, "get$childBefore", "childBefore$1", "ContainerRenderObjectMixin.0?(Object?)"); _instance_1_u(_, "get$childAfter", "childAfter$1", "ContainerRenderObjectMixin.0?(Object?)"); _instance_0_u(A.RelayoutWhenSystemFontsChangeMixin.prototype, "get$_scheduleSystemFontsUpdate", "_scheduleSystemFontsUpdate$0", 0); @@ -621206,13 +622544,13 @@ _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); - _instance_1_u(_, "get$_childSemanticsConfigurationsDelegate", "_childSemanticsConfigurationsDelegate$1", 806); + _instance_1_u(_, "get$_childSemanticsConfigurationsDelegate", "_childSemanticsConfigurationsDelegate$1", 859); _instance_1_u(A._PlatformViewGestureRecognizer.prototype, "get$handleEvent", "handleEvent$1", 109); _instance_1_u(_ = A.RenderProxyBoxMixin.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); - _instance(_, "get$paint", 0, 2, null, ["call$2"], ["paint$2"], 90, 0, 1); + _instance(_, "get$paint", 0, 2, null, ["call$2"], ["paint$2"], 91, 0, 1); _instance_1_u(_ = A.RenderConstrainedBox.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); @@ -621230,7 +622568,7 @@ _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_0_u(A.RenderAnimatedOpacityMixin.prototype, "get$_updateOpacity", "_updateOpacity$0", 0); _instance_0_u(A._RenderCustomClip.prototype, "get$_markNeedsClip", "_markNeedsClip$0", 0); - _instance_2_u(A.RenderFittedBox.prototype, "get$_paintChildWithTransform", "_paintChildWithTransform$2", 1405); + _instance_2_u(A.RenderFittedBox.prototype, "get$_paintChildWithTransform", "_paintChildWithTransform$2", 1406); _instance_1_u(_ = A.RenderOffstage.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); @@ -621254,7 +622592,7 @@ _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); - _instance(_, "get$paint", 0, 2, null, ["call$2"], ["paint$2"], 90, 0, 1); + _instance(_, "get$paint", 0, 2, null, ["call$2"], ["paint$2"], 91, 0, 1); _instance_1_u(_ = A.RenderPadding.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); @@ -621267,14 +622605,14 @@ _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); - _instance(A.RenderSliver.prototype, "get$hitTest", 0, 1, null, ["call$3$crossAxisPosition$mainAxisPosition"], ["hitTest$3$crossAxisPosition$mainAxisPosition"], 1406, 0, 0); - _instance(A.RenderSliverPinnedPersistentHeader.prototype, "get$showOnScreen", 0, 0, null, ["call$4$curve$descendant$duration$rect", "call$0", "call$1$rect", "call$3$curve$duration$rect", "call$2$descendant$rect"], ["showOnScreen$4$curve$descendant$duration$rect", "showOnScreen$0", "showOnScreen$1$rect", "showOnScreen$3$curve$duration$rect", "showOnScreen$2$descendant$rect"], 348, 0, 0); + _instance(A.RenderSliver.prototype, "get$hitTest", 0, 1, null, ["call$3$crossAxisPosition$mainAxisPosition"], ["hitTest$3$crossAxisPosition$mainAxisPosition"], 1407, 0, 0); + _instance(A.RenderSliverPinnedPersistentHeader.prototype, "get$showOnScreen", 0, 0, null, ["call$4$curve$descendant$duration$rect", "call$0", "call$1$rect", "call$3$curve$duration$rect", "call$2$descendant$rect"], ["showOnScreen$4$curve$descendant$duration$rect", "showOnScreen$0", "showOnScreen$1$rect", "showOnScreen$3$curve$duration$rect", "showOnScreen$2$descendant$rect"], 390, 0, 0); _instance_1_u(_ = A.RenderStack.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); - _instance_2_u(_, "get$paintStack", "paintStack$2", 90); - _instance_2_u(A.RenderIndexedStack.prototype, "get$paintStack", "paintStack$2", 90); + _instance_2_u(_, "get$paintStack", "paintStack$2", 91); + _instance_2_u(A.RenderIndexedStack.prototype, "get$paintStack", "paintStack$2", 91); _instance_1_u(_ = A.RenderTable.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); @@ -621283,71 +622621,71 @@ _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); - _instance_2_u(_, "get$_paintContents", "_paintContents$2", 90); - _instance(_, "get$showOnScreen", 0, 0, null, ["call$4$curve$descendant$duration$rect", "call$0", "call$1$rect", "call$3$curve$duration$rect", "call$2$descendant$rect"], ["showOnScreen$4$curve$descendant$duration$rect", "showOnScreen$0", "showOnScreen$1$rect", "showOnScreen$3$curve$duration$rect", "showOnScreen$2$descendant$rect"], 348, 0, 0); + _instance_2_u(_, "get$_paintContents", "_paintContents$2", 91); + _instance(_, "get$showOnScreen", 0, 0, null, ["call$4$curve$descendant$duration$rect", "call$0", "call$1$rect", "call$3$curve$duration$rect", "call$2$descendant$rect"], ["showOnScreen$4$curve$descendant$duration$rect", "showOnScreen$0", "showOnScreen$1$rect", "showOnScreen$3$curve$duration$rect", "showOnScreen$2$descendant$rect"], 390, 0, 0); _instance_1_u(_ = A.RenderWrap.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); - _static_2(A, "binding1_SchedulerBinding__taskSorter$closure", "SchedulerBinding__taskSorter", 3470); - _static(A, "binding1__defaultSchedulingStrategy$closure", 0, null, ["call$2$priority$scheduler"], ["defaultSchedulingStrategy"], 3471, 0); - _instance_1_u(_ = A.SchedulerBinding.prototype, "get$_executeTimingsCallbacks", "_executeTimingsCallbacks$1", 451); + _static_2(A, "binding1_SchedulerBinding__taskSorter$closure", "SchedulerBinding__taskSorter", 3478); + _static(A, "binding1__defaultSchedulingStrategy$closure", 0, null, ["call$2$priority$scheduler"], ["defaultSchedulingStrategy"], 3479, 0); + _instance_1_u(_ = A.SchedulerBinding.prototype, "get$_executeTimingsCallbacks", "_executeTimingsCallbacks$1", 479); _instance_0_u(_, "get$_runTasks", "_runTasks$0", 0); - _instance_1_u(_, "get$_handleBeginFrame", "_handleBeginFrame$1", 12); + _instance_1_u(_, "get$_handleBeginFrame", "_handleBeginFrame$1", 11); _instance_0_u(_, "get$_handleDrawFrame", "_handleDrawFrame$0", 0); _instance_0_u(_, "get$_disposePerformanceModeRequest", "_disposePerformanceModeRequest$0", 0); - _instance_1_u(_, "get$_profileFramePostEvent", "_profileFramePostEvent$1", 1423); - _instance_1_u(A.Ticker.prototype, "get$_ticker$_tick", "_ticker$_tick$1", 12); + _instance_1_u(_, "get$_profileFramePostEvent", "_profileFramePostEvent$1", 1434); + _instance_1_u(A.Ticker.prototype, "get$_ticker$_tick", "_ticker$_tick$1", 11); _instance_0_u(_ = A.SemanticsBinding.prototype, "get$_didDisposeSemanticsHandle", "_didDisposeSemanticsHandle$0", 0); _instance_0_u(_, "get$_handleSemanticsEnabledChanged", "_handleSemanticsEnabledChanged$0", 0); - _instance_1_u(_, "get$_handleSemanticsActionEvent", "_handleSemanticsActionEvent$1", 1435); - _instance_1_u(A.SemanticsNode.prototype, "get$_redepthChild", "_redepthChild$1", 1436); + _instance_1_u(_, "get$_handleSemanticsActionEvent", "_handleSemanticsActionEvent$1", 1436); + _instance_1_u(A.SemanticsNode.prototype, "get$_redepthChild", "_redepthChild$1", 1437); _instance_0_u(A.SemanticsOwner.prototype, "get$dispose", "dispose$0", 0); - _instance_1_u(_ = A.SemanticsConfiguration.prototype, "get$_onCustomSemanticsAction", "_onCustomSemanticsAction$1", 44); - _instance_1_u(_, "get$addTagForChildren", "addTagForChildren$1", 1446); - _static_1(A, "binding3_ServicesBinding__parseLicenses$closure", "ServicesBinding__parseLicenses", 3472); - _instance_0_u(_ = A.ServicesBinding.prototype, "get$_addLicenses", "_addLicenses$0", 1480); - _instance_1_u(_, "get$_handleLifecycleMessage", "_handleLifecycleMessage$1", 1481); - _instance_1_u(_, "get$_handlePlatformMessage", "_handlePlatformMessage$1", 180); - _instance_1_u(_ = A.KeyEventManager.prototype, "get$handleKeyData", "handleKeyData$1", 494); - _instance_1_u(_, "get$handleRawKeyMessage", "handleRawKeyMessage$1", 1484); - _instance_1_u(_, "get$_convertRawEventAndStore", "_convertRawEventAndStore$1", 1486); - _instance_1_u(A.RestorationManager.prototype, "get$_methodHandler", "_methodHandler$1", 441); - _instance_1_u(_ = A.RestorationBucket.prototype, "get$_restoration$_dropChild", "_restoration$_dropChild$1", 781); - _instance_1_u(_, "get$_recursivelyUpdateManager", "_recursivelyUpdateManager$1", 781); + _instance_1_u(_ = A.SemanticsConfiguration.prototype, "get$_onCustomSemanticsAction", "_onCustomSemanticsAction$1", 45); + _instance_1_u(_, "get$addTagForChildren", "addTagForChildren$1", 1447); + _static_1(A, "binding3_ServicesBinding__parseLicenses$closure", "ServicesBinding__parseLicenses", 3480); + _instance_0_u(_ = A.ServicesBinding.prototype, "get$_addLicenses", "_addLicenses$0", 1481); + _instance_1_u(_, "get$_handleLifecycleMessage", "_handleLifecycleMessage$1", 1483); + _instance_1_u(_, "get$_handlePlatformMessage", "_handlePlatformMessage$1", 184); + _instance_1_u(_ = A.KeyEventManager.prototype, "get$handleKeyData", "handleKeyData$1", 620); + _instance_1_u(_, "get$handleRawKeyMessage", "handleRawKeyMessage$1", 1486); + _instance_1_u(_, "get$_convertRawEventAndStore", "_convertRawEventAndStore$1", 1487); + _instance_1_u(A.RestorationManager.prototype, "get$_methodHandler", "_methodHandler$1", 434); + _instance_1_u(_ = A.RestorationBucket.prototype, "get$_restoration$_dropChild", "_restoration$_dropChild$1", 829); + _instance_1_u(_, "get$_recursivelyUpdateManager", "_recursivelyUpdateManager$1", 829); _instance_1_u(A.TextInputClient.prototype, "get$performSelector", "performSelector$1", 15); - _instance_1_u(A.TextInput.prototype, "get$_loudlyHandleTextInputInvocation", "_loudlyHandleTextInputInvocation$1", 180); - _instance_1_u(A.UndoManager.prototype, "get$_handleUndoManagerInvocation", "_handleUndoManagerInvocation$1", 180); - _instance_1_u(A._HtmlElementViewController.prototype, "get$dispatchPointerEvent", "dispatchPointerEvent$1", 1544); - _instance_1_u(A._ActionsState.prototype, "get$_handleActionChanged", "_handleActionChanged$1", 1547); - _instance_1_u(_ = A._FocusableActionDetectorState.prototype, "get$_handleFocusHighlightModeChange", "_handleFocusHighlightModeChange$1", 807); - _instance_1_u(_, "get$_actions$_handleMouseEnter", "_actions$_handleMouseEnter$1", 132); + _instance_1_u(A.TextInput.prototype, "get$_loudlyHandleTextInputInvocation", "_loudlyHandleTextInputInvocation$1", 184); + _instance_1_u(A.UndoManager.prototype, "get$_handleUndoManagerInvocation", "_handleUndoManagerInvocation$1", 184); + _instance_1_u(A._HtmlElementViewController.prototype, "get$dispatchPointerEvent", "dispatchPointerEvent$1", 1545); + _instance_1_u(A._ActionsState.prototype, "get$_handleActionChanged", "_handleActionChanged$1", 1550); + _instance_1_u(_ = A._FocusableActionDetectorState.prototype, "get$_handleFocusHighlightModeChange", "_handleFocusHighlightModeChange$1", 863); + _instance_1_u(_, "get$_actions$_handleMouseEnter", "_actions$_handleMouseEnter$1", 134); _instance_1_u(_, "get$_actions$_handleMouseExit", "_actions$_handleMouseExit$1", 110); _instance_1_u(_, "get$_handleFocusChange", "_handleFocusChange$1", 13); - _static(A, "animated_cross_fade_AnimatedCrossFade_defaultLayoutBuilder$closure", 4, null, ["call$4"], ["AnimatedCrossFade_defaultLayoutBuilder"], 3473, 0); - _static_2(A, "animated_switcher_AnimatedSwitcher_defaultTransitionBuilder$closure", "AnimatedSwitcher_defaultTransitionBuilder", 537); - _static_2(A, "animated_switcher_AnimatedSwitcher_defaultLayoutBuilder$closure", "AnimatedSwitcher_defaultLayoutBuilder", 3474); - _instance_1_u(A._AnimatedSwitcherState.prototype, "get$_updateTransitionForEntry", "_updateTransitionForEntry$1", 1581); - _instance_1_u(_ = A._WidgetsAppState.prototype, "get$_defaultOnNavigationNotification", "_defaultOnNavigationNotification$1", 468); - _instance_1_u(_, "get$_onGenerateRoute", "_onGenerateRoute$1", 1598); - _instance_1_u(_, "get$_onUnknownRoute", "_onUnknownRoute$1", 778); - _static_1(A, "autocomplete_RawAutocomplete_defaultStringForOption$closure", "RawAutocomplete_defaultStringForOption", 464); + _static(A, "animated_cross_fade_AnimatedCrossFade_defaultLayoutBuilder$closure", 4, null, ["call$4"], ["AnimatedCrossFade_defaultLayoutBuilder"], 3481, 0); + _static_2(A, "animated_switcher_AnimatedSwitcher_defaultTransitionBuilder$closure", "AnimatedSwitcher_defaultTransitionBuilder", 571); + _static_2(A, "animated_switcher_AnimatedSwitcher_defaultLayoutBuilder$closure", "AnimatedSwitcher_defaultLayoutBuilder", 3482); + _instance_1_u(A._AnimatedSwitcherState.prototype, "get$_updateTransitionForEntry", "_updateTransitionForEntry$1", 1591); + _instance_1_u(_ = A._WidgetsAppState.prototype, "get$_defaultOnNavigationNotification", "_defaultOnNavigationNotification$1", 458); + _instance_1_u(_, "get$_onGenerateRoute", "_onGenerateRoute$1", 1599); + _instance_1_u(_, "get$_onUnknownRoute", "_onUnknownRoute$1", 824); + _static_1(A, "autocomplete_RawAutocomplete_defaultStringForOption$closure", "RawAutocomplete_defaultStringForOption", 578); _instance_0_u(_ = A._RawAutocompleteState.prototype, "get$_onChangedField", "_onChangedField$0", 20); _instance_0_u(_, "get$_onChangedFocus", "_onChangedFocus$0", 0); _instance_0_u(_, "get$_onFieldSubmitted", "_onFieldSubmitted$0", 0); - _instance_1_u(_, "get$_select", "_select$1", 44); - _instance_1_u(_, "get$_highlightPreviousOption", "_highlightPreviousOption$1", 1629); - _instance_1_u(_, "get$_highlightNextOption", "_highlightNextOption$1", 1631); - _instance_1_u(_, "get$_hideOptions", "_hideOptions$1", 777); - _instance_1_u(A._AutomaticKeepAliveState.prototype, "get$_addClient", "_addClient$1", 1639); + _instance_1_u(_, "get$_select", "_select$1", 45); + _instance_1_u(_, "get$_highlightPreviousOption", "_highlightPreviousOption$1", 1631); + _instance_1_u(_, "get$_highlightNextOption", "_highlightNextOption$1", 1632); + _instance_1_u(_, "get$_hideOptions", "_hideOptions$1", 820); + _instance_1_u(A._AutomaticKeepAliveState.prototype, "get$_addClient", "_addClient$1", 1640); _instance_0_u(A.KeepAliveHandle.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(_ = A.WidgetsBinding.prototype, "get$handleLocaleChanged", "handleLocaleChanged$0", 0); - _instance_1_u(_, "get$_handleNavigationInvocation", "_handleNavigationInvocation$1", 180); + _instance_1_u(_, "get$_handleNavigationInvocation", "_handleNavigationInvocation$1", 184); _instance_0_u(_, "get$_handleBuildScheduled", "_handleBuildScheduled$0", 0); _instance_0_u(_ = A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding.prototype, "get$handleMetricsChanged", "handleMetricsChanged$0", 0); _instance_0_u(_, "get$handleTextScaleFactorChanged", "handleTextScaleFactorChanged$0", 0); _instance_0_u(_, "get$handlePlatformBrightnessChanged", "handlePlatformBrightnessChanged$0", 0); - _instance_1_u(_, "get$handleAppLifecycleStateChanged", "handleAppLifecycleStateChanged$1", 3448); + _instance_1_u(_, "get$handleAppLifecycleStateChanged", "handleAppLifecycleStateChanged$1", 3456); _instance_0_u(A._DraggableScrollableSheetScrollPosition.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(A._DualTransitionBuilderState.prototype, "get$_animationListener", "_animationListener$1", 47); _instance_0_u(_ = A.EditableTextState.prototype, "get$_onChangedClipboardStatus", "_onChangedClipboardStatus$0", 0); @@ -621359,161 +622697,161 @@ _instance_0_u(_, "get$_onCursorTick", "_onCursorTick$0", 0); _instance_0_u(_, "get$_didChangeTextEditingValue", "_didChangeTextEditingValue$0", 0); _instance_0_u(_, "get$_editable_text$_handleFocusChanged", "_editable_text$_handleFocusChanged$0", 0); - _instance_1_u(_, "get$_compositeCallback", "_compositeCallback$1", 1709); + _instance_1_u(_, "get$_compositeCallback", "_compositeCallback$1", 1739); _instance(_, "get$_schedulePeriodicPostFrameCallbacks", 0, 0, function() { return [null]; - }, ["call$1", "call$0"], ["_schedulePeriodicPostFrameCallbacks$1", "_schedulePeriodicPostFrameCallbacks$0"], 775, 0, 0); + }, ["call$1", "call$0"], ["_schedulePeriodicPostFrameCallbacks$1", "_schedulePeriodicPostFrameCallbacks$0"], 818, 0, 0); _instance_1_u(_, "get$performSelector", "performSelector$1", 15); - _instance(_, "get$_moveBeyondTextBoundary", 0, 3, null, ["call$3"], ["_moveBeyondTextBoundary$3"], 774, 0, 0); - _instance(_, "get$_moveToTextBoundary", 0, 3, null, ["call$3"], ["_moveToTextBoundary$3"], 774, 0, 0); - _instance_0_u(_, "get$_characterBoundary", "_characterBoundary$0", 325); - _instance_0_u(_, "get$_nextWordBoundary", "_nextWordBoundary$0", 325); - _instance_0_u(_, "get$_linebreak", "_linebreak$0", 325); - _instance_0_u(_, "get$_paragraphBoundary", "_paragraphBoundary$0", 325); - _instance_0_u(_, "get$_documentBoundary", "_documentBoundary$0", 325); - _instance_1_u(_, "get$_transposeCharacters", "_transposeCharacters$1", 1746); - _instance_1_u(_, "get$_replaceText", "_replaceText$1", 1778); - _instance_1_u(_, "get$_scrollToDocumentBoundary", "_scrollToDocumentBoundary$1", 1788); - _instance_1_u(_, "get$_editable_text$_scroll", "_editable_text$_scroll$1", 1789); - _instance_1_u(_, "get$_extendSelectionByPage", "_extendSelectionByPage$1", 1791); - _instance_1_u(_, "get$_updateSelection", "_updateSelection$1", 1821); - _instance_1_u(_, "get$_hideToolbarIfVisible", "_hideToolbarIfVisible$1", 777); - _instance_1_u(_, "get$_defaultOnTapOutside", "_defaultOnTapOutside$1", 190); + _instance(_, "get$_moveBeyondTextBoundary", 0, 3, null, ["call$3"], ["_moveBeyondTextBoundary$3"], 817, 0, 0); + _instance(_, "get$_moveToTextBoundary", 0, 3, null, ["call$3"], ["_moveToTextBoundary$3"], 817, 0, 0); + _instance_0_u(_, "get$_characterBoundary", "_characterBoundary$0", 278); + _instance_0_u(_, "get$_nextWordBoundary", "_nextWordBoundary$0", 278); + _instance_0_u(_, "get$_linebreak", "_linebreak$0", 278); + _instance_0_u(_, "get$_paragraphBoundary", "_paragraphBoundary$0", 278); + _instance_0_u(_, "get$_documentBoundary", "_documentBoundary$0", 278); + _instance_1_u(_, "get$_transposeCharacters", "_transposeCharacters$1", 1778); + _instance_1_u(_, "get$_replaceText", "_replaceText$1", 1788); + _instance_1_u(_, "get$_scrollToDocumentBoundary", "_scrollToDocumentBoundary$1", 1789); + _instance_1_u(_, "get$_editable_text$_scroll", "_editable_text$_scroll$1", 1791); + _instance_1_u(_, "get$_extendSelectionByPage", "_extendSelectionByPage$1", 1821); + _instance_1_u(_, "get$_updateSelection", "_updateSelection$1", 1831); + _instance_1_u(_, "get$_hideToolbarIfVisible", "_hideToolbarIfVisible$1", 820); + _instance_1_u(_, "get$_defaultOnTapOutside", "_defaultOnTapOutside$1", 165); _instance_0_u(A.FocusNode.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(_ = A.FocusManager.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(_, "get$applyFocusChangesIfNeeded", "applyFocusChangesIfNeeded$0", 0); _instance_1_u(_ = A._HighlightModeManager.prototype, "get$handlePointerEvent", "handlePointerEvent$1", 109); - _instance_1_u(_, "get$handleKeyMessage", "handleKeyMessage$1", 1906); + _instance_1_u(_, "get$handleKeyMessage", "handleKeyMessage$1", 1931); _instance_0_u(A._FocusState.prototype, "get$_handleFocusChanged", "_handleFocusChanged$0", 0); _static(A, "focus_traversal_FocusTraversalPolicy_defaultTraversalRequestFocusCallback$closure", 1, null, ["call$5$alignment$alignmentPolicy$curve$duration", "call$1", "call$2$alignmentPolicy"], ["FocusTraversalPolicy_defaultTraversalRequestFocusCallback", function(node) { return A.FocusTraversalPolicy_defaultTraversalRequestFocusCallback(node, null, null, null, null); }, function(node, alignmentPolicy) { return A.FocusTraversalPolicy_defaultTraversalRequestFocusCallback(node, null, alignmentPolicy, null, null); - }], 3475, 0); + }], 3483, 0); _static_1(A, "framework__InactiveElements__deactivateRecursively$closure", "_InactiveElements__deactivateRecursively", 108); - _static_2(A, "framework_Element__sort$closure", "Element__sort", 3476); + _static_2(A, "framework_Element__sort$closure", "Element__sort", 3484); _static_1(A, "framework_Element__activateRecursively$closure", "Element__activateRecursively", 108); - _static_1(A, "framework_ErrorWidget__defaultErrorWidgetBuilder$closure", "ErrorWidget__defaultErrorWidgetBuilder", 3477); - _instance_1_u(A.State.prototype, "get$setState", "setState$1", 257); + _static_1(A, "framework_ErrorWidget__defaultErrorWidgetBuilder$closure", "ErrorWidget__defaultErrorWidgetBuilder", 3485); + _instance_1_u(A.State.prototype, "get$setState", "setState$1", 247); _instance_1_u(_ = A._InactiveElements.prototype, "get$_unmount", "_unmount$1", 108); _instance_0_u(_, "get$_unmountAll", "_unmountAll$0", 0); _instance_1_u(A.Element0.prototype, "get$deactivateChild", "deactivateChild$1", 108); - _instance_1_u(_ = A.RawGestureDetectorState.prototype, "get$_gesture_detector$_handlePointerDown", "_gesture_detector$_handlePointerDown$1", 190); - _instance_1_u(_, "get$_handlePointerPanZoomStart", "_handlePointerPanZoomStart$1", 563); - _instance_1_u(_, "get$_updateSemanticsForRenderObject", "_updateSemanticsForRenderObject$1", 2117); - _instance_1_u(_ = A._HeroFlight.prototype, "get$_buildOverlay", "_buildOverlay$1", 46); + _instance_1_u(_ = A.RawGestureDetectorState.prototype, "get$_gesture_detector$_handlePointerDown", "_gesture_detector$_handlePointerDown$1", 165); + _instance_1_u(_, "get$_handlePointerPanZoomStart", "_handlePointerPanZoomStart$1", 599); + _instance_1_u(_, "get$_updateSemanticsForRenderObject", "_updateSemanticsForRenderObject$1", 2118); + _instance_1_u(_ = A._HeroFlight.prototype, "get$_buildOverlay", "_buildOverlay$1", 44); _instance_1_u(_, "get$_handleAnimationUpdate", "_handleAnimationUpdate$1", 47); _instance_0_u(_, "get$onTick", "onTick$0", 0); - _instance_1_u(_ = A.HeroController.prototype, "get$_handleFlightEnded", "_handleFlightEnded$1", 2121); - _instance(_, "get$_defaultHeroFlightShuttleBuilder", 0, 5, null, ["call$5"], ["_defaultHeroFlightShuttleBuilder$5"], 2122, 0, 0); - _static(A, "icon_theme_data_IconThemeData_lerp$closure", 3, null, ["call$3"], ["IconThemeData_lerp"], 3478, 0); - _instance_2_u(A._ImageState.prototype, "get$_handleImageFrame", "_handleImageFrame$2", 2151); + _instance_1_u(_ = A.HeroController.prototype, "get$_handleFlightEnded", "_handleFlightEnded$1", 2122); + _instance(_, "get$_defaultHeroFlightShuttleBuilder", 0, 5, null, ["call$5"], ["_defaultHeroFlightShuttleBuilder$5"], 2146, 0, 0); + _static(A, "icon_theme_data_IconThemeData_lerp$closure", 3, null, ["call$3"], ["IconThemeData_lerp"], 3486, 0); + _instance_2_u(A._ImageState.prototype, "get$_handleImageFrame", "_handleImageFrame$2", 2152); _instance_0_u(A.AnimatedWidgetBaseState.prototype, "get$_handleAnimationChanged", "_handleAnimationChanged$0", 0); _instance_0_u(A._InheritedNotifierElement.prototype, "get$_handleUpdate", "_handleUpdate$0", 0); - _instance_1_u(_ = A._InteractiveViewerState.prototype, "get$_onScaleStart", "_onScaleStart$1", 465); - _instance_1_u(_, "get$_onScaleUpdate", "_onScaleUpdate$1", 837); - _instance_1_u(_, "get$_onScaleEnd", "_onScaleEnd$1", 488); - _instance_1_u(_, "get$_interactive_viewer$_receivedPointerSignal", "_interactive_viewer$_receivedPointerSignal$1", 245); + _instance_1_u(_ = A._InteractiveViewerState.prototype, "get$_onScaleStart", "_onScaleStart$1", 614); + _instance_1_u(_, "get$_onScaleUpdate", "_onScaleUpdate$1", 760); + _instance_1_u(_, "get$_onScaleEnd", "_onScaleEnd$1", 531); + _instance_1_u(_, "get$_interactive_viewer$_receivedPointerSignal", "_interactive_viewer$_receivedPointerSignal$1", 250); _instance_0_u(_, "get$_onAnimate", "_onAnimate$0", 0); _instance_0_u(_, "get$_onScaleAnimate", "_onScaleAnimate$0", 0); _instance_0_u(_, "get$_onTransformationControllerChange", "_onTransformationControllerChange$0", 0); - _instance_1_u(A._LayoutBuilderElement.prototype, "get$_layout", "_layout$1", 44); + _instance_1_u(A._LayoutBuilderElement.prototype, "get$_layout", "_layout$1", 45); _instance_1_u(_ = A._RenderLayoutBuilder.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); - _static_2(A, "navigator_Navigator_defaultGenerateInitialRoutes$closure", "Navigator_defaultGenerateInitialRoutes", 3479); - _static_1(A, "navigator__RouteEntry_isPresentPredicate$closure", "_RouteEntry_isPresentPredicate", 346); - _static_1(A, "navigator__RouteEntry_suitableForTransitionAnimationPredicate$closure", "_RouteEntry_suitableForTransitionAnimationPredicate", 346); - _static_1(A, "navigator__RouteEntry_willBePresentPredicate$closure", "_RouteEntry_willBePresentPredicate", 346); - _instance_1_u(A._NavigatorPushObservation.prototype, "get$notify", "notify$1", 429); - _instance_1_u(A._NavigatorPopObservation.prototype, "get$notify", "notify$1", 429); - _instance_1_u(A._NavigatorRemoveObservation.prototype, "get$notify", "notify$1", 429); - _instance_1_u(A._NavigatorReplaceObservation.prototype, "get$notify", "notify$1", 429); + _static_2(A, "navigator_Navigator_defaultGenerateInitialRoutes$closure", "Navigator_defaultGenerateInitialRoutes", 3487); + _static_1(A, "navigator__RouteEntry_isPresentPredicate$closure", "_RouteEntry_isPresentPredicate", 324); + _static_1(A, "navigator__RouteEntry_suitableForTransitionAnimationPredicate$closure", "_RouteEntry_suitableForTransitionAnimationPredicate", 324); + _static_1(A, "navigator__RouteEntry_willBePresentPredicate$closure", "_RouteEntry_willBePresentPredicate", 324); + _instance_1_u(A._NavigatorPushObservation.prototype, "get$notify", "notify$1", 369); + _instance_1_u(A._NavigatorPopObservation.prototype, "get$notify", "notify$1", 369); + _instance_1_u(A._NavigatorRemoveObservation.prototype, "get$notify", "notify$1", 369); + _instance_1_u(A._NavigatorReplaceObservation.prototype, "get$notify", "notify$1", 369); _instance_0_u(_ = A.NavigatorState.prototype, "get$_handleHistoryChanged", "_handleHistoryChanged$0", 0); - _instance_1_u(_, "get$_handlePointerDown", "_handlePointerDown$1", 190); + _instance_1_u(_, "get$_handlePointerDown", "_handlePointerDown$1", 165); _instance_1_u(_, "get$_handlePointerUpOrCancel", "_handlePointerUpOrCancel$1", 109); _instance_1_u(_ = A._RenderOverflowBar.prototype, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); - _static_1(A, "overlay__RenderTheater__detachChild$closure", "_RenderTheater__detachChild", 63); - _instance(A._RenderTheaterMixin.prototype, "get$paint", 0, 2, null, ["call$2"], ["paint$2"], 90, 0, 1); + _static_1(A, "overlay__RenderTheater__detachChild$closure", "_RenderTheater__detachChild", 67); + _instance(A._RenderTheaterMixin.prototype, "get$paint", 0, 2, null, ["call$2"], ["paint$2"], 91, 0, 1); _instance_1_u(_ = A._RenderTheater.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); - _instance_1_u(A._GlowingOverscrollIndicatorState.prototype, "get$_overscroll_indicator$_handleScrollNotification", "_overscroll_indicator$_handleScrollNotification$1", 171); + _instance_1_u(A._GlowingOverscrollIndicatorState.prototype, "get$_overscroll_indicator$_handleScrollNotification", "_overscroll_indicator$_handleScrollNotification$1", 173); _instance_0_u(_ = A._GlowController.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(_, "get$_changePhase", "_changePhase$1", 47); - _instance_1_u(_, "get$_tickDisplacement", "_tickDisplacement$1", 12); - _instance_1_u(A._StretchingOverscrollIndicatorState.prototype, "get$_overscroll_indicator$_handleScrollNotification", "_overscroll_indicator$_handleScrollNotification$1", 171); + _instance_1_u(_, "get$_tickDisplacement", "_tickDisplacement$1", 11); + _instance_1_u(A._StretchingOverscrollIndicatorState.prototype, "get$_overscroll_indicator$_handleScrollNotification", "_overscroll_indicator$_handleScrollNotification$1", 173); _instance_1_u(_ = A._StretchController.prototype, "get$_changePhase", "_changePhase$1", 47); _instance_0_u(_, "get$dispose", "dispose$0", 0); - _instance_1_u(A.DefaultPlatformMenuDelegate.prototype, "get$_methodCallHandler", "_methodCallHandler$1", 441); - _instance_1_u(_ = A._PlatformViewLinkState.prototype, "get$_onPlatformViewCreated", "_onPlatformViewCreated$1", 75); + _instance_1_u(A.DefaultPlatformMenuDelegate.prototype, "get$_methodCallHandler", "_methodCallHandler$1", 434); + _instance_1_u(_ = A._PlatformViewLinkState.prototype, "get$_onPlatformViewCreated", "_onPlatformViewCreated$1", 76); _instance_1_u(_, "get$_handleFrameworkFocusChanged", "_handleFrameworkFocusChanged$1", 13); - _instance_1_u(_ = A.SliverReorderableListState.prototype, "get$_dragStart", "_dragStart$1", 824); - _instance(_, "get$_dragUpdate", 0, 3, null, ["call$3"], ["_dragUpdate$3"], 2432, 0, 0); - _instance_1_u(_, "get$_dragCancel", "_dragCancel$1", 762); - _instance_1_u(_, "get$_dragEnd", "_dragEnd$1", 762); + _instance_1_u(_ = A.SliverReorderableListState.prototype, "get$_dragStart", "_dragStart$1", 893); + _instance(_, "get$_dragUpdate", 0, 3, null, ["call$3"], ["_dragUpdate$3"], 2433, 0, 0); + _instance_1_u(_, "get$_dragCancel", "_dragCancel$1", 804); + _instance_1_u(_, "get$_dragEnd", "_dragEnd$1", 804); _instance_0_u(_, "get$_dropCompleted", "_dropCompleted$0", 0); _instance_0_u(_, "get$_handleScrollableAutoScrolled", "_handleScrollableAutoScrolled$0", 0); - _instance_2_u(_, "get$_reorderable_list$_itemBuilder", "_reorderable_list$_itemBuilder$2", 104); + _instance_2_u(_, "get$_reorderable_list$_itemBuilder", "_reorderable_list$_itemBuilder$2", 106); _instance_0_u(A._ReorderableItemState.prototype, "get$rebuild", "rebuild$0", 0); - _instance_1_u(A._DragInfo.prototype, "get$createProxy", "createProxy$1", 46); + _instance_1_u(A._DragInfo.prototype, "get$createProxy", "createProxy$1", 44); _instance_0_u(A._RootRestorationScopeState.prototype, "get$_replaceRootBucket", "_replaceRootBucket$0", 0); _instance_0_u(A.RestorableProperty.prototype, "get$dispose", "dispose$0", 0); - _instance_1_u(A.RestorationMixin.prototype, "get$_updateProperty", "_updateProperty$1", 2463); + _instance_1_u(A.RestorationMixin.prototype, "get$_updateProperty", "_updateProperty$1", 2464); _instance_0_u(A.RestorableListenable.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(A.RestorableChangeNotifier.prototype, "get$dispose", "dispose$0", 0); - _instance_1_u(_ = A._RouterState.prototype, "get$_reportRouteInformation", "_reportRouteInformation$1", 12); + _instance_1_u(_ = A._RouterState.prototype, "get$_reportRouteInformation", "_reportRouteInformation$1", 11); _instance_0_u(_, "get$_handleRouteInformationProviderNotification", "_handleRouteInformationProviderNotification$0", 0); - _instance_0_u(_, "get$_handleBackButtonDispatcherNotification", "_handleBackButtonDispatcherNotification$0", 65); + _instance_0_u(_, "get$_handleBackButtonDispatcherNotification", "_handleBackButtonDispatcherNotification$0", 63); _instance_0_u(_, "get$_handleRouterDelegateNotification", "_handleRouterDelegateNotification$0", 0); _instance_1_u(A.TransitionRoute.prototype, "get$_routes$_handleStatusChanged", "_routes$_handleStatusChanged$1", 47); _instance_0_i(A.LocalHistoryEntry.prototype, "get$remove", "remove$0", 0); _instance_0_u(_ = A.ModalRoute.prototype, "get$_handlePopEntryChange", "_handlePopEntryChange$0", 0); - _instance_1_u(_, "get$_buildModalBarrier", "_buildModalBarrier$1", 46); - _instance_1_u(_, "get$_buildModalScope", "_buildModalScope$1", 46); + _instance_1_u(_, "get$_buildModalBarrier", "_buildModalBarrier$1", 44); + _instance_1_u(_, "get$_buildModalScope", "_buildModalScope$1", 44); _instance_0_u(_ = A.BallisticScrollActivity.prototype, "get$_scroll_activity$_tick", "_scroll_activity$_tick$0", 0); _instance_0_u(_, "get$_scroll_activity$_end", "_scroll_activity$_end$0", 0); _instance_0_u(_ = A.DrivenScrollActivity.prototype, "get$_scroll_activity$_tick", "_scroll_activity$_tick$0", 0); _instance_0_u(_, "get$_scroll_activity$_end", "_scroll_activity$_end$0", 0); _instance_0_u(A.ScrollController.prototype, "get$dispose", "dispose$0", 0); - _static_2(A, "scroll_delegate___kDefaultSemanticIndexCallback$closure", "_kDefaultSemanticIndexCallback", 3480); - _instance_1_i(_ = A._SelectionKeepAliveState.prototype, "get$add", "add$1", 246); - _instance_1_i(_, "get$remove", "remove$1", 246); - _static_1(A, "scroll_notification__defaultScrollNotificationPredicate$closure", "defaultScrollNotificationPredicate", 171); + _static_2(A, "scroll_delegate___kDefaultSemanticIndexCallback$closure", "_kDefaultSemanticIndexCallback", 3488); + _instance_1_i(_ = A._SelectionKeepAliveState.prototype, "get$add", "add$1", 248); + _instance_1_i(_, "get$remove", "remove$1", 248); + _static_1(A, "scroll_notification__defaultScrollNotificationPredicate$closure", "defaultScrollNotificationPredicate", 173); _instance_0_u(_ = A.ScrollPosition.prototype, "get$didUpdateScrollMetrics", "didUpdateScrollMetrics$0", 0); _instance_0_u(_, "get$dispose", "dispose$0", 0); _instance_0_u(A.ScrollPositionWithSingleContext.prototype, "get$dispose", "dispose$0", 0); - _instance_1_u(_ = A.ScrollableState.prototype, "get$_scrollable$_handleDragDown", "_scrollable$_handleDragDown$1", 571); - _instance_1_u(_, "get$_scrollable$_handleDragStart", "_scrollable$_handleDragStart$1", 73); - _instance_1_u(_, "get$_scrollable$_handleDragUpdate", "_scrollable$_handleDragUpdate$1", 69); + _instance_1_u(_ = A.ScrollableState.prototype, "get$_scrollable$_handleDragDown", "_scrollable$_handleDragDown$1", 533); + _instance_1_u(_, "get$_scrollable$_handleDragStart", "_scrollable$_handleDragStart$1", 72); + _instance_1_u(_, "get$_scrollable$_handleDragUpdate", "_scrollable$_handleDragUpdate$1", 70); _instance_1_u(_, "get$_scrollable$_handleDragEnd", "_scrollable$_handleDragEnd$1", 94); _instance_0_u(_, "get$_scrollable$_handleDragCancel", "_scrollable$_handleDragCancel$0", 0); _instance_0_u(_, "get$_disposeHold", "_disposeHold$0", 0); _instance_0_u(_, "get$_disposeDrag", "_disposeDrag$0", 0); - _instance_1_u(_, "get$_receivedPointerSignal", "_receivedPointerSignal$1", 245); + _instance_1_u(_, "get$_receivedPointerSignal", "_receivedPointerSignal$1", 250); _instance_1_u(_, "get$_scrollable$_handlePointerScroll", "_scrollable$_handlePointerScroll$1", 109); - _instance_1_u(_, "get$_handleScrollMetricsNotification", "_handleScrollMetricsNotification$1", 412); + _instance_1_u(_, "get$_handleScrollMetricsNotification", "_handleScrollMetricsNotification$1", 368); _instance_0_u(_ = A._ScrollableSelectionContainerDelegate.prototype, "get$_scheduleLayoutChange", "_scheduleLayoutChange$0", 0); _instance_0_u(_, "get$dispose", "dispose$0", 0); _instance_0_u(A.ScrollbarPainter.prototype, "get$dispose", "dispose$0", 0); _instance_1_u(_ = A.RawScrollbarState.prototype, "get$_validateInteractions", "_validateInteractions$1", 47); _instance_0_u(_, "get$handleThumbPress", "handleThumbPress$0", 0); _instance_1_u(_, "get$_handleTrackTapDown", "_handleTrackTapDown$1", 50); - _instance_1_u(_, "get$_scrollbar$_handleScrollMetricsNotification", "_scrollbar$_handleScrollMetricsNotification$1", 412); - _instance_1_u(_, "get$_handleScrollNotification", "_handleScrollNotification$1", 171); + _instance_1_u(_, "get$_scrollbar$_handleScrollMetricsNotification", "_scrollbar$_handleScrollMetricsNotification$1", 368); + _instance_1_u(_, "get$_handleScrollNotification", "_handleScrollNotification$1", 173); _instance_1_u(_, "get$_handlePointerScroll", "_handlePointerScroll$1", 109); - _instance_1_u(_, "get$_scrollbar$_receivedPointerSignal", "_scrollbar$_receivedPointerSignal$1", 245); - _instance_1_i(_ = A.MultiSelectableSelectionContainerDelegate.prototype, "get$add", "add$1", 246); - _instance_1_i(_, "get$remove", "remove$1", 246); - _instance_2_u(_, "get$_compareScreenOrder", "_compareScreenOrder$2", 2544); + _instance_1_u(_, "get$_scrollbar$_receivedPointerSignal", "_scrollbar$_receivedPointerSignal$1", 250); + _instance_1_i(_ = A.MultiSelectableSelectionContainerDelegate.prototype, "get$add", "add$1", 248); + _instance_1_i(_, "get$remove", "remove$1", 248); + _instance_2_u(_, "get$_compareScreenOrder", "_compareScreenOrder$2", 2547); _instance_0_u(_, "get$_handleSelectableGeometryChange", "_handleSelectableGeometryChange$0", 0); _instance_0_u(_, "get$dispose", "dispose$0", 0); - _instance_2_u(A._ShortcutsState.prototype, "get$_handleOnKey", "_handleOnKey$2", 238); + _instance_2_u(A._ShortcutsState.prototype, "get$_handleOnKey", "_handleOnKey$2", 214); _instance_0_u(A.ShortcutRegistry.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(A._ShortcutRegistrarState.prototype, "get$_shortcutsChanged", "_shortcutsChanged$0", 0); _instance_0_u(_ = A._RenderSingleChildViewport.prototype, "get$_hasScrolled", "_hasScrolled$0", 0); @@ -621521,68 +622859,68 @@ _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); - _instance(_, "get$showOnScreen", 0, 0, null, ["call$4$curve$descendant$duration$rect", "call$0", "call$1$rect", "call$3$curve$duration$rect", "call$2$descendant$rect"], ["showOnScreen$4$curve$descendant$duration$rect", "showOnScreen$0", "showOnScreen$1$rect", "showOnScreen$3$curve$duration$rect", "showOnScreen$2$descendant$rect"], 348, 0, 0); - _instance_1_u(A.SliverMultiBoxAdaptorElement.prototype, "get$removeChild", "removeChild$1", 2569); + _instance(_, "get$showOnScreen", 0, 0, null, ["call$4$curve$descendant$duration$rect", "call$0", "call$1$rect", "call$3$curve$duration$rect", "call$2$descendant$rect"], ["showOnScreen$4$curve$descendant$duration$rect", "showOnScreen$0", "showOnScreen$1$rect", "showOnScreen$3$curve$duration$rect", "showOnScreen$2$descendant$rect"], 390, 0, 0); + _instance_1_u(A.SliverMultiBoxAdaptorElement.prototype, "get$removeChild", "removeChild$1", 2570); _instance_0_u(A._FloatingHeaderState.prototype, "get$_isScrollingListener", "_isScrollingListener$0", 0); _instance_0_u(A._RenderSnapshotWidget.prototype, "get$_onRasterValueChanged", "_onRasterValueChanged$0", 0); _instance_0_u(A._DefaultSnapshotPainter.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(_ = A.TextSelectionOverlay.prototype, "get$_updateTextSelectionOverlayVisibilities", "_updateTextSelectionOverlayVisibilities$0", 0); - _instance_1_u(_, "get$_handleSelectionEndHandleDragStart", "_handleSelectionEndHandleDragStart$1", 73); - _instance_1_u(_, "get$_handleSelectionEndHandleDragUpdate", "_handleSelectionEndHandleDragUpdate$1", 69); - _instance_1_u(_, "get$_handleSelectionStartHandleDragStart", "_handleSelectionStartHandleDragStart$1", 73); - _instance_1_u(_, "get$_handleSelectionStartHandleDragUpdate", "_handleSelectionStartHandleDragUpdate$1", 69); + _instance_1_u(_, "get$_handleSelectionEndHandleDragStart", "_handleSelectionEndHandleDragStart$1", 72); + _instance_1_u(_, "get$_handleSelectionEndHandleDragUpdate", "_handleSelectionEndHandleDragUpdate$1", 70); + _instance_1_u(_, "get$_handleSelectionStartHandleDragStart", "_handleSelectionStartHandleDragStart$1", 72); + _instance_1_u(_, "get$_handleSelectionStartHandleDragUpdate", "_handleSelectionStartHandleDragUpdate$1", 70); _instance_1_u(_, "get$_handleAnyDragEnd", "_handleAnyDragEnd$1", 94); - _instance_1_u(_ = A.SelectionOverlay.prototype, "get$_handleStartHandleDragStart", "_handleStartHandleDragStart$1", 73); - _instance_1_u(_, "get$_handleStartHandleDragUpdate", "_handleStartHandleDragUpdate$1", 69); + _instance_1_u(_ = A.SelectionOverlay.prototype, "get$_handleStartHandleDragStart", "_handleStartHandleDragStart$1", 72); + _instance_1_u(_, "get$_handleStartHandleDragUpdate", "_handleStartHandleDragUpdate$1", 70); _instance_1_u(_, "get$_handleStartHandleDragEnd", "_handleStartHandleDragEnd$1", 94); - _instance_1_u(_, "get$_handleEndHandleDragStart", "_handleEndHandleDragStart$1", 73); - _instance_1_u(_, "get$_handleEndHandleDragUpdate", "_handleEndHandleDragUpdate$1", 69); + _instance_1_u(_, "get$_handleEndHandleDragStart", "_handleEndHandleDragStart$1", 72); + _instance_1_u(_, "get$_handleEndHandleDragUpdate", "_handleEndHandleDragUpdate$1", 70); _instance_1_u(_, "get$_handleEndHandleDragEnd", "_handleEndHandleDragEnd$1", 94); - _instance_1_u(_, "get$_buildStartHandle", "_buildStartHandle$1", 46); - _instance_1_u(_, "get$_buildEndHandle", "_buildEndHandle$1", 46); - _instance_1_u(_, "get$_buildToolbar", "_buildToolbar$1", 46); + _instance_1_u(_, "get$_buildStartHandle", "_buildStartHandle$1", 44); + _instance_1_u(_, "get$_buildEndHandle", "_buildEndHandle$1", 44); + _instance_1_u(_, "get$_buildToolbar", "_buildToolbar$1", 44); _instance_0_u(A._SelectionToolbarWrapperState.prototype, "get$_toolbarVisibilityChanged", "_toolbarVisibilityChanged$0", 0); _instance_0_u(A._SelectionHandleOverlayState.prototype, "get$_handleVisibilityChanged", "_handleVisibilityChanged$0", 0); _instance_0_u(_ = A.TextSelectionGestureDetectorBuilder.prototype, "get$onTapTrackStart", "onTapTrackStart$0", 0); _instance_0_u(_, "get$onTapTrackReset", "onTapTrackReset$0", 0); - _instance_1_u(_, "get$onTapDown", "onTapDown$1", 349); - _instance_1_u(_, "get$onForcePressStart", "onForcePressStart$1", 172); - _instance_1_u(_, "get$onForcePressEnd", "onForcePressEnd$1", 172); - _instance_1_u(_, "get$onSingleTapUp", "onSingleTapUp$1", 308); + _instance_1_u(_, "get$onTapDown", "onTapDown$1", 366); + _instance_1_u(_, "get$onForcePressStart", "onForcePressStart$1", 171); + _instance_1_u(_, "get$onForcePressEnd", "onForcePressEnd$1", 171); + _instance_1_u(_, "get$onSingleTapUp", "onSingleTapUp$1", 315); _instance_0_u(_, "get$onSingleTapCancel", "onSingleTapCancel$0", 0); - _instance_1_u(_, "get$onSingleLongTapStart", "onSingleLongTapStart$1", 233); - _instance_1_u(_, "get$onSingleLongTapMoveUpdate", "onSingleLongTapMoveUpdate$1", 307); + _instance_1_u(_, "get$onSingleLongTapStart", "onSingleLongTapStart$1", 225); + _instance_1_u(_, "get$onSingleLongTapMoveUpdate", "onSingleLongTapMoveUpdate$1", 313); _instance_1_u(_, "get$onSingleLongTapEnd", "onSingleLongTapEnd$1", 273); _instance_0_u(_, "get$onSecondaryTap", "onSecondaryTap$0", 0); _instance_1_u(_, "get$onSecondaryTapDown", "onSecondaryTapDown$1", 50); - _instance_1_u(_, "get$onDoubleTapDown", "onDoubleTapDown$1", 349); - _instance_1_u(_, "get$onTripleTapDown", "onTripleTapDown$1", 349); - _instance_1_u(_, "get$onDragSelectionStart", "onDragSelectionStart$1", 754); - _instance_1_u(_, "get$onDragSelectionUpdate", "onDragSelectionUpdate$1", 753); - _instance_1_u(_, "get$onDragSelectionEnd", "onDragSelectionEnd$1", 752); + _instance_1_u(_, "get$onDoubleTapDown", "onDoubleTapDown$1", 366); + _instance_1_u(_, "get$onTripleTapDown", "onTripleTapDown$1", 366); + _instance_1_u(_, "get$onDragSelectionStart", "onDragSelectionStart$1", 797); + _instance_1_u(_, "get$onDragSelectionUpdate", "onDragSelectionUpdate$1", 795); + _instance_1_u(_, "get$onDragSelectionEnd", "onDragSelectionEnd$1", 794); _instance_0_u(_ = A._TextSelectionGestureDetectorState.prototype, "get$_handleTapTrackStart", "_handleTapTrackStart$0", 0); _instance_0_u(_, "get$_handleTapTrackReset", "_handleTapTrackReset$0", 0); - _instance_1_u(_, "get$_text_selection$_handleTapDown", "_text_selection$_handleTapDown$1", 349); - _instance_1_u(_, "get$_text_selection$_handleTapUp", "_text_selection$_handleTapUp$1", 308); + _instance_1_u(_, "get$_text_selection$_handleTapDown", "_text_selection$_handleTapDown$1", 366); + _instance_1_u(_, "get$_text_selection$_handleTapUp", "_text_selection$_handleTapUp$1", 315); _instance_0_u(_, "get$_text_selection$_handleTapCancel", "_text_selection$_handleTapCancel$0", 0); - _instance_1_u(_, "get$_handleDragStart", "_handleDragStart$1", 754); - _instance_1_u(_, "get$_handleDragUpdate", "_handleDragUpdate$1", 753); - _instance_1_u(_, "get$_handleDragEnd", "_handleDragEnd$1", 752); - _instance_1_u(_, "get$_forcePressStarted", "_forcePressStarted$1", 172); - _instance_1_u(_, "get$_forcePressEnded", "_forcePressEnded$1", 172); - _instance_1_u(_, "get$_handleLongPressStart", "_handleLongPressStart$1", 233); - _instance_1_u(_, "get$_handleLongPressMoveUpdate", "_handleLongPressMoveUpdate$1", 307); + _instance_1_u(_, "get$_handleDragStart", "_handleDragStart$1", 797); + _instance_1_u(_, "get$_handleDragUpdate", "_handleDragUpdate$1", 795); + _instance_1_u(_, "get$_handleDragEnd", "_handleDragEnd$1", 794); + _instance_1_u(_, "get$_forcePressStarted", "_forcePressStarted$1", 171); + _instance_1_u(_, "get$_forcePressEnded", "_forcePressEnded$1", 171); + _instance_1_u(_, "get$_handleLongPressStart", "_handleLongPressStart$1", 225); + _instance_1_u(_, "get$_handleLongPressMoveUpdate", "_handleLongPressMoveUpdate$1", 313); _instance_1_u(_, "get$_handleLongPressEnd", "_handleLongPressEnd$1", 273); _instance_0_u(A.ClipboardStatusNotifier.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(A.SingleTickerProviderStateMixin.prototype, "get$_updateTicker", "_updateTicker$0", 0); _instance_0_u(A.TickerProviderStateMixin.prototype, "get$_updateTickers", "_updateTickers$0", 0); - _static_1(A, "transitions_ScaleTransition__handleScaleMatrix$closure", "ScaleTransition__handleScaleMatrix", 906); - _static_1(A, "transitions_RotationTransition__handleTurnsMatrix$closure", "RotationTransition__handleTurnsMatrix", 906); + _static_1(A, "transitions_ScaleTransition__handleScaleMatrix$closure", "ScaleTransition__handleScaleMatrix", 909); + _static_1(A, "transitions_RotationTransition__handleTurnsMatrix$closure", "RotationTransition__handleTurnsMatrix", 909); _instance_0_u(A._AnimatedState.prototype, "get$_handleChange", "_handleChange$0", 0); _instance_0_u(_ = A.UndoHistoryState.prototype, "get$undo", "undo$0", 0); _instance_0_u(_, "get$redo", "redo$0", 0); - _instance_1_u(_, "get$_undoFromIntent", "_undoFromIntent$1", 2606); - _instance_1_u(_, "get$_redoFromIntent", "_redoFromIntent$1", 2609); + _instance_1_u(_, "get$_undoFromIntent", "_undoFromIntent$1", 2609); + _instance_1_u(_, "get$_redoFromIntent", "_redoFromIntent$1", 2611); _instance_0_u(_, "get$_push", "_push$0", 0); _instance_0_u(_, "get$_handleFocus", "_handleFocus$0", 0); _instance_0_u(A.UndoHistoryController.prototype, "get$dispose", "dispose$0", 0); @@ -621591,24 +622929,24 @@ _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); - _static(A, "block_picker___defaultLayoutBuilder$closure", 3, null, ["call$3"], ["_defaultLayoutBuilder"], 3482, 0); - _static(A, "block_picker___defaultItemBuilder$closure", 3, null, ["call$3"], ["_defaultItemBuilder"], 3483, 0); + _static(A, "block_picker___defaultLayoutBuilder$closure", 3, null, ["call$3"], ["_defaultLayoutBuilder"], 3490, 0); + _static(A, "block_picker___defaultItemBuilder$closure", 3, null, ["call$3"], ["_defaultItemBuilder"], 3491, 0); _static(A, "flutter_redux_StoreBuilder__identity$closure", 1, null, ["call$1$1", "call$1"], ["StoreBuilder__identity", function(store) { return A.StoreBuilder__identity(store, type$.dynamic); - }], 3484, 0); - _instance_1_u(_ = A._StoreStreamListenerState.prototype, "get$_whereDistinct", "_whereDistinct$1", 128); - _instance_1_u(_, "get$_ignoreChange", "_ignoreChange$1", 128); - _instance_2_u(_, "get$_flutter_redux$_handleChange", "_flutter_redux$_handleChange$2", 306); - _instance(_, "get$_handleConverterError", 0, 3, null, ["call$3"], ["_handleConverterError$3"], 751, 0, 0); - _instance(_, "get$_handleError", 0, 3, null, ["call$3"], ["_handleError$3"], 751, 0, 0); + }], 3492, 0); + _instance_1_u(_ = A._StoreStreamListenerState.prototype, "get$_whereDistinct", "_whereDistinct$1", 127); + _instance_1_u(_, "get$_ignoreChange", "_ignoreChange$1", 127); + _instance_2_u(_, "get$_flutter_redux$_handleChange", "_flutter_redux$_handleChange$2", 277); + _instance(_, "get$_handleConverterError", 0, 3, null, ["call$3"], ["_handleConverterError$3"], 786, 0, 0); + _instance(_, "get$_handleError", 0, 3, null, ["call$3"], ["_handleError$3"], 786, 0, 0); _instance_1_u(A._SlidableAutoCloseBarrierNotificationSenderState.prototype, "get$_auto_close_behavior$_handleStatusChanged", "_auto_close_behavior$_handleStatusChanged$1", 47); _instance_1_u(A._SlidableNotificationSenderState0.prototype, "get$handleStatusChanged", "handleStatusChanged$1", 47); _instance_0_u(A.SlidableController.prototype, "get$_onDirectionChanged", "_onDirectionChanged$0", 0); _instance_0_u(A._SlidableDismissalState.prototype, "get$handleResizeRequestChanged", "handleResizeRequestChanged$0", 0); _instance_0_u(_ = A._RenderFlexEntranceTransition.prototype, "get$markNeedsOffsets", "markNeedsOffsets$0", 0); - _instance_1_u(_, "get$updateChildOffsets", "updateChildOffsets$1", 63); - _instance_1_u(_ = A._SlidableGestureDetectorState.prototype, "get$handleDragStart", "handleDragStart$1", 73); - _instance_1_u(_, "get$handleDragUpdate", "handleDragUpdate$1", 69); + _instance_1_u(_, "get$updateChildOffsets", "updateChildOffsets$1", 67); + _instance_1_u(_ = A._SlidableGestureDetectorState.prototype, "get$handleDragStart", "handleDragStart$1", 72); + _instance_1_u(_, "get$handleDragUpdate", "handleDragUpdate$1", 70); _instance_1_u(_, "get$handleDragEnd", "handleDragEnd$1", 94); _instance_0_u(A._SlidableScrollingBehaviorState.prototype, "get$handleScrollingChanged", "handleScrollingChanged$0", 0); _instance_0_u(_ = A._ActionPaneState.prototype, "get$handleEndGestureChanged", "handleEndGestureChanged$0", 0); @@ -621616,31 +622954,31 @@ _instance_0_u(A._SlidableState.prototype, "get$handleActionPanelTypeChanged", "handleActionPanelTypeChanged$0", 0); _static(A, "staggered_grid___dryLayoutChild$closure", 2, null, ["call$3$parentUsesSize", "call$2"], ["_dryLayoutChild", function(child, constraints) { return A._dryLayoutChild(child, constraints, false); - }], 907, 0); + }], 910, 0); _static(A, "staggered_grid___layoutChild$closure", 2, null, ["call$3$parentUsesSize", "call$2"], ["_layoutChild", function(child, constraints) { return A._layoutChild(child, constraints, false); - }], 907, 0); + }], 910, 0); _instance_1_u(_ = A.RenderStaggeredGrid.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicWidth", "computeMaxIntrinsicWidth$1", 6); _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); - _instance(A.Registrar.prototype, "get$handleFrameworkMessage", 0, 3, null, ["call$3"], ["handleFrameworkMessage$3"], 2656, 0, 0); + _instance(A.Registrar.prototype, "get$handleFrameworkMessage", 0, 3, null, ["call$3"], ["handleFrameworkMessage$3"], 2657, 0, 0); _instance_0_u(_ = A.RenderFollower.prototype, "get$markNeedsPaint", "markNeedsPaint$0", 0); - _instance_0_u(_, "get$_calculateGlobalFollowerContentRect", "_calculateGlobalFollowerContentRect$0", 361); - _instance_0_u(_ = A.MethodChannelGoogleSignIn.prototype, "get$signInSilently", "signInSilently$0", 352); - _instance_0_i(_, "get$signIn", "signIn$0", 352); + _instance_0_u(_, "get$_calculateGlobalFollowerContentRect", "_calculateGlobalFollowerContentRect$0", 409); + _instance_0_u(_ = A.MethodChannelGoogleSignIn.prototype, "get$signInSilently", "signInSilently$0", 364); + _instance_0_i(_, "get$signIn", "signIn$0", 364); _instance_0_i(_, "get$signOut", "signOut$0", 20); _instance_0_i(_, "get$disconnect", "disconnect$0", 20); - _instance_0_u(_ = A.GoogleSignInPlugin.prototype, "get$signInSilently", "signInSilently$0", 352); - _instance_0_i(_, "get$signIn", "signIn$0", 352); + _instance_0_u(_ = A.GoogleSignInPlugin.prototype, "get$signInSilently", "signInSilently$0", 364); + _instance_0_i(_, "get$signIn", "signIn$0", 364); _instance_0_i(_, "get$signOut", "signOut$0", 20); _instance_0_i(_, "get$disconnect", "disconnect$0", 20); - _static_1(A, "constants__isWhitespace$closure", "isWhitespace", 117); - _static_1(A, "constants__isDigit$closure", "isDigit", 117); - _static_1(A, "constants__isHexDigit$closure", "isHexDigit", 117); - _static_1(A, "constants__AsciiUpperToLower__asciiToLower$closure", "AsciiUpperToLower__asciiToLower", 133); - _instance_1_i(A._CssClassSetImpl.prototype, "get$contains", "contains$1", 128); - _instance_1_u(A.SelectorEvaluator.prototype, "get$visitSelector", "visitSelector$1", 2689); + _static_1(A, "constants__isWhitespace$closure", "isWhitespace", 119); + _static_1(A, "constants__isDigit$closure", "isDigit", 119); + _static_1(A, "constants__isHexDigit$closure", "isHexDigit", 119); + _static_1(A, "constants__AsciiUpperToLower__asciiToLower$closure", "AsciiUpperToLower__asciiToLower", 137); + _instance_1_i(A._CssClassSetImpl.prototype, "get$contains", "contains$1", 127); + _instance_1_u(A.SelectorEvaluator.prototype, "get$visitSelector", "visitSelector$1", 2690); _instance_0_u(_ = A.HtmlTokenizer.prototype, "get$dataState", "dataState$0", 18); _instance_0_u(_, "get$entityDataState", "entityDataState$0", 18); _instance_0_u(_, "get$rcdataState", "rcdataState$0", 18); @@ -621710,748 +623048,748 @@ _instance_0_u(_, "get$cdataSectionState", "cdataSectionState$0", 18); _instance_0_i(A.BrowserClient.prototype, "get$close", "close$0", 0); _instance_0_i(_ = A.BillingClientManager.prototype, "get$_connect", "_connect$0", 20); - _instance_1_u(_, "get$_onPurchasesUpdated", "_onPurchasesUpdated$1", 2740); - _instance_1_u(A.BillingClient.prototype, "get$callHandler", "callHandler$1", 441); - _instance_1_u(A.InAppPurchaseAndroidPlatform.prototype, "get$_getPurchaseDetailsFromResult", "_getPurchaseDetailsFromResult$1", 2765); - _instance_1_u(_ = A.SKPaymentQueueWrapper.prototype, "get$handleObserverCallbacks", "handleObserverCallbacks$1", 180); - _instance_1_u(_, "get$handlePaymentQueueDelegateCallbacks", "handlePaymentQueueDelegateCallbacks$1", 180); - _instance_1_u(_ = A.DateBuilder.prototype, "get$setYear", "setYear$1", 75); - _instance_1_u(_, "get$setMonth", "setMonth$1", 75); - _instance_1_u(_, "get$setDay", "setDay$1", 75); - _instance_1_u(_, "get$setDayOfYear", "setDayOfYear$1", 75); - _instance_1_u(_, "get$setHour", "setHour$1", 75); - _instance_1_u(_, "get$setMinute", "setMinute$1", 75); - _instance_1_u(_, "get$setSecond", "setSecond$1", 75); - _instance_1_u(_, "get$setFractionalSecond", "setFractionalSecond$1", 75); - _static_1(A, "date_format_DateFormat_localeExists$closure", "DateFormat_localeExists", 117); - _instance_0_u(A.DateFormat.prototype, "get$_initDigitMatcher", "_initDigitMatcher$0", 2816); - _static_1(A, "number_format_NumberFormat_localeExists$closure", "NumberFormat_localeExists", 117); + _instance_1_u(_, "get$_onPurchasesUpdated", "_onPurchasesUpdated$1", 2741); + _instance_1_u(A.BillingClient.prototype, "get$callHandler", "callHandler$1", 434); + _instance_1_u(A.InAppPurchaseAndroidPlatform.prototype, "get$_getPurchaseDetailsFromResult", "_getPurchaseDetailsFromResult$1", 2766); + _instance_1_u(_ = A.SKPaymentQueueWrapper.prototype, "get$handleObserverCallbacks", "handleObserverCallbacks$1", 184); + _instance_1_u(_, "get$handlePaymentQueueDelegateCallbacks", "handlePaymentQueueDelegateCallbacks$1", 184); + _instance_1_u(_ = A.DateBuilder.prototype, "get$setYear", "setYear$1", 76); + _instance_1_u(_, "get$setMonth", "setMonth$1", 76); + _instance_1_u(_, "get$setDay", "setDay$1", 76); + _instance_1_u(_, "get$setDayOfYear", "setDayOfYear$1", 76); + _instance_1_u(_, "get$setHour", "setHour$1", 76); + _instance_1_u(_, "get$setMinute", "setMinute$1", 76); + _instance_1_u(_, "get$setSecond", "setSecond$1", 76); + _instance_1_u(_, "get$setFractionalSecond", "setFractionalSecond$1", 76); + _static_1(A, "date_format_DateFormat_localeExists$closure", "DateFormat_localeExists", 119); + _instance_0_u(A.DateFormat.prototype, "get$_initDigitMatcher", "_initDigitMatcher$0", 2824); + _static_1(A, "number_format_NumberFormat_localeExists$closure", "NumberFormat_localeExists", 119); _static_1(A, "intl_helpers___throwLocaleError$closure", "_throwLocaleError", 31); - _static_0(A, "plural_rules___default_rule$closure", "_default_rule", 56); - _static_0(A, "plural_rules___ast_rule$closure", "_ast_rule", 56); - _static_0(A, "plural_rules___af_rule$closure", "_af_rule", 56); - _static_0(A, "plural_rules___am_rule$closure", "_am_rule", 56); - _static_0(A, "plural_rules___ar_rule$closure", "_ar_rule", 56); - _static_0(A, "plural_rules___be_rule$closure", "_be_rule", 56); - _static_0(A, "plural_rules___br_rule$closure", "_br_rule", 56); - _static_0(A, "plural_rules___bs_rule$closure", "_bs_rule", 56); - _static_0(A, "plural_rules___ca_rule$closure", "_ca_rule", 56); - _static_0(A, "plural_rules___cs_rule$closure", "_cs_rule", 56); - _static_0(A, "plural_rules___cy_rule$closure", "_cy_rule", 56); - _static_0(A, "plural_rules___da_rule$closure", "_da_rule", 56); - _static_0(A, "plural_rules___es_rule$closure", "_es_rule", 56); - _static_0(A, "plural_rules___ceb_rule$closure", "_ceb_rule", 56); - _static_0(A, "plural_rules___fr_rule$closure", "_fr_rule", 56); - _static_0(A, "plural_rules___ga_rule$closure", "_ga_rule", 56); - _static_0(A, "plural_rules___he_rule$closure", "_he_rule", 56); - _static_0(A, "plural_rules___ff_rule$closure", "_ff_rule", 56); - _static_0(A, "plural_rules___is_rule$closure", "_is_rule", 56); - _static_0(A, "plural_rules___ak_rule$closure", "_ak_rule", 56); - _static_0(A, "plural_rules___lt_rule$closure", "_lt_rule", 56); - _static_0(A, "plural_rules___lv_rule$closure", "_lv_rule", 56); - _static_0(A, "plural_rules___mk_rule$closure", "_mk_rule", 56); - _static_0(A, "plural_rules___mt_rule$closure", "_mt_rule", 56); - _static_0(A, "plural_rules___pl_rule$closure", "_pl_rule", 56); - _static_0(A, "plural_rules___pt_rule$closure", "_pt_rule", 56); - _static_0(A, "plural_rules___mo_rule$closure", "_mo_rule", 56); - _static_0(A, "plural_rules___ru_rule$closure", "_ru_rule", 56); - _static_0(A, "plural_rules___si_rule$closure", "_si_rule", 56); - _static_0(A, "plural_rules___sl_rule$closure", "_sl_rule", 56); - _static_1(A, "plural_rules__localeHasPluralRules$closure", "localeHasPluralRules", 11); + _static_0(A, "plural_rules___default_rule$closure", "_default_rule", 55); + _static_0(A, "plural_rules___ast_rule$closure", "_ast_rule", 55); + _static_0(A, "plural_rules___af_rule$closure", "_af_rule", 55); + _static_0(A, "plural_rules___am_rule$closure", "_am_rule", 55); + _static_0(A, "plural_rules___ar_rule$closure", "_ar_rule", 55); + _static_0(A, "plural_rules___be_rule$closure", "_be_rule", 55); + _static_0(A, "plural_rules___br_rule$closure", "_br_rule", 55); + _static_0(A, "plural_rules___bs_rule$closure", "_bs_rule", 55); + _static_0(A, "plural_rules___ca_rule$closure", "_ca_rule", 55); + _static_0(A, "plural_rules___cs_rule$closure", "_cs_rule", 55); + _static_0(A, "plural_rules___cy_rule$closure", "_cy_rule", 55); + _static_0(A, "plural_rules___da_rule$closure", "_da_rule", 55); + _static_0(A, "plural_rules___es_rule$closure", "_es_rule", 55); + _static_0(A, "plural_rules___ceb_rule$closure", "_ceb_rule", 55); + _static_0(A, "plural_rules___fr_rule$closure", "_fr_rule", 55); + _static_0(A, "plural_rules___ga_rule$closure", "_ga_rule", 55); + _static_0(A, "plural_rules___he_rule$closure", "_he_rule", 55); + _static_0(A, "plural_rules___ff_rule$closure", "_ff_rule", 55); + _static_0(A, "plural_rules___is_rule$closure", "_is_rule", 55); + _static_0(A, "plural_rules___ak_rule$closure", "_ak_rule", 55); + _static_0(A, "plural_rules___lt_rule$closure", "_lt_rule", 55); + _static_0(A, "plural_rules___lv_rule$closure", "_lv_rule", 55); + _static_0(A, "plural_rules___mk_rule$closure", "_mk_rule", 55); + _static_0(A, "plural_rules___mt_rule$closure", "_mt_rule", 55); + _static_0(A, "plural_rules___pl_rule$closure", "_pl_rule", 55); + _static_0(A, "plural_rules___pt_rule$closure", "_pt_rule", 55); + _static_0(A, "plural_rules___mo_rule$closure", "_mo_rule", 55); + _static_0(A, "plural_rules___ru_rule$closure", "_ru_rule", 55); + _static_0(A, "plural_rules___si_rule$closure", "_si_rule", 55); + _static_0(A, "plural_rules___sl_rule$closure", "_sl_rule", 55); + _static_1(A, "plural_rules__localeHasPluralRules$closure", "localeHasPluralRules", 12); _instance_0_u(A._IntlPhoneFieldState.prototype, "get$_changeCountry", "_changeCountry$0", 20); _static(A, "main__main$closure", 0, null, ["call$1$isTesting", "call$0"], ["main0", function() { return A.main0(false); - }], 3487, 0); - _instance_0_u(_ = A.InvoiceNinjaAppState.prototype, "get$_authenticate", "_authenticate$0", 70); - _instance_1_u(_, "get$generateRoute", "generateRoute$1", 778); - _static_2(A, "app_reducer__appReducer$closure", "appReducer", 3488); - _static_2(A, "auth_reducer__userLoadUrlReducer$closure", "userLoadUrlReducer", 3489); - _static_2(A, "auth_reducer__userSignUpRequestReducer$closure", "userSignUpRequestReducer", 3490); - _static_2(A, "auth_reducer__userLoginRequestReducer$closure", "userLoginRequestReducer", 3491); - _static_2(A, "auth_reducer__oauthLoginRequestReducer$closure", "oauthLoginRequestReducer", 3492); - _static_2(A, "auth_reducer__oauthSignUpRequestReducer$closure", "oauthSignUpRequestReducer", 3493); - _static_2(A, "auth_reducer__userLoginSuccessReducer$closure", "userLoginSuccessReducer", 3494); - _static_2(A, "auth_reducer__userVerifiedPasswordReducer$closure", "userVerifiedPasswordReducer", 3495); - _static_2(A, "auth_reducer__userUnverifiedPasswordReducer$closure", "userUnverifiedPasswordReducer", 3496); - _static_2(A, "bank_account_reducer___clearEditing$closure", "_clearEditing", 3497); - _static_2(A, "bank_account_reducer___updateEditing$closure", "_updateEditing", 3498); - _static_2(A, "bank_account_reducer___viewBankAccountList$closure", "_viewBankAccountList0", 3499); - _static_2(A, "bank_account_reducer___filterBankAccountsByCustom1$closure", "_filterBankAccountsByCustom1", 3500); - _static_2(A, "bank_account_reducer___filterBankAccountsByCustom2$closure", "_filterBankAccountsByCustom2", 3501); - _static_2(A, "bank_account_reducer___filterBankAccountsByState$closure", "_filterBankAccountsByState", 3502); - _static_2(A, "bank_account_reducer___filterBankAccounts$closure", "_filterBankAccounts", 3503); - _static_2(A, "bank_account_reducer___sortBankAccounts$closure", "_sortBankAccounts", 3504); - _static_2(A, "bank_account_reducer___startListMultiselect$closure", "_startListMultiselect", 3505); - _static_2(A, "bank_account_reducer___addToListMultiselect$closure", "_addToListMultiselect", 3506); - _static_2(A, "bank_account_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect", 3507); - _static_2(A, "bank_account_reducer___clearListMultiselect$closure", "_clearListMultiselect", 3508); - _static_2(A, "bank_account_reducer___archiveBankAccountSuccess$closure", "_archiveBankAccountSuccess", 3509); - _static_2(A, "bank_account_reducer___deleteBankAccountSuccess$closure", "_deleteBankAccountSuccess", 3510); - _static_2(A, "bank_account_reducer___restoreBankAccountSuccess$closure", "_restoreBankAccountSuccess", 3511); - _static_2(A, "bank_account_reducer___addBankAccount$closure", "_addBankAccount", 3512); - _static_2(A, "bank_account_reducer___updateBankAccount$closure", "_updateBankAccount", 3513); - _static_2(A, "bank_account_reducer___setLoadedBankAccount$closure", "_setLoadedBankAccount", 3514); - _static_2(A, "bank_account_reducer___setLoadedBankAccounts$closure", "_setLoadedBankAccounts", 3515); - _static_2(A, "bank_account_reducer___setLoadedCompany$closure", "_setLoadedCompany", 3516); - _static_2(A, "client_reducer___viewClientList$closure", "_viewClientList0", 3517); - _static_2(A, "client_reducer___filterClientsByCustom1$closure", "_filterClientsByCustom1", 3518); - _static_2(A, "client_reducer___filterClientsByCustom2$closure", "_filterClientsByCustom2", 3519); - _static_2(A, "client_reducer___filterClientsByCustom3$closure", "_filterClientsByCustom3", 3520); - _static_2(A, "client_reducer___filterClientsByCustom4$closure", "_filterClientsByCustom4", 3521); - _static_2(A, "client_reducer___filterClientsByState$closure", "_filterClientsByState", 3522); - _static_2(A, "client_reducer___filterClients$closure", "_filterClients", 3523); - _static_2(A, "client_reducer___sortClients$closure", "_sortClients", 3524); - _static_2(A, "client_reducer___startListMultiselect$closure", "_startListMultiselect0", 3525); - _static_2(A, "client_reducer___addToListMultiselect$closure", "_addToListMultiselect0", 3526); - _static_2(A, "client_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect0", 3527); - _static_2(A, "client_reducer___clearListMultiselect$closure", "_clearListMultiselect0", 3528); - _static_2(A, "client_reducer___archiveClientSuccess$closure", "_archiveClientSuccess", 3529); - _static_2(A, "client_reducer___deleteClientSuccess$closure", "_deleteClientSuccess", 3530); - _static_2(A, "client_reducer___restoreClientSuccess$closure", "_restoreClientSuccess", 3531); - _static_2(A, "client_reducer___addClient$closure", "_addClient", 3532); - _static_2(A, "client_reducer___updateClient$closure", "_updateClient", 3533); - _static_2(A, "client_reducer___setLoadedClient$closure", "_setLoadedClient", 3534); - _static_2(A, "client_reducer___mergeClientSuccess$closure", "_mergeClientSuccess", 3535); - _static_2(A, "client_reducer___purgeClientSuccess$closure", "_purgeClientSuccess", 3536); - _static_2(A, "client_reducer___setLoadedClients$closure", "_setLoadedClients", 3537); - _static_2(A, "client_reducer___setLoadedCompany$closure", "_setLoadedCompany0", 3538); - _static_2(A, "company_reducer__loadCompanySuccessReducer$closure", "loadCompanySuccessReducer", 3539); - _static_2(A, "company_reducer__saveCompanySuccessReducer$closure", "saveCompanySuccessReducer", 3540); - _static_2(A, "company_gateway_reducer___clearEditing$closure", "_clearEditing0", 3541); - _static_2(A, "company_gateway_reducer___updateEditing$closure", "_updateEditing0", 3542); - _static_2(A, "company_gateway_reducer___filterCompanyGatewaysByCustom1$closure", "_filterCompanyGatewaysByCustom1", 3543); - _static_2(A, "company_gateway_reducer___filterCompanyGatewaysByCustom2$closure", "_filterCompanyGatewaysByCustom2", 3544); - _static_2(A, "company_gateway_reducer___filterCompanyGatewaysByState$closure", "_filterCompanyGatewaysByState", 3545); - _static_2(A, "company_gateway_reducer___filterCompanyGateways$closure", "_filterCompanyGateways", 3546); - _static_2(A, "company_gateway_reducer___sortCompanyGateways$closure", "_sortCompanyGateways", 3547); - _static_2(A, "company_gateway_reducer___startListMultiselect$closure", "_startListMultiselect1", 3548); - _static_2(A, "company_gateway_reducer___addToListMultiselect$closure", "_addToListMultiselect1", 3549); - _static_2(A, "company_gateway_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect1", 3550); - _static_2(A, "company_gateway_reducer___clearListMultiselect$closure", "_clearListMultiselect1", 3551); - _static_2(A, "company_gateway_reducer___archiveCompanyGatewaySuccess$closure", "_archiveCompanyGatewaySuccess", 3552); - _static_2(A, "company_gateway_reducer___deleteCompanyGatewaySuccess$closure", "_deleteCompanyGatewaySuccess", 3553); - _static_2(A, "company_gateway_reducer___restoreCompanyGatewaySuccess$closure", "_restoreCompanyGatewaySuccess", 3554); - _static_2(A, "company_gateway_reducer___addCompanyGateway$closure", "_addCompanyGateway", 3555); - _static_2(A, "company_gateway_reducer___updateCompanyGateway$closure", "_updateCompanyGateway", 3556); - _static_2(A, "company_gateway_reducer___setLoadedCompanyGateway$closure", "_setLoadedCompanyGateway", 3557); - _static_2(A, "company_gateway_reducer___setLoadedCompany$closure", "_setLoadedCompany1", 3558); - _static_2(A, "company_gateway_reducer___setLoadedCompanyGateways$closure", "_setLoadedCompanyGateways", 3559); - _static_2(A, "credit_reducer___clearEditing$closure", "_clearEditing1", 269); - _static_2(A, "credit_reducer___updateEditing$closure", "_updateEditing1", 394); - _static_2(A, "credit_reducer___addCreditItem$closure", "_addCreditItem", 664); - _static_2(A, "credit_reducer___addCreditItems$closure", "_addCreditItems", 3562); - _static_2(A, "credit_reducer___removeCreditItem$closure", "_removeCreditItem", 3563); - _static_2(A, "credit_reducer___updateCreditItem$closure", "_updateCreditItem", 3564); - _static_2(A, "credit_reducer___viewCreditList$closure", "_viewCreditList0", 3565); - _static_2(A, "credit_reducer___filterCreditsByCustom1$closure", "_filterCreditsByCustom1", 3566); - _static_2(A, "credit_reducer___filterCreditsByCustom2$closure", "_filterCreditsByCustom2", 3567); - _static_2(A, "credit_reducer___filterCreditsByCustom3$closure", "_filterCreditsByCustom3", 3568); - _static_2(A, "credit_reducer___filterCreditsByCustom4$closure", "_filterCreditsByCustom4", 3569); - _static_2(A, "credit_reducer___filterCreditsByState$closure", "_filterCreditsByState", 3570); - _static_2(A, "credit_reducer___filterCreditsByStatus$closure", "_filterCreditsByStatus", 3571); - _static_2(A, "credit_reducer___filterCredits$closure", "_filterCredits", 3572); - _static_2(A, "credit_reducer___sortCredits$closure", "_sortCredits", 3573); - _static_2(A, "credit_reducer___startListMultiselect$closure", "_startListMultiselect2", 3574); - _static_2(A, "credit_reducer___addToListMultiselect$closure", "_addToListMultiselect2", 3575); - _static_2(A, "credit_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect2", 3576); - _static_2(A, "credit_reducer___clearListMultiselect$closure", "_clearListMultiselect2", 3577); - _static_2(A, "credit_reducer___purgeClientSuccess$closure", "_purgeClientSuccess0", 3578); - _static_2(A, "credit_reducer___markSentCreditSuccess$closure", "_markSentCreditSuccess", 3579); - _static_2(A, "credit_reducer___archiveCreditSuccess$closure", "_archiveCreditSuccess", 3580); - _static_2(A, "credit_reducer___deleteCreditSuccess$closure", "_deleteCreditSuccess", 3581); - _static_2(A, "credit_reducer___restoreCreditSuccess$closure", "_restoreCreditSuccess", 3582); - _static_2(A, "credit_reducer___addCredit$closure", "_addCredit", 3583); - _static_2(A, "credit_reducer___updateCredit$closure", "_updateCredit", 3584); - _static_2(A, "credit_reducer___setLoadedCredits$closure", "_setLoadedCredits", 3585); - _static_2(A, "credit_reducer___setLoadedCompany$closure", "_setLoadedCompany2", 3586); - _static_2(A, "design_reducer___clearEditing$closure", "_clearEditing2", 3587); - _static_2(A, "design_reducer___updateEditing$closure", "_updateEditing2", 3588); - _static_2(A, "design_reducer___viewDesignList$closure", "_viewDesignList0", 3589); - _static_2(A, "design_reducer___filterDesignsByCustom1$closure", "_filterDesignsByCustom1", 3590); - _static_2(A, "design_reducer___filterDesignsByCustom2$closure", "_filterDesignsByCustom2", 3591); - _static_2(A, "design_reducer___filterDesignsByState$closure", "_filterDesignsByState", 3592); - _static_2(A, "design_reducer___filterDesigns$closure", "_filterDesigns", 3593); - _static_2(A, "design_reducer___sortDesigns$closure", "_sortDesigns", 3594); - _static_2(A, "design_reducer___startListMultiselect$closure", "_startListMultiselect3", 3595); - _static_2(A, "design_reducer___addToListMultiselect$closure", "_addToListMultiselect3", 3596); - _static_2(A, "design_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect3", 3597); - _static_2(A, "design_reducer___clearListMultiselect$closure", "_clearListMultiselect3", 3598); - _static_2(A, "design_reducer___archiveDesignSuccess$closure", "_archiveDesignSuccess", 3599); - _static_2(A, "design_reducer___deleteDesignSuccess$closure", "_deleteDesignSuccess", 3600); - _static_2(A, "design_reducer___restoreDesignSuccess$closure", "_restoreDesignSuccess", 3601); - _static_2(A, "design_reducer___addDesign$closure", "_addDesign", 3602); - _static_2(A, "design_reducer___updateDesign$closure", "_updateDesign", 3603); - _static_2(A, "design_reducer___setLoadedDesign$closure", "_setLoadedDesign", 3604); - _static_2(A, "design_reducer___setLoadedDesigns$closure", "_setLoadedDesigns", 3605); - _static_2(A, "design_reducer___setLoadedCompany$closure", "_setLoadedCompany3", 3606); - _static_2(A, "document_reducer___updateEditing$closure", "_updateEditing3", 3607); - _static_2(A, "document_reducer___viewDocumentList$closure", "_viewDocumentList0", 3608); - _static_2(A, "document_reducer___filterDocumentsByCustom1$closure", "_filterDocumentsByCustom1", 3609); - _static_2(A, "document_reducer___filterDocumentsByCustom2$closure", "_filterDocumentsByCustom2", 3610); - _static_2(A, "document_reducer___filterDocumentsByState$closure", "_filterDocumentsByState", 3611); - _static_2(A, "document_reducer___filterDocumentsByStatus$closure", "_filterDocumentsByStatus", 3612); - _static_2(A, "document_reducer___filterDocuments$closure", "_filterDocuments", 3613); - _static_2(A, "document_reducer___sortDocuments$closure", "_sortDocuments", 3614); - _static_2(A, "document_reducer___startListMultiselect$closure", "_startListMultiselect4", 3615); - _static_2(A, "document_reducer___addToListMultiselect$closure", "_addToListMultiselect4", 3616); - _static_2(A, "document_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect4", 3617); - _static_2(A, "document_reducer___clearListMultiselect$closure", "_clearListMultiselect4", 3618); - _static_2(A, "document_reducer___archiveDocumentSuccess$closure", "_archiveDocumentSuccess", 3619); - _static_2(A, "document_reducer___deleteDocumentSuccess$closure", "_deleteDocumentSuccess", 3620); - _static_2(A, "document_reducer___restoreDocumentSuccess$closure", "_restoreDocumentSuccess", 3621); - _static_2(A, "document_reducer___addDocument$closure", "_addDocument", 3622); - _static_2(A, "document_reducer___updateDocument$closure", "_updateDocument", 3623); - _static_2(A, "document_reducer___setLoadedDocument$closure", "_setLoadedDocument", 3624); - _static_2(A, "document_reducer___setLoadedDocuments$closure", "_setLoadedDocuments", 3625); - _static_2(A, "document_reducer___setLoadedCompany$closure", "_setLoadedCompany4", 3626); - _static_2(A, "expense_reducer___clearEditing$closure", "_clearEditing3", 911); - _static_2(A, "expense_reducer___updateEditing$closure", "_updateEditing4", 912); - _static_2(A, "expense_reducer___viewExpenseList$closure", "_viewExpenseList0", 3629); - _static_2(A, "expense_reducer___filterExpensesByCustom1$closure", "_filterExpensesByCustom1", 3630); - _static_2(A, "expense_reducer___filterExpensesByCustom2$closure", "_filterExpensesByCustom2", 3631); - _static_2(A, "expense_reducer___filterExpensesByCustom3$closure", "_filterExpensesByCustom3", 3632); - _static_2(A, "expense_reducer___filterExpensesByCustom4$closure", "_filterExpensesByCustom4", 3633); - _static_2(A, "expense_reducer___filterExpensesByState$closure", "_filterExpensesByState", 3634); - _static_2(A, "expense_reducer___filterExpensesByStatus$closure", "_filterExpensesByStatus", 3635); - _static_2(A, "expense_reducer___filterExpenses$closure", "_filterExpenses", 3636); - _static_2(A, "expense_reducer___sortExpenses$closure", "_sortExpenses", 3637); - _static_2(A, "expense_reducer___startListMultiselect$closure", "_startListMultiselect5", 3638); - _static_2(A, "expense_reducer___addToListMultiselect$closure", "_addToListMultiselect5", 3639); - _static_2(A, "expense_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect5", 3640); - _static_2(A, "expense_reducer___clearListMultiselect$closure", "_clearListMultiselect5", 3641); - _static_2(A, "expense_reducer___purgeClientSuccess$closure", "_purgeClientSuccess1", 3642); - _static_2(A, "expense_reducer___archiveExpenseSuccess$closure", "_archiveExpenseSuccess", 3643); - _static_2(A, "expense_reducer___deleteExpenseSuccess$closure", "_deleteExpenseSuccess", 3644); - _static_2(A, "expense_reducer___restoreExpenseSuccess$closure", "_restoreExpenseSuccess", 3645); - _static_2(A, "expense_reducer___addExpense$closure", "_addExpense", 3646); - _static_2(A, "expense_reducer___updateExpense$closure", "_updateExpense", 3647); - _static_2(A, "expense_reducer___setLoadedExpense$closure", "_setLoadedExpense", 3648); - _static_2(A, "expense_reducer___setLoadedExpenses$closure", "_setLoadedExpenses", 3649); - _static_2(A, "expense_reducer___setLoadedCompany$closure", "_setLoadedCompany5", 3650); - _static_2(A, "expense_category_reducer___clearEditing$closure", "_clearEditing4", 3651); - _static_2(A, "expense_category_reducer___updateEditing$closure", "_updateEditing5", 3652); - _static_2(A, "expense_category_reducer___filterExpenseCategoriesByCustom1$closure", "_filterExpenseCategoriesByCustom1", 3653); - _static_2(A, "expense_category_reducer___filterExpenseCategoriesByCustom2$closure", "_filterExpenseCategoriesByCustom2", 3654); - _static_2(A, "expense_category_reducer___filterExpenseCategoriesByState$closure", "_filterExpenseCategoriesByState", 3655); - _static_2(A, "expense_category_reducer___filterExpenseCategories$closure", "_filterExpenseCategories", 3656); - _static_2(A, "expense_category_reducer___sortExpenseCategories$closure", "_sortExpenseCategories", 3657); - _static_2(A, "expense_category_reducer___startListMultiselect$closure", "_startListMultiselect6", 3658); - _static_2(A, "expense_category_reducer___addToListMultiselect$closure", "_addToListMultiselect6", 3659); - _static_2(A, "expense_category_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect6", 3660); - _static_2(A, "expense_category_reducer___clearListMultiselect$closure", "_clearListMultiselect6", 3661); - _static_2(A, "expense_category_reducer___archiveExpenseCategorySuccess$closure", "_archiveExpenseCategorySuccess", 3662); - _static_2(A, "expense_category_reducer___deleteExpenseCategorySuccess$closure", "_deleteExpenseCategorySuccess", 3663); - _static_2(A, "expense_category_reducer___restoreExpenseCategorySuccess$closure", "_restoreExpenseCategorySuccess", 3664); - _static_2(A, "expense_category_reducer___addExpenseCategory$closure", "_addExpenseCategory", 3665); - _static_2(A, "expense_category_reducer___updateExpenseCategory$closure", "_updateExpenseCategory", 3666); - _static_2(A, "expense_category_reducer___setLoadedExpenseCategory$closure", "_setLoadedExpenseCategory", 3667); - _static_2(A, "expense_category_reducer___setLoadedExpenseCategories$closure", "_setLoadedExpenseCategories", 3668); - _static_2(A, "expense_category_reducer___setLoadedCompany$closure", "_setLoadedCompany6", 3669); - _static_2(A, "group_reducer___clearEditing$closure", "_clearEditing5", 3670); - _static_2(A, "group_reducer___updateEditing$closure", "_updateEditing6", 3671); - _static_2(A, "group_reducer___viewGroupList$closure", "_viewGroupList0", 3672); - _static_2(A, "group_reducer___filterGroupsByState$closure", "_filterGroupsByState", 3673); - _static_2(A, "group_reducer___filterGroups$closure", "_filterGroups", 3674); - _static_2(A, "group_reducer___sortGroups$closure", "_sortGroups", 3675); - _static_2(A, "group_reducer___startListMultiselect$closure", "_startListMultiselect7", 3676); - _static_2(A, "group_reducer___addToListMultiselect$closure", "_addToListMultiselect7", 3677); - _static_2(A, "group_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect7", 3678); - _static_2(A, "group_reducer___clearListMultiselect$closure", "_clearListMultiselect7", 3679); - _static_2(A, "group_reducer___archiveGroupSuccess$closure", "_archiveGroupSuccess", 3680); - _static_2(A, "group_reducer___deleteGroupSuccess$closure", "_deleteGroupSuccess", 3681); - _static_2(A, "group_reducer___restoreGroupSuccess$closure", "_restoreGroupSuccess", 3682); - _static_2(A, "group_reducer___addGroup$closure", "_addGroup", 3683); - _static_2(A, "group_reducer___updateGroup$closure", "_updateGroup", 3684); - _static_2(A, "group_reducer___setLoadedGroup$closure", "_setLoadedGroup", 3685); - _static_2(A, "group_reducer___setLoadedGroups$closure", "_setLoadedGroups", 3686); - _static_2(A, "group_reducer___setLoadedCompany$closure", "_setLoadedCompany7", 3687); - _static_2(A, "invoice_reducer___clearEditing$closure", "_clearEditing6", 269); - _static_2(A, "invoice_reducer___updateEditing$closure", "_updateEditing7", 269); - _static_2(A, "invoice_reducer___addInvoiceItem$closure", "_addInvoiceItem", 641); - _static_2(A, "invoice_reducer___addInvoiceItems$closure", "_addInvoiceItems", 3688); - _static_2(A, "invoice_reducer___removeInvoiceItem$closure", "_removeInvoiceItem", 3689); - _static_2(A, "invoice_reducer___updateInvoiceItem$closure", "_updateInvoiceItem", 3690); - _static_2(A, "invoice_reducer___viewInvoiceList$closure", "_viewInvoiceList0", 3691); - _static_2(A, "invoice_reducer___filterInvoicesByCustom1$closure", "_filterInvoicesByCustom1", 3692); - _static_2(A, "invoice_reducer___filterInvoicesByCustom2$closure", "_filterInvoicesByCustom2", 3693); - _static_2(A, "invoice_reducer___filterInvoicesByCustom3$closure", "_filterInvoicesByCustom3", 3694); - _static_2(A, "invoice_reducer___filterInvoicesByCustom4$closure", "_filterInvoicesByCustom4", 3695); - _static_2(A, "invoice_reducer___filterInvoicesByState$closure", "_filterInvoicesByState", 3696); - _static_2(A, "invoice_reducer___filterInvoicesByStatus$closure", "_filterInvoicesByStatus", 3697); - _static_2(A, "invoice_reducer___filterInvoices$closure", "_filterInvoices", 3698); - _static_2(A, "invoice_reducer___sortInvoices$closure", "_sortInvoices", 3699); - _static_2(A, "invoice_reducer___startListMultiselect$closure", "_startListMultiselect8", 3700); - _static_2(A, "invoice_reducer___addToListMultiselect$closure", "_addToListMultiselect8", 3701); - _static_2(A, "invoice_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect8", 3702); - _static_2(A, "invoice_reducer___clearListMultiselect$closure", "_clearListMultiselect8", 3703); - _static_2(A, "invoice_reducer___purgeClientSuccess$closure", "_purgeClientSuccess2", 3704); - _static_2(A, "invoice_reducer___markInvoicesSentSuccess$closure", "_markInvoicesSentSuccess", 3705); - _static_2(A, "invoice_reducer___markInvoicesPaidSuccess$closure", "_markInvoicesPaidSuccess", 3706); - _static_2(A, "invoice_reducer___cancelInvoicesSuccess$closure", "_cancelInvoicesSuccess", 3707); - _static_2(A, "invoice_reducer___archiveInvoiceSuccess$closure", "_archiveInvoiceSuccess", 3708); - _static_2(A, "invoice_reducer___deleteInvoiceSuccess$closure", "_deleteInvoiceSuccess", 3709); - _static_2(A, "invoice_reducer___emailInvoiceSuccess$closure", "_emailInvoiceSuccess", 3710); - _static_2(A, "invoice_reducer___restoreInvoiceSuccess$closure", "_restoreInvoiceSuccess", 3711); - _static_2(A, "invoice_reducer___addInvoice$closure", "_addInvoice", 3712); - _static_2(A, "invoice_reducer___updateInvoice$closure", "_updateInvoice", 3713); - _static_2(A, "invoice_reducer___setLoadedInvoices$closure", "_setLoadedInvoices", 3714); - _static_2(A, "invoice_reducer___setLoadedCompany$closure", "_setLoadedCompany8", 3715); - _static_2(A, "payment_reducer___clearEditing$closure", "_clearEditing7", 3716); - _static_2(A, "payment_reducer___updateEditing$closure", "_updateEditing8", 3717); - _static_2(A, "payment_reducer___viewPaymentList$closure", "_viewPaymentList0", 3718); - _static_2(A, "payment_reducer___filterPaymentsByCustom1$closure", "_filterPaymentsByCustom1", 3719); - _static_2(A, "payment_reducer___filterPaymentsByCustom2$closure", "_filterPaymentsByCustom2", 3720); - _static_2(A, "payment_reducer___filterPaymentsByCustom3$closure", "_filterPaymentsByCustom3", 3721); - _static_2(A, "payment_reducer___filterPaymentsByCustom4$closure", "_filterPaymentsByCustom4", 3722); - _static_2(A, "payment_reducer___filterPaymentsByState$closure", "_filterPaymentsByState", 3723); - _static_2(A, "payment_reducer___filterPaymentsByStatus$closure", "_filterPaymentsByStatus", 3724); - _static_2(A, "payment_reducer___filterPayments$closure", "_filterPayments", 3725); - _static_2(A, "payment_reducer___sortPayments$closure", "_sortPayments", 3726); - _static_2(A, "payment_reducer___startListMultiselect$closure", "_startListMultiselect9", 3727); - _static_2(A, "payment_reducer___addToListMultiselect$closure", "_addToListMultiselect9", 3728); - _static_2(A, "payment_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect9", 3729); - _static_2(A, "payment_reducer___clearListMultiselect$closure", "_clearListMultiselect9", 3730); - _static_2(A, "payment_reducer___purgeClientSuccess$closure", "_purgeClientSuccess3", 3731); - _static_2(A, "payment_reducer___archivePaymentSuccess$closure", "_archivePaymentSuccess", 3732); - _static_2(A, "payment_reducer___deletePaymentSuccess$closure", "_deletePaymentSuccess", 3733); - _static_2(A, "payment_reducer___restorePaymentSuccess$closure", "_restorePaymentSuccess", 3734); - _static_2(A, "payment_reducer___addPayment$closure", "_addPayment", 3735); - _static_2(A, "payment_reducer___updatePayment$closure", "_updatePayment", 3736); - _static_2(A, "payment_reducer___setLoadedPayment$closure", "_setLoadedPayment", 3737); - _static_2(A, "payment_reducer___setLoadedPayments$closure", "_setLoadedPayments", 3738); - _static_2(A, "payment_reducer___setLoadedCompany$closure", "_setLoadedCompany9", 3739); - _static_2(A, "payment_term_reducer___clearEditing$closure", "_clearEditing8", 3740); - _static_2(A, "payment_term_reducer___updateEditing$closure", "_updateEditing9", 3741); - _static_2(A, "payment_term_reducer___viewPaymentTermList$closure", "_viewPaymentTermList0", 3742); - _static_2(A, "payment_term_reducer___filterPaymentTermsByCustom1$closure", "_filterPaymentTermsByCustom1", 3743); - _static_2(A, "payment_term_reducer___filterPaymentTermsByCustom2$closure", "_filterPaymentTermsByCustom2", 3744); - _static_2(A, "payment_term_reducer___filterPaymentTermsByState$closure", "_filterPaymentTermsByState", 3745); - _static_2(A, "payment_term_reducer___filterPaymentTerms$closure", "_filterPaymentTerms", 3746); - _static_2(A, "payment_term_reducer___sortPaymentTerms$closure", "_sortPaymentTerms", 3747); - _static_2(A, "payment_term_reducer___startListMultiselect$closure", "_startListMultiselect10", 3748); - _static_2(A, "payment_term_reducer___addToListMultiselect$closure", "_addToListMultiselect10", 3749); - _static_2(A, "payment_term_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect10", 3750); - _static_2(A, "payment_term_reducer___clearListMultiselect$closure", "_clearListMultiselect10", 3751); - _static_2(A, "payment_term_reducer___archivePaymentTermSuccess$closure", "_archivePaymentTermSuccess", 3752); - _static_2(A, "payment_term_reducer___deletePaymentTermSuccess$closure", "_deletePaymentTermSuccess", 3753); - _static_2(A, "payment_term_reducer___restorePaymentTermSuccess$closure", "_restorePaymentTermSuccess", 3754); - _static_2(A, "payment_term_reducer___addPaymentTerm$closure", "_addPaymentTerm", 3755); - _static_2(A, "payment_term_reducer___updatePaymentTerm$closure", "_updatePaymentTerm", 3756); - _static_2(A, "payment_term_reducer___setLoadedPaymentTerm$closure", "_setLoadedPaymentTerm", 3757); - _static_2(A, "payment_term_reducer___setLoadedPaymentTerms$closure", "_setLoadedPaymentTerms", 3758); - _static_2(A, "payment_term_reducer___setLoadedCompany$closure", "_setLoadedCompany10", 3759); - _static_2(A, "product_reducer___clearEditing$closure", "_clearEditing9", 3760); - _static_2(A, "product_reducer___updateEditing$closure", "_updateEditing10", 3761); - _static_2(A, "product_reducer___viewProductList$closure", "_viewProductList0", 3762); - _static_2(A, "product_reducer___filterProductsByState$closure", "_filterProductsByState", 3763); - _static_2(A, "product_reducer___filterProductsByCustom1$closure", "_filterProductsByCustom1", 3764); - _static_2(A, "product_reducer___filterProductsByCustom2$closure", "_filterProductsByCustom2", 3765); - _static_2(A, "product_reducer___filterProductsByCustom3$closure", "_filterProductsByCustom3", 3766); - _static_2(A, "product_reducer___filterProductsByCustom4$closure", "_filterProductsByCustom4", 3767); - _static_2(A, "product_reducer___filterProducts$closure", "_filterProducts", 3768); - _static_2(A, "product_reducer___sortProducts$closure", "_sortProducts", 3769); - _static_2(A, "product_reducer___startListMultiselect$closure", "_startListMultiselect11", 3770); - _static_2(A, "product_reducer___addToListMultiselect$closure", "_addToListMultiselect11", 3771); - _static_2(A, "product_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect11", 3772); - _static_2(A, "product_reducer___clearListMultiselect$closure", "_clearListMultiselect11", 3773); - _static_2(A, "product_reducer___archiveProductSuccess$closure", "_archiveProductSuccess", 3774); - _static_2(A, "product_reducer___deleteProductSuccess$closure", "_deleteProductSuccess", 3775); - _static_2(A, "product_reducer___restoreProductSuccess$closure", "_restoreProductSuccess", 3776); - _static_2(A, "product_reducer___setTaxCategoryProductsSuccess$closure", "_setTaxCategoryProductsSuccess", 3777); - _static_2(A, "product_reducer___addProduct$closure", "_addProduct", 3778); - _static_2(A, "product_reducer___updateProduct$closure", "_updateProduct", 3779); - _static_2(A, "product_reducer___setLoadedProduct$closure", "_setLoadedProduct", 3780); - _static_2(A, "product_reducer___setLoadedProducts$closure", "_setLoadedProducts", 3781); - _static_2(A, "product_reducer___setLoadedCompany$closure", "_setLoadedCompany11", 3782); - _static_2(A, "project_reducer___clearEditing$closure", "_clearEditing10", 3783); - _static_2(A, "project_reducer___updateEditing$closure", "_updateEditing11", 3784); - _static_2(A, "project_reducer___viewProjectList$closure", "_viewProjectList0", 3785); - _static_2(A, "project_reducer___filterProjectsByCustom1$closure", "_filterProjectsByCustom1", 3786); - _static_2(A, "project_reducer___filterProjectsByCustom2$closure", "_filterProjectsByCustom2", 3787); - _static_2(A, "project_reducer___filterProjectsByCustom3$closure", "_filterProjectsByCustom3", 3788); - _static_2(A, "project_reducer___filterProjectsByCustom4$closure", "_filterProjectsByCustom4", 3789); - _static_2(A, "project_reducer___filterProjectsByState$closure", "_filterProjectsByState", 3790); - _static_2(A, "project_reducer___filterProjects$closure", "_filterProjects", 3791); - _static_2(A, "project_reducer___sortProjects$closure", "_sortProjects", 3792); - _static_2(A, "project_reducer___startListMultiselect$closure", "_startListMultiselect12", 3793); - _static_2(A, "project_reducer___addToListMultiselect$closure", "_addToListMultiselect12", 3794); - _static_2(A, "project_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect12", 3795); - _static_2(A, "project_reducer___clearListMultiselect$closure", "_clearListMultiselect12", 3796); - _static_2(A, "project_reducer___purgeClientSuccess$closure", "_purgeClientSuccess4", 3797); - _static_2(A, "project_reducer___archiveProjectSuccess$closure", "_archiveProjectSuccess", 3798); - _static_2(A, "project_reducer___deleteProjectSuccess$closure", "_deleteProjectSuccess", 3799); - _static_2(A, "project_reducer___restoreProjectSuccess$closure", "_restoreProjectSuccess", 3800); - _static_2(A, "project_reducer___addProject$closure", "_addProject", 3801); - _static_2(A, "project_reducer___updateProject$closure", "_updateProject", 3802); - _static_2(A, "project_reducer___setLoadedProject$closure", "_setLoadedProject", 3803); - _static_2(A, "project_reducer___setLoadedProjects$closure", "_setLoadedProjects", 3804); - _static_2(A, "project_reducer___setLoadedCompany$closure", "_setLoadedCompany12", 3805); - _static_2(A, "purchase_order_reducer___clearEditing$closure", "_clearEditing11", 269); - _static_2(A, "purchase_order_reducer___updateEditing$closure", "_updateEditing12", 394); - _static_2(A, "purchase_order_reducer___addPurchaseOrderItem$closure", "_addPurchaseOrderItem", 631); - _static_2(A, "purchase_order_reducer___addPurchaseOrderItems$closure", "_addPurchaseOrderItems", 3806); - _static_2(A, "purchase_order_reducer___removePurchaseOrderItem$closure", "_removePurchaseOrderItem", 3807); - _static_2(A, "purchase_order_reducer___updatePurchaseOrderItem$closure", "_updatePurchaseOrderItem", 3808); - _static_2(A, "purchase_order_reducer___viewPurchaseOrderList$closure", "_viewPurchaseOrderList0", 3809); - _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByCustom1$closure", "_filterPurchaseOrdersByCustom1", 3810); - _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByCustom2$closure", "_filterPurchaseOrdersByCustom2", 3811); - _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByCustom3$closure", "_filterPurchaseOrdersByCustom3", 3812); - _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByCustom4$closure", "_filterPurchaseOrdersByCustom4", 3813); - _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByState$closure", "_filterPurchaseOrdersByState", 3814); - _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByStatus$closure", "_filterPurchaseOrdersByStatus", 3815); - _static_2(A, "purchase_order_reducer___filterPurchaseOrders$closure", "_filterPurchaseOrders", 3816); - _static_2(A, "purchase_order_reducer___sortPurchaseOrders$closure", "_sortPurchaseOrders", 3817); - _static_2(A, "purchase_order_reducer___startListMultiselect$closure", "_startListMultiselect13", 3818); - _static_2(A, "purchase_order_reducer___addToListMultiselect$closure", "_addToListMultiselect13", 3819); - _static_2(A, "purchase_order_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect13", 3820); - _static_2(A, "purchase_order_reducer___clearListMultiselect$closure", "_clearListMultiselect13", 3821); - _static_2(A, "purchase_order_reducer___markSentPurchaseOrderSuccess$closure", "_markSentPurchaseOrderSuccess", 3822); - _static_2(A, "purchase_order_reducer___convertPurchaseOrdersToExpenses$closure", "_convertPurchaseOrdersToExpenses", 3823); - _static_2(A, "purchase_order_reducer___addPurchaseOrdersToInventorySuccess$closure", "_addPurchaseOrdersToInventorySuccess", 3824); - _static_2(A, "purchase_order_reducer___acceptPurchaseOrderSuccess$closure", "_acceptPurchaseOrderSuccess", 3825); - _static_2(A, "purchase_order_reducer___cancelPurchaseOrderSuccess$closure", "_cancelPurchaseOrderSuccess", 3826); - _static_2(A, "purchase_order_reducer___archivePurchaseOrderSuccess$closure", "_archivePurchaseOrderSuccess", 3827); - _static_2(A, "purchase_order_reducer___deletePurchaseOrderSuccess$closure", "_deletePurchaseOrderSuccess", 3828); - _static_2(A, "purchase_order_reducer___restorePurchaseOrderSuccess$closure", "_restorePurchaseOrderSuccess", 3829); - _static_2(A, "purchase_order_reducer___emailPurchaseOrderSuccess$closure", "_emailPurchaseOrderSuccess", 3830); - _static_2(A, "purchase_order_reducer___approvePurchaseOrderSuccess$closure", "_approvePurchaseOrderSuccess", 3831); - _static_2(A, "purchase_order_reducer___addPurchaseOrder$closure", "_addPurchaseOrder", 3832); - _static_2(A, "purchase_order_reducer___updatePurchaseOrder$closure", "_updatePurchaseOrder", 3833); - _static_2(A, "purchase_order_reducer___setLoadedPurchaseOrders$closure", "_setLoadedPurchaseOrders", 3834); - _static_2(A, "purchase_order_reducer___setLoadedCompany$closure", "_setLoadedCompany13", 3835); - _static_2(A, "quote_reducer___clearEditing$closure", "_clearEditing12", 269); - _static_2(A, "quote_reducer___updateEditing$closure", "_updateEditing13", 394); - _static_2(A, "quote_reducer___addQuoteItem$closure", "_addQuoteItem", 628); - _static_2(A, "quote_reducer___addQuoteItems$closure", "_addQuoteItems", 3836); - _static_2(A, "quote_reducer___removeQuoteItem$closure", "_removeQuoteItem", 3837); - _static_2(A, "quote_reducer___updateQuoteItem$closure", "_updateQuoteItem", 3838); - _static_2(A, "quote_reducer___viewQuoteList$closure", "_viewQuoteList0", 3839); - _static_2(A, "quote_reducer___filterQuotesByCustom1$closure", "_filterQuotesByCustom1", 3840); - _static_2(A, "quote_reducer___filterQuotesByCustom2$closure", "_filterQuotesByCustom2", 3841); - _static_2(A, "quote_reducer___filterQuotesByCustom3$closure", "_filterQuotesByCustom3", 3842); - _static_2(A, "quote_reducer___filterQuotesByCustom4$closure", "_filterQuotesByCustom4", 3843); - _static_2(A, "quote_reducer___filterQuotesByState$closure", "_filterQuotesByState", 3844); - _static_2(A, "quote_reducer___filterQuotesByStatus$closure", "_filterQuotesByStatus", 3845); - _static_2(A, "quote_reducer___filterQuotes$closure", "_filterQuotes", 3846); - _static_2(A, "quote_reducer___sortQuotes$closure", "_sortQuotes", 3847); - _static_2(A, "quote_reducer___startListMultiselect$closure", "_startListMultiselect14", 3848); - _static_2(A, "quote_reducer___addToListMultiselect$closure", "_addToListMultiselect14", 3849); - _static_2(A, "quote_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect14", 3850); - _static_2(A, "quote_reducer___clearListMultiselect$closure", "_clearListMultiselect14", 3851); - _static_2(A, "quote_reducer___purgeClientSuccess$closure", "_purgeClientSuccess5", 3852); - _static_2(A, "quote_reducer___markSentQuoteSuccess$closure", "_markSentQuoteSuccess", 3853); - _static_2(A, "quote_reducer___archiveQuoteSuccess$closure", "_archiveQuoteSuccess", 3854); - _static_2(A, "quote_reducer___deleteQuoteSuccess$closure", "_deleteQuoteSuccess", 3855); - _static_2(A, "quote_reducer___restoreQuoteSuccess$closure", "_restoreQuoteSuccess", 3856); - _static_2(A, "quote_reducer___emailQuoteSuccess$closure", "_emailQuoteSuccess", 3857); - _static_2(A, "quote_reducer___convertQuotesToInvoicesSuccess$closure", "_convertQuotesToInvoicesSuccess", 3858); - _static_2(A, "quote_reducer___convertQuotesToProjectsSuccess$closure", "_convertQuotesToProjectsSuccess", 3859); - _static_2(A, "quote_reducer___addQuote$closure", "_addQuote", 3860); - _static_2(A, "quote_reducer___updateQuote$closure", "_updateQuote", 3861); - _static_2(A, "quote_reducer___setLoadedQuotes$closure", "_setLoadedQuotes", 3862); - _static_2(A, "quote_reducer___setLoadedCompany$closure", "_setLoadedCompany14", 3863); - _static_2(A, "recurring_expense_reducer___clearEditing$closure", "_clearEditing13", 911); - _static_2(A, "recurring_expense_reducer___updateEditing$closure", "_updateEditing14", 912); - _static_2(A, "recurring_expense_reducer___viewRecurringExpenseList$closure", "_viewRecurringExpenseList0", 3864); - _static_2(A, "recurring_expense_reducer___filterRecurringExpensesByCustom1$closure", "_filterRecurringExpensesByCustom1", 3865); - _static_2(A, "recurring_expense_reducer___filterRecurringExpensesByCustom2$closure", "_filterRecurringExpensesByCustom2", 3866); - _static_2(A, "recurring_expense_reducer___filterRecurringExpensesByState$closure", "_filterRecurringExpensesByState", 3867); - _static_2(A, "recurring_expense_reducer___filterRecurringExpensesByStatus$closure", "_filterRecurringExpensesByStatus", 3868); - _static_2(A, "recurring_expense_reducer___filterRecurringExpenses$closure", "_filterRecurringExpenses", 3869); - _static_2(A, "recurring_expense_reducer___sortRecurringExpenses$closure", "_sortRecurringExpenses", 3870); - _static_2(A, "recurring_expense_reducer___startListMultiselect$closure", "_startListMultiselect15", 3871); - _static_2(A, "recurring_expense_reducer___addToListMultiselect$closure", "_addToListMultiselect15", 3872); - _static_2(A, "recurring_expense_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect15", 3873); - _static_2(A, "recurring_expense_reducer___clearListMultiselect$closure", "_clearListMultiselect15", 3874); - _static_2(A, "recurring_expense_reducer___purgeClientSuccess$closure", "_purgeClientSuccess6", 3875); - _static_2(A, "recurring_expense_reducer___archiveRecurringExpenseSuccess$closure", "_archiveRecurringExpenseSuccess", 3876); - _static_2(A, "recurring_expense_reducer___deleteRecurringExpenseSuccess$closure", "_deleteRecurringExpenseSuccess", 3877); - _static_2(A, "recurring_expense_reducer___restoreRecurringExpenseSuccess$closure", "_restoreRecurringExpenseSuccess", 3878); - _static_2(A, "recurring_expense_reducer___addRecurringExpense$closure", "_addRecurringExpense", 3879); - _static_2(A, "recurring_expense_reducer___updateRecurringExpense$closure", "_updateRecurringExpense", 3880); - _static_2(A, "recurring_expense_reducer___startRecurringExpensesSuccess$closure", "_startRecurringExpensesSuccess", 3881); - _static_2(A, "recurring_expense_reducer___stopRecurringExpensesSuccess$closure", "_stopRecurringExpensesSuccess", 3882); - _static_2(A, "recurring_expense_reducer___setLoadedRecurringExpense$closure", "_setLoadedRecurringExpense", 3883); - _static_2(A, "recurring_expense_reducer___setLoadedRecurringExpenses$closure", "_setLoadedRecurringExpenses", 3884); - _static_2(A, "recurring_expense_reducer___setLoadedCompany$closure", "_setLoadedCompany15", 3885); - _static_2(A, "recurring_invoice_reducer___clearEditing$closure", "_clearEditing14", 269); - _static_2(A, "recurring_invoice_reducer___updateEditing$closure", "_updateEditing15", 394); - _static_2(A, "recurring_invoice_reducer___addRecurringInvoiceItem$closure", "_addRecurringInvoiceItem", 627); - _static_2(A, "recurring_invoice_reducer___addRecurringInvoiceItems$closure", "_addRecurringInvoiceItems", 3886); - _static_2(A, "recurring_invoice_reducer___removeRecurringInvoiceItem$closure", "_removeRecurringInvoiceItem", 3887); - _static_2(A, "recurring_invoice_reducer___updateRecurringInvoiceItem$closure", "_updateRecurringInvoiceItem", 3888); - _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByCustom1$closure", "_filterRecurringInvoicesByCustom1", 3889); - _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByCustom2$closure", "_filterRecurringInvoicesByCustom2", 3890); - _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByCustom3$closure", "_filterRecurringInvoicesByCustom3", 3891); - _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByCustom4$closure", "_filterRecurringInvoicesByCustom4", 3892); - _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByState$closure", "_filterRecurringInvoicesByState", 3893); - _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByStatus$closure", "_filterRecurringInvoicesByStatus", 3894); - _static_2(A, "recurring_invoice_reducer___filterRecurringInvoices$closure", "_filterRecurringInvoices", 3895); - _static_2(A, "recurring_invoice_reducer___sortRecurringInvoices$closure", "_sortRecurringInvoices", 3896); - _static_2(A, "recurring_invoice_reducer___startListMultiselect$closure", "_startListMultiselect16", 3897); - _static_2(A, "recurring_invoice_reducer___addToListMultiselect$closure", "_addToListMultiselect16", 3898); - _static_2(A, "recurring_invoice_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect16", 3899); - _static_2(A, "recurring_invoice_reducer___clearListMultiselect$closure", "_clearListMultiselect16", 3900); - _static_2(A, "recurring_invoice_reducer___purgeClientSuccess$closure", "_purgeClientSuccess7", 3901); - _static_2(A, "recurring_invoice_reducer___archiveRecurringInvoiceSuccess$closure", "_archiveRecurringInvoiceSuccess", 3902); - _static_2(A, "recurring_invoice_reducer___deleteRecurringInvoiceSuccess$closure", "_deleteRecurringInvoiceSuccess", 3903); - _static_2(A, "recurring_invoice_reducer___emailRecurringInvoiceSuccess$closure", "_emailRecurringInvoiceSuccess", 3904); - _static_2(A, "recurring_invoice_reducer___restoreRecurringInvoiceSuccess$closure", "_restoreRecurringInvoiceSuccess", 3905); - _static_2(A, "recurring_invoice_reducer___sendNowRecurringInvoiceSuccess$closure", "_sendNowRecurringInvoiceSuccess", 3906); - _static_2(A, "recurring_invoice_reducer___startRecurringInvoicesSuccess$closure", "_startRecurringInvoicesSuccess", 3907); - _static_2(A, "recurring_invoice_reducer___stopRecurringInvoicesSuccess$closure", "_stopRecurringInvoicesSuccess", 3908); - _static_2(A, "recurring_invoice_reducer___addRecurringInvoice$closure", "_addRecurringInvoice", 3909); - _static_2(A, "recurring_invoice_reducer___updateRecurringInvoice$closure", "_updateRecurringInvoice", 3910); - _static_2(A, "recurring_invoice_reducer___setLoadedRecurringInvoices$closure", "_setLoadedRecurringInvoices", 3911); - _static_2(A, "recurring_invoice_reducer___setLoadedCompany$closure", "_setLoadedCompany16", 3912); - _static_2(A, "schedule_reducer___clearEditing$closure", "_clearEditing15", 3913); - _static_2(A, "schedule_reducer___updateEditing$closure", "_updateEditing16", 3914); - _static_2(A, "schedule_reducer___viewScheduleList$closure", "_viewScheduleList0", 3915); - _static_2(A, "schedule_reducer___filterSchedulesByCustom1$closure", "_filterSchedulesByCustom1", 3916); - _static_2(A, "schedule_reducer___filterSchedulesByCustom2$closure", "_filterSchedulesByCustom2", 3917); - _static_2(A, "schedule_reducer___filterSchedulesByState$closure", "_filterSchedulesByState", 3918); - _static_2(A, "schedule_reducer___filterSchedules$closure", "_filterSchedules", 3919); - _static_2(A, "schedule_reducer___sortSchedules$closure", "_sortSchedules", 3920); - _static_2(A, "schedule_reducer___startListMultiselect$closure", "_startListMultiselect17", 3921); - _static_2(A, "schedule_reducer___addToListMultiselect$closure", "_addToListMultiselect17", 3922); - _static_2(A, "schedule_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect17", 3923); - _static_2(A, "schedule_reducer___clearListMultiselect$closure", "_clearListMultiselect17", 3924); - _static_2(A, "schedule_reducer___archiveScheduleSuccess$closure", "_archiveScheduleSuccess", 3925); - _static_2(A, "schedule_reducer___deleteScheduleSuccess$closure", "_deleteScheduleSuccess", 3926); - _static_2(A, "schedule_reducer___restoreScheduleSuccess$closure", "_restoreScheduleSuccess", 3927); - _static_2(A, "schedule_reducer___addSchedule$closure", "_addSchedule", 3928); - _static_2(A, "schedule_reducer___updateSchedule$closure", "_updateSchedule", 3929); - _static_2(A, "schedule_reducer___setLoadedSchedule$closure", "_setLoadedSchedule", 3930); - _static_2(A, "schedule_reducer___setLoadedSchedules$closure", "_setLoadedSchedules", 3931); - _static_2(A, "schedule_reducer___setLoadedCompany$closure", "_setLoadedCompany17", 3932); - _static_2(A, "static_reducer__staticLoadedReducer$closure", "staticLoadedReducer", 3933); - _static_2(A, "subscription_reducer___clearEditing$closure", "_clearEditing16", 3934); - _static_2(A, "subscription_reducer___updateEditing$closure", "_updateEditing17", 3935); - _static_2(A, "subscription_reducer___filterSubscriptionsByCustom1$closure", "_filterSubscriptionsByCustom1", 3936); - _static_2(A, "subscription_reducer___filterSubscriptionsByCustom2$closure", "_filterSubscriptionsByCustom2", 3937); - _static_2(A, "subscription_reducer___filterSubscriptionsByState$closure", "_filterSubscriptionsByState", 3938); - _static_2(A, "subscription_reducer___filterSubscriptions$closure", "_filterSubscriptions", 3939); - _static_2(A, "subscription_reducer___sortSubscriptions$closure", "_sortSubscriptions", 3940); - _static_2(A, "subscription_reducer___startListMultiselect$closure", "_startListMultiselect18", 3941); - _static_2(A, "subscription_reducer___addToListMultiselect$closure", "_addToListMultiselect18", 3942); - _static_2(A, "subscription_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect18", 3943); - _static_2(A, "subscription_reducer___clearListMultiselect$closure", "_clearListMultiselect18", 3944); - _static_2(A, "subscription_reducer___archiveSubscriptionSuccess$closure", "_archiveSubscriptionSuccess", 3945); - _static_2(A, "subscription_reducer___deleteSubscriptionSuccess$closure", "_deleteSubscriptionSuccess", 3946); - _static_2(A, "subscription_reducer___restoreSubscriptionSuccess$closure", "_restoreSubscriptionSuccess", 3947); - _static_2(A, "subscription_reducer___addSubscription$closure", "_addSubscription", 3948); - _static_2(A, "subscription_reducer___updateSubscription$closure", "_updateSubscription", 3949); - _static_2(A, "subscription_reducer___setLoadedSubscription$closure", "_setLoadedSubscription", 3950); - _static_2(A, "subscription_reducer___setLoadedSubscriptions$closure", "_setLoadedSubscriptions", 3951); - _static_2(A, "subscription_reducer___setLoadedCompany$closure", "_setLoadedCompany18", 3952); - _static_2(A, "task_reducer___clearEditing$closure", "_clearEditing17", 3953); - _static_2(A, "task_reducer___updateEditing$closure", "_updateEditing18", 3954); - _static_2(A, "task_reducer___viewTaskList$closure", "_viewTaskList0", 3955); - _static_2(A, "task_reducer___filterTasksByCustom1$closure", "_filterTasksByCustom1", 3956); - _static_2(A, "task_reducer___filterTasksByCustom2$closure", "_filterTasksByCustom2", 3957); - _static_2(A, "task_reducer___filterTasksByState$closure", "_filterTasksByState", 3958); - _static_2(A, "task_reducer___filterTasksByStatus$closure", "_filterTasksByStatus", 3959); - _static_2(A, "task_reducer___filterTasks$closure", "_filterTasks", 3960); - _static_2(A, "task_reducer___sortTasks$closure", "_sortTasks0", 3961); - _static_2(A, "task_reducer___addTaskTime$closure", "_addTaskTime", 3962); - _static_2(A, "task_reducer___removeTaskTime$closure", "_removeTaskTime", 3963); - _static_2(A, "task_reducer___updateTaskTime$closure", "_updateTaskTime", 3964); - _static_2(A, "task_reducer___startListMultiselect$closure", "_startListMultiselect19", 3965); - _static_2(A, "task_reducer___addToListMultiselect$closure", "_addToListMultiselect19", 3966); - _static_2(A, "task_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect19", 3967); - _static_2(A, "task_reducer___clearListMultiselect$closure", "_clearListMultiselect19", 3968); - _static_2(A, "task_reducer___purgeClientSuccess$closure", "_purgeClientSuccess8", 3969); - _static_2(A, "task_reducer___sortTasksSuccess$closure", "_sortTasksSuccess", 3970); - _static_2(A, "task_reducer___archiveTaskSuccess$closure", "_archiveTaskSuccess", 3971); - _static_2(A, "task_reducer___startTaskSuccess$closure", "_startTaskSuccess", 3972); - _static_2(A, "task_reducer___stopTaskSuccess$closure", "_stopTaskSuccess", 3973); - _static_2(A, "task_reducer___deleteTaskSuccess$closure", "_deleteTaskSuccess", 3974); - _static_2(A, "task_reducer___restoreTaskSuccess$closure", "_restoreTaskSuccess", 3975); - _static_2(A, "task_reducer___addTask$closure", "_addTask", 3976); - _static_2(A, "task_reducer___updateTask$closure", "_updateTask", 3977); - _static_2(A, "task_reducer___setLoadedTask$closure", "_setLoadedTask", 3978); - _static_2(A, "task_reducer___setLoadedTasks$closure", "_setLoadedTasks", 3979); - _static_2(A, "task_reducer___setLoadedCompany$closure", "_setLoadedCompany19", 3980); - _static_2(A, "task_status_reducer___clearEditing$closure", "_clearEditing18", 3981); - _static_2(A, "task_status_reducer___updateEditing$closure", "_updateEditing19", 3982); - _static_2(A, "task_status_reducer___viewTaskStatusList$closure", "_viewTaskStatusList0", 3983); - _static_2(A, "task_status_reducer___filterTaskStatusesByCustom1$closure", "_filterTaskStatusesByCustom1", 3984); - _static_2(A, "task_status_reducer___filterTaskStatusesByCustom2$closure", "_filterTaskStatusesByCustom2", 3985); - _static_2(A, "task_status_reducer___filterTaskStatusesByState$closure", "_filterTaskStatusesByState", 3986); - _static_2(A, "task_status_reducer___filterTaskStatuses$closure", "_filterTaskStatuses", 3987); - _static_2(A, "task_status_reducer___sortTaskStatuses$closure", "_sortTaskStatuses", 3988); - _static_2(A, "task_status_reducer___startListMultiselect$closure", "_startListMultiselect20", 3989); - _static_2(A, "task_status_reducer___addToListMultiselect$closure", "_addToListMultiselect20", 3990); - _static_2(A, "task_status_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect20", 3991); - _static_2(A, "task_status_reducer___clearListMultiselect$closure", "_clearListMultiselect20", 3992); - _static_2(A, "task_status_reducer___sortTaskStatusSuccess$closure", "_sortTaskStatusSuccess", 3993); - _static_2(A, "task_status_reducer___archiveTaskStatusSuccess$closure", "_archiveTaskStatusSuccess", 3994); - _static_2(A, "task_status_reducer___deleteTaskStatusSuccess$closure", "_deleteTaskStatusSuccess", 3995); - _static_2(A, "task_status_reducer___restoreTaskStatusSuccess$closure", "_restoreTaskStatusSuccess", 3996); - _static_2(A, "task_status_reducer___addTaskStatus$closure", "_addTaskStatus", 3997); - _static_2(A, "task_status_reducer___updateTaskStatus$closure", "_updateTaskStatus", 3998); - _static_2(A, "task_status_reducer___setLoadedTaskStatus$closure", "_setLoadedTaskStatus", 3999); - _static_2(A, "task_status_reducer___setLoadedTaskStatuses$closure", "_setLoadedTaskStatuses", 4000); - _static_2(A, "task_status_reducer___setLoadedCompany$closure", "_setLoadedCompany20", 4001); - _static_2(A, "tax_rate_reducer___clearEditing$closure", "_clearEditing19", 4002); - _static_2(A, "tax_rate_reducer___updateEditing$closure", "_updateEditing20", 4003); - _static_2(A, "tax_rate_reducer___viewTaxRateList$closure", "_viewTaxRateList0", 4004); - _static_2(A, "tax_rate_reducer___filterTaxRatesByState$closure", "_filterTaxRatesByState", 4005); - _static_2(A, "tax_rate_reducer___filterTaxRates$closure", "_filterTaxRates", 4006); - _static_2(A, "tax_rate_reducer___sortTaxRates$closure", "_sortTaxRates", 4007); - _static_2(A, "tax_rate_reducer___startListMultiselect$closure", "_startListMultiselect21", 4008); - _static_2(A, "tax_rate_reducer___addToListMultiselect$closure", "_addToListMultiselect21", 4009); - _static_2(A, "tax_rate_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect21", 4010); - _static_2(A, "tax_rate_reducer___clearListMultiselect$closure", "_clearListMultiselect21", 4011); - _static_2(A, "tax_rate_reducer___archiveTaxRateSuccess$closure", "_archiveTaxRateSuccess", 4012); - _static_2(A, "tax_rate_reducer___deleteTaxRateSuccess$closure", "_deleteTaxRateSuccess", 4013); - _static_2(A, "tax_rate_reducer___restoreTaxRateSuccess$closure", "_restoreTaxRateSuccess", 4014); - _static_2(A, "tax_rate_reducer___addTaxRate$closure", "_addTaxRate", 4015); - _static_2(A, "tax_rate_reducer___updateTaxRate$closure", "_updateTaxRate", 4016); - _static_2(A, "tax_rate_reducer___setLoadedTaxRate$closure", "_setLoadedTaxRate", 4017); - _static_2(A, "tax_rate_reducer___setLoadedTaxRates$closure", "_setLoadedTaxRates", 4018); - _static_2(A, "tax_rate_reducer___setLoadedCompany$closure", "_setLoadedCompany21", 4019); - _static_2(A, "token_reducer___clearEditing$closure", "_clearEditing20", 4020); - _static_2(A, "token_reducer___updateEditing$closure", "_updateEditing21", 4021); - _static_2(A, "token_reducer___viewTokenList$closure", "_viewTokenList0", 4022); - _static_2(A, "token_reducer___filterTokensByCustom1$closure", "_filterTokensByCustom1", 4023); - _static_2(A, "token_reducer___filterTokensByCustom2$closure", "_filterTokensByCustom2", 4024); - _static_2(A, "token_reducer___filterTokensByState$closure", "_filterTokensByState", 4025); - _static_2(A, "token_reducer___filterTokens$closure", "_filterTokens", 4026); - _static_2(A, "token_reducer___sortTokens$closure", "_sortTokens", 4027); - _static_2(A, "token_reducer___startListMultiselect$closure", "_startListMultiselect22", 4028); - _static_2(A, "token_reducer___addToListMultiselect$closure", "_addToListMultiselect22", 4029); - _static_2(A, "token_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect22", 4030); - _static_2(A, "token_reducer___clearListMultiselect$closure", "_clearListMultiselect22", 4031); - _static_2(A, "token_reducer___archiveTokenSuccess$closure", "_archiveTokenSuccess", 4032); - _static_2(A, "token_reducer___deleteTokenSuccess$closure", "_deleteTokenSuccess", 4033); - _static_2(A, "token_reducer___restoreTokenSuccess$closure", "_restoreTokenSuccess", 4034); - _static_2(A, "token_reducer___addToken$closure", "_addToken", 4035); - _static_2(A, "token_reducer___updateToken$closure", "_updateToken", 4036); - _static_2(A, "token_reducer___setLoadedToken$closure", "_setLoadedToken", 4037); - _static_2(A, "token_reducer___setLoadedTokens$closure", "_setLoadedTokens", 4038); - _static_2(A, "token_reducer___setLoadedCompany$closure", "_setLoadedCompany22", 4039); - _static_2(A, "transaction_reducer___clearEditing$closure", "_clearEditing21", 4040); - _static_2(A, "transaction_reducer___updateEditing$closure", "_updateEditing22", 4041); - _static_2(A, "transaction_reducer___viewTransactionList$closure", "_viewTransactionList0", 4042); - _static_2(A, "transaction_reducer___filterTransactionsByCustom1$closure", "_filterTransactionsByCustom1", 4043); - _static_2(A, "transaction_reducer___filterTransactionsByCustom2$closure", "_filterTransactionsByCustom2", 4044); - _static_2(A, "transaction_reducer___filterTransactionsByState$closure", "_filterTransactionsByState", 4045); - _static_2(A, "transaction_reducer___filterTransactionsByStatus$closure", "_filterTransactionsByStatus", 4046); - _static_2(A, "transaction_reducer___filterTransactions$closure", "_filterTransactions", 4047); - _static_2(A, "transaction_reducer___sortTransactions$closure", "_sortTransactions", 4048); - _static_2(A, "transaction_reducer___startListMultiselect$closure", "_startListMultiselect23", 4049); - _static_2(A, "transaction_reducer___addToListMultiselect$closure", "_addToListMultiselect23", 4050); - _static_2(A, "transaction_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect23", 4051); - _static_2(A, "transaction_reducer___clearListMultiselect$closure", "_clearListMultiselect23", 4052); - _static_2(A, "transaction_reducer___archiveTransactionSuccess$closure", "_archiveTransactionSuccess", 4053); - _static_2(A, "transaction_reducer___deleteTransactionSuccess$closure", "_deleteTransactionSuccess", 4054); - _static_2(A, "transaction_reducer___restoreTransactionSuccess$closure", "_restoreTransactionSuccess", 4055); - _static_2(A, "transaction_reducer___addTransaction$closure", "_addTransaction", 4056); - _static_2(A, "transaction_reducer___updateTransaction$closure", "_updateTransaction", 4057); - _static_2(A, "transaction_reducer___convertTransactionToPayment$closure", "_convertTransactionToPayment", 4058); - _static_2(A, "transaction_reducer___convertTransactionToExpense$closure", "_convertTransactionToExpense", 4059); - _static_2(A, "transaction_reducer___linkTransactionToPayment$closure", "_linkTransactionToPayment", 4060); - _static_2(A, "transaction_reducer___linkTransactionToExpense$closure", "_linkTransactionToExpense", 4061); - _static_2(A, "transaction_reducer___convertTransactions$closure", "_convertTransactions0", 4062); - _static_2(A, "transaction_reducer___setLoadedTransaction$closure", "_setLoadedTransaction", 4063); - _static_2(A, "transaction_reducer___setLoadedTransactions$closure", "_setLoadedTransactions", 4064); - _static_2(A, "transaction_reducer___setLoadedCompany$closure", "_setLoadedCompany23", 4065); - _static_2(A, "transaction_rule_reducer___clearEditing$closure", "_clearEditing22", 4066); - _static_2(A, "transaction_rule_reducer___updateEditing$closure", "_updateEditing23", 4067); - _static_2(A, "transaction_rule_reducer___viewTransactionRuleList$closure", "_viewTransactionRuleList0", 4068); - _static_2(A, "transaction_rule_reducer___filterTransactionRulesByCustom1$closure", "_filterTransactionRulesByCustom1", 4069); - _static_2(A, "transaction_rule_reducer___filterTransactionRulesByCustom2$closure", "_filterTransactionRulesByCustom2", 4070); - _static_2(A, "transaction_rule_reducer___filterTransactionRulesByState$closure", "_filterTransactionRulesByState", 4071); - _static_2(A, "transaction_rule_reducer___filterTransactionRules$closure", "_filterTransactionRules", 4072); - _static_2(A, "transaction_rule_reducer___sortTransactionRules$closure", "_sortTransactionRules", 4073); - _static_2(A, "transaction_rule_reducer___startListMultiselect$closure", "_startListMultiselect24", 4074); - _static_2(A, "transaction_rule_reducer___addToListMultiselect$closure", "_addToListMultiselect24", 4075); - _static_2(A, "transaction_rule_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect24", 4076); - _static_2(A, "transaction_rule_reducer___clearListMultiselect$closure", "_clearListMultiselect24", 4077); - _static_2(A, "transaction_rule_reducer___archiveTransactionRuleSuccess$closure", "_archiveTransactionRuleSuccess", 4078); - _static_2(A, "transaction_rule_reducer___deleteTransactionRuleSuccess$closure", "_deleteTransactionRuleSuccess", 4079); - _static_2(A, "transaction_rule_reducer___restoreTransactionRuleSuccess$closure", "_restoreTransactionRuleSuccess", 4080); - _static_2(A, "transaction_rule_reducer___addTransactionRule$closure", "_addTransactionRule", 4081); - _static_2(A, "transaction_rule_reducer___updateTransactionRule$closure", "_updateTransactionRule", 4082); - _static_2(A, "transaction_rule_reducer___setLoadedTransactionRule$closure", "_setLoadedTransactionRule", 4083); - _static_2(A, "transaction_rule_reducer___setLoadedTransactionRules$closure", "_setLoadedTransactionRules", 4084); - _static_2(A, "transaction_rule_reducer___setLoadedCompany$closure", "_setLoadedCompany24", 4085); - _static_2(A, "user_reducer___clearEditing$closure", "_clearEditing23", 4086); - _static_2(A, "user_reducer___updateEditing$closure", "_updateEditing24", 4087); - _static_2(A, "user_reducer___viewUserList$closure", "_viewUserList0", 4088); - _static_2(A, "user_reducer___filterUsersByCustom1$closure", "_filterUsersByCustom1", 4089); - _static_2(A, "user_reducer___filterUsersByCustom2$closure", "_filterUsersByCustom2", 4090); - _static_2(A, "user_reducer___filterUsersByCustom3$closure", "_filterUsersByCustom3", 4091); - _static_2(A, "user_reducer___filterUsersByCustom4$closure", "_filterUsersByCustom4", 4092); - _static_2(A, "user_reducer___filterUsersByState$closure", "_filterUsersByState", 4093); - _static_2(A, "user_reducer___filterUsers$closure", "_filterUsers", 4094); - _static_2(A, "user_reducer___sortUsers$closure", "_sortUsers", 4095); - _static_2(A, "user_reducer___startListMultiselect$closure", "_startListMultiselect25", 4096); - _static_2(A, "user_reducer___addToListMultiselect$closure", "_addToListMultiselect25", 4097); - _static_2(A, "user_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect25", 4098); - _static_2(A, "user_reducer___clearListMultiselect$closure", "_clearListMultiselect25", 4099); - _static_2(A, "user_reducer___archiveUserSuccess$closure", "_archiveUserSuccess", 4100); - _static_2(A, "user_reducer___deleteUserSuccess$closure", "_deleteUserSuccess", 4101); - _static_2(A, "user_reducer___restoreUserSuccess$closure", "_restoreUserSuccess", 4102); - _static_2(A, "user_reducer___removeUserSuccess$closure", "_removeUserSuccess", 4103); - _static_2(A, "user_reducer___addUser$closure", "_addUser", 4104); - _static_2(A, "user_reducer___updateUser$closure", "_updateUser", 4105); - _static_2(A, "user_reducer___updateAuthUser$closure", "_updateAuthUser", 4106); - _static_2(A, "user_reducer___connectOAuthUser$closure", "_connectOAuthUser0", 4107); - _static_2(A, "user_reducer___disconnectOAuthUser$closure", "_disconnectOAuthUser0", 4108); - _static_2(A, "user_reducer___disconnectOAuthMailer$closure", "_disconnectOAuthMailer0", 4109); - _static_2(A, "user_reducer___connectGmailUser$closure", "_connectGmailUser0", 4110); - _static_2(A, "user_reducer___setLoadedUser$closure", "_setLoadedUser", 4111); - _static_2(A, "user_reducer___setLoadedUsers$closure", "_setLoadedUsers", 4112); - _static_2(A, "user_reducer___setLoadedCompany$closure", "_setLoadedCompany25", 4113); - _static_2(A, "vendor_reducer__editVendorContact$closure", "editVendorContact", 4114); - _static_2(A, "vendor_reducer___clearEditing$closure", "_clearEditing24", 4115); - _static_2(A, "vendor_reducer___updateEditing$closure", "_updateEditing25", 4116); - _static_2(A, "vendor_reducer___addContact$closure", "_addContact", 4117); - _static_2(A, "vendor_reducer___removeContact$closure", "_removeContact", 4118); - _static_2(A, "vendor_reducer___updateContact$closure", "_updateContact", 4119); - _static_2(A, "vendor_reducer___viewVendorList$closure", "_viewVendorList0", 4120); - _static_2(A, "vendor_reducer___filterVendorsByCustom1$closure", "_filterVendorsByCustom1", 4121); - _static_2(A, "vendor_reducer___filterVendorsByCustom2$closure", "_filterVendorsByCustom2", 4122); - _static_2(A, "vendor_reducer___filterVendorsByCustom3$closure", "_filterVendorsByCustom3", 4123); - _static_2(A, "vendor_reducer___filterVendorsByCustom4$closure", "_filterVendorsByCustom4", 4124); - _static_2(A, "vendor_reducer___filterVendorsByState$closure", "_filterVendorsByState", 4125); - _static_2(A, "vendor_reducer___filterVendors$closure", "_filterVendors", 4126); - _static_2(A, "vendor_reducer___sortVendors$closure", "_sortVendors", 4127); - _static_2(A, "vendor_reducer___startListMultiselect$closure", "_startListMultiselect26", 4128); - _static_2(A, "vendor_reducer___addToListMultiselect$closure", "_addToListMultiselect26", 4129); - _static_2(A, "vendor_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect26", 4130); - _static_2(A, "vendor_reducer___clearListMultiselect$closure", "_clearListMultiselect26", 4131); - _static_2(A, "vendor_reducer___archiveVendorSuccess$closure", "_archiveVendorSuccess", 4132); - _static_2(A, "vendor_reducer___deleteVendorSuccess$closure", "_deleteVendorSuccess", 4133); - _static_2(A, "vendor_reducer___restoreVendorSuccess$closure", "_restoreVendorSuccess", 4134); - _static_2(A, "vendor_reducer___addVendor$closure", "_addVendor", 4135); - _static_2(A, "vendor_reducer___updateVendor$closure", "_updateVendor", 4136); - _static_2(A, "vendor_reducer___setLoadedVendor$closure", "_setLoadedVendor", 4137); - _static_2(A, "vendor_reducer___setLoadedVendors$closure", "_setLoadedVendors", 4138); - _static_2(A, "vendor_reducer___setLoadedCompany$closure", "_setLoadedCompany26", 4139); - _static_2(A, "webhook_reducer___clearEditing$closure", "_clearEditing25", 4140); - _static_2(A, "webhook_reducer___updateEditing$closure", "_updateEditing26", 4141); - _static_2(A, "webhook_reducer___viewWebhookList$closure", "_viewWebhookList0", 4142); - _static_2(A, "webhook_reducer___filterWebhooksByCustom1$closure", "_filterWebhooksByCustom1", 4143); - _static_2(A, "webhook_reducer___filterWebhooksByCustom2$closure", "_filterWebhooksByCustom2", 4144); - _static_2(A, "webhook_reducer___filterWebhooksByState$closure", "_filterWebhooksByState", 4145); - _static_2(A, "webhook_reducer___filterWebhooks$closure", "_filterWebhooks", 4146); - _static_2(A, "webhook_reducer___sortWebhooks$closure", "_sortWebhooks", 4147); - _static_2(A, "webhook_reducer___startListMultiselect$closure", "_startListMultiselect27", 4148); - _static_2(A, "webhook_reducer___addToListMultiselect$closure", "_addToListMultiselect27", 4149); - _static_2(A, "webhook_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect27", 4150); - _static_2(A, "webhook_reducer___clearListMultiselect$closure", "_clearListMultiselect27", 4151); - _static_2(A, "webhook_reducer___archiveWebhookSuccess$closure", "_archiveWebhookSuccess", 4152); - _static_2(A, "webhook_reducer___deleteWebhookSuccess$closure", "_deleteWebhookSuccess", 4153); - _static_2(A, "webhook_reducer___restoreWebhookSuccess$closure", "_restoreWebhookSuccess", 4154); - _static_2(A, "webhook_reducer___addWebhook$closure", "_addWebhook", 4155); - _static_2(A, "webhook_reducer___updateWebhook$closure", "_updateWebhook", 4156); - _static_2(A, "webhook_reducer___setLoadedWebhook$closure", "_setLoadedWebhook", 4157); - _static_2(A, "webhook_reducer___setLoadedWebhooks$closure", "_setLoadedWebhooks", 4158); - _static_2(A, "webhook_reducer___setLoadedCompany$closure", "_setLoadedCompany27", 4159); - _static_1(A, "confirm_email_vm_ConfirmEmailVM_fromStore$closure", "ConfirmEmailVM_fromStore", 4160); + }], 3495, 0); + _instance_0_u(_ = A.InvoiceNinjaAppState.prototype, "get$_authenticate", "_authenticate$0", 69); + _instance_1_u(_, "get$generateRoute", "generateRoute$1", 824); + _static_2(A, "app_reducer__appReducer$closure", "appReducer", 3496); + _static_2(A, "auth_reducer__userLoadUrlReducer$closure", "userLoadUrlReducer", 3497); + _static_2(A, "auth_reducer__userSignUpRequestReducer$closure", "userSignUpRequestReducer", 3498); + _static_2(A, "auth_reducer__userLoginRequestReducer$closure", "userLoginRequestReducer", 3499); + _static_2(A, "auth_reducer__oauthLoginRequestReducer$closure", "oauthLoginRequestReducer", 3500); + _static_2(A, "auth_reducer__oauthSignUpRequestReducer$closure", "oauthSignUpRequestReducer", 3501); + _static_2(A, "auth_reducer__userLoginSuccessReducer$closure", "userLoginSuccessReducer", 3502); + _static_2(A, "auth_reducer__userVerifiedPasswordReducer$closure", "userVerifiedPasswordReducer", 3503); + _static_2(A, "auth_reducer__userUnverifiedPasswordReducer$closure", "userUnverifiedPasswordReducer", 3504); + _static_2(A, "bank_account_reducer___clearEditing$closure", "_clearEditing", 3505); + _static_2(A, "bank_account_reducer___updateEditing$closure", "_updateEditing", 3506); + _static_2(A, "bank_account_reducer___viewBankAccountList$closure", "_viewBankAccountList0", 3507); + _static_2(A, "bank_account_reducer___filterBankAccountsByCustom1$closure", "_filterBankAccountsByCustom1", 3508); + _static_2(A, "bank_account_reducer___filterBankAccountsByCustom2$closure", "_filterBankAccountsByCustom2", 3509); + _static_2(A, "bank_account_reducer___filterBankAccountsByState$closure", "_filterBankAccountsByState", 3510); + _static_2(A, "bank_account_reducer___filterBankAccounts$closure", "_filterBankAccounts", 3511); + _static_2(A, "bank_account_reducer___sortBankAccounts$closure", "_sortBankAccounts", 3512); + _static_2(A, "bank_account_reducer___startListMultiselect$closure", "_startListMultiselect", 3513); + _static_2(A, "bank_account_reducer___addToListMultiselect$closure", "_addToListMultiselect", 3514); + _static_2(A, "bank_account_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect", 3515); + _static_2(A, "bank_account_reducer___clearListMultiselect$closure", "_clearListMultiselect", 3516); + _static_2(A, "bank_account_reducer___archiveBankAccountSuccess$closure", "_archiveBankAccountSuccess", 3517); + _static_2(A, "bank_account_reducer___deleteBankAccountSuccess$closure", "_deleteBankAccountSuccess", 3518); + _static_2(A, "bank_account_reducer___restoreBankAccountSuccess$closure", "_restoreBankAccountSuccess", 3519); + _static_2(A, "bank_account_reducer___addBankAccount$closure", "_addBankAccount", 3520); + _static_2(A, "bank_account_reducer___updateBankAccount$closure", "_updateBankAccount", 3521); + _static_2(A, "bank_account_reducer___setLoadedBankAccount$closure", "_setLoadedBankAccount", 3522); + _static_2(A, "bank_account_reducer___setLoadedBankAccounts$closure", "_setLoadedBankAccounts", 3523); + _static_2(A, "bank_account_reducer___setLoadedCompany$closure", "_setLoadedCompany", 3524); + _static_2(A, "client_reducer___viewClientList$closure", "_viewClientList0", 3525); + _static_2(A, "client_reducer___filterClientsByCustom1$closure", "_filterClientsByCustom1", 3526); + _static_2(A, "client_reducer___filterClientsByCustom2$closure", "_filterClientsByCustom2", 3527); + _static_2(A, "client_reducer___filterClientsByCustom3$closure", "_filterClientsByCustom3", 3528); + _static_2(A, "client_reducer___filterClientsByCustom4$closure", "_filterClientsByCustom4", 3529); + _static_2(A, "client_reducer___filterClientsByState$closure", "_filterClientsByState", 3530); + _static_2(A, "client_reducer___filterClients$closure", "_filterClients", 3531); + _static_2(A, "client_reducer___sortClients$closure", "_sortClients", 3532); + _static_2(A, "client_reducer___startListMultiselect$closure", "_startListMultiselect0", 3533); + _static_2(A, "client_reducer___addToListMultiselect$closure", "_addToListMultiselect0", 3534); + _static_2(A, "client_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect0", 3535); + _static_2(A, "client_reducer___clearListMultiselect$closure", "_clearListMultiselect0", 3536); + _static_2(A, "client_reducer___archiveClientSuccess$closure", "_archiveClientSuccess", 3537); + _static_2(A, "client_reducer___deleteClientSuccess$closure", "_deleteClientSuccess", 3538); + _static_2(A, "client_reducer___restoreClientSuccess$closure", "_restoreClientSuccess", 3539); + _static_2(A, "client_reducer___addClient$closure", "_addClient", 3540); + _static_2(A, "client_reducer___updateClient$closure", "_updateClient", 3541); + _static_2(A, "client_reducer___setLoadedClient$closure", "_setLoadedClient", 3542); + _static_2(A, "client_reducer___mergeClientSuccess$closure", "_mergeClientSuccess", 3543); + _static_2(A, "client_reducer___purgeClientSuccess$closure", "_purgeClientSuccess", 3544); + _static_2(A, "client_reducer___setLoadedClients$closure", "_setLoadedClients", 3545); + _static_2(A, "client_reducer___setLoadedCompany$closure", "_setLoadedCompany0", 3546); + _static_2(A, "company_reducer__loadCompanySuccessReducer$closure", "loadCompanySuccessReducer", 3547); + _static_2(A, "company_reducer__saveCompanySuccessReducer$closure", "saveCompanySuccessReducer", 3548); + _static_2(A, "company_gateway_reducer___clearEditing$closure", "_clearEditing0", 3549); + _static_2(A, "company_gateway_reducer___updateEditing$closure", "_updateEditing0", 3550); + _static_2(A, "company_gateway_reducer___filterCompanyGatewaysByCustom1$closure", "_filterCompanyGatewaysByCustom1", 3551); + _static_2(A, "company_gateway_reducer___filterCompanyGatewaysByCustom2$closure", "_filterCompanyGatewaysByCustom2", 3552); + _static_2(A, "company_gateway_reducer___filterCompanyGatewaysByState$closure", "_filterCompanyGatewaysByState", 3553); + _static_2(A, "company_gateway_reducer___filterCompanyGateways$closure", "_filterCompanyGateways", 3554); + _static_2(A, "company_gateway_reducer___sortCompanyGateways$closure", "_sortCompanyGateways", 3555); + _static_2(A, "company_gateway_reducer___startListMultiselect$closure", "_startListMultiselect1", 3556); + _static_2(A, "company_gateway_reducer___addToListMultiselect$closure", "_addToListMultiselect1", 3557); + _static_2(A, "company_gateway_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect1", 3558); + _static_2(A, "company_gateway_reducer___clearListMultiselect$closure", "_clearListMultiselect1", 3559); + _static_2(A, "company_gateway_reducer___archiveCompanyGatewaySuccess$closure", "_archiveCompanyGatewaySuccess", 3560); + _static_2(A, "company_gateway_reducer___deleteCompanyGatewaySuccess$closure", "_deleteCompanyGatewaySuccess", 3561); + _static_2(A, "company_gateway_reducer___restoreCompanyGatewaySuccess$closure", "_restoreCompanyGatewaySuccess", 3562); + _static_2(A, "company_gateway_reducer___addCompanyGateway$closure", "_addCompanyGateway", 3563); + _static_2(A, "company_gateway_reducer___updateCompanyGateway$closure", "_updateCompanyGateway", 3564); + _static_2(A, "company_gateway_reducer___setLoadedCompanyGateway$closure", "_setLoadedCompanyGateway", 3565); + _static_2(A, "company_gateway_reducer___setLoadedCompany$closure", "_setLoadedCompany1", 3566); + _static_2(A, "company_gateway_reducer___setLoadedCompanyGateways$closure", "_setLoadedCompanyGateways", 3567); + _static_2(A, "credit_reducer___clearEditing$closure", "_clearEditing1", 253); + _static_2(A, "credit_reducer___updateEditing$closure", "_updateEditing1", 438); + _static_2(A, "credit_reducer___addCreditItem$closure", "_addCreditItem", 674); + _static_2(A, "credit_reducer___addCreditItems$closure", "_addCreditItems", 3570); + _static_2(A, "credit_reducer___removeCreditItem$closure", "_removeCreditItem", 3571); + _static_2(A, "credit_reducer___updateCreditItem$closure", "_updateCreditItem", 3572); + _static_2(A, "credit_reducer___viewCreditList$closure", "_viewCreditList0", 3573); + _static_2(A, "credit_reducer___filterCreditsByCustom1$closure", "_filterCreditsByCustom1", 3574); + _static_2(A, "credit_reducer___filterCreditsByCustom2$closure", "_filterCreditsByCustom2", 3575); + _static_2(A, "credit_reducer___filterCreditsByCustom3$closure", "_filterCreditsByCustom3", 3576); + _static_2(A, "credit_reducer___filterCreditsByCustom4$closure", "_filterCreditsByCustom4", 3577); + _static_2(A, "credit_reducer___filterCreditsByState$closure", "_filterCreditsByState", 3578); + _static_2(A, "credit_reducer___filterCreditsByStatus$closure", "_filterCreditsByStatus", 3579); + _static_2(A, "credit_reducer___filterCredits$closure", "_filterCredits", 3580); + _static_2(A, "credit_reducer___sortCredits$closure", "_sortCredits", 3581); + _static_2(A, "credit_reducer___startListMultiselect$closure", "_startListMultiselect2", 3582); + _static_2(A, "credit_reducer___addToListMultiselect$closure", "_addToListMultiselect2", 3583); + _static_2(A, "credit_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect2", 3584); + _static_2(A, "credit_reducer___clearListMultiselect$closure", "_clearListMultiselect2", 3585); + _static_2(A, "credit_reducer___purgeClientSuccess$closure", "_purgeClientSuccess0", 3586); + _static_2(A, "credit_reducer___markSentCreditSuccess$closure", "_markSentCreditSuccess", 3587); + _static_2(A, "credit_reducer___archiveCreditSuccess$closure", "_archiveCreditSuccess", 3588); + _static_2(A, "credit_reducer___deleteCreditSuccess$closure", "_deleteCreditSuccess", 3589); + _static_2(A, "credit_reducer___restoreCreditSuccess$closure", "_restoreCreditSuccess", 3590); + _static_2(A, "credit_reducer___addCredit$closure", "_addCredit", 3591); + _static_2(A, "credit_reducer___updateCredit$closure", "_updateCredit", 3592); + _static_2(A, "credit_reducer___setLoadedCredits$closure", "_setLoadedCredits", 3593); + _static_2(A, "credit_reducer___setLoadedCompany$closure", "_setLoadedCompany2", 3594); + _static_2(A, "design_reducer___clearEditing$closure", "_clearEditing2", 3595); + _static_2(A, "design_reducer___updateEditing$closure", "_updateEditing2", 3596); + _static_2(A, "design_reducer___viewDesignList$closure", "_viewDesignList0", 3597); + _static_2(A, "design_reducer___filterDesignsByCustom1$closure", "_filterDesignsByCustom1", 3598); + _static_2(A, "design_reducer___filterDesignsByCustom2$closure", "_filterDesignsByCustom2", 3599); + _static_2(A, "design_reducer___filterDesignsByState$closure", "_filterDesignsByState", 3600); + _static_2(A, "design_reducer___filterDesigns$closure", "_filterDesigns", 3601); + _static_2(A, "design_reducer___sortDesigns$closure", "_sortDesigns", 3602); + _static_2(A, "design_reducer___startListMultiselect$closure", "_startListMultiselect3", 3603); + _static_2(A, "design_reducer___addToListMultiselect$closure", "_addToListMultiselect3", 3604); + _static_2(A, "design_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect3", 3605); + _static_2(A, "design_reducer___clearListMultiselect$closure", "_clearListMultiselect3", 3606); + _static_2(A, "design_reducer___archiveDesignSuccess$closure", "_archiveDesignSuccess", 3607); + _static_2(A, "design_reducer___deleteDesignSuccess$closure", "_deleteDesignSuccess", 3608); + _static_2(A, "design_reducer___restoreDesignSuccess$closure", "_restoreDesignSuccess", 3609); + _static_2(A, "design_reducer___addDesign$closure", "_addDesign", 3610); + _static_2(A, "design_reducer___updateDesign$closure", "_updateDesign", 3611); + _static_2(A, "design_reducer___setLoadedDesign$closure", "_setLoadedDesign", 3612); + _static_2(A, "design_reducer___setLoadedDesigns$closure", "_setLoadedDesigns", 3613); + _static_2(A, "design_reducer___setLoadedCompany$closure", "_setLoadedCompany3", 3614); + _static_2(A, "document_reducer___updateEditing$closure", "_updateEditing3", 3615); + _static_2(A, "document_reducer___viewDocumentList$closure", "_viewDocumentList0", 3616); + _static_2(A, "document_reducer___filterDocumentsByCustom1$closure", "_filterDocumentsByCustom1", 3617); + _static_2(A, "document_reducer___filterDocumentsByCustom2$closure", "_filterDocumentsByCustom2", 3618); + _static_2(A, "document_reducer___filterDocumentsByState$closure", "_filterDocumentsByState", 3619); + _static_2(A, "document_reducer___filterDocumentsByStatus$closure", "_filterDocumentsByStatus", 3620); + _static_2(A, "document_reducer___filterDocuments$closure", "_filterDocuments", 3621); + _static_2(A, "document_reducer___sortDocuments$closure", "_sortDocuments", 3622); + _static_2(A, "document_reducer___startListMultiselect$closure", "_startListMultiselect4", 3623); + _static_2(A, "document_reducer___addToListMultiselect$closure", "_addToListMultiselect4", 3624); + _static_2(A, "document_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect4", 3625); + _static_2(A, "document_reducer___clearListMultiselect$closure", "_clearListMultiselect4", 3626); + _static_2(A, "document_reducer___archiveDocumentSuccess$closure", "_archiveDocumentSuccess", 3627); + _static_2(A, "document_reducer___deleteDocumentSuccess$closure", "_deleteDocumentSuccess", 3628); + _static_2(A, "document_reducer___restoreDocumentSuccess$closure", "_restoreDocumentSuccess", 3629); + _static_2(A, "document_reducer___addDocument$closure", "_addDocument", 3630); + _static_2(A, "document_reducer___updateDocument$closure", "_updateDocument", 3631); + _static_2(A, "document_reducer___setLoadedDocument$closure", "_setLoadedDocument", 3632); + _static_2(A, "document_reducer___setLoadedDocuments$closure", "_setLoadedDocuments", 3633); + _static_2(A, "document_reducer___setLoadedCompany$closure", "_setLoadedCompany4", 3634); + _static_2(A, "expense_reducer___clearEditing$closure", "_clearEditing3", 914); + _static_2(A, "expense_reducer___updateEditing$closure", "_updateEditing4", 915); + _static_2(A, "expense_reducer___viewExpenseList$closure", "_viewExpenseList0", 3637); + _static_2(A, "expense_reducer___filterExpensesByCustom1$closure", "_filterExpensesByCustom1", 3638); + _static_2(A, "expense_reducer___filterExpensesByCustom2$closure", "_filterExpensesByCustom2", 3639); + _static_2(A, "expense_reducer___filterExpensesByCustom3$closure", "_filterExpensesByCustom3", 3640); + _static_2(A, "expense_reducer___filterExpensesByCustom4$closure", "_filterExpensesByCustom4", 3641); + _static_2(A, "expense_reducer___filterExpensesByState$closure", "_filterExpensesByState", 3642); + _static_2(A, "expense_reducer___filterExpensesByStatus$closure", "_filterExpensesByStatus", 3643); + _static_2(A, "expense_reducer___filterExpenses$closure", "_filterExpenses", 3644); + _static_2(A, "expense_reducer___sortExpenses$closure", "_sortExpenses", 3645); + _static_2(A, "expense_reducer___startListMultiselect$closure", "_startListMultiselect5", 3646); + _static_2(A, "expense_reducer___addToListMultiselect$closure", "_addToListMultiselect5", 3647); + _static_2(A, "expense_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect5", 3648); + _static_2(A, "expense_reducer___clearListMultiselect$closure", "_clearListMultiselect5", 3649); + _static_2(A, "expense_reducer___purgeClientSuccess$closure", "_purgeClientSuccess1", 3650); + _static_2(A, "expense_reducer___archiveExpenseSuccess$closure", "_archiveExpenseSuccess", 3651); + _static_2(A, "expense_reducer___deleteExpenseSuccess$closure", "_deleteExpenseSuccess", 3652); + _static_2(A, "expense_reducer___restoreExpenseSuccess$closure", "_restoreExpenseSuccess", 3653); + _static_2(A, "expense_reducer___addExpense$closure", "_addExpense", 3654); + _static_2(A, "expense_reducer___updateExpense$closure", "_updateExpense", 3655); + _static_2(A, "expense_reducer___setLoadedExpense$closure", "_setLoadedExpense", 3656); + _static_2(A, "expense_reducer___setLoadedExpenses$closure", "_setLoadedExpenses", 3657); + _static_2(A, "expense_reducer___setLoadedCompany$closure", "_setLoadedCompany5", 3658); + _static_2(A, "expense_category_reducer___clearEditing$closure", "_clearEditing4", 3659); + _static_2(A, "expense_category_reducer___updateEditing$closure", "_updateEditing5", 3660); + _static_2(A, "expense_category_reducer___filterExpenseCategoriesByCustom1$closure", "_filterExpenseCategoriesByCustom1", 3661); + _static_2(A, "expense_category_reducer___filterExpenseCategoriesByCustom2$closure", "_filterExpenseCategoriesByCustom2", 3662); + _static_2(A, "expense_category_reducer___filterExpenseCategoriesByState$closure", "_filterExpenseCategoriesByState", 3663); + _static_2(A, "expense_category_reducer___filterExpenseCategories$closure", "_filterExpenseCategories", 3664); + _static_2(A, "expense_category_reducer___sortExpenseCategories$closure", "_sortExpenseCategories", 3665); + _static_2(A, "expense_category_reducer___startListMultiselect$closure", "_startListMultiselect6", 3666); + _static_2(A, "expense_category_reducer___addToListMultiselect$closure", "_addToListMultiselect6", 3667); + _static_2(A, "expense_category_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect6", 3668); + _static_2(A, "expense_category_reducer___clearListMultiselect$closure", "_clearListMultiselect6", 3669); + _static_2(A, "expense_category_reducer___archiveExpenseCategorySuccess$closure", "_archiveExpenseCategorySuccess", 3670); + _static_2(A, "expense_category_reducer___deleteExpenseCategorySuccess$closure", "_deleteExpenseCategorySuccess", 3671); + _static_2(A, "expense_category_reducer___restoreExpenseCategorySuccess$closure", "_restoreExpenseCategorySuccess", 3672); + _static_2(A, "expense_category_reducer___addExpenseCategory$closure", "_addExpenseCategory", 3673); + _static_2(A, "expense_category_reducer___updateExpenseCategory$closure", "_updateExpenseCategory", 3674); + _static_2(A, "expense_category_reducer___setLoadedExpenseCategory$closure", "_setLoadedExpenseCategory", 3675); + _static_2(A, "expense_category_reducer___setLoadedExpenseCategories$closure", "_setLoadedExpenseCategories", 3676); + _static_2(A, "expense_category_reducer___setLoadedCompany$closure", "_setLoadedCompany6", 3677); + _static_2(A, "group_reducer___clearEditing$closure", "_clearEditing5", 3678); + _static_2(A, "group_reducer___updateEditing$closure", "_updateEditing6", 3679); + _static_2(A, "group_reducer___viewGroupList$closure", "_viewGroupList0", 3680); + _static_2(A, "group_reducer___filterGroupsByState$closure", "_filterGroupsByState", 3681); + _static_2(A, "group_reducer___filterGroups$closure", "_filterGroups", 3682); + _static_2(A, "group_reducer___sortGroups$closure", "_sortGroups", 3683); + _static_2(A, "group_reducer___startListMultiselect$closure", "_startListMultiselect7", 3684); + _static_2(A, "group_reducer___addToListMultiselect$closure", "_addToListMultiselect7", 3685); + _static_2(A, "group_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect7", 3686); + _static_2(A, "group_reducer___clearListMultiselect$closure", "_clearListMultiselect7", 3687); + _static_2(A, "group_reducer___archiveGroupSuccess$closure", "_archiveGroupSuccess", 3688); + _static_2(A, "group_reducer___deleteGroupSuccess$closure", "_deleteGroupSuccess", 3689); + _static_2(A, "group_reducer___restoreGroupSuccess$closure", "_restoreGroupSuccess", 3690); + _static_2(A, "group_reducer___addGroup$closure", "_addGroup", 3691); + _static_2(A, "group_reducer___updateGroup$closure", "_updateGroup", 3692); + _static_2(A, "group_reducer___setLoadedGroup$closure", "_setLoadedGroup", 3693); + _static_2(A, "group_reducer___setLoadedGroups$closure", "_setLoadedGroups", 3694); + _static_2(A, "group_reducer___setLoadedCompany$closure", "_setLoadedCompany7", 3695); + _static_2(A, "invoice_reducer___clearEditing$closure", "_clearEditing6", 253); + _static_2(A, "invoice_reducer___updateEditing$closure", "_updateEditing7", 253); + _static_2(A, "invoice_reducer___addInvoiceItem$closure", "_addInvoiceItem", 645); + _static_2(A, "invoice_reducer___addInvoiceItems$closure", "_addInvoiceItems", 3696); + _static_2(A, "invoice_reducer___removeInvoiceItem$closure", "_removeInvoiceItem", 3697); + _static_2(A, "invoice_reducer___updateInvoiceItem$closure", "_updateInvoiceItem", 3698); + _static_2(A, "invoice_reducer___viewInvoiceList$closure", "_viewInvoiceList0", 3699); + _static_2(A, "invoice_reducer___filterInvoicesByCustom1$closure", "_filterInvoicesByCustom1", 3700); + _static_2(A, "invoice_reducer___filterInvoicesByCustom2$closure", "_filterInvoicesByCustom2", 3701); + _static_2(A, "invoice_reducer___filterInvoicesByCustom3$closure", "_filterInvoicesByCustom3", 3702); + _static_2(A, "invoice_reducer___filterInvoicesByCustom4$closure", "_filterInvoicesByCustom4", 3703); + _static_2(A, "invoice_reducer___filterInvoicesByState$closure", "_filterInvoicesByState", 3704); + _static_2(A, "invoice_reducer___filterInvoicesByStatus$closure", "_filterInvoicesByStatus", 3705); + _static_2(A, "invoice_reducer___filterInvoices$closure", "_filterInvoices", 3706); + _static_2(A, "invoice_reducer___sortInvoices$closure", "_sortInvoices", 3707); + _static_2(A, "invoice_reducer___startListMultiselect$closure", "_startListMultiselect8", 3708); + _static_2(A, "invoice_reducer___addToListMultiselect$closure", "_addToListMultiselect8", 3709); + _static_2(A, "invoice_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect8", 3710); + _static_2(A, "invoice_reducer___clearListMultiselect$closure", "_clearListMultiselect8", 3711); + _static_2(A, "invoice_reducer___purgeClientSuccess$closure", "_purgeClientSuccess2", 3712); + _static_2(A, "invoice_reducer___markInvoicesSentSuccess$closure", "_markInvoicesSentSuccess", 3713); + _static_2(A, "invoice_reducer___markInvoicesPaidSuccess$closure", "_markInvoicesPaidSuccess", 3714); + _static_2(A, "invoice_reducer___cancelInvoicesSuccess$closure", "_cancelInvoicesSuccess", 3715); + _static_2(A, "invoice_reducer___archiveInvoiceSuccess$closure", "_archiveInvoiceSuccess", 3716); + _static_2(A, "invoice_reducer___deleteInvoiceSuccess$closure", "_deleteInvoiceSuccess", 3717); + _static_2(A, "invoice_reducer___emailInvoiceSuccess$closure", "_emailInvoiceSuccess", 3718); + _static_2(A, "invoice_reducer___restoreInvoiceSuccess$closure", "_restoreInvoiceSuccess", 3719); + _static_2(A, "invoice_reducer___addInvoice$closure", "_addInvoice", 3720); + _static_2(A, "invoice_reducer___updateInvoice$closure", "_updateInvoice", 3721); + _static_2(A, "invoice_reducer___setLoadedInvoices$closure", "_setLoadedInvoices", 3722); + _static_2(A, "invoice_reducer___setLoadedCompany$closure", "_setLoadedCompany8", 3723); + _static_2(A, "payment_reducer___clearEditing$closure", "_clearEditing7", 3724); + _static_2(A, "payment_reducer___updateEditing$closure", "_updateEditing8", 3725); + _static_2(A, "payment_reducer___viewPaymentList$closure", "_viewPaymentList0", 3726); + _static_2(A, "payment_reducer___filterPaymentsByCustom1$closure", "_filterPaymentsByCustom1", 3727); + _static_2(A, "payment_reducer___filterPaymentsByCustom2$closure", "_filterPaymentsByCustom2", 3728); + _static_2(A, "payment_reducer___filterPaymentsByCustom3$closure", "_filterPaymentsByCustom3", 3729); + _static_2(A, "payment_reducer___filterPaymentsByCustom4$closure", "_filterPaymentsByCustom4", 3730); + _static_2(A, "payment_reducer___filterPaymentsByState$closure", "_filterPaymentsByState", 3731); + _static_2(A, "payment_reducer___filterPaymentsByStatus$closure", "_filterPaymentsByStatus", 3732); + _static_2(A, "payment_reducer___filterPayments$closure", "_filterPayments", 3733); + _static_2(A, "payment_reducer___sortPayments$closure", "_sortPayments", 3734); + _static_2(A, "payment_reducer___startListMultiselect$closure", "_startListMultiselect9", 3735); + _static_2(A, "payment_reducer___addToListMultiselect$closure", "_addToListMultiselect9", 3736); + _static_2(A, "payment_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect9", 3737); + _static_2(A, "payment_reducer___clearListMultiselect$closure", "_clearListMultiselect9", 3738); + _static_2(A, "payment_reducer___purgeClientSuccess$closure", "_purgeClientSuccess3", 3739); + _static_2(A, "payment_reducer___archivePaymentSuccess$closure", "_archivePaymentSuccess", 3740); + _static_2(A, "payment_reducer___deletePaymentSuccess$closure", "_deletePaymentSuccess", 3741); + _static_2(A, "payment_reducer___restorePaymentSuccess$closure", "_restorePaymentSuccess", 3742); + _static_2(A, "payment_reducer___addPayment$closure", "_addPayment", 3743); + _static_2(A, "payment_reducer___updatePayment$closure", "_updatePayment", 3744); + _static_2(A, "payment_reducer___setLoadedPayment$closure", "_setLoadedPayment", 3745); + _static_2(A, "payment_reducer___setLoadedPayments$closure", "_setLoadedPayments", 3746); + _static_2(A, "payment_reducer___setLoadedCompany$closure", "_setLoadedCompany9", 3747); + _static_2(A, "payment_term_reducer___clearEditing$closure", "_clearEditing8", 3748); + _static_2(A, "payment_term_reducer___updateEditing$closure", "_updateEditing9", 3749); + _static_2(A, "payment_term_reducer___viewPaymentTermList$closure", "_viewPaymentTermList0", 3750); + _static_2(A, "payment_term_reducer___filterPaymentTermsByCustom1$closure", "_filterPaymentTermsByCustom1", 3751); + _static_2(A, "payment_term_reducer___filterPaymentTermsByCustom2$closure", "_filterPaymentTermsByCustom2", 3752); + _static_2(A, "payment_term_reducer___filterPaymentTermsByState$closure", "_filterPaymentTermsByState", 3753); + _static_2(A, "payment_term_reducer___filterPaymentTerms$closure", "_filterPaymentTerms", 3754); + _static_2(A, "payment_term_reducer___sortPaymentTerms$closure", "_sortPaymentTerms", 3755); + _static_2(A, "payment_term_reducer___startListMultiselect$closure", "_startListMultiselect10", 3756); + _static_2(A, "payment_term_reducer___addToListMultiselect$closure", "_addToListMultiselect10", 3757); + _static_2(A, "payment_term_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect10", 3758); + _static_2(A, "payment_term_reducer___clearListMultiselect$closure", "_clearListMultiselect10", 3759); + _static_2(A, "payment_term_reducer___archivePaymentTermSuccess$closure", "_archivePaymentTermSuccess", 3760); + _static_2(A, "payment_term_reducer___deletePaymentTermSuccess$closure", "_deletePaymentTermSuccess", 3761); + _static_2(A, "payment_term_reducer___restorePaymentTermSuccess$closure", "_restorePaymentTermSuccess", 3762); + _static_2(A, "payment_term_reducer___addPaymentTerm$closure", "_addPaymentTerm", 3763); + _static_2(A, "payment_term_reducer___updatePaymentTerm$closure", "_updatePaymentTerm", 3764); + _static_2(A, "payment_term_reducer___setLoadedPaymentTerm$closure", "_setLoadedPaymentTerm", 3765); + _static_2(A, "payment_term_reducer___setLoadedPaymentTerms$closure", "_setLoadedPaymentTerms", 3766); + _static_2(A, "payment_term_reducer___setLoadedCompany$closure", "_setLoadedCompany10", 3767); + _static_2(A, "product_reducer___clearEditing$closure", "_clearEditing9", 3768); + _static_2(A, "product_reducer___updateEditing$closure", "_updateEditing10", 3769); + _static_2(A, "product_reducer___viewProductList$closure", "_viewProductList0", 3770); + _static_2(A, "product_reducer___filterProductsByState$closure", "_filterProductsByState", 3771); + _static_2(A, "product_reducer___filterProductsByCustom1$closure", "_filterProductsByCustom1", 3772); + _static_2(A, "product_reducer___filterProductsByCustom2$closure", "_filterProductsByCustom2", 3773); + _static_2(A, "product_reducer___filterProductsByCustom3$closure", "_filterProductsByCustom3", 3774); + _static_2(A, "product_reducer___filterProductsByCustom4$closure", "_filterProductsByCustom4", 3775); + _static_2(A, "product_reducer___filterProducts$closure", "_filterProducts", 3776); + _static_2(A, "product_reducer___sortProducts$closure", "_sortProducts", 3777); + _static_2(A, "product_reducer___startListMultiselect$closure", "_startListMultiselect11", 3778); + _static_2(A, "product_reducer___addToListMultiselect$closure", "_addToListMultiselect11", 3779); + _static_2(A, "product_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect11", 3780); + _static_2(A, "product_reducer___clearListMultiselect$closure", "_clearListMultiselect11", 3781); + _static_2(A, "product_reducer___archiveProductSuccess$closure", "_archiveProductSuccess", 3782); + _static_2(A, "product_reducer___deleteProductSuccess$closure", "_deleteProductSuccess", 3783); + _static_2(A, "product_reducer___restoreProductSuccess$closure", "_restoreProductSuccess", 3784); + _static_2(A, "product_reducer___setTaxCategoryProductsSuccess$closure", "_setTaxCategoryProductsSuccess", 3785); + _static_2(A, "product_reducer___addProduct$closure", "_addProduct", 3786); + _static_2(A, "product_reducer___updateProduct$closure", "_updateProduct", 3787); + _static_2(A, "product_reducer___setLoadedProduct$closure", "_setLoadedProduct", 3788); + _static_2(A, "product_reducer___setLoadedProducts$closure", "_setLoadedProducts", 3789); + _static_2(A, "product_reducer___setLoadedCompany$closure", "_setLoadedCompany11", 3790); + _static_2(A, "project_reducer___clearEditing$closure", "_clearEditing10", 3791); + _static_2(A, "project_reducer___updateEditing$closure", "_updateEditing11", 3792); + _static_2(A, "project_reducer___viewProjectList$closure", "_viewProjectList0", 3793); + _static_2(A, "project_reducer___filterProjectsByCustom1$closure", "_filterProjectsByCustom1", 3794); + _static_2(A, "project_reducer___filterProjectsByCustom2$closure", "_filterProjectsByCustom2", 3795); + _static_2(A, "project_reducer___filterProjectsByCustom3$closure", "_filterProjectsByCustom3", 3796); + _static_2(A, "project_reducer___filterProjectsByCustom4$closure", "_filterProjectsByCustom4", 3797); + _static_2(A, "project_reducer___filterProjectsByState$closure", "_filterProjectsByState", 3798); + _static_2(A, "project_reducer___filterProjects$closure", "_filterProjects", 3799); + _static_2(A, "project_reducer___sortProjects$closure", "_sortProjects", 3800); + _static_2(A, "project_reducer___startListMultiselect$closure", "_startListMultiselect12", 3801); + _static_2(A, "project_reducer___addToListMultiselect$closure", "_addToListMultiselect12", 3802); + _static_2(A, "project_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect12", 3803); + _static_2(A, "project_reducer___clearListMultiselect$closure", "_clearListMultiselect12", 3804); + _static_2(A, "project_reducer___purgeClientSuccess$closure", "_purgeClientSuccess4", 3805); + _static_2(A, "project_reducer___archiveProjectSuccess$closure", "_archiveProjectSuccess", 3806); + _static_2(A, "project_reducer___deleteProjectSuccess$closure", "_deleteProjectSuccess", 3807); + _static_2(A, "project_reducer___restoreProjectSuccess$closure", "_restoreProjectSuccess", 3808); + _static_2(A, "project_reducer___addProject$closure", "_addProject", 3809); + _static_2(A, "project_reducer___updateProject$closure", "_updateProject", 3810); + _static_2(A, "project_reducer___setLoadedProject$closure", "_setLoadedProject", 3811); + _static_2(A, "project_reducer___setLoadedProjects$closure", "_setLoadedProjects", 3812); + _static_2(A, "project_reducer___setLoadedCompany$closure", "_setLoadedCompany12", 3813); + _static_2(A, "purchase_order_reducer___clearEditing$closure", "_clearEditing11", 253); + _static_2(A, "purchase_order_reducer___updateEditing$closure", "_updateEditing12", 438); + _static_2(A, "purchase_order_reducer___addPurchaseOrderItem$closure", "_addPurchaseOrderItem", 635); + _static_2(A, "purchase_order_reducer___addPurchaseOrderItems$closure", "_addPurchaseOrderItems", 3814); + _static_2(A, "purchase_order_reducer___removePurchaseOrderItem$closure", "_removePurchaseOrderItem", 3815); + _static_2(A, "purchase_order_reducer___updatePurchaseOrderItem$closure", "_updatePurchaseOrderItem", 3816); + _static_2(A, "purchase_order_reducer___viewPurchaseOrderList$closure", "_viewPurchaseOrderList0", 3817); + _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByCustom1$closure", "_filterPurchaseOrdersByCustom1", 3818); + _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByCustom2$closure", "_filterPurchaseOrdersByCustom2", 3819); + _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByCustom3$closure", "_filterPurchaseOrdersByCustom3", 3820); + _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByCustom4$closure", "_filterPurchaseOrdersByCustom4", 3821); + _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByState$closure", "_filterPurchaseOrdersByState", 3822); + _static_2(A, "purchase_order_reducer___filterPurchaseOrdersByStatus$closure", "_filterPurchaseOrdersByStatus", 3823); + _static_2(A, "purchase_order_reducer___filterPurchaseOrders$closure", "_filterPurchaseOrders", 3824); + _static_2(A, "purchase_order_reducer___sortPurchaseOrders$closure", "_sortPurchaseOrders", 3825); + _static_2(A, "purchase_order_reducer___startListMultiselect$closure", "_startListMultiselect13", 3826); + _static_2(A, "purchase_order_reducer___addToListMultiselect$closure", "_addToListMultiselect13", 3827); + _static_2(A, "purchase_order_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect13", 3828); + _static_2(A, "purchase_order_reducer___clearListMultiselect$closure", "_clearListMultiselect13", 3829); + _static_2(A, "purchase_order_reducer___markSentPurchaseOrderSuccess$closure", "_markSentPurchaseOrderSuccess", 3830); + _static_2(A, "purchase_order_reducer___convertPurchaseOrdersToExpenses$closure", "_convertPurchaseOrdersToExpenses", 3831); + _static_2(A, "purchase_order_reducer___addPurchaseOrdersToInventorySuccess$closure", "_addPurchaseOrdersToInventorySuccess", 3832); + _static_2(A, "purchase_order_reducer___acceptPurchaseOrderSuccess$closure", "_acceptPurchaseOrderSuccess", 3833); + _static_2(A, "purchase_order_reducer___cancelPurchaseOrderSuccess$closure", "_cancelPurchaseOrderSuccess", 3834); + _static_2(A, "purchase_order_reducer___archivePurchaseOrderSuccess$closure", "_archivePurchaseOrderSuccess", 3835); + _static_2(A, "purchase_order_reducer___deletePurchaseOrderSuccess$closure", "_deletePurchaseOrderSuccess", 3836); + _static_2(A, "purchase_order_reducer___restorePurchaseOrderSuccess$closure", "_restorePurchaseOrderSuccess", 3837); + _static_2(A, "purchase_order_reducer___emailPurchaseOrderSuccess$closure", "_emailPurchaseOrderSuccess", 3838); + _static_2(A, "purchase_order_reducer___approvePurchaseOrderSuccess$closure", "_approvePurchaseOrderSuccess", 3839); + _static_2(A, "purchase_order_reducer___addPurchaseOrder$closure", "_addPurchaseOrder", 3840); + _static_2(A, "purchase_order_reducer___updatePurchaseOrder$closure", "_updatePurchaseOrder", 3841); + _static_2(A, "purchase_order_reducer___setLoadedPurchaseOrders$closure", "_setLoadedPurchaseOrders", 3842); + _static_2(A, "purchase_order_reducer___setLoadedCompany$closure", "_setLoadedCompany13", 3843); + _static_2(A, "quote_reducer___clearEditing$closure", "_clearEditing12", 253); + _static_2(A, "quote_reducer___updateEditing$closure", "_updateEditing13", 438); + _static_2(A, "quote_reducer___addQuoteItem$closure", "_addQuoteItem", 632); + _static_2(A, "quote_reducer___addQuoteItems$closure", "_addQuoteItems", 3844); + _static_2(A, "quote_reducer___removeQuoteItem$closure", "_removeQuoteItem", 3845); + _static_2(A, "quote_reducer___updateQuoteItem$closure", "_updateQuoteItem", 3846); + _static_2(A, "quote_reducer___viewQuoteList$closure", "_viewQuoteList0", 3847); + _static_2(A, "quote_reducer___filterQuotesByCustom1$closure", "_filterQuotesByCustom1", 3848); + _static_2(A, "quote_reducer___filterQuotesByCustom2$closure", "_filterQuotesByCustom2", 3849); + _static_2(A, "quote_reducer___filterQuotesByCustom3$closure", "_filterQuotesByCustom3", 3850); + _static_2(A, "quote_reducer___filterQuotesByCustom4$closure", "_filterQuotesByCustom4", 3851); + _static_2(A, "quote_reducer___filterQuotesByState$closure", "_filterQuotesByState", 3852); + _static_2(A, "quote_reducer___filterQuotesByStatus$closure", "_filterQuotesByStatus", 3853); + _static_2(A, "quote_reducer___filterQuotes$closure", "_filterQuotes", 3854); + _static_2(A, "quote_reducer___sortQuotes$closure", "_sortQuotes", 3855); + _static_2(A, "quote_reducer___startListMultiselect$closure", "_startListMultiselect14", 3856); + _static_2(A, "quote_reducer___addToListMultiselect$closure", "_addToListMultiselect14", 3857); + _static_2(A, "quote_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect14", 3858); + _static_2(A, "quote_reducer___clearListMultiselect$closure", "_clearListMultiselect14", 3859); + _static_2(A, "quote_reducer___purgeClientSuccess$closure", "_purgeClientSuccess5", 3860); + _static_2(A, "quote_reducer___markSentQuoteSuccess$closure", "_markSentQuoteSuccess", 3861); + _static_2(A, "quote_reducer___archiveQuoteSuccess$closure", "_archiveQuoteSuccess", 3862); + _static_2(A, "quote_reducer___deleteQuoteSuccess$closure", "_deleteQuoteSuccess", 3863); + _static_2(A, "quote_reducer___restoreQuoteSuccess$closure", "_restoreQuoteSuccess", 3864); + _static_2(A, "quote_reducer___emailQuoteSuccess$closure", "_emailQuoteSuccess", 3865); + _static_2(A, "quote_reducer___convertQuotesToInvoicesSuccess$closure", "_convertQuotesToInvoicesSuccess", 3866); + _static_2(A, "quote_reducer___convertQuotesToProjectsSuccess$closure", "_convertQuotesToProjectsSuccess", 3867); + _static_2(A, "quote_reducer___addQuote$closure", "_addQuote", 3868); + _static_2(A, "quote_reducer___updateQuote$closure", "_updateQuote", 3869); + _static_2(A, "quote_reducer___setLoadedQuotes$closure", "_setLoadedQuotes", 3870); + _static_2(A, "quote_reducer___setLoadedCompany$closure", "_setLoadedCompany14", 3871); + _static_2(A, "recurring_expense_reducer___clearEditing$closure", "_clearEditing13", 914); + _static_2(A, "recurring_expense_reducer___updateEditing$closure", "_updateEditing14", 915); + _static_2(A, "recurring_expense_reducer___viewRecurringExpenseList$closure", "_viewRecurringExpenseList0", 3872); + _static_2(A, "recurring_expense_reducer___filterRecurringExpensesByCustom1$closure", "_filterRecurringExpensesByCustom1", 3873); + _static_2(A, "recurring_expense_reducer___filterRecurringExpensesByCustom2$closure", "_filterRecurringExpensesByCustom2", 3874); + _static_2(A, "recurring_expense_reducer___filterRecurringExpensesByState$closure", "_filterRecurringExpensesByState", 3875); + _static_2(A, "recurring_expense_reducer___filterRecurringExpensesByStatus$closure", "_filterRecurringExpensesByStatus", 3876); + _static_2(A, "recurring_expense_reducer___filterRecurringExpenses$closure", "_filterRecurringExpenses", 3877); + _static_2(A, "recurring_expense_reducer___sortRecurringExpenses$closure", "_sortRecurringExpenses", 3878); + _static_2(A, "recurring_expense_reducer___startListMultiselect$closure", "_startListMultiselect15", 3879); + _static_2(A, "recurring_expense_reducer___addToListMultiselect$closure", "_addToListMultiselect15", 3880); + _static_2(A, "recurring_expense_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect15", 3881); + _static_2(A, "recurring_expense_reducer___clearListMultiselect$closure", "_clearListMultiselect15", 3882); + _static_2(A, "recurring_expense_reducer___purgeClientSuccess$closure", "_purgeClientSuccess6", 3883); + _static_2(A, "recurring_expense_reducer___archiveRecurringExpenseSuccess$closure", "_archiveRecurringExpenseSuccess", 3884); + _static_2(A, "recurring_expense_reducer___deleteRecurringExpenseSuccess$closure", "_deleteRecurringExpenseSuccess", 3885); + _static_2(A, "recurring_expense_reducer___restoreRecurringExpenseSuccess$closure", "_restoreRecurringExpenseSuccess", 3886); + _static_2(A, "recurring_expense_reducer___addRecurringExpense$closure", "_addRecurringExpense", 3887); + _static_2(A, "recurring_expense_reducer___updateRecurringExpense$closure", "_updateRecurringExpense", 3888); + _static_2(A, "recurring_expense_reducer___startRecurringExpensesSuccess$closure", "_startRecurringExpensesSuccess", 3889); + _static_2(A, "recurring_expense_reducer___stopRecurringExpensesSuccess$closure", "_stopRecurringExpensesSuccess", 3890); + _static_2(A, "recurring_expense_reducer___setLoadedRecurringExpense$closure", "_setLoadedRecurringExpense", 3891); + _static_2(A, "recurring_expense_reducer___setLoadedRecurringExpenses$closure", "_setLoadedRecurringExpenses", 3892); + _static_2(A, "recurring_expense_reducer___setLoadedCompany$closure", "_setLoadedCompany15", 3893); + _static_2(A, "recurring_invoice_reducer___clearEditing$closure", "_clearEditing14", 253); + _static_2(A, "recurring_invoice_reducer___updateEditing$closure", "_updateEditing15", 438); + _static_2(A, "recurring_invoice_reducer___addRecurringInvoiceItem$closure", "_addRecurringInvoiceItem", 630); + _static_2(A, "recurring_invoice_reducer___addRecurringInvoiceItems$closure", "_addRecurringInvoiceItems", 3894); + _static_2(A, "recurring_invoice_reducer___removeRecurringInvoiceItem$closure", "_removeRecurringInvoiceItem", 3895); + _static_2(A, "recurring_invoice_reducer___updateRecurringInvoiceItem$closure", "_updateRecurringInvoiceItem", 3896); + _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByCustom1$closure", "_filterRecurringInvoicesByCustom1", 3897); + _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByCustom2$closure", "_filterRecurringInvoicesByCustom2", 3898); + _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByCustom3$closure", "_filterRecurringInvoicesByCustom3", 3899); + _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByCustom4$closure", "_filterRecurringInvoicesByCustom4", 3900); + _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByState$closure", "_filterRecurringInvoicesByState", 3901); + _static_2(A, "recurring_invoice_reducer___filterRecurringInvoicesByStatus$closure", "_filterRecurringInvoicesByStatus", 3902); + _static_2(A, "recurring_invoice_reducer___filterRecurringInvoices$closure", "_filterRecurringInvoices", 3903); + _static_2(A, "recurring_invoice_reducer___sortRecurringInvoices$closure", "_sortRecurringInvoices", 3904); + _static_2(A, "recurring_invoice_reducer___startListMultiselect$closure", "_startListMultiselect16", 3905); + _static_2(A, "recurring_invoice_reducer___addToListMultiselect$closure", "_addToListMultiselect16", 3906); + _static_2(A, "recurring_invoice_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect16", 3907); + _static_2(A, "recurring_invoice_reducer___clearListMultiselect$closure", "_clearListMultiselect16", 3908); + _static_2(A, "recurring_invoice_reducer___purgeClientSuccess$closure", "_purgeClientSuccess7", 3909); + _static_2(A, "recurring_invoice_reducer___archiveRecurringInvoiceSuccess$closure", "_archiveRecurringInvoiceSuccess", 3910); + _static_2(A, "recurring_invoice_reducer___deleteRecurringInvoiceSuccess$closure", "_deleteRecurringInvoiceSuccess", 3911); + _static_2(A, "recurring_invoice_reducer___emailRecurringInvoiceSuccess$closure", "_emailRecurringInvoiceSuccess", 3912); + _static_2(A, "recurring_invoice_reducer___restoreRecurringInvoiceSuccess$closure", "_restoreRecurringInvoiceSuccess", 3913); + _static_2(A, "recurring_invoice_reducer___sendNowRecurringInvoiceSuccess$closure", "_sendNowRecurringInvoiceSuccess", 3914); + _static_2(A, "recurring_invoice_reducer___startRecurringInvoicesSuccess$closure", "_startRecurringInvoicesSuccess", 3915); + _static_2(A, "recurring_invoice_reducer___stopRecurringInvoicesSuccess$closure", "_stopRecurringInvoicesSuccess", 3916); + _static_2(A, "recurring_invoice_reducer___addRecurringInvoice$closure", "_addRecurringInvoice", 3917); + _static_2(A, "recurring_invoice_reducer___updateRecurringInvoice$closure", "_updateRecurringInvoice", 3918); + _static_2(A, "recurring_invoice_reducer___setLoadedRecurringInvoices$closure", "_setLoadedRecurringInvoices", 3919); + _static_2(A, "recurring_invoice_reducer___setLoadedCompany$closure", "_setLoadedCompany16", 3920); + _static_2(A, "schedule_reducer___clearEditing$closure", "_clearEditing15", 3921); + _static_2(A, "schedule_reducer___updateEditing$closure", "_updateEditing16", 3922); + _static_2(A, "schedule_reducer___viewScheduleList$closure", "_viewScheduleList0", 3923); + _static_2(A, "schedule_reducer___filterSchedulesByCustom1$closure", "_filterSchedulesByCustom1", 3924); + _static_2(A, "schedule_reducer___filterSchedulesByCustom2$closure", "_filterSchedulesByCustom2", 3925); + _static_2(A, "schedule_reducer___filterSchedulesByState$closure", "_filterSchedulesByState", 3926); + _static_2(A, "schedule_reducer___filterSchedules$closure", "_filterSchedules", 3927); + _static_2(A, "schedule_reducer___sortSchedules$closure", "_sortSchedules", 3928); + _static_2(A, "schedule_reducer___startListMultiselect$closure", "_startListMultiselect17", 3929); + _static_2(A, "schedule_reducer___addToListMultiselect$closure", "_addToListMultiselect17", 3930); + _static_2(A, "schedule_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect17", 3931); + _static_2(A, "schedule_reducer___clearListMultiselect$closure", "_clearListMultiselect17", 3932); + _static_2(A, "schedule_reducer___archiveScheduleSuccess$closure", "_archiveScheduleSuccess", 3933); + _static_2(A, "schedule_reducer___deleteScheduleSuccess$closure", "_deleteScheduleSuccess", 3934); + _static_2(A, "schedule_reducer___restoreScheduleSuccess$closure", "_restoreScheduleSuccess", 3935); + _static_2(A, "schedule_reducer___addSchedule$closure", "_addSchedule", 3936); + _static_2(A, "schedule_reducer___updateSchedule$closure", "_updateSchedule", 3937); + _static_2(A, "schedule_reducer___setLoadedSchedule$closure", "_setLoadedSchedule", 3938); + _static_2(A, "schedule_reducer___setLoadedSchedules$closure", "_setLoadedSchedules", 3939); + _static_2(A, "schedule_reducer___setLoadedCompany$closure", "_setLoadedCompany17", 3940); + _static_2(A, "static_reducer__staticLoadedReducer$closure", "staticLoadedReducer", 3941); + _static_2(A, "subscription_reducer___clearEditing$closure", "_clearEditing16", 3942); + _static_2(A, "subscription_reducer___updateEditing$closure", "_updateEditing17", 3943); + _static_2(A, "subscription_reducer___filterSubscriptionsByCustom1$closure", "_filterSubscriptionsByCustom1", 3944); + _static_2(A, "subscription_reducer___filterSubscriptionsByCustom2$closure", "_filterSubscriptionsByCustom2", 3945); + _static_2(A, "subscription_reducer___filterSubscriptionsByState$closure", "_filterSubscriptionsByState", 3946); + _static_2(A, "subscription_reducer___filterSubscriptions$closure", "_filterSubscriptions", 3947); + _static_2(A, "subscription_reducer___sortSubscriptions$closure", "_sortSubscriptions", 3948); + _static_2(A, "subscription_reducer___startListMultiselect$closure", "_startListMultiselect18", 3949); + _static_2(A, "subscription_reducer___addToListMultiselect$closure", "_addToListMultiselect18", 3950); + _static_2(A, "subscription_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect18", 3951); + _static_2(A, "subscription_reducer___clearListMultiselect$closure", "_clearListMultiselect18", 3952); + _static_2(A, "subscription_reducer___archiveSubscriptionSuccess$closure", "_archiveSubscriptionSuccess", 3953); + _static_2(A, "subscription_reducer___deleteSubscriptionSuccess$closure", "_deleteSubscriptionSuccess", 3954); + _static_2(A, "subscription_reducer___restoreSubscriptionSuccess$closure", "_restoreSubscriptionSuccess", 3955); + _static_2(A, "subscription_reducer___addSubscription$closure", "_addSubscription", 3956); + _static_2(A, "subscription_reducer___updateSubscription$closure", "_updateSubscription", 3957); + _static_2(A, "subscription_reducer___setLoadedSubscription$closure", "_setLoadedSubscription", 3958); + _static_2(A, "subscription_reducer___setLoadedSubscriptions$closure", "_setLoadedSubscriptions", 3959); + _static_2(A, "subscription_reducer___setLoadedCompany$closure", "_setLoadedCompany18", 3960); + _static_2(A, "task_reducer___clearEditing$closure", "_clearEditing17", 3961); + _static_2(A, "task_reducer___updateEditing$closure", "_updateEditing18", 3962); + _static_2(A, "task_reducer___viewTaskList$closure", "_viewTaskList0", 3963); + _static_2(A, "task_reducer___filterTasksByCustom1$closure", "_filterTasksByCustom1", 3964); + _static_2(A, "task_reducer___filterTasksByCustom2$closure", "_filterTasksByCustom2", 3965); + _static_2(A, "task_reducer___filterTasksByState$closure", "_filterTasksByState", 3966); + _static_2(A, "task_reducer___filterTasksByStatus$closure", "_filterTasksByStatus", 3967); + _static_2(A, "task_reducer___filterTasks$closure", "_filterTasks", 3968); + _static_2(A, "task_reducer___sortTasks$closure", "_sortTasks0", 3969); + _static_2(A, "task_reducer___addTaskTime$closure", "_addTaskTime", 3970); + _static_2(A, "task_reducer___removeTaskTime$closure", "_removeTaskTime", 3971); + _static_2(A, "task_reducer___updateTaskTime$closure", "_updateTaskTime", 3972); + _static_2(A, "task_reducer___startListMultiselect$closure", "_startListMultiselect19", 3973); + _static_2(A, "task_reducer___addToListMultiselect$closure", "_addToListMultiselect19", 3974); + _static_2(A, "task_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect19", 3975); + _static_2(A, "task_reducer___clearListMultiselect$closure", "_clearListMultiselect19", 3976); + _static_2(A, "task_reducer___purgeClientSuccess$closure", "_purgeClientSuccess8", 3977); + _static_2(A, "task_reducer___sortTasksSuccess$closure", "_sortTasksSuccess", 3978); + _static_2(A, "task_reducer___archiveTaskSuccess$closure", "_archiveTaskSuccess", 3979); + _static_2(A, "task_reducer___startTaskSuccess$closure", "_startTaskSuccess", 3980); + _static_2(A, "task_reducer___stopTaskSuccess$closure", "_stopTaskSuccess", 3981); + _static_2(A, "task_reducer___deleteTaskSuccess$closure", "_deleteTaskSuccess", 3982); + _static_2(A, "task_reducer___restoreTaskSuccess$closure", "_restoreTaskSuccess", 3983); + _static_2(A, "task_reducer___addTask$closure", "_addTask", 3984); + _static_2(A, "task_reducer___updateTask$closure", "_updateTask", 3985); + _static_2(A, "task_reducer___setLoadedTask$closure", "_setLoadedTask", 3986); + _static_2(A, "task_reducer___setLoadedTasks$closure", "_setLoadedTasks", 3987); + _static_2(A, "task_reducer___setLoadedCompany$closure", "_setLoadedCompany19", 3988); + _static_2(A, "task_status_reducer___clearEditing$closure", "_clearEditing18", 3989); + _static_2(A, "task_status_reducer___updateEditing$closure", "_updateEditing19", 3990); + _static_2(A, "task_status_reducer___viewTaskStatusList$closure", "_viewTaskStatusList0", 3991); + _static_2(A, "task_status_reducer___filterTaskStatusesByCustom1$closure", "_filterTaskStatusesByCustom1", 3992); + _static_2(A, "task_status_reducer___filterTaskStatusesByCustom2$closure", "_filterTaskStatusesByCustom2", 3993); + _static_2(A, "task_status_reducer___filterTaskStatusesByState$closure", "_filterTaskStatusesByState", 3994); + _static_2(A, "task_status_reducer___filterTaskStatuses$closure", "_filterTaskStatuses", 3995); + _static_2(A, "task_status_reducer___sortTaskStatuses$closure", "_sortTaskStatuses", 3996); + _static_2(A, "task_status_reducer___startListMultiselect$closure", "_startListMultiselect20", 3997); + _static_2(A, "task_status_reducer___addToListMultiselect$closure", "_addToListMultiselect20", 3998); + _static_2(A, "task_status_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect20", 3999); + _static_2(A, "task_status_reducer___clearListMultiselect$closure", "_clearListMultiselect20", 4000); + _static_2(A, "task_status_reducer___sortTaskStatusSuccess$closure", "_sortTaskStatusSuccess", 4001); + _static_2(A, "task_status_reducer___archiveTaskStatusSuccess$closure", "_archiveTaskStatusSuccess", 4002); + _static_2(A, "task_status_reducer___deleteTaskStatusSuccess$closure", "_deleteTaskStatusSuccess", 4003); + _static_2(A, "task_status_reducer___restoreTaskStatusSuccess$closure", "_restoreTaskStatusSuccess", 4004); + _static_2(A, "task_status_reducer___addTaskStatus$closure", "_addTaskStatus", 4005); + _static_2(A, "task_status_reducer___updateTaskStatus$closure", "_updateTaskStatus", 4006); + _static_2(A, "task_status_reducer___setLoadedTaskStatus$closure", "_setLoadedTaskStatus", 4007); + _static_2(A, "task_status_reducer___setLoadedTaskStatuses$closure", "_setLoadedTaskStatuses", 4008); + _static_2(A, "task_status_reducer___setLoadedCompany$closure", "_setLoadedCompany20", 4009); + _static_2(A, "tax_rate_reducer___clearEditing$closure", "_clearEditing19", 4010); + _static_2(A, "tax_rate_reducer___updateEditing$closure", "_updateEditing20", 4011); + _static_2(A, "tax_rate_reducer___viewTaxRateList$closure", "_viewTaxRateList0", 4012); + _static_2(A, "tax_rate_reducer___filterTaxRatesByState$closure", "_filterTaxRatesByState", 4013); + _static_2(A, "tax_rate_reducer___filterTaxRates$closure", "_filterTaxRates", 4014); + _static_2(A, "tax_rate_reducer___sortTaxRates$closure", "_sortTaxRates", 4015); + _static_2(A, "tax_rate_reducer___startListMultiselect$closure", "_startListMultiselect21", 4016); + _static_2(A, "tax_rate_reducer___addToListMultiselect$closure", "_addToListMultiselect21", 4017); + _static_2(A, "tax_rate_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect21", 4018); + _static_2(A, "tax_rate_reducer___clearListMultiselect$closure", "_clearListMultiselect21", 4019); + _static_2(A, "tax_rate_reducer___archiveTaxRateSuccess$closure", "_archiveTaxRateSuccess", 4020); + _static_2(A, "tax_rate_reducer___deleteTaxRateSuccess$closure", "_deleteTaxRateSuccess", 4021); + _static_2(A, "tax_rate_reducer___restoreTaxRateSuccess$closure", "_restoreTaxRateSuccess", 4022); + _static_2(A, "tax_rate_reducer___addTaxRate$closure", "_addTaxRate", 4023); + _static_2(A, "tax_rate_reducer___updateTaxRate$closure", "_updateTaxRate", 4024); + _static_2(A, "tax_rate_reducer___setLoadedTaxRate$closure", "_setLoadedTaxRate", 4025); + _static_2(A, "tax_rate_reducer___setLoadedTaxRates$closure", "_setLoadedTaxRates", 4026); + _static_2(A, "tax_rate_reducer___setLoadedCompany$closure", "_setLoadedCompany21", 4027); + _static_2(A, "token_reducer___clearEditing$closure", "_clearEditing20", 4028); + _static_2(A, "token_reducer___updateEditing$closure", "_updateEditing21", 4029); + _static_2(A, "token_reducer___viewTokenList$closure", "_viewTokenList0", 4030); + _static_2(A, "token_reducer___filterTokensByCustom1$closure", "_filterTokensByCustom1", 4031); + _static_2(A, "token_reducer___filterTokensByCustom2$closure", "_filterTokensByCustom2", 4032); + _static_2(A, "token_reducer___filterTokensByState$closure", "_filterTokensByState", 4033); + _static_2(A, "token_reducer___filterTokens$closure", "_filterTokens", 4034); + _static_2(A, "token_reducer___sortTokens$closure", "_sortTokens", 4035); + _static_2(A, "token_reducer___startListMultiselect$closure", "_startListMultiselect22", 4036); + _static_2(A, "token_reducer___addToListMultiselect$closure", "_addToListMultiselect22", 4037); + _static_2(A, "token_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect22", 4038); + _static_2(A, "token_reducer___clearListMultiselect$closure", "_clearListMultiselect22", 4039); + _static_2(A, "token_reducer___archiveTokenSuccess$closure", "_archiveTokenSuccess", 4040); + _static_2(A, "token_reducer___deleteTokenSuccess$closure", "_deleteTokenSuccess", 4041); + _static_2(A, "token_reducer___restoreTokenSuccess$closure", "_restoreTokenSuccess", 4042); + _static_2(A, "token_reducer___addToken$closure", "_addToken", 4043); + _static_2(A, "token_reducer___updateToken$closure", "_updateToken", 4044); + _static_2(A, "token_reducer___setLoadedToken$closure", "_setLoadedToken", 4045); + _static_2(A, "token_reducer___setLoadedTokens$closure", "_setLoadedTokens", 4046); + _static_2(A, "token_reducer___setLoadedCompany$closure", "_setLoadedCompany22", 4047); + _static_2(A, "transaction_reducer___clearEditing$closure", "_clearEditing21", 4048); + _static_2(A, "transaction_reducer___updateEditing$closure", "_updateEditing22", 4049); + _static_2(A, "transaction_reducer___viewTransactionList$closure", "_viewTransactionList0", 4050); + _static_2(A, "transaction_reducer___filterTransactionsByCustom1$closure", "_filterTransactionsByCustom1", 4051); + _static_2(A, "transaction_reducer___filterTransactionsByCustom2$closure", "_filterTransactionsByCustom2", 4052); + _static_2(A, "transaction_reducer___filterTransactionsByState$closure", "_filterTransactionsByState", 4053); + _static_2(A, "transaction_reducer___filterTransactionsByStatus$closure", "_filterTransactionsByStatus", 4054); + _static_2(A, "transaction_reducer___filterTransactions$closure", "_filterTransactions", 4055); + _static_2(A, "transaction_reducer___sortTransactions$closure", "_sortTransactions", 4056); + _static_2(A, "transaction_reducer___startListMultiselect$closure", "_startListMultiselect23", 4057); + _static_2(A, "transaction_reducer___addToListMultiselect$closure", "_addToListMultiselect23", 4058); + _static_2(A, "transaction_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect23", 4059); + _static_2(A, "transaction_reducer___clearListMultiselect$closure", "_clearListMultiselect23", 4060); + _static_2(A, "transaction_reducer___archiveTransactionSuccess$closure", "_archiveTransactionSuccess", 4061); + _static_2(A, "transaction_reducer___deleteTransactionSuccess$closure", "_deleteTransactionSuccess", 4062); + _static_2(A, "transaction_reducer___restoreTransactionSuccess$closure", "_restoreTransactionSuccess", 4063); + _static_2(A, "transaction_reducer___addTransaction$closure", "_addTransaction", 4064); + _static_2(A, "transaction_reducer___updateTransaction$closure", "_updateTransaction", 4065); + _static_2(A, "transaction_reducer___convertTransactionToPayment$closure", "_convertTransactionToPayment", 4066); + _static_2(A, "transaction_reducer___convertTransactionToExpense$closure", "_convertTransactionToExpense", 4067); + _static_2(A, "transaction_reducer___linkTransactionToPayment$closure", "_linkTransactionToPayment", 4068); + _static_2(A, "transaction_reducer___linkTransactionToExpense$closure", "_linkTransactionToExpense", 4069); + _static_2(A, "transaction_reducer___convertTransactions$closure", "_convertTransactions0", 4070); + _static_2(A, "transaction_reducer___setLoadedTransaction$closure", "_setLoadedTransaction", 4071); + _static_2(A, "transaction_reducer___setLoadedTransactions$closure", "_setLoadedTransactions", 4072); + _static_2(A, "transaction_reducer___setLoadedCompany$closure", "_setLoadedCompany23", 4073); + _static_2(A, "transaction_rule_reducer___clearEditing$closure", "_clearEditing22", 4074); + _static_2(A, "transaction_rule_reducer___updateEditing$closure", "_updateEditing23", 4075); + _static_2(A, "transaction_rule_reducer___viewTransactionRuleList$closure", "_viewTransactionRuleList0", 4076); + _static_2(A, "transaction_rule_reducer___filterTransactionRulesByCustom1$closure", "_filterTransactionRulesByCustom1", 4077); + _static_2(A, "transaction_rule_reducer___filterTransactionRulesByCustom2$closure", "_filterTransactionRulesByCustom2", 4078); + _static_2(A, "transaction_rule_reducer___filterTransactionRulesByState$closure", "_filterTransactionRulesByState", 4079); + _static_2(A, "transaction_rule_reducer___filterTransactionRules$closure", "_filterTransactionRules", 4080); + _static_2(A, "transaction_rule_reducer___sortTransactionRules$closure", "_sortTransactionRules", 4081); + _static_2(A, "transaction_rule_reducer___startListMultiselect$closure", "_startListMultiselect24", 4082); + _static_2(A, "transaction_rule_reducer___addToListMultiselect$closure", "_addToListMultiselect24", 4083); + _static_2(A, "transaction_rule_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect24", 4084); + _static_2(A, "transaction_rule_reducer___clearListMultiselect$closure", "_clearListMultiselect24", 4085); + _static_2(A, "transaction_rule_reducer___archiveTransactionRuleSuccess$closure", "_archiveTransactionRuleSuccess", 4086); + _static_2(A, "transaction_rule_reducer___deleteTransactionRuleSuccess$closure", "_deleteTransactionRuleSuccess", 4087); + _static_2(A, "transaction_rule_reducer___restoreTransactionRuleSuccess$closure", "_restoreTransactionRuleSuccess", 4088); + _static_2(A, "transaction_rule_reducer___addTransactionRule$closure", "_addTransactionRule", 4089); + _static_2(A, "transaction_rule_reducer___updateTransactionRule$closure", "_updateTransactionRule", 4090); + _static_2(A, "transaction_rule_reducer___setLoadedTransactionRule$closure", "_setLoadedTransactionRule", 4091); + _static_2(A, "transaction_rule_reducer___setLoadedTransactionRules$closure", "_setLoadedTransactionRules", 4092); + _static_2(A, "transaction_rule_reducer___setLoadedCompany$closure", "_setLoadedCompany24", 4093); + _static_2(A, "user_reducer___clearEditing$closure", "_clearEditing23", 4094); + _static_2(A, "user_reducer___updateEditing$closure", "_updateEditing24", 4095); + _static_2(A, "user_reducer___viewUserList$closure", "_viewUserList0", 4096); + _static_2(A, "user_reducer___filterUsersByCustom1$closure", "_filterUsersByCustom1", 4097); + _static_2(A, "user_reducer___filterUsersByCustom2$closure", "_filterUsersByCustom2", 4098); + _static_2(A, "user_reducer___filterUsersByCustom3$closure", "_filterUsersByCustom3", 4099); + _static_2(A, "user_reducer___filterUsersByCustom4$closure", "_filterUsersByCustom4", 4100); + _static_2(A, "user_reducer___filterUsersByState$closure", "_filterUsersByState", 4101); + _static_2(A, "user_reducer___filterUsers$closure", "_filterUsers", 4102); + _static_2(A, "user_reducer___sortUsers$closure", "_sortUsers", 4103); + _static_2(A, "user_reducer___startListMultiselect$closure", "_startListMultiselect25", 4104); + _static_2(A, "user_reducer___addToListMultiselect$closure", "_addToListMultiselect25", 4105); + _static_2(A, "user_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect25", 4106); + _static_2(A, "user_reducer___clearListMultiselect$closure", "_clearListMultiselect25", 4107); + _static_2(A, "user_reducer___archiveUserSuccess$closure", "_archiveUserSuccess", 4108); + _static_2(A, "user_reducer___deleteUserSuccess$closure", "_deleteUserSuccess", 4109); + _static_2(A, "user_reducer___restoreUserSuccess$closure", "_restoreUserSuccess", 4110); + _static_2(A, "user_reducer___removeUserSuccess$closure", "_removeUserSuccess", 4111); + _static_2(A, "user_reducer___addUser$closure", "_addUser", 4112); + _static_2(A, "user_reducer___updateUser$closure", "_updateUser", 4113); + _static_2(A, "user_reducer___updateAuthUser$closure", "_updateAuthUser", 4114); + _static_2(A, "user_reducer___connectOAuthUser$closure", "_connectOAuthUser0", 4115); + _static_2(A, "user_reducer___disconnectOAuthUser$closure", "_disconnectOAuthUser0", 4116); + _static_2(A, "user_reducer___disconnectOAuthMailer$closure", "_disconnectOAuthMailer0", 4117); + _static_2(A, "user_reducer___connectGmailUser$closure", "_connectGmailUser0", 4118); + _static_2(A, "user_reducer___setLoadedUser$closure", "_setLoadedUser", 4119); + _static_2(A, "user_reducer___setLoadedUsers$closure", "_setLoadedUsers", 4120); + _static_2(A, "user_reducer___setLoadedCompany$closure", "_setLoadedCompany25", 4121); + _static_2(A, "vendor_reducer__editVendorContact$closure", "editVendorContact", 4122); + _static_2(A, "vendor_reducer___clearEditing$closure", "_clearEditing24", 4123); + _static_2(A, "vendor_reducer___updateEditing$closure", "_updateEditing25", 4124); + _static_2(A, "vendor_reducer___addContact$closure", "_addContact", 4125); + _static_2(A, "vendor_reducer___removeContact$closure", "_removeContact", 4126); + _static_2(A, "vendor_reducer___updateContact$closure", "_updateContact", 4127); + _static_2(A, "vendor_reducer___viewVendorList$closure", "_viewVendorList0", 4128); + _static_2(A, "vendor_reducer___filterVendorsByCustom1$closure", "_filterVendorsByCustom1", 4129); + _static_2(A, "vendor_reducer___filterVendorsByCustom2$closure", "_filterVendorsByCustom2", 4130); + _static_2(A, "vendor_reducer___filterVendorsByCustom3$closure", "_filterVendorsByCustom3", 4131); + _static_2(A, "vendor_reducer___filterVendorsByCustom4$closure", "_filterVendorsByCustom4", 4132); + _static_2(A, "vendor_reducer___filterVendorsByState$closure", "_filterVendorsByState", 4133); + _static_2(A, "vendor_reducer___filterVendors$closure", "_filterVendors", 4134); + _static_2(A, "vendor_reducer___sortVendors$closure", "_sortVendors", 4135); + _static_2(A, "vendor_reducer___startListMultiselect$closure", "_startListMultiselect26", 4136); + _static_2(A, "vendor_reducer___addToListMultiselect$closure", "_addToListMultiselect26", 4137); + _static_2(A, "vendor_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect26", 4138); + _static_2(A, "vendor_reducer___clearListMultiselect$closure", "_clearListMultiselect26", 4139); + _static_2(A, "vendor_reducer___archiveVendorSuccess$closure", "_archiveVendorSuccess", 4140); + _static_2(A, "vendor_reducer___deleteVendorSuccess$closure", "_deleteVendorSuccess", 4141); + _static_2(A, "vendor_reducer___restoreVendorSuccess$closure", "_restoreVendorSuccess", 4142); + _static_2(A, "vendor_reducer___addVendor$closure", "_addVendor", 4143); + _static_2(A, "vendor_reducer___updateVendor$closure", "_updateVendor", 4144); + _static_2(A, "vendor_reducer___setLoadedVendor$closure", "_setLoadedVendor", 4145); + _static_2(A, "vendor_reducer___setLoadedVendors$closure", "_setLoadedVendors", 4146); + _static_2(A, "vendor_reducer___setLoadedCompany$closure", "_setLoadedCompany26", 4147); + _static_2(A, "webhook_reducer___clearEditing$closure", "_clearEditing25", 4148); + _static_2(A, "webhook_reducer___updateEditing$closure", "_updateEditing26", 4149); + _static_2(A, "webhook_reducer___viewWebhookList$closure", "_viewWebhookList0", 4150); + _static_2(A, "webhook_reducer___filterWebhooksByCustom1$closure", "_filterWebhooksByCustom1", 4151); + _static_2(A, "webhook_reducer___filterWebhooksByCustom2$closure", "_filterWebhooksByCustom2", 4152); + _static_2(A, "webhook_reducer___filterWebhooksByState$closure", "_filterWebhooksByState", 4153); + _static_2(A, "webhook_reducer___filterWebhooks$closure", "_filterWebhooks", 4154); + _static_2(A, "webhook_reducer___sortWebhooks$closure", "_sortWebhooks", 4155); + _static_2(A, "webhook_reducer___startListMultiselect$closure", "_startListMultiselect27", 4156); + _static_2(A, "webhook_reducer___addToListMultiselect$closure", "_addToListMultiselect27", 4157); + _static_2(A, "webhook_reducer___removeFromListMultiselect$closure", "_removeFromListMultiselect27", 4158); + _static_2(A, "webhook_reducer___clearListMultiselect$closure", "_clearListMultiselect27", 4159); + _static_2(A, "webhook_reducer___archiveWebhookSuccess$closure", "_archiveWebhookSuccess", 4160); + _static_2(A, "webhook_reducer___deleteWebhookSuccess$closure", "_deleteWebhookSuccess", 4161); + _static_2(A, "webhook_reducer___restoreWebhookSuccess$closure", "_restoreWebhookSuccess", 4162); + _static_2(A, "webhook_reducer___addWebhook$closure", "_addWebhook", 4163); + _static_2(A, "webhook_reducer___updateWebhook$closure", "_updateWebhook", 4164); + _static_2(A, "webhook_reducer___setLoadedWebhook$closure", "_setLoadedWebhook", 4165); + _static_2(A, "webhook_reducer___setLoadedWebhooks$closure", "_setLoadedWebhooks", 4166); + _static_2(A, "webhook_reducer___setLoadedCompany$closure", "_setLoadedCompany27", 4167); + _static_1(A, "confirm_email_vm_ConfirmEmailVM_fromStore$closure", "ConfirmEmailVM_fromStore", 4168); _instance_0_u(A._EntitiesListTileState.prototype, "get$_entity_list_tile$_onLongPress", "_entity_list_tile$_onLongPress$0", 0); _instance_0_u(A._EntityDropdownState.prototype, "get$_onFocusChanged", "_onFocusChanged$0", 0); _instance_0_u(_ = A._FormColorPickerState.prototype, "get$_color_picker$_onChanged", "_color_picker$_onChanged$0", 0); @@ -622460,22 +623798,22 @@ _instance_0_u(A._DurationPickerState.prototype, "get$_duration_picker$_onFoucsChanged", "_duration_picker$_onFoucsChanged$0", 0); _instance_0_u(A._GrowableFormFieldState.prototype, "get$_growable_form_field$_onFoucsChanged", "_growable_form_field$_onFoucsChanged$0", 0); _instance_0_u(A._TimePickerState.prototype, "get$_time_picker$_onFoucsChanged", "_time_picker$_onFoucsChanged$0", 0); - _static_1(A, "history_drawer_vm_AppDrawerVM_fromStore$closure", "AppDrawerVM_fromStore", 4161); + _static_1(A, "history_drawer_vm_AppDrawerVM_fromStore$closure", "AppDrawerVM_fromStore", 4169); _instance_0_u(A._InvoiceEmailViewState.prototype, "get$_invoice_email_view$_loadTemplate", "_invoice_email_view$_loadTemplate$0", 0); _instance_0_u(A._ListFilterState.prototype, "get$onFocusChanged", "onFocusChanged$0", 0); - _static_1(A, "menu_drawer_vm_MenuDrawerVM_fromStore$closure", "MenuDrawerVM_fromStore", 4162); + _static_1(A, "menu_drawer_vm_MenuDrawerVM_fromStore$closure", "MenuDrawerVM_fromStore", 4170); _instance_0_u(_ = A.AppPaginatedDataTableState.prototype, "get$_handleDataSourceChanged", "_handleDataSourceChanged$0", 0); _instance_0_u(_, "get$_handleFirst", "_handleFirst$0", 0); _instance_0_u(_, "get$_handlePrevious", "_handlePrevious$0", 0); _instance_0_u(_, "get$_handleNext", "_handleNext$0", 0); _instance_0_u(_, "get$_handleLast", "_handleLast$0", 0); _instance_0_u(A._LoginState.prototype, "get$_submitForm", "_submitForm$0", 0); - _static_1(A, "login_vm_LoginVM_fromStore$closure", "LoginVM_fromStore", 4163); - _static_1(A, "bank_account_list_vm_BankAccountListVM_fromStore$closure", "BankAccountListVM_fromStore", 4164); - _static_1(A, "bank_account_screen_vm_BankAccountScreenVM_fromStore$closure", "BankAccountScreenVM_fromStore", 4165); + _static_1(A, "login_vm_LoginVM_fromStore$closure", "LoginVM_fromStore", 4171); + _static_1(A, "bank_account_list_vm_BankAccountListVM_fromStore$closure", "BankAccountListVM_fromStore", 4172); + _static_1(A, "bank_account_screen_vm_BankAccountScreenVM_fromStore$closure", "BankAccountScreenVM_fromStore", 4173); _instance_0_u(A._BankAccountEditState.prototype, "get$_bank_account_edit$_onChanged", "_bank_account_edit$_onChanged$0", 0); - _static_1(A, "client_list_vm_ClientListVM_fromStore$closure", "ClientListVM_fromStore", 4166); - _static_1(A, "client_screen_vm_ClientScreenVM_fromStore$closure", "ClientScreenVM_fromStore", 4167); + _static_1(A, "client_list_vm_ClientListVM_fromStore$closure", "ClientListVM_fromStore", 4174); + _static_1(A, "client_screen_vm_ClientScreenVM_fromStore$closure", "ClientScreenVM_fromStore", 4175); _instance_0_u(A.ClientEditBillingAddressState.prototype, "get$_client_edit_billing_address$_onChanged", "_client_edit_billing_address$_onChanged$0", 0); _instance_0_u(A.ContactEditDetailsState.prototype, "get$_client_edit_contacts$_onChanged", "_client_edit_contacts$_onChanged$0", 0); _instance_0_u(_ = A.ClientEditDetailsState.prototype, "get$_client_edit_details$_onChanged", "_client_edit_details$_onChanged$0", 0); @@ -622484,302 +623822,306 @@ _instance_0_u(A.ClientEditSettingsState.prototype, "get$_client_edit_settings$_onChanged", "_client_edit_settings$_onChanged$0", 0); _instance_0_u(A.ClientEditShippingAddressState.prototype, "get$_client_edit_shipping_address$_onChanged", "_client_edit_shipping_address$_onChanged$0", 0); _instance_0_u(A._ClientViewState.prototype, "get$_client_view$_onTabChanged", "_client_view$_onTabChanged$0", 0); - _instance_2_u(A._ClientViewDetailsState.prototype, "get$_client_view_details$_launchStatus", "_client_view_details$_launchStatus$2", 727); - _static_1(A, "company_gateway_list_vm_CompanyGatewayListVM_fromStore$closure", "CompanyGatewayListVM_fromStore", 4168); - _static_1(A, "company_gateway_screen_vm_CompanyGatewayScreenVM_fromStore$closure", "CompanyGatewayScreenVM_fromStore", 4169); + _instance_2_u(A._ClientViewDetailsState.prototype, "get$_client_view_details$_launchStatus", "_client_view_details$_launchStatus$2", 726); + _static_1(A, "company_gateway_list_vm_CompanyGatewayListVM_fromStore$closure", "CompanyGatewayListVM_fromStore", 4176); + _static_1(A, "company_gateway_screen_vm_CompanyGatewayScreenVM_fromStore$closure", "CompanyGatewayScreenVM_fromStore", 4177); _instance_0_u(A._GatewayConfigFieldState.prototype, "get$_company_gateway_edit$_onChanged", "_company_gateway_edit$_onChanged$0", 0); _instance_0_u(A._LimitEditorState.prototype, "get$_onTextChange", "_onTextChange$0", 0); _instance_0_u(A._FeesEditorState.prototype, "get$_company_gateway_edit$_onChanged", "_company_gateway_edit$_onChanged$0", 0); - _static_1(A, "credit_list_vm_CreditListVM_fromStore$closure", "CreditListVM_fromStore", 4170); - _static_1(A, "credit_screen_vm_CreditScreenVM_fromStore$closure", "CreditScreenVM_fromStore", 4171); + _static_1(A, "credit_list_vm_CreditListVM_fromStore$closure", "CreditListVM_fromStore", 4178); + _static_1(A, "credit_screen_vm_CreditScreenVM_fromStore$closure", "CreditScreenVM_fromStore", 4179); _instance_1_u(A._DashboardChartState.prototype, "get$_onSelectionChanged", "_onSelectionChanged$1", 2747); _instance_0_u(_ = A._DashboardScreenState.prototype, "get$onScrollListener", "onScrollListener$0", 0); _instance_0_u(_, "get$onTabListener", "onTabListener$0", 0); - _static_1(A, "dashboard_screen_vm_DashboardVM_fromStore$closure", "DashboardVM_fromStore", 4172); - _static_1(A, "design_list_vm_DesignListVM_fromStore$closure", "DesignListVM_fromStore", 4173); - _static_1(A, "design_screen_vm_DesignScreenVM_fromStore$closure", "DesignScreenVM_fromStore", 4174); + _static_1(A, "dashboard_screen_vm_DashboardVM_fromStore$closure", "DashboardVM_fromStore", 4180); + _static_1(A, "design_list_vm_DesignListVM_fromStore$closure", "DesignListVM_fromStore", 4181); + _static_1(A, "design_screen_vm_DesignScreenVM_fromStore$closure", "DesignScreenVM_fromStore", 4182); _instance(_ = A._DesignEditState.prototype, "get$_design_edit$_onChanged", 0, 0, function() { return {debounce: true}; }, ["call$1$debounce", "call$0"], ["_design_edit$_onChanged$1$debounce", "_design_edit$_onChanged$0"], 2786, 0, 0); _instance_0_u(_, "get$_onHtmlChanged", "_onHtmlChanged$0", 0); _instance_1_u(_, "get$_loadDesign", "_loadDesign$1", 2787); - _static_1(A, "document_list_vm_DocumentListVM_fromStore$closure", "DocumentListVM_fromStore", 4175); - _static_1(A, "document_screen_vm_DocumentScreenVM_fromStore$closure", "DocumentScreenVM_fromStore", 4176); + _static_1(A, "document_list_vm_DocumentListVM_fromStore$closure", "DocumentListVM_fromStore", 4183); + _static_1(A, "document_screen_vm_DocumentScreenVM_fromStore$closure", "DocumentScreenVM_fromStore", 4184); _instance_0_u(A._DocumentEditState.prototype, "get$_document_edit$_onChanged", "_document_edit$_onChanged$0", 0); _instance_0_u(A.ExpenseEditDetailsState.prototype, "get$_expense_edit_details$_onChanged", "_expense_edit_details$_onChanged$0", 0); _instance_0_u(A.ExpenseEditNotesState.prototype, "get$_expense_edit_notes$_onChanged", "_expense_edit_notes$_onChanged$0", 0); _instance_0_u(A.ExpenseEditSettingsState.prototype, "get$_expense_edit_settings$_onChanged", "_expense_edit_settings$_onChanged$0", 0); - _static_1(A, "expense_list_vm_ExpenseListVM_fromStore$closure", "ExpenseListVM_fromStore", 4177); - _static_1(A, "expense_screen_vm_ExpenseScreenVM_fromStore$closure", "ExpenseScreenVM_fromStore", 4178); + _static_1(A, "expense_list_vm_ExpenseListVM_fromStore$closure", "ExpenseListVM_fromStore", 4185); + _static_1(A, "expense_screen_vm_ExpenseScreenVM_fromStore$closure", "ExpenseScreenVM_fromStore", 4186); _instance_0_u(A._ExpenseViewState.prototype, "get$_expense_view$_onTabChanged", "_expense_view$_onTabChanged$0", 0); _instance_0_u(A._ExpenseCategoryEditState.prototype, "get$_expense_category_edit$_onChanged", "_expense_category_edit$_onChanged$0", 0); - _static_1(A, "expense_category_list_vm_ExpenseCategoryListVM_fromStore$closure", "ExpenseCategoryListVM_fromStore", 4179); - _static_1(A, "expense_category_screen_vm_ExpenseCategoryScreenVM_fromStore$closure", "ExpenseCategoryScreenVM_fromStore", 4180); + _static_1(A, "expense_category_list_vm_ExpenseCategoryListVM_fromStore$closure", "ExpenseCategoryListVM_fromStore", 4187); + _static_1(A, "expense_category_screen_vm_ExpenseCategoryScreenVM_fromStore$closure", "ExpenseCategoryScreenVM_fromStore", 4188); _instance_0_u(A._GroupEditState.prototype, "get$_group_edit$_onChanged", "_group_edit$_onChanged$0", 0); - _static_1(A, "group_list_vm_GroupListVM_fromStore$closure", "GroupListVM_fromStore", 4181); - _static_1(A, "group_screen_vm_GroupScreenVM_fromStore$closure", "GroupScreenVM_fromStore", 4182); + _static_1(A, "group_list_vm_GroupListVM_fromStore$closure", "GroupListVM_fromStore", 4189); + _static_1(A, "group_screen_vm_GroupScreenVM_fromStore$closure", "GroupScreenVM_fromStore", 4190); _instance_0_u(_ = A.InvoiceEditDesktopState.prototype, "get$_invoice_edit_desktop$_onChanged", "_invoice_edit_desktop$_onChanged$0", 0); _instance_1_u(_, "get$_invoice_edit_desktop$_onSavePressed", "_invoice_edit_desktop$_onSavePressed$1", 21); _instance_0_u(A.InvoiceEditDetailsState.prototype, "get$_invoice_edit_details$_onChanged", "_invoice_edit_details$_onChanged$0", 0); _instance_0_u(A.ItemEditDetailsState.prototype, "get$_invoice_edit_items$_onTextChanged", "_invoice_edit_items$_onTextChanged$0", 0); _instance_0_u(A.InvoiceEditNotesState.prototype, "get$_invoice_edit_notes$_onChanged", "_invoice_edit_notes$_onChanged$0", 0); - _static_1(A, "invoice_list_vm_InvoiceListVM_fromStore$closure", "InvoiceListVM_fromStore", 4183); - _static_1(A, "invoice_screen_vm_InvoiceScreenVM_fromStore$closure", "InvoiceScreenVM_fromStore", 4184); + _static_1(A, "invoice_list_vm_InvoiceListVM_fromStore$closure", "InvoiceListVM_fromStore", 4191); + _static_1(A, "invoice_screen_vm_InvoiceScreenVM_fromStore$closure", "InvoiceScreenVM_fromStore", 4192); _instance_0_u(A._InvoiceViewState.prototype, "get$_invoice_view$_onTabChanged", "_invoice_view$_onTabChanged$0", 0); _instance_0_u(_ = A._PaymentEditState.prototype, "get$_payment_edit$_onChanged", "_payment_edit$_onChanged$0", 0); _instance_1_u(_, "get$_payment_edit$_onSavePressed", "_payment_edit$_onSavePressed$1", 21); _instance(A._PaymentableEditorState.prototype, "get$_payment_edit$_onChanged", 0, 0, function() { return [null]; }, ["call$1", "call$0"], ["_payment_edit$_onChanged$1", "_payment_edit$_onChanged$0"], 793, 0, 0); - _static_1(A, "payment_list_vm_PaymentListVM_fromStore$closure", "PaymentListVM_fromStore", 4185); - _static_1(A, "payment_screen_vm_PaymentScreenVM_fromStore$closure", "PaymentScreenVM_fromStore", 4186); + _static_1(A, "payment_list_vm_PaymentListVM_fromStore$closure", "PaymentListVM_fromStore", 4193); + _static_1(A, "payment_screen_vm_PaymentScreenVM_fromStore$closure", "PaymentScreenVM_fromStore", 4194); _instance_0_u(A._PaymentRefundState.prototype, "get$_payment_refund$_onChanged", "_payment_refund$_onChanged$0", 0); _instance(A._PaymentableEditorState0.prototype, "get$_payment_refund$_onChanged", 0, 0, function() { return [null]; }, ["call$1", "call$0"], ["_payment_refund$_onChanged$1", "_payment_refund$_onChanged$0"], 793, 0, 0); _instance_0_u(A._PaymentTermEditState.prototype, "get$_payment_term_edit$_onChanged", "_payment_term_edit$_onChanged$0", 0); - _static_1(A, "payment_term_list_vm_PaymentTermListVM_fromStore$closure", "PaymentTermListVM_fromStore", 4187); - _static_1(A, "payment_term_screen_vm_PaymentTermScreenVM_fromStore$closure", "PaymentTermScreenVM_fromStore", 4188); + _static_1(A, "payment_term_list_vm_PaymentTermListVM_fromStore$closure", "PaymentTermListVM_fromStore", 4195); + _static_1(A, "payment_term_screen_vm_PaymentTermScreenVM_fromStore$closure", "PaymentTermScreenVM_fromStore", 4196); _instance_0_u(_ = A._ProductEditState.prototype, "get$_product_edit$_onChanged", "_product_edit$_onChanged$0", 0); _instance_1_u(_, "get$_product_edit$_onSavePressed", "_product_edit$_onSavePressed$1", 21); - _static_1(A, "product_list_vm_ProductListVM_fromStore$closure", "ProductListVM_fromStore", 4189); - _static_1(A, "product_screen_vm_ProductScreenVM_fromStore$closure", "ProductScreenVM_fromStore", 4190); + _static_1(A, "product_list_vm_ProductListVM_fromStore$closure", "ProductListVM_fromStore", 4197); + _static_1(A, "product_screen_vm_ProductScreenVM_fromStore$closure", "ProductScreenVM_fromStore", 4198); _instance_0_u(A._ProductViewState.prototype, "get$_product_view$_onTabChanged", "_product_view$_onTabChanged$0", 0); _instance_0_u(_ = A._ProjectEditState.prototype, "get$_project_edit$_onChanged", "_project_edit$_onChanged$0", 0); _instance_1_u(_, "get$_project_edit$_onSavePressed", "_project_edit$_onSavePressed$1", 21); - _static_1(A, "project_list_vm_ProjectListVM_fromStore$closure", "ProjectListVM_fromStore", 4191); - _static_1(A, "project_screen_vm_ProjectScreenVM_fromStore$closure", "ProjectScreenVM_fromStore", 4192); + _static_1(A, "project_list_vm_ProjectListVM_fromStore$closure", "ProjectListVM_fromStore", 4199); + _static_1(A, "project_screen_vm_ProjectScreenVM_fromStore$closure", "ProjectScreenVM_fromStore", 4200); _instance_0_u(A._ProjectViewState.prototype, "get$_project_view$_onTabChanged", "_project_view$_onTabChanged$0", 0); - _static_1(A, "purchase_order_list_vm_PurchaseOrderListVM_fromStore$closure", "PurchaseOrderListVM_fromStore", 4193); - _static_1(A, "purchase_order_screen_vm_PurchaseOrderScreenVM_fromStore$closure", "PurchaseOrderScreenVM_fromStore", 4194); - _static_1(A, "quote_list_vm_QuoteListVM_fromStore$closure", "QuoteListVM_fromStore", 4195); - _static_1(A, "quote_screen_vm_QuoteScreenVM_fromStore$closure", "QuoteScreenVM_fromStore", 4196); - _static_1(A, "recurring_expense_list_vm_RecurringExpenseListVM_fromStore$closure", "RecurringExpenseListVM_fromStore", 4197); - _static_1(A, "recurring_expense_screen_vm_RecurringExpenseScreenVM_fromStore$closure", "RecurringExpenseScreenVM_fromStore", 4198); - _static_1(A, "recurring_invoice_list_vm_RecurringInvoiceListVM_fromStore$closure", "RecurringInvoiceListVM_fromStore", 4199); - _static_1(A, "recurring_invoice_screen_vm_RecurringInvoiceScreenVM_fromStore$closure", "RecurringInvoiceScreenVM_fromStore", 4200); - _static_1(A, "reports_screen_vm_ReportsScreenVM_fromStore$closure", "ReportsScreenVM_fromStore", 4201); + _static_1(A, "purchase_order_list_vm_PurchaseOrderListVM_fromStore$closure", "PurchaseOrderListVM_fromStore", 4201); + _static_1(A, "purchase_order_screen_vm_PurchaseOrderScreenVM_fromStore$closure", "PurchaseOrderScreenVM_fromStore", 4202); + _static_1(A, "quote_list_vm_QuoteListVM_fromStore$closure", "QuoteListVM_fromStore", 4203); + _static_1(A, "quote_screen_vm_QuoteScreenVM_fromStore$closure", "QuoteScreenVM_fromStore", 4204); + _static_1(A, "recurring_expense_list_vm_RecurringExpenseListVM_fromStore$closure", "RecurringExpenseListVM_fromStore", 4205); + _static_1(A, "recurring_expense_screen_vm_RecurringExpenseScreenVM_fromStore$closure", "RecurringExpenseScreenVM_fromStore", 4206); + _static_1(A, "recurring_invoice_list_vm_RecurringInvoiceListVM_fromStore$closure", "RecurringInvoiceListVM_fromStore", 4207); + _static_1(A, "recurring_invoice_screen_vm_RecurringInvoiceScreenVM_fromStore$closure", "RecurringInvoiceScreenVM_fromStore", 4208); + _static_1(A, "reports_screen_vm_ReportsScreenVM_fromStore$closure", "ReportsScreenVM_fromStore", 4209); _instance_0_u(A._ScheduleEditState.prototype, "get$_schedule_edit$_onChanged", "_schedule_edit$_onChanged$0", 0); - _static_1(A, "schedule_list_vm_ScheduleListVM_fromStore$closure", "ScheduleListVM_fromStore", 4202); - _static_1(A, "schedule_screen_vm_ScheduleScreenVM_fromStore$closure", "ScheduleScreenVM_fromStore", 4203); + _static_1(A, "schedule_list_vm_ScheduleListVM_fromStore$closure", "ScheduleListVM_fromStore", 4210); + _static_1(A, "schedule_screen_vm_ScheduleScreenVM_fromStore$closure", "ScheduleScreenVM_fromStore", 4211); _instance_0_u(_ = A._AccountManagementState.prototype, "get$_onTabChanged", "_onTabChanged$0", 0); _instance_0_u(_, "get$_account_management$_onChanged", "_account_management$_onChanged$0", 0); - _static_1(A, "account_management_vm_AccountManagementVM_fromStore$closure", "AccountManagementVM_fromStore", 4204); + _static_1(A, "account_management_vm_AccountManagementVM_fromStore$closure", "AccountManagementVM_fromStore", 4212); _instance_0_u(_ = A._ClientPortalState.prototype, "get$_client_portal$_onTabChanged", "_client_portal$_onTabChanged$0", 0); _instance_0_u(_, "get$_client_portal$_onChanged", "_client_portal$_onChanged$0", 0); _instance_1_u(_, "get$_client_portal$_onSavePressed", "_client_portal$_onSavePressed$1", 21); - _static_1(A, "client_portal_vm_ClientPortalVM_fromStore$closure", "ClientPortalVM_fromStore", 4205); + _static_1(A, "client_portal_vm_ClientPortalVM_fromStore$closure", "ClientPortalVM_fromStore", 4213); _instance_0_u(_ = A._CompanyDetailsState.prototype, "get$_company_details$_onTabChanged", "_company_details$_onTabChanged$0", 0); _instance_0_u(_, "get$_onSettingsChanged", "_onSettingsChanged$0", 0); - _static_1(A, "company_details_vm_CompanyDetailsVM_fromStore$closure", "CompanyDetailsVM_fromStore", 4206); + _static_1(A, "company_details_vm_CompanyDetailsVM_fromStore$closure", "CompanyDetailsVM_fromStore", 4214); _instance_0_u(A._CreditCardsAndBanksState.prototype, "get$_credit_cards_and_banks$_onChanged", "_credit_cards_and_banks$_onChanged$0", 0); - _static_1(A, "credit_cards_and_banks_vm_CreditCardsAndBanksVM_fromStore$closure", "CreditCardsAndBanksVM_fromStore", 4207); + _static_1(A, "credit_cards_and_banks_vm_CreditCardsAndBanksVM_fromStore$closure", "CreditCardsAndBanksVM_fromStore", 4215); _instance_0_u(A._CustomFieldsState.prototype, "get$_custom_fields$_onTabChanged", "_custom_fields$_onTabChanged$0", 0); _instance_0_u(A._CustomFormFieldState.prototype, "get$_custom_fields$_onChanged", "_custom_fields$_onChanged$0", 0); - _static_1(A, "custom_fields_vm_CustomFieldsVM_fromStore$closure", "CustomFieldsVM_fromStore", 4208); + _static_1(A, "custom_fields_vm_CustomFieldsVM_fromStore$closure", "CustomFieldsVM_fromStore", 4216); _instance_0_u(A._DataVisualizationsState.prototype, "get$_data_visualizations$_onChanged", "_data_visualizations$_onChanged$0", 0); - _static_1(A, "data_visualizations_vm_DataVisualizationsVM_fromStore$closure", "DataVisualizationsVM_fromStore", 4209); + _static_1(A, "data_visualizations_vm_DataVisualizationsVM_fromStore$closure", "DataVisualizationsVM_fromStore", 4217); _instance_0_u(_ = A._DeviceSettingsState.prototype, "get$_device_settings$_onChanged", "_device_settings$_onChanged$0", 0); _instance_0_u(_, "get$_device_settings$_onTabChanged", "_device_settings$_onTabChanged$0", 0); - _static_1(A, "device_settings_vm_DeviceSettingsVM_fromStore$closure", "DeviceSettingsVM_fromStore", 4210); + _static_1(A, "device_settings_vm_DeviceSettingsVM_fromStore$closure", "DeviceSettingsVM_fromStore", 4218); _instance_0_u(_ = A._EmailSettingsState.prototype, "get$_email_settings$_onChanged", "_email_settings$_onChanged$0", 0); _instance_1_u(_, "get$_email_settings$_onSavePressed", "_email_settings$_onSavePressed$1", 21); - _static_1(A, "email_settings_vm_EmailSettingsVM_fromStore$closure", "EmailSettingsVM_fromStore", 4211); - _static_1(A, "expense_settings_vm_ExpenseSettingsVM_fromStore$closure", "ExpenseSettingsVM_fromStore", 4212); + _static_1(A, "email_settings_vm_EmailSettingsVM_fromStore$closure", "EmailSettingsVM_fromStore", 4219); + _static_1(A, "expense_settings_vm_ExpenseSettingsVM_fromStore$closure", "ExpenseSettingsVM_fromStore", 4220); _instance_0_u(_ = A._GeneratedNumbersState.prototype, "get$_generated_numbers$_onTabChanged", "_generated_numbers$_onTabChanged$0", 0); _instance_0_u(_, "get$_generated_numbers$_onChanged", "_generated_numbers$_onChanged$0", 0); _instance_1_u(_, "get$_generated_numbers$_onSavePressed", "_generated_numbers$_onSavePressed$1", 21); _instance_0_u(A._EntityNumberSettingsState.prototype, "get$_generated_numbers$_onChanged", "_generated_numbers$_onChanged$0", 0); - _static_1(A, "generated_numbers_vm_GeneratedNumbersVM_fromStore$closure", "GeneratedNumbersVM_fromStore", 4213); - _static_1(A, "import_export_vm_ImportExportVM_fromStore$closure", "ImportExportVM_fromStore", 4214); + _static_1(A, "generated_numbers_vm_GeneratedNumbersVM_fromStore$closure", "GeneratedNumbersVM_fromStore", 4221); + _static_1(A, "import_export_vm_ImportExportVM_fromStore$closure", "ImportExportVM_fromStore", 4222); _instance_0_u(_ = A._InvoiceDesignState.prototype, "get$_invoice_design$_onTabChanged", "_invoice_design$_onTabChanged$0", 0); _instance_0_u(_, "get$_invoice_design$_onChanged", "_invoice_design$_onChanged$0", 0); - _static_1(A, "invoice_design_vm_InvoiceDesignVM_fromStore$closure", "InvoiceDesignVM_fromStore", 4215); + _static_1(A, "invoice_design_vm_InvoiceDesignVM_fromStore$closure", "InvoiceDesignVM_fromStore", 4223); _instance_0_u(_ = A._LocalizationSettingsState.prototype, "get$_localization_settings$_onTabChanged", "_localization_settings$_onTabChanged$0", 0); _instance_0_u(_, "get$_localization_settings$_onChanged", "_localization_settings$_onChanged$0", 0); - _static_1(A, "localization_vm_LocalizationSettingsVM_fromStore$closure", "LocalizationSettingsVM_fromStore", 4216); + _static_1(A, "localization_vm_LocalizationSettingsVM_fromStore$closure", "LocalizationSettingsVM_fromStore", 4224); _instance_0_u(A._PaymentSettingsState.prototype, "get$_payment_settings$_onChanged", "_payment_settings$_onChanged$0", 0); - _static_1(A, "payment_settings_vm_PaymentSettingsVM_fromStore$closure", "PaymentSettingsVM_fromStore", 4217); + _static_1(A, "payment_settings_vm_PaymentSettingsVM_fromStore$closure", "PaymentSettingsVM_fromStore", 4225); _instance_0_u(A._ProductSettingsState.prototype, "get$_product_settings$_onChanged", "_product_settings$_onChanged$0", 0); - _static_1(A, "product_settings_vm_ProductSettingsVM_fromStore$closure", "ProductSettingsVM_fromStore", 4218); - _static_1(A, "settings_list_vm_SettingsListVM_fromStore$closure", "SettingsListVM_fromStore", 4219); - _static_1(A, "settings_screen_vm_SettingsScreenVM_fromStore$closure", "SettingsScreenVM_fromStore", 4220); + _static_1(A, "product_settings_vm_ProductSettingsVM_fromStore$closure", "ProductSettingsVM_fromStore", 4226); + _static_1(A, "settings_list_vm_SettingsListVM_fromStore$closure", "SettingsListVM_fromStore", 4227); + _static_1(A, "settings_screen_vm_SettingsScreenVM_fromStore$closure", "SettingsScreenVM_fromStore", 4228); _instance_0_u(A._SettingsWizardState.prototype, "get$_settings_wizard$_onSavePressed", "_settings_wizard$_onSavePressed$0", 0); _instance_0_u(A._TaskSettingsState.prototype, "get$_task_settings$_onChanged", "_task_settings$_onChanged$0", 0); - _static_1(A, "task_settings_vm_TaskSettingsVM_fromStore$closure", "TaskSettingsVM_fromStore", 4221); + _static_1(A, "task_settings_vm_TaskSettingsVM_fromStore$closure", "TaskSettingsVM_fromStore", 4229); _instance_0_u(A.__EditSubregionDialogState.prototype, "get$_tax_settings$_onDone", "_tax_settings$_onDone$0", 0); - _static_1(A, "tax_settings_vm_TaxSettingsVM_fromStore$closure", "TaxSettingsVM_fromStore", 4222); + _static_1(A, "tax_settings_vm_TaxSettingsVM_fromStore$closure", "TaxSettingsVM_fromStore", 4230); _instance_0_u(_ = A._TemplatesAndRemindersState.prototype, "get$_onTextChanged", "_onTextChanged$0", 0); _instance_0_u(_, "get$_templates_and_reminders$_onTabChanged", "_templates_and_reminders$_onTabChanged$0", 0); _instance_0_u(A._ReminderSettingsState.prototype, "get$_onTextChanged", "_onTextChanged$0", 0); - _static_1(A, "templates_and_reminders_vm_TemplatesAndRemindersVM_fromStore$closure", "TemplatesAndRemindersVM_fromStore", 4223); + _static_1(A, "templates_and_reminders_vm_TemplatesAndRemindersVM_fromStore$closure", "TemplatesAndRemindersVM_fromStore", 4231); _instance_0_u(_ = A._UserDetailsState.prototype, "get$_user_details$_onTabChanged", "_user_details$_onTabChanged$0", 0); _instance_0_u(_, "get$_user_details$_onChanged", "_user_details$_onChanged$0", 0); _instance_1_u(_, "get$_user_details$_onSavePressed", "_user_details$_onSavePressed$1", 21); - _static_1(A, "user_details_vm_UserDetailsVM_fromStore$closure", "UserDetailsVM_fromStore", 4224); + _static_1(A, "user_details_vm_UserDetailsVM_fromStore$closure", "UserDetailsVM_fromStore", 4232); _instance_0_u(A._WorkflowSettingsState.prototype, "get$_workflow_settings$_onTabChanged", "_workflow_settings$_onTabChanged$0", 0); - _static_1(A, "workflow_vm_WorkflowSettingsVM_fromStore$closure", "WorkflowSettingsVM_fromStore", 4225); + _static_1(A, "workflow_vm_WorkflowSettingsVM_fromStore$closure", "WorkflowSettingsVM_fromStore", 4233); _instance_0_u(_ = A._SubscriptionEditState.prototype, "get$_subscription_edit$_onTabChanged", "_subscription_edit$_onTabChanged$0", 0); _instance_0_u(_, "get$_subscription_edit$_onChanged", "_subscription_edit$_onChanged$0", 0); _instance_1_u(_, "get$_subscription_edit$_onSavePressed", "_subscription_edit$_onSavePressed$1", 21); - _static_1(A, "subscription_list_vm_SubscriptionListVM_fromStore$closure", "SubscriptionListVM_fromStore", 4226); - _static_1(A, "subscription_screen_vm_SubscriptionScreenVM_fromStore$closure", "SubscriptionScreenVM_fromStore", 4227); + _static_1(A, "subscription_list_vm_SubscriptionListVM_fromStore$closure", "SubscriptionListVM_fromStore", 4234); + _static_1(A, "subscription_screen_vm_SubscriptionScreenVM_fromStore$closure", "SubscriptionScreenVM_fromStore", 4235); _instance_0_u(A._TaskEditDesktopState.prototype, "get$_task_edit_desktop$_onChanged", "_task_edit_desktop$_onChanged$0", 0); _instance_0_u(A._TaskEditDetailsState.prototype, "get$_task_edit_details$_onChanged", "_task_edit_details$_onChanged$0", 0); _instance_0_u(A._KanbanStatusCardState.prototype, "get$_kanban_status$_onSavePressed", "_kanban_status$_onSavePressed$0", 0); - _static_1(A, "kanban_view_vm_KanbanVM_fromStore$closure", "KanbanVM_fromStore", 4228); - _static_1(A, "task_list_vm_TaskListVM_fromStore$closure", "TaskListVM_fromStore", 4229); - _static_1(A, "task_screen_vm_TaskScreenVM_fromStore$closure", "TaskScreenVM_fromStore", 4230); + _static_1(A, "kanban_view_vm_KanbanVM_fromStore$closure", "KanbanVM_fromStore", 4236); + _static_1(A, "task_list_vm_TaskListVM_fromStore$closure", "TaskListVM_fromStore", 4237); + _static_1(A, "task_screen_vm_TaskScreenVM_fromStore$closure", "TaskScreenVM_fromStore", 4238); _instance_0_u(A._TaskViewState.prototype, "get$_task_view$_onTabChanged", "_task_view$_onTabChanged$0", 0); _instance_0_u(_ = A._TaskStatusEditState.prototype, "get$_task_status_edit$_onChanged", "_task_status_edit$_onChanged$0", 0); _instance_1_u(_, "get$_task_status_edit$_onSavePressed", "_task_status_edit$_onSavePressed$1", 21); - _static_1(A, "task_status_list_vm_TaskStatusListVM_fromStore$closure", "TaskStatusListVM_fromStore", 4231); - _static_1(A, "task_status_screen_vm_TaskStatusScreenVM_fromStore$closure", "TaskStatusScreenVM_fromStore", 4232); + _static_1(A, "task_status_list_vm_TaskStatusListVM_fromStore$closure", "TaskStatusListVM_fromStore", 4239); + _static_1(A, "task_status_screen_vm_TaskStatusScreenVM_fromStore$closure", "TaskStatusScreenVM_fromStore", 4240); _instance_0_u(_ = A._TaxRateEditState.prototype, "get$_tax_rate_edit$_onChanged", "_tax_rate_edit$_onChanged$0", 0); _instance_1_u(_, "get$_tax_rate_edit$_onSavePressed", "_tax_rate_edit$_onSavePressed$1", 21); - _static_1(A, "tax_rate_list_vm_TaxRateListVM_fromStore$closure", "TaxRateListVM_fromStore", 4233); - _static_1(A, "tax_rate_screen_vm_TaxRateScreenVM_fromStore$closure", "TaxRateScreenVM_fromStore", 4234); + _static_1(A, "tax_rate_list_vm_TaxRateListVM_fromStore$closure", "TaxRateListVM_fromStore", 4241); + _static_1(A, "tax_rate_screen_vm_TaxRateScreenVM_fromStore$closure", "TaxRateScreenVM_fromStore", 4242); _instance_0_u(_ = A._TokenEditState.prototype, "get$_token_edit$_onChanged", "_token_edit$_onChanged$0", 0); _instance_1_u(_, "get$_token_edit$_onSavePressed", "_token_edit$_onSavePressed$1", 21); - _static_1(A, "token_list_vm_TokenListVM_fromStore$closure", "TokenListVM_fromStore", 4235); - _static_1(A, "token_screen_vm_TokenScreenVM_fromStore$closure", "TokenScreenVM_fromStore", 4236); + _static_1(A, "token_list_vm_TokenListVM_fromStore$closure", "TokenListVM_fromStore", 4243); + _static_1(A, "token_screen_vm_TokenScreenVM_fromStore$closure", "TokenScreenVM_fromStore", 4244); _instance_0_u(A._TransactionEditState.prototype, "get$_transaction_edit$_onChanged", "_transaction_edit$_onChanged$0", 0); - _static_1(A, "transaction_list_vm_TransactionListVM_fromStore$closure", "TransactionListVM_fromStore", 4237); - _static_1(A, "transaction_screen_vm_TransactionScreenVM_fromStore$closure", "TransactionScreenVM_fromStore", 4238); + _static_1(A, "transaction_list_vm_TransactionListVM_fromStore$closure", "TransactionListVM_fromStore", 4245); + _static_1(A, "transaction_screen_vm_TransactionScreenVM_fromStore$closure", "TransactionScreenVM_fromStore", 4246); _instance_0_u(A._TransactionRuleEditState.prototype, "get$_transaction_rule_edit$_onChanged", "_transaction_rule_edit$_onChanged$0", 0); _instance_0_u(A.__RuleCriteriaState.prototype, "get$onDonePressed", "onDonePressed$0", 0); - _static_1(A, "transaction_rule_list_vm_TransactionRuleListVM_fromStore$closure", "TransactionRuleListVM_fromStore", 4239); - _static_1(A, "transaction_rule_screen_vm_TransactionRuleScreenVM_fromStore$closure", "TransactionRuleScreenVM_fromStore", 4240); + _static_1(A, "transaction_rule_list_vm_TransactionRuleListVM_fromStore$closure", "TransactionRuleListVM_fromStore", 4247); + _static_1(A, "transaction_rule_screen_vm_TransactionRuleScreenVM_fromStore$closure", "TransactionRuleScreenVM_fromStore", 4248); _instance_0_u(_ = A._UserEditState.prototype, "get$_user_edit$_onChanged", "_user_edit$_onChanged$0", 0); _instance_1_u(_, "get$_user_edit$_onSavePressed", "_user_edit$_onSavePressed$1", 21); - _static_1(A, "user_list_vm_UserListVM_fromStore$closure", "UserListVM_fromStore", 4241); - _static_1(A, "user_screen_vm_UserScreenVM_fromStore$closure", "UserScreenVM_fromStore", 4242); + _static_1(A, "user_list_vm_UserListVM_fromStore$closure", "UserListVM_fromStore", 4249); + _static_1(A, "user_screen_vm_UserScreenVM_fromStore$closure", "UserScreenVM_fromStore", 4250); _instance_0_u(A.VendorEditAddressState.prototype, "get$_vendor_edit_address$_onChanged", "_vendor_edit_address$_onChanged$0", 0); _instance_0_u(A.VendorContactEditDetailsState.prototype, "get$_vendor_edit_contacts$_onChanged", "_vendor_edit_contacts$_onChanged$0", 0); _instance_0_u(_ = A.VendorEditDetailsState.prototype, "get$_vendor_edit_details$_onChanged", "_vendor_edit_details$_onChanged$0", 0); _instance_1_u(_, "get$_vendor_edit_details$_onSavePressed", "_vendor_edit_details$_onSavePressed$1", 21); _instance_0_u(A.VendorEditNotesState.prototype, "get$_vendor_edit_notes$_onChanged", "_vendor_edit_notes$_onChanged$0", 0); - _static_1(A, "vendor_list_vm_VendorListVM_fromStore$closure", "VendorListVM_fromStore", 4243); - _static_1(A, "vendor_screen_vm_VendorScreenVM_fromStore$closure", "VendorScreenVM_fromStore", 4244); + _static_1(A, "vendor_list_vm_VendorListVM_fromStore$closure", "VendorListVM_fromStore", 4251); + _static_1(A, "vendor_screen_vm_VendorScreenVM_fromStore$closure", "VendorScreenVM_fromStore", 4252); _instance_0_u(A._VendorViewState.prototype, "get$_vendor_view$_onTabChanged", "_vendor_view$_onTabChanged$0", 0); - _instance_2_u(A._VendorViewDetailsState.prototype, "get$_launchStatus", "_launchStatus$2", 727); + _instance_2_u(A._VendorViewDetailsState.prototype, "get$_launchStatus", "_launchStatus$2", 726); _instance_0_u(_ = A._WebhookEditState.prototype, "get$_webhook_edit$_onChanged", "_webhook_edit$_onChanged$0", 0); _instance_1_u(_, "get$_webhook_edit$_onSavePressed", "_webhook_edit$_onSavePressed$1", 21); - _static_1(A, "webhook_list_vm_WebhookListVM_fromStore$closure", "WebhookListVM_fromStore", 4245); - _static_1(A, "webhook_screen_vm_WebhookScreenVM_fromStore$closure", "WebhookScreenVM_fromStore", 4246); + _static_1(A, "webhook_list_vm_WebhookListVM_fromStore$closure", "WebhookListVM_fromStore", 4253); + _static_1(A, "webhook_screen_vm_WebhookScreenVM_fromStore$closure", "WebhookScreenVM_fromStore", 4254); _instance_1_u(_ = A._ExampleEditorState.prototype, "get$_super_editor$_onDocumentChange", "_super_editor$_onDocumentChange$1", 10); _instance_0_u(_, "get$_hideOrShowToolbar", "_hideOrShowToolbar$0", 0); _instance_0_u(_, "get$_hideEditorToolbar", "_hideEditorToolbar$0", 0); - _instance_1_u(_, "get$_buildFloatingToolbar", "_buildFloatingToolbar$1", 46); - _instance_1_u(_, "get$_buildImageToolbar", "_buildImageToolbar$1", 46); + _instance_1_u(_, "get$_buildFloatingToolbar", "_buildFloatingToolbar$1", 44); + _instance_1_u(_, "get$_buildImageToolbar", "_buildImageToolbar$1", 44); + _instance_1_u(_ = A._SuperEditorDemoTextItemSelectorState.prototype, "get$_onItemSelected", "_onItemSelected$1", 869); + _instance_1_u(_, "get$_super_editor_item_selector$_buildButton", "_super_editor_item_selector$_buildButton$1", 44); + _instance(_, "get$_buildPopoverListItem", 0, 4, null, ["call$4"], ["_buildPopoverListItem$4"], 3301, 0, 0); _instance_0_u(_ = A._EditorToolbarState.prototype, "get$_toggleBold", "_toggleBold$0", 0); _instance_0_u(_, "get$_toggleItalics", "_toggleItalics$0", 0); _instance_0_u(_, "get$_toggleStrikethrough", "_toggleStrikethrough$0", 0); _instance_0_u(_, "get$_onLinkPressed", "_onLinkPressed$0", 0); _instance_0_u(_, "get$_applyLink", "_applyLink$0", 0); - _instance_1_u(_, "get$_toolbar0$_onPerformAction", "_toolbar0$_onPerformAction$1", 281); + _instance_1_u(_, "get$_onBlockTypeSelected", "_onBlockTypeSelected$1", 869); + _instance_1_u(_, "get$_toolbar0$_onPerformAction", "_toolbar0$_onPerformAction$1", 290); _instance_0_u(_ = A._ImageFormatToolbarState.prototype, "get$_makeImageConfined", "_makeImageConfined$0", 0); _instance_0_u(_, "get$_makeImageFullBleed", "_makeImageFullBleed$0", 0); - _instance_1_u(A.ListSyntax.prototype, "get$_removeLeadingEmptyLine", "_removeLeadingEmptyLine$1", 3310); + _instance_1_u(A.ListSyntax.prototype, "get$_removeLeadingEmptyLine", "_removeLeadingEmptyLine$1", 3315); _instance_0_i(_ = A._MenuPageController.prototype, "get$next", "next$0", 0); _instance_0_u(_, "get$previous", "previous$0", 0); - _static_0(A, "path_provider__getApplicationDocumentsDirectory$closure", "getApplicationDocumentsDirectory", 4247); + _static_0(A, "path_provider__getApplicationDocumentsDirectory$closure", "getApplicationDocumentsDirectory", 4255); _instance_0_u(A._PinchZoomState.prototype, "get$_onAnimateReset", "_onAnimateReset$0", 0); - _static_2(A, "pinput_Pinput__defaultContextMenuBuilder$closure", "Pinput__defaultContextMenuBuilder", 366); + _static_2(A, "pinput_Pinput__defaultContextMenuBuilder$closure", "Pinput__defaultContextMenuBuilder", 435); _instance_0_u(_ = A._PinputState.prototype, "get$_handleTextEditingControllerChanges", "_handleTextEditingControllerChanges$0", 0); - _instance_2_u(_, "get$_pinput$_handleSelectionChanged", "_pinput$_handleSelectionChanged$2", 517); + _instance_2_u(_, "get$_pinput$_handleSelectionChanged", "_pinput$_handleSelectionChanged$2", 508); _instance_0_u(_, "get$_pinput$_handleSelectionHandleTapped", "_pinput$_handleSelectionHandleTapped$0", 0); - _instance(_, "get$_validator", 0, 0, null, ["call$1", "call$0"], ["_validator$1", "_validator$0"], 3324, 0, 0); + _instance(_, "get$_validator", 0, 0, null, ["call$1", "call$0"], ["_validator$1", "_validator$0"], 3329, 0, 0); _instance_0_u(_, "get$_semanticsOnTap", "_semanticsOnTap$0", 0); - _instance_2_u(A._PinItem.prototype, "get$_getTransition", "_getTransition$2", 537); - _instance_1_u(_ = A._PinputSelectionGestureDetectorBuilder.prototype, "get$onForcePressStart", "onForcePressStart$1", 172); - _instance_1_u(_, "get$onSingleTapUp", "onSingleTapUp$1", 308); + _instance_2_u(A._PinItem.prototype, "get$_getTransition", "_getTransition$2", 571); + _instance_1_u(_ = A._PinputSelectionGestureDetectorBuilder.prototype, "get$onForcePressStart", "onForcePressStart$1", 171); + _instance_1_u(_, "get$onSingleTapUp", "onSingleTapUp$1", 315); _instance_1_u(_, "get$onSingleLongTapEnd", "onSingleLongTapEnd$1", 273); - _instance_1_u(_, "get$onSingleLongTapStart", "onSingleLongTapStart$1", 233); - _static_1(A, "method_channel_MethodChannelPrinting__handleMethod$closure", "MethodChannelPrinting__handleMethod", 180); - _instance(A.PdfPrintAction.prototype, "get$_print", 0, 3, null, ["call$3"], ["_print$3"], 876, 0, 0); - _instance(A.PdfShareAction.prototype, "get$_share", 0, 3, null, ["call$3"], ["_share$3"], 876, 0, 0); - _instance_0_u(A.PdfPreviewState.prototype, "get$computeActualPageFormat", "computeActualPageFormat$0", 3334); + _instance_1_u(_, "get$onSingleLongTapStart", "onSingleLongTapStart$1", 225); + _static_1(A, "method_channel_MethodChannelPrinting__handleMethod$closure", "MethodChannelPrinting__handleMethod", 184); + _instance(A.PdfPrintAction.prototype, "get$_print", 0, 3, null, ["call$3"], ["_print$3"], 877, 0, 0); + _instance(A.PdfShareAction.prototype, "get$_share", 0, 3, null, ["call$3"], ["_share$3"], 877, 0, 0); + _instance_0_u(A.PdfPreviewState.prototype, "get$computeActualPageFormat", "computeActualPageFormat$0", 3339); _instance_2_u(A.TypedReducer.prototype, "get$$call", "call$2", "1(Object?,@)"); - _instance(A.TypedMiddleware.prototype, "get$$call", 0, 3, null, ["call$3"], ["call$3"], 3337, 0, 0); + _instance(A.TypedMiddleware.prototype, "get$$call", 0, 3, null, ["call$3"], ["call$3"], 3342, 0, 0); _instance_0_u(_ = A.RoundedLoadingButtonState.prototype, "get$_btnPressed", "_btnPressed$0", 0); _instance_0_i(_, "get$_rounded_loading_button$_start", "_rounded_loading_button$_start$0", 0); _instance_0_u(_, "get$_rounded_loading_button$_reset", "_rounded_loading_button$_reset$0", 0); _instance(_ = A.Subject.prototype, "get$_subject$_addError", 0, 1, function() { return [null]; - }, ["call$2", "call$1"], ["_subject$_addError$2", "_subject$_addError$1"], 470, 0, 0); - _instance_1_i(_, "get$add", "add$1", 44); - _instance_1_i(_, "get$_subject$_add", "_subject$_add$1", 44); - _instance_1_u(_ = A._StartWithStreamSink.prototype, "get$onData", "onData$1", 44); - _instance_2_i(_, "get$onError", "onError$2", 155); + }, ["call$2", "call$1"], ["_subject$_addError$2", "_subject$_addError$1"], 493, 0, 0); + _instance_1_i(_, "get$add", "add$1", 45); + _instance_1_i(_, "get$_subject$_add", "_subject$_add$1", 45); + _instance_1_u(_ = A._StartWithStreamSink.prototype, "get$onData", "onData$1", 45); + _instance_2_i(_, "get$onError", "onError$2", 162); _instance_0_u(_, "get$onDone", "onDone$0", 0); - _instance_1_u(_ = A._StartWithErrorStreamSink.prototype, "get$onData", "onData$1", 44); - _instance_2_i(_, "get$onError", "onError$2", 155); + _instance_1_u(_ = A._StartWithErrorStreamSink.prototype, "get$onData", "onData$1", 45); + _instance_2_i(_, "get$onError", "onError$2", 162); _instance_0_u(_, "get$onDone", "onDone$0", 0); - _instance_1_u(A.SentryFlutterWeb.prototype, "get$handleMethodCall", "handleMethodCall$1", 180); - _instance(A.SourceSpanMixin.prototype, "get$message", 1, 1, null, ["call$2$color", "call$1"], ["message$2$color", "message$1"], 3351, 0, 0); + _instance_1_u(A.SentryFlutterWeb.prototype, "get$handleMethodCall", "handleMethodCall$1", 184); + _instance(A.SourceSpanMixin.prototype, "get$message", 1, 1, null, ["call$2$color", "call$1"], ["message$2$color", "message$1"], 3356, 0, 0); _instance_0_u(A.InjectedImp.prototype, "get$dispose", "dispose$0", 0); - _instance_2_u(A.ReactiveModelImp.prototype, "get$middleSetCreator", "middleSetCreator$2", 3354); + _instance_2_u(A.ReactiveModelImp.prototype, "get$middleSetCreator", "middleSetCreator$2", 3359); _instance_0_u(A.DocumentComposer.prototype, "get$dispose", "dispose$0", 0); - _instance_0_u(A._CaretDocumentOverlayState.prototype, "get$_document_caret_overlay$_onSelectionChange", "_document_caret_overlay$_onSelectionChange$0", 0); + _instance_0_u(A.CaretDocumentOverlayState.prototype, "get$_document_caret_overlay$_onSelectionChange", "_document_caret_overlay$_onSelectionChange$0", 0); _instance_0_u(_ = A._EditorSelectionAndFocusPolicyState.prototype, "get$_document_focus_and_selection_policies$_onFocusChange", "_document_focus_and_selection_policies$_onFocusChange$0", 0); - _instance_0_u(_, "get$_document_focus_and_selection_policies$_onSelectionChange", "_document_focus_and_selection_policies$_onSelectionChange$0", 0); - _instance_1_u(_ = A._DocumentMouseInteractorState.prototype, "get$_document_gestures_mouse$_onSelectionChange", "_document_gestures_mouse$_onSelectionChange$1", 3399); - _instance_1_u(_, "get$_document_gestures_mouse$_onTapUp", "_document_gestures_mouse$_onTapUp$1", 113); + _instance_0_u(_, "get$_onSelectionChange", "_onSelectionChange$0", 0); + _instance_1_u(_ = A._DocumentMouseInteractorState.prototype, "get$_document_gestures_mouse$_onSelectionChange", "_document_gestures_mouse$_onSelectionChange$1", 3405); + _instance_1_u(_, "get$_document_gestures_mouse$_onTapUp", "_document_gestures_mouse$_onTapUp$1", 115); _instance_1_u(_, "get$_document_gestures_mouse$_onDoubleTapDown", "_document_gestures_mouse$_onDoubleTapDown$1", 50); _instance_0_u(_, "get$_document_gestures_mouse$_onDoubleTap", "_document_gestures_mouse$_onDoubleTap$0", 0); _instance_1_u(_, "get$_document_gestures_mouse$_onTripleTapDown", "_document_gestures_mouse$_onTripleTapDown$1", 50); _instance_0_u(_, "get$_document_gestures_mouse$_onTripleTap", "_document_gestures_mouse$_onTripleTap$0", 0); - _instance_1_u(_, "get$_document_gestures_mouse$_onPanStart", "_document_gestures_mouse$_onPanStart$1", 73); - _instance_1_u(_, "get$_document_gestures_mouse$_onPanUpdate", "_document_gestures_mouse$_onPanUpdate$1", 69); + _instance_1_u(_, "get$_document_gestures_mouse$_onPanStart", "_document_gestures_mouse$_onPanStart$1", 72); + _instance_1_u(_, "get$_document_gestures_mouse$_onPanUpdate", "_document_gestures_mouse$_onPanUpdate$1", 70); _instance_1_u(_, "get$_document_gestures_mouse$_onPanEnd", "_document_gestures_mouse$_onPanEnd$1", 94); _instance_0_u(_, "get$_document_gestures_mouse$_onPanCancel", "_document_gestures_mouse$_onPanCancel$0", 0); - _instance_1_u(_, "get$_scrollOnMouseWheel", "_scrollOnMouseWheel$1", 245); + _instance_1_u(_, "get$_scrollOnMouseWheel", "_scrollOnMouseWheel$1", 250); _instance_0_u(_, "get$_document_gestures_mouse$_updateDragSelection", "_document_gestures_mouse$_updateDragSelection$0", 0); - _instance_1_u(_, "get$_onMouseMove", "_onMouseMove$1", 247); + _instance_1_u(_, "get$_onMouseMove", "_onMouseMove$1", 240); _instance_0_u(_, "get$_updateMouseCursorAtLatestOffset", "_updateMouseCursorAtLatestOffset$0", 0); _instance_0_u(_ = A._AndroidDocumentTouchInteractorState.prototype, "get$_document_gestures_touch_android$_onScrollActivityChange", "_document_gestures_touch_android$_onScrollActivityChange$0", 0); _instance_1_u(_, "get$_document_gestures_touch_android$_onDocumentChange", "_document_gestures_touch_android$_onDocumentChange$1", 10); _instance_0_u(_, "get$_document_gestures_touch_android$_onSelectionChange", "_document_gestures_touch_android$_onSelectionChange$0", 0); _instance_1_u(_, "get$_document_gestures_touch_android$_onTapDown", "_document_gestures_touch_android$_onTapDown$1", 50); _instance_0_u(_, "get$_document_gestures_touch_android$_onLongPressDown", "_document_gestures_touch_android$_onLongPressDown$0", 0); - _instance_1_u(_, "get$_document_gestures_touch_android$_onTapUp", "_document_gestures_touch_android$_onTapUp$1", 113); + _instance_1_u(_, "get$_document_gestures_touch_android$_onTapUp", "_document_gestures_touch_android$_onTapUp$1", 115); _instance_1_u(_, "get$_document_gestures_touch_android$_onDoubleTapDown", "_document_gestures_touch_android$_onDoubleTapDown$1", 50); _instance_1_u(_, "get$_document_gestures_touch_android$_onTripleTapDown", "_document_gestures_touch_android$_onTripleTapDown$1", 50); - _instance_1_u(_, "get$_document_gestures_touch_android$_onPanStart", "_document_gestures_touch_android$_onPanStart$1", 73); - _instance_1_u(_, "get$_document_gestures_touch_android$_onPanUpdate", "_document_gestures_touch_android$_onPanUpdate$1", 69); - _instance_1_u(_, "get$_updateLongPressSelection", "_updateLongPressSelection$1", 887); + _instance_1_u(_, "get$_document_gestures_touch_android$_onPanStart", "_document_gestures_touch_android$_onPanStart$1", 72); + _instance_1_u(_, "get$_document_gestures_touch_android$_onPanUpdate", "_document_gestures_touch_android$_onPanUpdate$1", 70); + _instance_1_u(_, "get$_updateLongPressSelection", "_updateLongPressSelection$1", 889); _instance_1_u(_, "get$_document_gestures_touch_android$_onPanEnd", "_document_gestures_touch_android$_onPanEnd$1", 94); _instance_0_u(_, "get$_document_gestures_touch_android$_onPanCancel", "_document_gestures_touch_android$_onPanCancel$0", 0); - _instance_1_u(_ = A.SuperEditorAndroidControlsOverlayManagerState.prototype, "get$_onHandlePanUpdate", "_onHandlePanUpdate$1", 69); + _instance_1_u(_ = A.SuperEditorAndroidControlsOverlayManagerState.prototype, "get$_onHandlePanUpdate", "_onHandlePanUpdate$1", 70); _instance_1_u(_, "get$_onHandlePanEnd", "_onHandlePanEnd$1", 94); _instance_0_u(_, "get$_onHandlePanCancel", "_onHandlePanCancel$0", 0); _instance_0_u(_, "get$_onDocumentScroll", "_onDocumentScroll$0", 0); - _instance_1_u(_, "get$_document_gestures_touch_android$_buildOverlay", "_document_gestures_touch_android$_buildOverlay$1", 46); + _instance_1_u(_, "get$_document_gestures_touch_android$_buildOverlay", "_document_gestures_touch_android$_buildOverlay$1", 44); _instance_0_u(_ = A._IosDocumentTouchInteractorState.prototype, "get$_onScrollActivityChange", "_onScrollActivityChange$0", 0); _instance_1_u(_, "get$_onDocumentChange", "_onDocumentChange$1", 10); _instance_1_u(_, "get$_document_gestures_touch_ios$_onTapDown", "_document_gestures_touch_ios$_onTapDown$1", 50); _instance_0_u(_, "get$_onLongPressDown", "_onLongPressDown$0", 0); - _instance_1_u(_, "get$_document_gestures_touch_ios$_onTapUp", "_document_gestures_touch_ios$_onTapUp$1", 113); - _instance_1_u(_, "get$_onDoubleTapUp", "_onDoubleTapUp$1", 113); - _instance_1_u(_, "get$_onTripleTapUp", "_onTripleTapUp$1", 113); - _instance_1_u(_, "get$_onPanDown", "_onPanDown$1", 571); - _instance_1_u(_, "get$_document_gestures_touch_ios$_onPanStart", "_document_gestures_touch_ios$_onPanStart$1", 73); - _instance_1_u(_, "get$_document_gestures_touch_ios$_onPanUpdate", "_document_gestures_touch_ios$_onPanUpdate$1", 69); + _instance_1_u(_, "get$_document_gestures_touch_ios$_onTapUp", "_document_gestures_touch_ios$_onTapUp$1", 115); + _instance_1_u(_, "get$_onDoubleTapUp", "_onDoubleTapUp$1", 115); + _instance_1_u(_, "get$_onTripleTapUp", "_onTripleTapUp$1", 115); + _instance_1_u(_, "get$_onPanDown", "_onPanDown$1", 533); + _instance_1_u(_, "get$_document_gestures_touch_ios$_onPanStart", "_document_gestures_touch_ios$_onPanStart$1", 72); + _instance_1_u(_, "get$_document_gestures_touch_ios$_onPanUpdate", "_document_gestures_touch_ios$_onPanUpdate$1", 70); _instance_1_u(_, "get$_document_gestures_touch_ios$_onPanEnd", "_document_gestures_touch_ios$_onPanEnd$1", 94); _instance_0_u(_, "get$_document_gestures_touch_ios$_onPanCancel", "_document_gestures_touch_ios$_onPanCancel$0", 0); _instance_0_u(_, "get$_onAutoScrollChange", "_onAutoScrollChange$0", 0); - _instance_1_u(_, "get$_document_gestures_touch_ios$_select", "_document_gestures_touch_ios$_select$1", 887); + _instance_1_u(_, "get$_document_gestures_touch_ios$_select", "_document_gestures_touch_ios$_select$1", 889); _instance_0_u(_, "get$_onFloatingCursorStart", "_onFloatingCursorStart$0", 0); _instance_0_u(_, "get$_onFloatingCursorGeometryChange", "_onFloatingCursorGeometryChange$0", 0); _instance_0_u(_, "get$_onFloatingCursorStop", "_onFloatingCursorStop$0", 0); - _instance_1_u(A.SuperEditorIosToolbarOverlayManagerState.prototype, "get$_document_gestures_touch_ios$_buildToolbar", "_document_gestures_touch_ios$_buildToolbar$1", 46); - _instance_1_u(A.SuperEditorIosMagnifierOverlayManagerState.prototype, "get$_document_gestures_touch_ios$_buildMagnifier", "_document_gestures_touch_ios$_buildMagnifier$1", 46); + _instance_1_u(A.SuperEditorIosToolbarOverlayManagerState.prototype, "get$_document_gestures_touch_ios$_buildToolbar", "_document_gestures_touch_ios$_buildToolbar$1", 44); + _instance_1_u(A.SuperEditorIosMagnifierOverlayManagerState.prototype, "get$_document_gestures_touch_ios$_buildMagnifier", "_document_gestures_touch_ios$_buildMagnifier$1", 44); _instance_0_u(_ = A._EditorFloatingCursorState.prototype, "get$_onFloatingCursorStart", "_onFloatingCursorStart$0", 0); - _instance_1_u(_, "get$_onFloatingCursorMove", "_onFloatingCursorMove$1", 3410); + _instance_1_u(_, "get$_onFloatingCursorMove", "_onFloatingCursorMove$1", 3415); _instance_0_u(_, "get$_document_gestures_touch_ios$_onScrollChange", "_document_gestures_touch_ios$_onScrollChange$0", 0); _instance_0_u(_, "get$_onFloatingCursorStop", "_onFloatingCursorStop$0", 0); - _instance_2_u(A._SuperEditorHardwareKeyHandlerState.prototype, "get$_document_physical_keyboard$_onKeyPressed", "_document_physical_keyboard$_onKeyPressed$2", 238); + _instance_2_u(A._SuperEditorHardwareKeyHandlerState.prototype, "get$_document_physical_keyboard$_onKeyPressed", "_document_physical_keyboard$_onKeyPressed$2", 214); _instance_0_u(_ = A.DocumentImeInputClient.prototype, "get$_onContentChange", "_onContentChange$0", 0); _instance_0_u(_, "get$_onImeConnectionChange", "_onImeConnectionChange$0", 0); _instance_1_u(_, "get$performSelector", "performSelector$1", 15); @@ -622788,7 +624130,7 @@ _instance_0_u(_, "get$_document_ime_interaction_policies$_onSelectionChange", "_document_ime_interaction_policies$_onSelectionChange$0", 0); _instance_0_u(_, "get$_onConnectionChange", "_onConnectionChange$0", 0); _instance_1_u(A.DeltaTextInputClientDecorator.prototype, "get$performSelector", "performSelector$1", 15); - _instance_1_u(A._KeyboardEditingToolbarState.prototype, "get$_buildToolbarOverlay", "_buildToolbarOverlay$1", 46); + _instance_1_u(A._KeyboardEditingToolbarState.prototype, "get$_buildToolbarOverlay", "_buildToolbarOverlay$1", 44); _instance_0_u(_ = A.KeyboardEditingToolbarOperations.prototype, "get$toggleBold", "toggleBold$0", 0); _instance_0_u(_, "get$toggleItalics", "toggleItalics$0", 0); _instance_0_u(_, "get$toggleUnderline", "toggleUnderline$0", 0); @@ -622801,89 +624143,89 @@ _instance_0_u(_, "get$convertToBlockquote", "convertToBlockquote$0", 0); _instance_0_u(_, "get$convertToHr", "convertToHr$0", 0); _instance_0_u(_, "get$closeKeyboard", "closeKeyboard$0", 0); - _static_1(A, "supereditor_ime_interactor__moveLeft$closure", "moveLeft", 45); - _static_1(A, "supereditor_ime_interactor__moveRight$closure", "moveRight", 45); - _static_1(A, "supereditor_ime_interactor__moveUp$closure", "moveUp", 45); - _static_1(A, "supereditor_ime_interactor__moveDown$closure", "moveDown", 45); - _static_1(A, "supereditor_ime_interactor__moveWordLeft$closure", "moveWordLeft", 45); - _static_1(A, "supereditor_ime_interactor__moveWordRight$closure", "moveWordRight", 45); - _static_1(A, "supereditor_ime_interactor__moveToLeftEndOfLine$closure", "moveToLeftEndOfLine", 45); - _static_1(A, "supereditor_ime_interactor__moveToRightEndOfLine$closure", "moveToRightEndOfLine", 45); - _static_1(A, "supereditor_ime_interactor__moveToBeginningOfParagraph$closure", "moveToBeginningOfParagraph", 45); - _static_1(A, "supereditor_ime_interactor__moveToEndOfParagraph$closure", "moveToEndOfParagraph", 45); - _static_1(A, "supereditor_ime_interactor__moveToBeginningOfDocument$closure", "moveToBeginningOfDocument", 45); - _static_1(A, "supereditor_ime_interactor__moveToEndOfDocument$closure", "moveToEndOfDocument", 45); - _static_1(A, "supereditor_ime_interactor__moveLeftAndModifySelection$closure", "moveLeftAndModifySelection", 45); - _static_1(A, "supereditor_ime_interactor__moveRightAndModifySelection$closure", "moveRightAndModifySelection", 45); - _static_1(A, "supereditor_ime_interactor__moveUpAndModifySelection$closure", "moveUpAndModifySelection", 45); - _static_1(A, "supereditor_ime_interactor__moveDownAndModifySelection$closure", "moveDownAndModifySelection", 45); - _static_1(A, "supereditor_ime_interactor__moveWordLeftAndModifySelection$closure", "moveWordLeftAndModifySelection", 45); - _static_1(A, "supereditor_ime_interactor__moveWordRightAndModifySelection$closure", "moveWordRightAndModifySelection", 45); - _static_1(A, "supereditor_ime_interactor__moveToLeftEndOfLineAndModifySelection$closure", "moveToLeftEndOfLineAndModifySelection", 45); - _static_1(A, "supereditor_ime_interactor__moveParagraphBackwardAndModifySelection$closure", "moveParagraphBackwardAndModifySelection", 45); - _static_1(A, "supereditor_ime_interactor__moveParagraphForwardAndModifySelection$closure", "moveParagraphForwardAndModifySelection", 45); - _static_1(A, "supereditor_ime_interactor__moveToBeginningOfDocumentAndModifySelection$closure", "moveToBeginningOfDocumentAndModifySelection", 45); - _static_1(A, "supereditor_ime_interactor__moveToEndOfDocumentAndModifySelection$closure", "moveToEndOfDocumentAndModifySelection", 45); - _static_1(A, "supereditor_ime_interactor__moveToRightEndOfLineAndModifySelection$closure", "moveToRightEndOfLineAndModifySelection", 45); - _static_1(A, "supereditor_ime_interactor__indentListItem$closure", "indentListItem", 45); - _static_1(A, "supereditor_ime_interactor__unIndentListItem$closure", "unIndentListItem", 45); - _static_1(A, "supereditor_ime_interactor__insertNewLine$closure", "insertNewLine", 45); - _static_1(A, "supereditor_ime_interactor__deleteWordBackward$closure", "deleteWordBackward", 45); - _static_1(A, "supereditor_ime_interactor__deleteWordForward$closure", "deleteWordForward", 45); - _static_1(A, "supereditor_ime_interactor__deleteToBeginningOfLine$closure", "deleteToBeginningOfLine", 45); - _static_1(A, "supereditor_ime_interactor__deleteToEndOfLine$closure", "deleteToEndOfLine", 45); - _static_1(A, "supereditor_ime_interactor__deleteBackward$closure", "deleteBackward", 45); - _static_1(A, "supereditor_ime_interactor__deleteForward$closure", "deleteForward", 45); - _static_1(A, "supereditor_ime_interactor__scrollToBeginningOfDocument$closure", "scrollToBeginningOfDocument", 45); - _static_1(A, "supereditor_ime_interactor__scrollToEndOfDocument$closure", "scrollToEndOfDocument", 45); - _static_1(A, "supereditor_ime_interactor__scrollPageUp$closure", "scrollPageUp", 45); - _static_1(A, "supereditor_ime_interactor__scrollPageDown$closure", "scrollPageDown", 45); + _static_1(A, "supereditor_ime_interactor__moveLeft$closure", "moveLeft", 46); + _static_1(A, "supereditor_ime_interactor__moveRight$closure", "moveRight", 46); + _static_1(A, "supereditor_ime_interactor__moveUp$closure", "moveUp", 46); + _static_1(A, "supereditor_ime_interactor__moveDown$closure", "moveDown", 46); + _static_1(A, "supereditor_ime_interactor__moveWordLeft$closure", "moveWordLeft", 46); + _static_1(A, "supereditor_ime_interactor__moveWordRight$closure", "moveWordRight", 46); + _static_1(A, "supereditor_ime_interactor__moveToLeftEndOfLine$closure", "moveToLeftEndOfLine", 46); + _static_1(A, "supereditor_ime_interactor__moveToRightEndOfLine$closure", "moveToRightEndOfLine", 46); + _static_1(A, "supereditor_ime_interactor__moveToBeginningOfParagraph$closure", "moveToBeginningOfParagraph", 46); + _static_1(A, "supereditor_ime_interactor__moveToEndOfParagraph$closure", "moveToEndOfParagraph", 46); + _static_1(A, "supereditor_ime_interactor__moveToBeginningOfDocument$closure", "moveToBeginningOfDocument", 46); + _static_1(A, "supereditor_ime_interactor__moveToEndOfDocument$closure", "moveToEndOfDocument", 46); + _static_1(A, "supereditor_ime_interactor__moveLeftAndModifySelection$closure", "moveLeftAndModifySelection", 46); + _static_1(A, "supereditor_ime_interactor__moveRightAndModifySelection$closure", "moveRightAndModifySelection", 46); + _static_1(A, "supereditor_ime_interactor__moveUpAndModifySelection$closure", "moveUpAndModifySelection", 46); + _static_1(A, "supereditor_ime_interactor__moveDownAndModifySelection$closure", "moveDownAndModifySelection", 46); + _static_1(A, "supereditor_ime_interactor__moveWordLeftAndModifySelection$closure", "moveWordLeftAndModifySelection", 46); + _static_1(A, "supereditor_ime_interactor__moveWordRightAndModifySelection$closure", "moveWordRightAndModifySelection", 46); + _static_1(A, "supereditor_ime_interactor__moveToLeftEndOfLineAndModifySelection$closure", "moveToLeftEndOfLineAndModifySelection", 46); + _static_1(A, "supereditor_ime_interactor__moveParagraphBackwardAndModifySelection$closure", "moveParagraphBackwardAndModifySelection", 46); + _static_1(A, "supereditor_ime_interactor__moveParagraphForwardAndModifySelection$closure", "moveParagraphForwardAndModifySelection", 46); + _static_1(A, "supereditor_ime_interactor__moveToBeginningOfDocumentAndModifySelection$closure", "moveToBeginningOfDocumentAndModifySelection", 46); + _static_1(A, "supereditor_ime_interactor__moveToEndOfDocumentAndModifySelection$closure", "moveToEndOfDocumentAndModifySelection", 46); + _static_1(A, "supereditor_ime_interactor__moveToRightEndOfLineAndModifySelection$closure", "moveToRightEndOfLineAndModifySelection", 46); + _static_1(A, "supereditor_ime_interactor__indentListItem$closure", "indentListItem", 46); + _static_1(A, "supereditor_ime_interactor__unIndentListItem$closure", "unIndentListItem", 46); + _static_1(A, "supereditor_ime_interactor__insertNewLine$closure", "insertNewLine", 46); + _static_1(A, "supereditor_ime_interactor__deleteWordBackward$closure", "deleteWordBackward", 46); + _static_1(A, "supereditor_ime_interactor__deleteWordForward$closure", "deleteWordForward", 46); + _static_1(A, "supereditor_ime_interactor__deleteToBeginningOfLine$closure", "deleteToBeginningOfLine", 46); + _static_1(A, "supereditor_ime_interactor__deleteToEndOfLine$closure", "deleteToEndOfLine", 46); + _static_1(A, "supereditor_ime_interactor__deleteBackward$closure", "deleteBackward", 46); + _static_1(A, "supereditor_ime_interactor__deleteForward$closure", "deleteForward", 46); + _static_1(A, "supereditor_ime_interactor__scrollToBeginningOfDocument$closure", "scrollToBeginningOfDocument", 46); + _static_1(A, "supereditor_ime_interactor__scrollToEndOfDocument$closure", "scrollToEndOfDocument", 46); + _static_1(A, "supereditor_ime_interactor__scrollPageUp$closure", "scrollPageUp", 46); + _static_1(A, "supereditor_ime_interactor__scrollPageDown$closure", "scrollPageDown", 46); _instance_0_u(_ = A.SuperEditorImeInteractorState.prototype, "get$_supereditor_ime_interactor$_onImeConnectionChange", "_supereditor_ime_interactor$_onImeConnectionChange$0", 0); _instance_1_u(_, "get$_supereditor_ime_interactor$_onPerformSelector", "_supereditor_ime_interactor$_onPerformSelector$1", 15); _instance_0_u(_ = A.AutoScrollController.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(_, "get$_onScrollPositionChange", "_onScrollPositionChange$0", 0); - _instance_1_u(_, "get$_document_scrollable$_onTick", "_document_scrollable$_onTick$1", 12); + _instance_1_u(_, "get$_document_scrollable$_onTick", "_document_scrollable$_onTick$1", 11); _instance_0_u(_ = A._SingleColumnDocumentLayoutState.prototype, "get$_onPresenterMarkedDirty", "_onPresenterMarkedDirty$0", 20); - _instance(_, "get$_onViewModelChange", 0, 0, null, ["call$4$addedComponents$changedComponents$movedComponents$removedComponents"], ["_onViewModelChange$4$addedComponents$changedComponents$movedComponents$removedComponents"], 895, 0, 0); - _instance(A._PresenterComponentBuilderState.prototype, "get$_onViewModelChange", 0, 0, null, ["call$4$addedComponents$changedComponents$movedComponents$removedComponents"], ["_onViewModelChange$4$addedComponents$changedComponents$movedComponents$removedComponents"], 895, 0, 0); - _static_1(A, "_presenter__noStyleBuilder$closure", "noStyleBuilder", 205); + _instance(_, "get$_onViewModelChange", 0, 0, null, ["call$4$addedComponents$changedComponents$movedComponents$removedComponents"], ["_onViewModelChange$4$addedComponents$changedComponents$movedComponents$removedComponents"], 897, 0, 0); + _instance(A._PresenterComponentBuilderState.prototype, "get$_onViewModelChange", 0, 0, null, ["call$4$addedComponents$changedComponents$movedComponents$removedComponents"], ["_onViewModelChange$4$addedComponents$changedComponents$movedComponents$removedComponents"], 897, 0, 0); + _static_1(A, "_presenter__noStyleBuilder$closure", "noStyleBuilder", 202); _instance_1_u(A.SingleColumnLayoutPresenter.prototype, "get$__presenter$_onDocumentChange", "__presenter$_onDocumentChange$1", 10); _instance_0_u(A.SingleColumnLayoutStylePhase.prototype, "get$markDirty", "markDirty$0", 0); - _static_2(A, "list_items___defaultUnorderedListItemDotBuilder$closure", "_defaultUnorderedListItemDotBuilder", 4249); - _static_2(A, "list_items___defaultIndentCalculator$closure", "_defaultIndentCalculator", 4250); - _static_2(A, "list_items___defaultOrderedListItemNumeralBuilder$closure", "_defaultOrderedListItemNumeralBuilder", 4251); + _static_2(A, "list_items___defaultUnorderedListItemDotBuilder$closure", "_defaultUnorderedListItemDotBuilder", 4257); + _static_2(A, "list_items___defaultIndentCalculator$closure", "_defaultIndentCalculator", 4258); + _static_2(A, "list_items___defaultOrderedListItemNumeralBuilder$closure", "_defaultOrderedListItemNumeralBuilder", 4259); _static(A, "list_items__tabToIndentListItem$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["tabToIndentListItem"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["tabToIndentListItem"], 40, 0); _static(A, "list_items__shiftTabToUnIndentListItem$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["shiftTabToUnIndentListItem"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["shiftTabToUnIndentListItem"], 40, 0); _static(A, "list_items__backspaceToUnIndentListItem$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["backspaceToUnIndentListItem"], 38, 0); - _static_1(A, "paragraph0__defaultAttributionsToExtendToNewParagraph$closure", "defaultAttributionsToExtendToNewParagraph", 213); + }, ["call$2$editContext$keyEvent"], ["backspaceToUnIndentListItem"], 40, 0); + _static_1(A, "paragraph0__defaultAttributionsToExtendToNewParagraph$closure", "defaultAttributionsToExtendToNewParagraph", 200); _static(A, "paragraph0__anyCharacterToInsertInParagraph$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["anyCharacterToInsertInParagraph"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["anyCharacterToInsertInParagraph"], 40, 0); _static(A, "paragraph0__backspaceToClearParagraphBlockType$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["backspaceToClearParagraphBlockType"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["backspaceToClearParagraphBlockType"], 40, 0); _static(A, "paragraph0__enterToInsertBlockNewline$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["enterToInsertBlockNewline"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["enterToInsertBlockNewline"], 40, 0); _static(A, "paragraph0__doNothingWithEnterOnWeb$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["doNothingWithEnterOnWeb"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["doNothingWithEnterOnWeb"], 40, 0); _static(A, "paragraph0__doNothingWithBackspaceOnWeb$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["doNothingWithBackspaceOnWeb"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["doNothingWithBackspaceOnWeb"], 40, 0); _static(A, "paragraph0__doNothingWithDeleteOnWeb$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["doNothingWithDeleteOnWeb"], 38, 0); - _static_2(A, "super_editor0__defaultInlineTextStyler$closure", "defaultInlineTextStyler", 4253); - _static_1(A, "super_editor0__superEditorLaunchLinkTapHandlerFactory$closure", "superEditorLaunchLinkTapHandlerFactory", 4254); + }, ["call$2$editContext$keyEvent"], ["doNothingWithDeleteOnWeb"], 40, 0); + _static_2(A, "super_editor0__defaultInlineTextStyler$closure", "defaultInlineTextStyler", 4261); + _static_1(A, "super_editor0__superEditorLaunchLinkTapHandlerFactory$closure", "superEditorLaunchLinkTapHandlerFactory", 4262); _instance_0_u(_ = A.SuperEditorState.prototype, "get$_super_editor0$_onFocusChange", "_super_editor0$_onFocusChange$0", 0); - _instance_1_u(_, "get$_buildGestureInteractor", "_buildGestureInteractor$1", 46); + _instance_1_u(_, "get$_buildGestureInteractor", "_buildGestureInteractor$1", 44); _instance_0_u(_ = A.DefaultAndroidEditorToolbar.prototype, "get$_cut", "_cut$0", 0); _instance_0_u(_, "get$_copy", "_copy$0", 0); _instance_0_u(_, "get$_paste", "_paste$0", 0); @@ -622891,22 +624233,22 @@ _instance_0_u(A.SuperEditorLaunchLinkTapHandler.prototype, "get$dispose", "dispose$0", 0); _static(A, "tasks__enterToInsertNewTask$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["enterToInsertNewTask"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["enterToInsertNewTask"], 40, 0); _static(A, "tasks__backspaceToConvertTaskToParagraph$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["backspaceToConvertTaskToParagraph"], 38, 0); - _instance_1_u(A._TaskComponentState.prototype, "get$_computeStyles", "_computeStyles$1", 205); + }, ["call$2$editContext$keyEvent"], ["backspaceToConvertTaskToParagraph"], 40, 0); + _instance_1_u(A._TaskComponentState.prototype, "get$_computeStyles", "_computeStyles$1", 202); _static(A, "text__anyCharacterToInsertInTextContent$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["anyCharacterToInsertInTextContent"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["anyCharacterToInsertInTextContent"], 40, 0); _static(A, "text__deleteDownstreamContentWithDelete$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["deleteDownstreamContentWithDelete"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["deleteDownstreamContentWithDelete"], 40, 0); _static(A, "text__shiftEnterToInsertNewlineInBlock$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["shiftEnterToInsertNewlineInBlock"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["shiftEnterToInsertNewlineInBlock"], 40, 0); _instance_0_u(A.TextNode.prototype, "get$dispose", "dispose$0", 0); - _instance_1_u(A.TextComponentState.prototype, "get$_textStyleWithBlockType", "_textStyleWithBlockType$1", 205); + _instance_1_u(A.TextComponentState.prototype, "get$_textStyleWithBlockType", "_textStyleWithBlockType$1", 202); _instance_1_u(A.AutoScroller.prototype, "get$__scrolling$_onTick", "__scrolling$_onTick$1", 10); _static_0(A, "content_layers_ContentLayersElement__globalOnBuildScheduled$closure", "ContentLayersElement__globalOnBuildScheduled", 0); _instance_0_u(_ = A.ContentLayersElement.prototype, "get$_onBuildScheduled", "_onBuildScheduled$0", 0); @@ -622921,16 +624263,16 @@ _instance_1_u(_ = A.RawScrollbarWithCustomPhysicsState.prototype, "get$_scrollbar1$_validateInteractions", "_scrollbar1$_validateInteractions$1", 47); _instance_0_u(_, "get$handleThumbPress", "handleThumbPress$0", 0); _instance_1_u(_, "get$_scrollbar1$_handleTrackTapDown", "_scrollbar1$_handleTrackTapDown$1", 50); - _instance_1_u(_, "get$_scrollbar1$_handleScrollMetricsNotification", "_scrollbar1$_handleScrollMetricsNotification$1", 412); - _instance_1_u(_, "get$_scrollbar1$_handleScrollNotification", "_scrollbar1$_handleScrollNotification$1", 171); + _instance_1_u(_, "get$_scrollbar1$_handleScrollMetricsNotification", "_scrollbar1$_handleScrollMetricsNotification$1", 368); + _instance_1_u(_, "get$_scrollbar1$_handleScrollNotification", "_scrollbar1$_handleScrollNotification$1", 173); _instance_1_u(_, "get$_scrollbar1$_handlePointerScroll", "_scrollbar1$_handlePointerScroll$1", 109); - _instance_1_u(_, "get$_scrollbar1$_receivedPointerSignal", "_scrollbar1$_receivedPointerSignal$1", 245); + _instance_1_u(_, "get$_scrollbar1$_receivedPointerSignal", "_scrollbar1$_receivedPointerSignal$1", 250); _instance_0_u(A.ScrollbarPainter0.prototype, "get$dispose", "dispose$0", 0); - _instance_2_u(A._NonReparentingFocusState.prototype, "get$_focus$_onKey", "_focus$_onKey$2", 238); + _instance_2_u(A._NonReparentingFocusState.prototype, "get$_focus$_onKey", "_focus$_onKey$2", 214); _instance_0_u(A._FocusWithCustomParentState.prototype, "get$_focus$_handleFocusChanged", "_focus$_handleFocusChanged$0", 0); _instance_0_u(A._MultiListenableBuilderState.prototype, "get$_onListenableChange", "_onListenableChange$0", 0); _instance_1_u(_ = A.TapSequenceGestureRecognizer.prototype, "get$_multi_tap_gesture$_handleEvent", "_multi_tap_gesture$_handleEvent$1", 109); - _instance_1_u(_, "get$_multi_tap_gesture$_reject", "_multi_tap_gesture$_reject$1", 3434); + _instance_1_u(_, "get$_multi_tap_gesture$_reject", "_multi_tap_gesture$_reject$1", 3439); _instance_0_u(_, "get$_onTapTimeout", "_onTapTimeout$0", 0); _instance_0_u(A._CountdownZoned0.prototype, "get$_multi_tap_gesture$_onTimeout", "_multi_tap_gesture$_onTimeout$0", 0); _instance_0_u(A._AndroidToolbarFocalPointDocumentLayerState.prototype, "get$_android_document_controls$_onSelectionChange", "_android_document_controls$_onSelectionChange$0", 0); @@ -622941,60 +624283,68 @@ return [null]; }, ["call$3", "call$2"], ["_roundedRectangleMagnifierBuilder", function(context, offsetFromFocalPoint) { return A._roundedRectangleMagnifierBuilder(context, offsetFromFocalPoint, null); - }], 4255, 0); + }], 4263, 0); + _static_1(A, "popover_scaffold__PopoverScaffoldState_closePopoverOnTapOutside$closure", "_PopoverScaffoldState_closePopoverOnTapOutside", 4264); + _static(A, "popover_scaffold__defaultPopoverAligner$closure", 4, null, ["call$4"], ["defaultPopoverAligner"], 4265, 0); + _instance_0_u(_ = A._PopoverScaffoldState.prototype, "get$_onPopoverControllerChanged", "_onPopoverControllerChanged$0", 0); + _instance_1_u(_, "get$_onTapOutsideOfPopover", "_onTapOutsideOfPopover$1", 165); + _instance_1_u(_, "get$_buildPopover", "_buildPopover$1", 44); + _instance_2_u(A.ItemSelectionListState.prototype, "get$_selectable_list$_onKeyEvent", "_selectable_list$_onKeyEvent$2", 3444); _instance_0_u(A.SignalNotifier.prototype, "get$notifyListeners", "notifyListeners$0", 0); _instance_0_u(_ = A._AndroidEditingOverlayControlsState.prototype, "get$__editing_controls0$_rebuildOnNextFrame", "__editing_controls0$_rebuildOnNextFrame$0", 0); - _instance_1_u(_, "get$_onCollapsedPanStart", "_onCollapsedPanStart$1", 73); - _instance_1_u(_, "get$__editing_controls0$_onBasePanStart", "__editing_controls0$_onBasePanStart$1", 73); - _instance_1_u(_, "get$__editing_controls0$_onExtentPanStart", "__editing_controls0$_onExtentPanStart$1", 73); - _instance_1_u(_, "get$__editing_controls0$_onPanUpdate", "__editing_controls0$_onPanUpdate$1", 69); - _instance_0_u(_, "get$__editing_controls0$_updateSelectionForNewDragHandleLocation", "__editing_controls0$_updateSelectionForNewDragHandleLocation$0", 0); + _instance_1_u(_, "get$_onCollapsedPanStart", "_onCollapsedPanStart$1", 72); + _instance_1_u(_, "get$__editing_controls0$_onBasePanStart", "__editing_controls0$_onBasePanStart$1", 72); + _instance_1_u(_, "get$__editing_controls0$_onExtentPanStart", "__editing_controls0$_onExtentPanStart$1", 72); + _instance_1_u(_, "get$__editing_controls0$_onPanUpdate", "__editing_controls0$_onPanUpdate$1", 70); + _instance_0_u(_, "get$_updateSelectionForDragHandleAfterScrollChange", "_updateSelectionForDragHandleAfterScrollChange$0", 0); _instance_1_u(_, "get$__editing_controls0$_onPanEnd", "__editing_controls0$_onPanEnd$1", 94); _instance_0_u(_, "get$__editing_controls0$_onPanCancel", "__editing_controls0$_onPanCancel$0", 0); _instance_0_u(_ = A.AndroidEditingOverlayController.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(_, "get$_hideCollapsedHandle", "_hideCollapsedHandle$0", 0); - _instance_1_u(_ = A.AndroidTextFieldTouchInteractorState.prototype, "get$__user_interaction0$_onTapDown", "__user_interaction0$_onTapDown$1", 50); - _instance_1_u(_, "get$__user_interaction0$_onTapUp", "__user_interaction0$_onTapUp$1", 113); + _instance_0_u(_ = A.AndroidTextFieldTouchInteractorState.prototype, "get$__user_interaction0$_onTextOrSelectionChange", "__user_interaction0$_onTextOrSelectionChange$0", 0); + _instance_1_u(_, "get$__user_interaction0$_onTapDown", "__user_interaction0$_onTapDown$1", 50); + _instance_1_u(_, "get$__user_interaction0$_onTapUp", "__user_interaction0$_onTapUp$1", 115); _instance_0_u(_, "get$__user_interaction0$_onLongPress", "__user_interaction0$_onLongPress$0", 0); _instance_1_u(_, "get$__user_interaction0$_onDoubleTapDown", "__user_interaction0$_onDoubleTapDown$1", 50); _instance_1_u(_, "get$__user_interaction0$_onTripleTapDown", "__user_interaction0$_onTripleTapDown$1", 50); - _instance_1_u(_, "get$_onTextPanStart", "_onTextPanStart$1", 73); - _instance_1_u(_, "get$__user_interaction0$_onPanUpdate", "__user_interaction0$_onPanUpdate$1", 69); + _instance_1_u(_, "get$__user_interaction0$_onPanStart", "__user_interaction0$_onPanStart$1", 72); + _instance_1_u(_, "get$__user_interaction0$_onPanUpdate", "__user_interaction0$_onPanUpdate$1", 70); _instance_1_u(_, "get$__user_interaction0$_onPanEnd", "__user_interaction0$_onPanEnd$1", 94); _instance_0_u(_, "get$__user_interaction0$_onPanCancel", "__user_interaction0$_onPanCancel$0", 0); _instance_0_u(_, "get$__user_interaction0$_onScrollChange", "__user_interaction0$_onScrollChange$0", 0); - _static(A, "android_textfield___defaultAndroidToolbarBuilder$closure", 3, null, ["call$3"], ["_defaultAndroidToolbarBuilder"], 4256, 0); - _instance_0_u(_ = A.SuperAndroidTextFieldState.prototype, "get$_android_textfield$_updateSelectionAndImeConnectionOnFocusChange", "_android_textfield$_updateSelectionAndImeConnectionOnFocusChange$0", 0); + _static(A, "android_textfield___defaultAndroidToolbarBuilder$closure", 3, null, ["call$3"], ["_defaultAndroidToolbarBuilder"], 4266, 0); + _instance_0_u(_ = A.SuperAndroidTextFieldState.prototype, "get$_android_textfield$_getGlobalCaretRect", "_android_textfield$_getGlobalCaretRect$0", 903); + _instance_0_u(_, "get$_android_textfield$_updateSelectionAndImeConnectionOnFocusChange", "_android_textfield$_updateSelectionAndImeConnectionOnFocusChange$0", 0); _instance_0_u(_, "get$_android_textfield$_onTextOrSelectionChange", "_android_textfield$_onTextOrSelectionChange$0", 0); _instance_0_u(_, "get$_android_textfield$_onTextScrollChange", "_android_textfield$_onTextScrollChange$0", 0); - _instance_1_u(_, "get$_android_textfield$_onPerformActionPressed", "_android_textfield$_onPerformActionPressed$1", 281); - _instance_2_u(_, "get$_onKeyPressed", "_onKeyPressed$2", 238); - _instance_1_u(_, "get$_android_textfield$_buildPopoverToolbar", "_android_textfield$_buildPopoverToolbar$1", 46); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_copyTextWhenCmdCIsPressed$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_copyTextWhenCmdCIsPressed"], 100, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_pasteTextWhenCmdVIsPressed$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_pasteTextWhenCmdVIsPressed"], 100, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_selectAllTextFieldWhenCmdAIsPressed$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_selectAllTextFieldWhenCmdAIsPressed"], 100, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_moveCaretToStartOrEnd$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_moveCaretToStartOrEnd"], 100, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_moveUpDownLeftAndRightWithArrowKeys$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_moveUpDownLeftAndRightWithArrowKeys"], 100, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_moveToLineStartWithHome$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_moveToLineStartWithHome"], 100, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_moveToLineEndWithEnd$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_moveToLineEndWithEnd"], 100, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_insertCharacterWhenKeyIsPressed$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_insertCharacterWhenKeyIsPressed"], 100, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_deleteTextOnLineBeforeCaretWhenShortcutKeyAndBackspaceIsPressed$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_deleteTextOnLineBeforeCaretWhenShortcutKeyAndBackspaceIsPressed"], 100, 0); + _instance_1_u(_, "get$_android_textfield$_onPerformActionPressed", "_android_textfield$_onPerformActionPressed$1", 290); + _instance_2_u(_, "get$_onKeyPressed", "_onKeyPressed$2", 214); + _instance_1_u(_, "get$_android_textfield$_buildPopoverToolbar", "_android_textfield$_buildPopoverToolbar$1", 44); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_copyTextWhenCmdCIsPressed$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_copyTextWhenCmdCIsPressed"], 99, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_pasteTextWhenCmdVIsPressed$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_pasteTextWhenCmdVIsPressed"], 99, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_selectAllTextFieldWhenCmdAIsPressed$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_selectAllTextFieldWhenCmdAIsPressed"], 99, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_moveCaretToStartOrEnd$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_moveCaretToStartOrEnd"], 99, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_moveUpDownLeftAndRightWithArrowKeys$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_moveUpDownLeftAndRightWithArrowKeys"], 99, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_moveToLineStartWithHome$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_moveToLineStartWithHome"], 99, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_moveToLineEndWithEnd$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_moveToLineEndWithEnd"], 99, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_insertCharacterWhenKeyIsPressed$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_insertCharacterWhenKeyIsPressed"], 99, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_deleteTextOnLineBeforeCaretWhenShortcutKeyAndBackspaceIsPressed$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_deleteTextOnLineBeforeCaretWhenShortcutKeyAndBackspaceIsPressed"], 99, 0); _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_deleteTextWhenBackspaceOrDeleteIsPressed$closure", 0, null, ["call$3$keyEvent$textFieldContext$textLayout", "call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_deleteTextWhenBackspaceOrDeleteIsPressed", function(keyEvent, textFieldContext) { return A.DefaultSuperTextFieldKeyboardHandlers_deleteTextWhenBackspaceOrDeleteIsPressed(keyEvent, textFieldContext, null); - }], 916, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_deleteWordWhenAltBackSpaceIsPressedOnMac$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_deleteWordWhenAltBackSpaceIsPressedOnMac"], 100, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_deleteWordWhenCtlBackSpaceIsPressedOnWindowsAndLinux$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_deleteWordWhenCtlBackSpaceIsPressedOnWindowsAndLinux"], 100, 0); + }], 919, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_deleteWordWhenAltBackSpaceIsPressedOnMac$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_deleteWordWhenAltBackSpaceIsPressedOnMac"], 99, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_deleteWordWhenCtlBackSpaceIsPressedOnWindowsAndLinux$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_deleteWordWhenCtlBackSpaceIsPressedOnWindowsAndLinux"], 99, 0); _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_insertNewlineWhenEnterIsPressed$closure", 0, null, ["call$3$keyEvent$textFieldContext$textLayout", "call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_insertNewlineWhenEnterIsPressed", function(keyEvent, textFieldContext) { return A.DefaultSuperTextFieldKeyboardHandlers_insertNewlineWhenEnterIsPressed(keyEvent, textFieldContext, null); - }], 916, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_sendKeyEventToMacOs$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_sendKeyEventToMacOs"], 100, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_scrollOnPageUp$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_scrollOnPageUp"], 100, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_scrollOnPageDown$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_scrollOnPageDown"], 100, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_scrollToBeginningOfDocumentOnCtrlOrCmdAndHome$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_scrollToBeginningOfDocumentOnCtrlOrCmdAndHome"], 100, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_scrollToEndOfDocumentOnCtrlOrCmdAndEnd$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_scrollToEndOfDocumentOnCtrlOrCmdAndEnd"], 100, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_scrollToBeginningOfDocumentOnHomeOnMacOrWeb$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_scrollToBeginningOfDocumentOnHomeOnMacOrWeb"], 100, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_scrollToEndOfDocumentOnEndOnMacOrWeb$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_scrollToEndOfDocumentOnEndOnMacOrWeb"], 100, 0); - _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_blockControlKeys$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_blockControlKeys"], 100, 0); + }], 919, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_sendKeyEventToMacOs$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_sendKeyEventToMacOs"], 99, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_scrollOnPageUp$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_scrollOnPageUp"], 99, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_scrollOnPageDown$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_scrollOnPageDown"], 99, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_scrollToBeginningOfDocumentOnCtrlOrCmdAndHome$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_scrollToBeginningOfDocumentOnCtrlOrCmdAndHome"], 99, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_scrollToEndOfDocumentOnCtrlOrCmdAndEnd$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_scrollToEndOfDocumentOnCtrlOrCmdAndEnd"], 99, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_scrollToBeginningOfDocumentOnHomeOnMacOrWeb$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_scrollToBeginningOfDocumentOnHomeOnMacOrWeb"], 99, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_scrollToEndOfDocumentOnEndOnMacOrWeb$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_scrollToEndOfDocumentOnEndOnMacOrWeb"], 99, 0); + _static(A, "desktop_textfield_DefaultSuperTextFieldKeyboardHandlers_blockControlKeys$closure", 0, null, ["call$2$keyEvent$textFieldContext"], ["DefaultSuperTextFieldKeyboardHandlers_blockControlKeys"], 99, 0); _static(A, "desktop_textfield___giveUpFocus$closure", 0, null, ["call$1$textFieldContext"], ["_giveUpFocus"], 81, 0); _static(A, "desktop_textfield___moveFocusNext$closure", 0, null, ["call$1$textFieldContext"], ["_moveFocusNext"], 81, 0); _static(A, "desktop_textfield___moveCaretUpstream$closure", 0, null, ["call$1$textFieldContext"], ["_moveCaretUpstream"], 81, 0); @@ -623019,66 +624369,67 @@ _static(A, "desktop_textfield___deleteWordDownstream$closure", 0, null, ["call$1$textFieldContext"], ["_deleteWordDownstream"], 81, 0); _static(A, "desktop_textfield___deleteToBeginningOfLine$closure", 0, null, ["call$1$textFieldContext"], ["_deleteToBeginningOfLine"], 81, 0); _static(A, "desktop_textfield___deleteToEndOfLine$closure", 0, null, ["call$1$textFieldContext"], ["_deleteToEndOfLine"], 81, 0); - _static(A, "desktop_textfield___scrollToBeginningOfDocument$closure", 0, null, ["call$1$textFieldContext"], ["_scrollToBeginningOfDocument"], 365, 0); - _static(A, "desktop_textfield___scrollToEndOfDocument$closure", 0, null, ["call$1$textFieldContext"], ["_scrollToEndOfDocument"], 365, 0); - _static(A, "desktop_textfield___scrollPageUp$closure", 0, null, ["call$1$textFieldContext"], ["_scrollPageUp"], 365, 0); - _static(A, "desktop_textfield___scrollPageDown$closure", 0, null, ["call$1$textFieldContext"], ["_scrollPageDown"], 365, 0); - _instance_0_u(_ = A.SuperDesktopTextFieldState.prototype, "get$_updateSelectionOnFocusChange", "_updateSelectionOnFocusChange$0", 0); + _static(A, "desktop_textfield___scrollToBeginningOfDocument$closure", 0, null, ["call$1$textFieldContext"], ["_scrollToBeginningOfDocument"], 357, 0); + _static(A, "desktop_textfield___scrollToEndOfDocument$closure", 0, null, ["call$1$textFieldContext"], ["_scrollToEndOfDocument"], 357, 0); + _static(A, "desktop_textfield___scrollPageUp$closure", 0, null, ["call$1$textFieldContext"], ["_scrollPageUp"], 357, 0); + _static(A, "desktop_textfield___scrollPageDown$closure", 0, null, ["call$1$textFieldContext"], ["_scrollPageDown"], 357, 0); + _instance_0_u(_ = A.SuperDesktopTextFieldState.prototype, "get$_updateSelectionAndComposingRegionOnFocusChange", "_updateSelectionAndComposingRegionOnFocusChange$0", 0); _instance_0_u(_, "get$_onSelectionOrContentChange", "_onSelectionOrContentChange$0", 0); _instance_1_u(_ = A._SuperTextFieldGestureInteractorState.prototype, "get$_desktop_textfield$_onTapDown", "_desktop_textfield$_onTapDown$1", 50); _instance_1_u(_, "get$_desktop_textfield$_onDoubleTapDown", "_desktop_textfield$_onDoubleTapDown$1", 50); _instance_0_u(_, "get$_onDoubleTap", "_onDoubleTap$0", 0); _instance_1_u(_, "get$_desktop_textfield$_onTripleTapDown", "_desktop_textfield$_onTripleTapDown$1", 50); _instance_0_u(_, "get$_onTripleTap", "_onTripleTap$0", 0); - _instance_1_u(_, "get$_onRightClick", "_onRightClick$1", 113); - _instance_1_u(_, "get$_desktop_textfield$_onPanStart", "_desktop_textfield$_onPanStart$1", 73); - _instance_1_u(_, "get$_desktop_textfield$_onPanUpdate", "_desktop_textfield$_onPanUpdate$1", 69); + _instance_1_u(_, "get$_onRightClick", "_onRightClick$1", 115); + _instance_1_u(_, "get$_desktop_textfield$_onPanStart", "_desktop_textfield$_onPanStart$1", 72); + _instance_1_u(_, "get$_desktop_textfield$_onPanUpdate", "_desktop_textfield$_onPanUpdate$1", 70); _instance_1_u(_, "get$_desktop_textfield$_onPanEnd", "_desktop_textfield$_onPanEnd$1", 94); _instance_0_u(_, "get$_desktop_textfield$_onPanCancel", "_desktop_textfield$_onPanCancel$0", 0); - _instance_1_u(_, "get$_onPointerSignal", "_onPointerSignal$1", 245); + _instance_1_u(_, "get$_onPointerSignal", "_onPointerSignal$1", 250); _instance_0_u(_ = A._SuperTextFieldKeyboardInteractorState.prototype, "get$_onFocusChange", "_onFocusChange$0", 0); - _instance_2_u(_, "get$_desktop_textfield$_onKeyPressed", "_desktop_textfield$_onKeyPressed$2", 238); + _instance_2_u(_, "get$_desktop_textfield$_onKeyPressed", "_desktop_textfield$_onKeyPressed$2", 214); _instance_0_u(_ = A._SuperTextFieldImeInteractorState.prototype, "get$_desktop_textfield$_updateSelectionAndImeConnectionOnFocusChange", "_desktop_textfield$_updateSelectionAndImeConnectionOnFocusChange$0", 0); _instance_0_u(_, "get$_onImeConnectionChanged", "_onImeConnectionChanged$0", 0); _instance_1_u(_, "get$_onPerformSelector", "_onPerformSelector$1", 15); - _instance_1_u(_, "get$_onPerformAction", "_onPerformAction$1", 281); + _instance_1_u(_, "get$_onPerformAction", "_onPerformAction$1", 290); _instance_0_u(_ = A.SuperTextFieldScrollviewState.prototype, "get$_onSelectionOrContentChange", "_onSelectionOrContentChange$0", 0); _instance_1_u(_, "get$_desktop_textfield$_onTick", "_desktop_textfield$_onTick$1", 10); _instance_0_u(_ = A._TextScrollViewState.prototype, "get$_onTextScrollChange", "_onTextScrollChange$0", 0); _instance_0_u(_, "get$_onTextOrSelectionChanged", "_onTextOrSelectionChanged$0", 0); - _instance_1_u(A.TextScrollController.prototype, "get$_autoScrollTick", "_autoScrollTick$1", 12); + _instance_1_u(A.TextScrollController.prototype, "get$_autoScrollTick", "_autoScrollTick$1", 11); _instance_0_u(_ = A.ImeAttributedTextEditingController.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(_, "get$_onInnerControllerChange", "_onInnerControllerChange$0", 0); _instance_1_u(_, "get$performSelector", "performSelector$1", 15); _instance_0_u(_ = A._IOSEditingControlsState.prototype, "get$_rebuildOnNextFrame", "_rebuildOnNextFrame$0", 0); - _instance_1_u(_, "get$_onBasePanStart", "_onBasePanStart$1", 73); - _instance_1_u(_, "get$_onExtentPanStart", "_onExtentPanStart$1", 73); - _instance_1_u(_, "get$_onPanUpdate", "_onPanUpdate$1", 69); + _instance_1_u(_, "get$_onBasePanStart", "_onBasePanStart$1", 72); + _instance_1_u(_, "get$_onExtentPanStart", "_onExtentPanStart$1", 72); + _instance_1_u(_, "get$_onPanUpdate", "_onPanUpdate$1", 70); _instance_0_u(_, "get$_updateSelectionForNewDragHandleLocation", "_updateSelectionForNewDragHandleLocation$0", 0); _instance_1_u(_, "get$_onPanEnd", "_onPanEnd$1", 94); _instance_0_u(_, "get$_onPanCancel", "_onPanCancel$0", 0); _instance_0_u(_ = A.IOSEditingOverlayController.prototype, "get$dispose", "dispose$0", 0); _instance_0_u(_, "get$_overlayControllerChanged", "_overlayControllerChanged$0", 0); - _instance_0_u(_ = A.IOSTextFieldTouchInteractorState.prototype, "get$_onSelectionChange", "_onSelectionChange$0", 0); + _instance_0_u(_ = A.IOSTextFieldTouchInteractorState.prototype, "get$_onTextOrSelectionChange", "_onTextOrSelectionChange$0", 0); _instance_1_u(_, "get$__user_interaction$_onTapDown", "__user_interaction$_onTapDown$1", 50); - _instance_1_u(_, "get$__user_interaction$_onTapUp", "__user_interaction$_onTapUp$1", 113); + _instance_1_u(_, "get$__user_interaction$_onTapUp", "__user_interaction$_onTapUp$1", 115); _instance_1_u(_, "get$_onDoubleTapDown", "_onDoubleTapDown$1", 50); _instance_1_u(_, "get$_onTripleTapDown", "_onTripleTapDown$1", 50); - _instance_1_u(_, "get$_onPanStart", "_onPanStart$1", 73); - _instance_1_u(_, "get$__user_interaction$_onPanUpdate", "__user_interaction$_onPanUpdate$1", 69); + _instance_1_u(_, "get$_onPanStart", "_onPanStart$1", 72); + _instance_1_u(_, "get$__user_interaction$_onPanUpdate", "__user_interaction$_onPanUpdate$1", 70); _instance_1_u(_, "get$__user_interaction$_onPanEnd", "__user_interaction$_onPanEnd$1", 94); _instance_0_u(_, "get$__user_interaction$_onPanCancel", "__user_interaction$_onPanCancel$0", 0); _instance_0_u(_, "get$_onScrollChange", "_onScrollChange$0", 0); _instance_0_u(_, "get$_computeSelectionRect", "_computeSelectionRect$0", 0); - _static_2(A, "ios_textfield___defaultPopoverToolbarBuilder$closure", "_defaultPopoverToolbarBuilder", 4261); - _instance_0_u(_ = A.SuperIOSTextFieldState.prototype, "get$_updateSelectionAndImeConnectionOnFocusChange", "_updateSelectionAndImeConnectionOnFocusChange$0", 0); - _instance_0_u(_, "get$_onTextOrSelectionChange", "_onTextOrSelectionChange$0", 0); + _static_2(A, "ios_textfield___defaultPopoverToolbarBuilder$closure", "_defaultPopoverToolbarBuilder", 4271); + _instance_0_u(_ = A.SuperIOSTextFieldState.prototype, "get$_getGlobalCaretRect", "_getGlobalCaretRect$0", 903); + _instance_0_u(_, "get$_updateSelectionAndImeConnectionOnFocusChange", "_updateSelectionAndImeConnectionOnFocusChange$0", 0); + _instance_0_u(_, "get$_ios_textfield$_onTextOrSelectionChange", "_ios_textfield$_onTextOrSelectionChange$0", 0); _instance_0_u(_, "get$_ios_textfield$_onTextScrollChange", "_ios_textfield$_onTextScrollChange$0", 0); - _instance_1_u(_, "get$_onFloatingCursorChange", "_onFloatingCursorChange$1", 3445); - _instance_1_u(_, "get$_onPerformActionPressed", "_onPerformActionPressed$1", 281); - _instance_1_u(_, "get$_buildPopoverToolbar", "_buildPopoverToolbar$1", 46); + _instance_1_u(_, "get$_onFloatingCursorChange", "_onFloatingCursorChange$1", 3453); + _instance_1_u(_, "get$_onPerformActionPressed", "_onPerformActionPressed$1", 290); + _instance_1_u(_, "get$_buildPopoverToolbar", "_buildPopoverToolbar$1", 44); _instance_0_u(_ = A.BlinkController.prototype, "get$dispose", "dispose$0", 0); - _instance_1_u(_, "get$_blink_controller$_onTick", "_blink_controller$_onTick$1", 12); + _instance_1_u(_, "get$_blink_controller$_onTick", "_blink_controller$_onTick$1", 11); _instance_0_u(_, "get$_blink", "_blink$0", 0); _instance_0_u(A.SuperTextState.prototype, "get$_invalidateParagraph", "_invalidateParagraph$0", 0); _instance_1_u(_ = A.RenderSuperTextLayout.prototype, "get$computeMinIntrinsicWidth", "computeMinIntrinsicWidth$1", 6); @@ -623090,117 +624441,117 @@ _instance_1_u(_, "get$computeMinIntrinsicHeight", "computeMinIntrinsicHeight$1", 6); _instance_1_u(_, "get$computeMaxIntrinsicHeight", "computeMaxIntrinsicHeight$1", 6); _instance_0_i(_ = A._EventStreamSubscription0.prototype, "get$cancel", "cancel$0", 20); - _instance(_, "get$pause", 1, 0, null, ["call$1", "call$0"], ["pause$1", "pause$0"], 879, 0, 0); + _instance(_, "get$pause", 1, 0, null, ["call$1", "call$0"], ["pause$1", "pause$0"], 708, 0, 0); _instance_0_i(_, "get$resume", "resume$0", 0); - _static_1(A, "link_LinkViewController__viewFactory$closure", "LinkViewController__viewFactory", 4262); + _static_1(A, "link_LinkViewController__viewFactory$closure", "LinkViewController__viewFactory", 4272); _static(A, "print__debugPrintThrottled$closure", 1, null, ["call$2$wrapWidth", "call$1"], ["debugPrintThrottled", function(message) { return A.debugPrintThrottled(message, null); - }], 4263, 0); + }], 4273, 0); _static_0(A, "print___debugPrintTask$closure", "_debugPrintTask", 0); - _static_2(A, "layout_helper_ChildLayoutHelper_dryLayoutChild$closure", "ChildLayoutHelper_dryLayoutChild", 440); - _static_2(A, "layout_helper_ChildLayoutHelper_layoutChild$closure", "ChildLayoutHelper_layoutChild", 440); - _static_1(A, "utils__getUserDataFromMap$closure", "getUserDataFromMap", 4264); - _static_2(A, "loading_reducer___setLoading$closure", "_setLoading", 4265); - _static_2(A, "loading_reducer___setLoaded$closure", "_setLoaded", 4266); - _static_2(A, "loading_reducer___setSaving$closure", "_setSaving", 4267); - _static_2(A, "loading_reducer___setSaved$closure", "_setSaved", 4268); + _static_2(A, "layout_helper_ChildLayoutHelper_dryLayoutChild$closure", "ChildLayoutHelper_dryLayoutChild", 388); + _static_2(A, "layout_helper_ChildLayoutHelper_layoutChild$closure", "ChildLayoutHelper_layoutChild", 388); + _static_1(A, "utils__getUserDataFromMap$closure", "getUserDataFromMap", 4274); + _static_2(A, "loading_reducer___setLoading$closure", "_setLoading", 4275); + _static_2(A, "loading_reducer___setLoaded$closure", "_setLoaded", 4276); + _static_2(A, "loading_reducer___setSaving$closure", "_setSaving", 4277); + _static_2(A, "loading_reducer___setSaved$closure", "_setSaved", 4278); _static_1(A, "serialization0_SerializationUtils_deserializeWith$closure", "SerializationUtils_deserializeWith", 33); - _static_0(A, "utils2__getUtcDateTime$closure", "getUtcDateTime", 466); + _static_0(A, "utils2__getUtcDateTime$closure", "getUtcDateTime", 581); _static(A, "document_keyboard_actions__scrollOnPageUpKeyPress$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["scrollOnPageUpKeyPress"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["scrollOnPageUpKeyPress"], 40, 0); _static(A, "document_keyboard_actions__scrollOnPageDownKeyPress$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["scrollOnPageDownKeyPress"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["scrollOnPageDownKeyPress"], 40, 0); _static(A, "document_keyboard_actions__scrollOnCtrlOrCmdAndHomeKeyPress$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["scrollOnCtrlOrCmdAndHomeKeyPress"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["scrollOnCtrlOrCmdAndHomeKeyPress"], 40, 0); _static(A, "document_keyboard_actions__scrollOnCtrlOrCmdAndEndKeyPress$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["scrollOnCtrlOrCmdAndEndKeyPress"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["scrollOnCtrlOrCmdAndEndKeyPress"], 40, 0); _static(A, "document_keyboard_actions__blockControlKeys$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["blockControlKeys"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["blockControlKeys"], 40, 0); _static(A, "document_keyboard_actions__toggleInteractionModeWhenCmdOrCtrlPressed$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["toggleInteractionModeWhenCmdOrCtrlPressed"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["toggleInteractionModeWhenCmdOrCtrlPressed"], 40, 0); _static(A, "document_keyboard_actions__doNothingWhenThereIsNoSelection$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["doNothingWhenThereIsNoSelection"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["doNothingWhenThereIsNoSelection"], 40, 0); _static(A, "document_keyboard_actions__sendKeyEventToMacOs$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["sendKeyEventToMacOs"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["sendKeyEventToMacOs"], 40, 0); _static(A, "document_keyboard_actions__deleteDownstreamCharacterWithCtrlDeleteOnMac$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["deleteDownstreamCharacterWithCtrlDeleteOnMac"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["deleteDownstreamCharacterWithCtrlDeleteOnMac"], 40, 0); _static(A, "document_keyboard_actions__pasteWhenCmdVIsPressed$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["pasteWhenCmdVIsPressed"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["pasteWhenCmdVIsPressed"], 40, 0); _static(A, "document_keyboard_actions__selectAllWhenCmdAIsPressed$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["selectAllWhenCmdAIsPressed"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["selectAllWhenCmdAIsPressed"], 40, 0); _static(A, "document_keyboard_actions__copyWhenCmdCIsPressed$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["copyWhenCmdCIsPressed"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["copyWhenCmdCIsPressed"], 40, 0); _static(A, "document_keyboard_actions__cutWhenCmdXIsPressed$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["cutWhenCmdXIsPressed"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["cutWhenCmdXIsPressed"], 40, 0); _static(A, "document_keyboard_actions__cmdBToToggleBold$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["cmdBToToggleBold"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["cmdBToToggleBold"], 40, 0); _static(A, "document_keyboard_actions__cmdIToToggleItalics$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["cmdIToToggleItalics"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["cmdIToToggleItalics"], 40, 0); _static(A, "document_keyboard_actions__anyCharacterOrDestructiveKeyToDeleteSelection$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["anyCharacterOrDestructiveKeyToDeleteSelection"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["anyCharacterOrDestructiveKeyToDeleteSelection"], 40, 0); _static(A, "document_keyboard_actions__deleteUpstreamContentWithBackspace$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["deleteUpstreamContentWithBackspace"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["deleteUpstreamContentWithBackspace"], 40, 0); _static(A, "document_keyboard_actions__moveUpAndDownWithArrowKeys$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["moveUpAndDownWithArrowKeys"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["moveUpAndDownWithArrowKeys"], 40, 0); _static(A, "document_keyboard_actions__moveLeftAndRightWithArrowKeys$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["moveLeftAndRightWithArrowKeys"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["moveLeftAndRightWithArrowKeys"], 40, 0); _static(A, "document_keyboard_actions__doNothingWithLeftRightArrowKeysAtMiddleOfTextOnWeb$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["doNothingWithLeftRightArrowKeysAtMiddleOfTextOnWeb"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["doNothingWithLeftRightArrowKeysAtMiddleOfTextOnWeb"], 40, 0); _static(A, "document_keyboard_actions__moveToLineStartOrEndWithCtrlAOrE$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["moveToLineStartOrEndWithCtrlAOrE"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["moveToLineStartOrEndWithCtrlAOrE"], 40, 0); _static(A, "document_keyboard_actions__moveToLineStartWithHome$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["moveToLineStartWithHome"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["moveToLineStartWithHome"], 40, 0); _static(A, "document_keyboard_actions__moveToLineEndWithEnd$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["moveToLineEndWithEnd"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["moveToLineEndWithEnd"], 40, 0); _static(A, "document_keyboard_actions__deleteToStartOfLineWithCmdBackspaceOnMac$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["deleteToStartOfLineWithCmdBackspaceOnMac"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["deleteToStartOfLineWithCmdBackspaceOnMac"], 40, 0); _static(A, "document_keyboard_actions__deleteToEndOfLineWithCmdDeleteOnMac$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["deleteToEndOfLineWithCmdDeleteOnMac"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["deleteToEndOfLineWithCmdDeleteOnMac"], 40, 0); _static(A, "document_keyboard_actions__deleteWordUpstreamWithAltBackspaceOnMac$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["deleteWordUpstreamWithAltBackspaceOnMac"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["deleteWordUpstreamWithAltBackspaceOnMac"], 40, 0); _static(A, "document_keyboard_actions__deleteWordUpstreamWithControlBackspaceOnWindowsAndLinux$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["deleteWordUpstreamWithControlBackspaceOnWindowsAndLinux"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["deleteWordUpstreamWithControlBackspaceOnWindowsAndLinux"], 40, 0); _static(A, "document_keyboard_actions__deleteWordDownstreamWithAltDeleteOnMac$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["deleteWordDownstreamWithAltDeleteOnMac"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["deleteWordDownstreamWithAltDeleteOnMac"], 40, 0); _static(A, "document_keyboard_actions__deleteWordDownstreamWithControlDeleteOnWindowsAndLinux$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["deleteWordDownstreamWithControlDeleteOnWindowsAndLinux"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["deleteWordDownstreamWithControlDeleteOnWindowsAndLinux"], 40, 0); _static(A, "document_keyboard_actions__collapseSelectionWhenEscIsPressed$closure", 0, function() { return {editContext: B.C__Required, keyEvent: B.C__Required}; - }, ["call$2$editContext$keyEvent"], ["collapseSelectionWhenEscIsPressed"], 38, 0); + }, ["call$2$editContext$keyEvent"], ["collapseSelectionWhenEscIsPressed"], 40, 0); _static(A, "uuid_util_UuidUtil_mathRNG$closure", 0, function() { return {seed: -1}; }, ["call$1$seed", "call$0"], ["UuidUtil_mathRNG", function() { return A.UuidUtil_mathRNG(-1); - }], 2845, 0); + }], 2852, 0); })(); (function inheritance() { var _mixin = hunkHelpers.mixin, @@ -623208,10 +624559,10 @@ _inheritMany = hunkHelpers.inheritMany, _inherit = hunkHelpers.inherit; _inheritMany(null, [A.Object, A._UnmodifiableInt64ListView]); - _inheritMany(A.Object, [A.AlarmClock, A.AppBootstrap, A.Closure, A._Enum, A._SaveStackTracking, A.ContextStateHandle, A.CkCanvas, A.CanvasKitCanvas, A.ManagedSkColorFilter, A.CkColorFilter, A.HtmlViewEmbedder, A.OverlayGroup, A.ViewClipChain, A.EmbeddedViewParams, A.Mutator, A.Iterable, A.EmbedderFrameContext, A.ViewListDiffResult, A.SkiaFontCollection, A.RegisteredFont, A.UnregisteredFont, A.FontDownloadResult, A.SkiaFallbackRegistry, A.ImageCodecException, A.CkImage, A.CkImageFilter, A.CkAnimatedImage, A.BrowserImageDecoder, A.Layer, A.PrerollContext, A.PaintContext, A.LayerScene, A.LayerSceneBuilder, A.LayerTree, A.Frame, A.CompositorContext, A.CkMaskFilter, A.CkNWayCanvas, A.NativeMemoryFinalizationRegistry, A.UniqueRef, A.CountedRef, A.CkPaint, A.CkPath, A.CkPicture, A.CkPictureRecorder, A.Rasterizer, A.CanvasKitRenderer, A.SimpleCkShader, A.SurfaceFrame, A.Surface, A.CkSurface, A.SurfaceFactory, A.CkParagraphStyle, A.CkTextStyle, A.CkStrutStyle, A.CkParagraph, A.CkLineMetrics, A.CkParagraphBuilder, A.Error, A.ClipboardMessageHandler, A.ClipboardAPICopyStrategy, A.ClipboardAPIPasteStrategy, A.ExecCommandCopyStrategy, A.ExecCommandPasteStrategy, A.FlutterConfiguration, A.Display, A.ScreenOrientation, A.HttpFetchResponseImpl, A.HttpFetchPayloadImpl, A.HttpFetchNoPayloadError, A.HttpFetchError, A.DomSubscription, A.DomPoint, A._DomListIterator, A._DomTouchListIterator, A.DomIteratorWrapper, A.FlutterViewEmbedder, A.EngineCanvas, A.SaveStackEntry, A.SaveClipEntry, A._SaveElementStackEntry, A.SaveElementStackTracking, A.FontFallbackManager, A._UnicodePropertyLookup, A.FallbackFontDownloadQueue, A.FontAsset, A.FontFamily, A.FontManifest, A.AssetFontsResult, A.FrameReference, A.CrossFrameCache, A._CrossFrameCacheItem, A.PersistedSurface, A.SvgBlendMode, A.SurfaceCanvas, A._DomClip, A.SvgFilterBuilder, A.SvgFilter, A.SurfacePaint, A.SurfacePaintData, A.Conic, A.QuadBounds, A.ConicBounds, A._ConicPair, A.CubicBounds, A.SurfacePath, A.PathIterator, A.PathRef, A.PathRefIterator, A.QuadRoots, A.SkQuadCoefficients, A.PathWinding, A.PaintRequest, A.RecordingCanvas, A.PaintCommand, A._PaintBounds, A.RenderStrategy, A._WebGlRenderer, A.HtmlRenderer, A.SurfaceScene, A.SurfaceSceneBuilder, A.NormalizedGradient, A.SharedCanvas, A.EngineGradient, A.EngineImageFilter, A.EngineHtmlColorFilter, A.ShaderBuilder, A.ShaderMethod, A.ShaderDeclaration, A._PersistedSurfaceMatch, A.PrerollSurfaceContext, A.HtmlCodec, A.SingleFrameInfo, A.HtmlImage, A.AnimatedImageFrameInfo, A.ImageFileFormat, A.KeyboardBinding, A.FlutterHtmlKeyboardEvent, A.KeyboardConverter, A.ContextMenu, A.MouseCursor, A.BrowserHistory, A.NotoFont, A.FallbackFontComponent, A.EnginePictureRecorder, A.EnginePicture, A.HighContrastSupport, A.PlatformDispatcher, A.ViewConfiguration0, A.PlatformConfiguration, A.PlatformViewManager, A.PlatformViewMessageHandler, A.SafariPointerEventWorkaround, A.PointerBinding, A.PointerSupportDetector, A._Listener, A._BaseAdapter, A._WheelEventListenerMixin, A._SanitizedDetails, A._ButtonSanitizer, A._PointerState, A.PointerDataConverter, A.Profiler, A.RawKeyboard, A.GlProgram, A.GlContext, A.OffScreenCanvas, A.AccessibilityAnnouncements, A.PrimaryRoleManager, A.RoleManager, A.AccessibilityFocusManager, A.EngineAccessibilityFeatures, A.EngineAccessibilityFeaturesBuilder, A.SemanticsUpdate, A.SemanticsNodeUpdate, A.SemanticsObject, A.EngineSemanticsOwner, A.SemanticsHelper, A.SemanticsEnabler, A._DefaultTextEditingStrategy_Object_CompositionAwareMixin, A.ListBase, A.MethodCall, A.JSONMessageCodec, A.JSONMethodCodec, A.StandardMessageCodec, A.StandardMethodCodec, A.WriteBuffer, A.ReadBuffer, A.SurfaceShadowData, A.CanvasParagraph, A.ParagraphSpan, A.ParagraphPlaceholder, A.StyleNode, A.CanvasParagraphBuilder, A.HtmlFontCollection, A.TextFragmenter, A.TextFragment, A._FragmentMetrics, A._FragmentPosition, A._FragmentBox, A.TextLayoutService, A.LineBuilder, A.Spanometer, A.RulerHost, A.TextPaintService, A.EngineLineMetrics, A.ParagraphLine, A.EngineParagraphStyle, A.EngineTextStyle, A.EngineStrutStyle, A.TextHeightStyle, A.TextDimensions, A.TextHeightRuler, A.UnicodeRange, A.UnicodePropertyLookup, A.BrowserAutofillHints, A.CompositionAwareMixin, A.EngineInputAction, A.EngineInputType, A.TextCapitalizationConfig, A.EngineAutofillForm, A.AutofillInfo, A.TextEditingDeltaState, A.EditingState, A.InputConfiguration, A.TextInputCommand, A.TextEditingChannel, A.HybridTextEditing, A.EditableTextStyle, A.EditableTextGeometry, A.LruCache, A.Matrix4, A.FastMatrix32, A.DimensionsProvider, A.EmbeddingStrategy, A.FlutterView, A.ViewPadding, A.JS_CONST, J.Interceptor, J.ArrayIterator, A._CopyingBytesBuilder, A._BytesBuilder, A.CastIterator, A.MapBase, A.SentinelValue, A.ListIterator, A.MappedIterator, A.WhereIterator, A.ExpandIterator, A.TakeIterator, A.SkipIterator, A.SkipWhileIterator, A.EmptyIterator, A.FollowedByIterator, A.WhereTypeIterator, A.FixedLengthListMixin, A.UnmodifiableListMixin, A.Symbol, A._Record, A.MapView, A.ConstantMap, A._KeysOrValuesOrElementsIterator, A.SetBase, A.JSInvocationMirror, A.TypeErrorDecoder, A.NullThrownFromJavaScriptException, A.ExceptionAndStackTrace, A._StackTrace, A._Required, A.LinkedHashMapCell, A.LinkedHashMapKeyIterator, A.JSSyntaxRegExp, A._MatchImplementation, A._AllMatchesIterator, A.StringMatch, A._StringAllMatchesIterator, A._Cell, A._InitializedCell, A.Rti, A._FunctionParameters, A._Type, A._StringStream, A.LocaleKeymap, A._TimerImpl, A._AsyncAwaitCompleter, A._AsyncStarStreamController, A._IterationMarker, A._SyncStarIterator, A.AsyncError, A.Stream, A._BufferingStreamSubscription, A._BroadcastStreamController, A.TimeoutException, A._Completer, A._FutureListener, A._Future, A._AsyncCallbackEntry, A.StreamTransformerBase, A._StreamController, A._SyncStreamControllerDispatch, A._AsyncStreamControllerDispatch, A._AddStreamState, A._DelayedEvent, A._DelayedDone, A._PendingEvents, A._DoneStreamSubscription, A._StreamIterator, A._EventSinkWrapper, A._HandlerEventSink, A._Zone, A._HashMapKeyIterator, A._HashSetIterator, A._LinkedHashSetCell, A._LinkedHashSetIterator, A._LinkedListIterator, A.LinkedListEntry, A._MapBaseValueIterator, A._UnmodifiableMapMixin, A._DoubleLinkedQueueEntry, A._DoubleLinkedQueueIterator, A._ListQueueIterator, A._UnmodifiableSetMixin, A._SplayTreeNode, A._SplayTree, A._SplayTreeIterator, A.StringConversionSink, A.Codec0, A.Converter, A.ByteConversionSink, A._Base64Encoder, A._Base64Decoder, A.ChunkedConversionSink, A._SimpleCallbackSink, A.HtmlEscapeMode, A._JsonStringifier, A._JsonPrettyPrintMixin, A._ClosableStringSink, A._StringConversionSinkAsStringSinkAdapter, A._Utf8Encoder, A._Utf8Decoder, A._BigIntImpl, A._WeakReferenceWrapper, A.DateTime, A.Duration, A.OutOfMemoryError, A.StackOverflowError, A._Exception, A.FormatException, A.IntegerDivisionByZeroException, A.Iterator, A.MapEntry, A.Null, A._StringStackTrace, A.Stopwatch, A.RuneIterator, A.StringBuffer, A._Uri, A.UriData, A._SimpleUri, A.Expando, A._FakeUserTag, A.ServiceExtensionResponse, A.TimelineTask, A._AsyncBlock, A._SyncBlock, A.CssStyleDeclarationBase, A.EventStreamProvider, A._EventStreamSubscription, A.ImmutableListMixin, A.FixedSizeListIterator, A._AcceptStructuredClone, A.OSError, A.FileSystemEntity, A.FileMode, A.FileSystemException, A._RandomAccessFile, A.JsObject, A.NullRejectionException, A._JSRandom, A._Random, A.Point, A._RectangleBase, A.Endian, A._ChannelCallbackRecord, A._StoredMessage, A._Channel, A.ChannelBuffers, A.OffsetBase, A.Rect, A.Radius, A.RRect, A._HashEnd, A.KeyData, A.Color, A.MaskFilter, A.ImageFilter, A.Shadow, A.ImmutableBuffer, A.FrameTiming, A.Locale, A.SemanticsActionEvent, A.PointerData, A.PointerDataPacket, A.SemanticsAction, A.SemanticsFlag, A.SemanticsUpdateBuilder, A.FontWeight, A.FontFeature, A.FontVariation, A.TextDecoration, A.TextHeightBehavior, A.TextBox, A.TextPosition, A.TextRange, A.ParagraphConstraints, A.CallbackHandle, A.GestureSettings, A.AssetManager, A.BrowserPlatformLocation, A.HashUrlStrategy, A.PlatformViewRegistry, A.GZipEncoder, A.InputStreamBase, A.OutputStreamBase, A.Deflate, A._DeflaterConfig, A._HuffmanTree, A._StaticTree, A.HuffmanTable, A.Inflate, A.AttributedSpans, A.SpanMarker, A.AttributionSpan, A.MultiAttributionSpan, A.IncompatibleOverlappingAttributionsException, A.AttributedText, A.NamedAttribution, A.SpanRange, A._DiagnosticableTree_Object_Diagnosticable, A._State_Object_Diagnosticable, A.BoardViewController, A.CopyOnWriteList, A.CopyOnWriteMap, A.CopyOnWriteSet, A.BuiltList, A.ListBuilder, A.BuiltListMultimap, A.ListMultimapBuilder, A.BuiltMap, A.MapBuilder, A.BuiltSet, A.SetBuilder, A.BuiltSetMultimap, A.SetMultimapBuilder, A.EnumClass, A.IndentingBuiltValueToStringHelper, A.JsonObject, A.FullType, A.BigIntSerializer, A.BoolSerializer, A.BuiltJsonSerializers, A.BuiltJsonSerializersBuilder, A.BuiltListMultimapSerializer, A.BuiltListSerializer, A.BuiltMapSerializer, A.BuiltSetMultimapSerializer, A.BuiltSetSerializer, A.DateTimeSerializer, A.DoubleSerializer, A.DurationSerializer, A.Int32Serializer, A.Int64Serializer, A.IntSerializer, A.JsonObjectSerializer, A.NullSerializer, A.NumSerializer, A.RegExpSerializer, A.StringSerializer, A.Uint8ListSerializer, A.UriSerializer, A.StandardJsonPlugin, A.StringCharacterRange, A.Breaks, A.BackBreaks, A.BaseChart0, A.BaseSeriesRenderer, A.BaseBarRendererElement, A.BaseAnimatedBar, A.LayoutViewConfig, A.ConstCornerStrategy, A.ImmutableAxis, A.Tick, A.CollisionReport, A.BaseRenderSpec, A.BaseTickDrawStrategy, A.NoneDrawStrategy, A.LinearScale, A.LinearScaleDomainInfo, A.LinearScaleFunction, A.LinearScaleViewportSettings, A.NumericExtents, A.BaseTickProvider, A._TickStepInfo, A.OrdinalScaleDomainInfo, A.Scale, A.ScaleOutputExtent, A.RangeBandConfig, A.StepSizeConfig, A.Extents, A.SimpleOrdinalScale, A.AxisSpec, A.TextStyleSpec, A.LineStyleSpec, A.SimpleTickFormatterBase, A.AutoAdjustingDateTimeTickProvider, A.BaseTimeStepper, A._TimeStepIteratorImpl, A.DateTimeTickFormatter, A.TimeTickFormatterImpl, A.LifecycleListener, A.DomainHighlighter0, A.Legend, A.LegendState, A.LegendEntryBase, A.PerSeriesLegendEntryGenerator, A.LinePointHighlighter0, A.LayoutView, A.NullablePoint, A._PointRendererElement, A._AnimatedPoint, A.SelectNearest0, A.CanvasRect, A.CanvasBarStack, A.DatumDetails, A.ImmutableSeries, A.SelectionModel, A.SeriesDatum, A.TypedRegistry, A.IdentityConverter, A.LayoutConfig, A.MarginSpec, A.LayoutManagerImpl, A._MeasuredSizes, A.SizeList, A._DesiredViewSizes, A.VerticalMarginStrategy, A.HorizontalMarginStrategy, A.ViewMargin, A.ViewMeasuredSizes, A._LineRendererElement, A._AnimatedLine, A._AreaRendererElement, A._AnimatedArea, A._AnimatedElements, A._Range, A.Color0, A.LocalDateTimeFactory, A.GestureListener, A.Palette, A.ProxyGestureListener, A.MaterialStyle, A.StyleFactory, A.BaseSymbolRenderer, A.TextMeasurement, A.TypedKey, A.Series, A.ChartBehavior, A.BaseLegendContentBuilder, A.SimpleLegendEntryLayout, A.TabularLegendLayout, A.ChartCanvas, A._RenderObject_Object_DiagnosticableTreeMixin, A.Listenable, A.ChartGestureDetector, A.GraphicsFactory, A.LineStyle, A.SelectionModelConfig, A.SymbolRendererCanvas, A.TextElement, A.TextStyle0, A.MultiChildLayoutDelegate, A.CanonicalizedMap, A.DefaultEquality, A.IterableEquality, A.ListEquality, A._UnorderedEquality, A._MapEntry, A.MapEquality, A.DeepCollectionEquality, A.HeapPriorityQueue, A.XFileBase, A._Parser, A.Token, A.TokenizerBase, A.Message, A.Messages, A.PreprocessorOptions, A.TreeNode, A.Visitor, A.DesktopDropWeb, A.DesktopDrop, A.WebDropItem, A.DropDoneDetails, A.DropEventDetails, A.DropEvent, A.PlatformInterface, A.FilePickerResult, A.KDialogHandler, A.QarmaAndZenityHandler, A.PlatformFile, A.Int32, A.Int64, A.Simulation, A.AnimationWithParentMixin, A.ParametricCurve, A.AnimationLazyListenerMixin, A.AnimationEagerListenerMixin, A.AnimationLocalListenersMixin, A.AnimationLocalStatusListenersMixin, A.Animatable, A.TweenSequenceItem, A._Interval, A.ChangeNotifier, A.TextSelectionControls, A._IconThemeData_Object_Diagnosticable, A.LocalizationsDelegate, A.DefaultCupertinoLocalizations, A._CupertinoBackGestureController, A._Decoration_Object_Diagnosticable, A.BoxPainter, A._CupertinoTextThemeData_Object_Diagnosticable, A._TextThemeDefaultsBuilder, A.NoDefaultCupertinoThemeData, A._CupertinoThemeDefaults, A._CupertinoTextThemeDefaults, A.CupertinoThumbPainter, A.ToggleableStateMixin, A.DiagnosticsNode, A._FlutterErrorDetails_Object_Diagnosticable, A.BindingBase, A.TextTreeConfiguration, A._PrefixedStringBuilder, A._NoDefaultValue, A.TextTreeRenderer, A.DiagnosticPropertiesBuilder, A.Diagnosticable, A.DiagnosticableTreeMixin, A.Key, A._TypeLiteral, A.LicenseParagraph, A.LicenseEntry, A.PersistentHashMap, A._TrieNode, A.WriteBuffer0, A.ReadBuffer0, A.StackFrame, A.SynchronousFuture, A.GestureArenaMember, A.GestureArenaEntry, A._GestureArena, A.GestureArenaManager, A._Resampler, A.GestureBinding, A.Drag, A.DragDownDetails, A.DragStartDetails, A.DragUpdateDetails, A.DragEndDetails, A._PointerEvent_Object_Diagnosticable, A._PointerEventDescription, A._AbstractPointerEvent, A._CopyPointerAddedEvent, A._CopyPointerRemovedEvent, A._CopyPointerHoverEvent, A._CopyPointerEnterEvent, A._CopyPointerExitEvent, A._CopyPointerDownEvent, A._CopyPointerMoveEvent, A._CopyPointerUpEvent, A._CopyPointerScrollEvent, A._CopyPointerScrollInertiaCancelEvent, A._CopyPointerScaleEvent, A._CopyPointerPanZoomStartEvent, A._CopyPointerPanZoomUpdateEvent, A._CopyPointerPanZoomEndEvent, A._CopyPointerCancelEvent, A.ForcePressDetails, A.DeviceGestureSettings, A.HitTestEntry, A._TransformPart, A.HitTestResult, A.LongPressStartDetails, A.LongPressMoveUpdateDetails, A.LongPressEndDetails, A._Vector, A._Matrix, A.PolynomialFit, A.LeastSquaresSolver, A.MultiDragPointerState, A._CountdownZoned, A._TapTracker, A.PointerRouter, A.PointerSignalResolver, A.OffsetPair, A._PointerPanZoomData, A.ScaleStartDetails, A.ScaleUpdateDetails, A.ScaleEndDetails, A._LineBetweenPointers, A.TapDownDetails, A.TapUpDetails, A._TapDragDownDetails_Object_Diagnosticable, A._TapDragUpDetails_Object_Diagnosticable, A._TapDragStartDetails_Object_Diagnosticable, A._TapDragUpdateDetails_Object_Diagnosticable, A._TapDragEndDetails_Object_Diagnosticable, A._TapStatusTrackerMixin, A._CombiningGestureArenaEntry, A.GestureArenaTeam, A.Velocity, A.VelocityEstimate, A._PointAtTime, A.VelocityTracker, A._LicenseData, A._DetailArguments, A._MasterDetailFlowProxy, A._ActionIconThemeData_Object_Diagnosticable, A.ScrollBehavior, A.SingleChildLayoutDelegate, A.SliverPersistentHeaderDelegate, A._AppBarTheme_Object_Diagnosticable, A._Diagonal, A._BadgeThemeData_Object_Diagnosticable, A._MaterialBannerThemeData_Object_Diagnosticable, A._BottomAppBarTheme_Object_Diagnosticable, A._BottomNavigationBarThemeData_Object_Diagnosticable, A._BottomSheetThemeData_Object_Diagnosticable, A._ButtonBarThemeData_Object_Diagnosticable, A._ButtonStyle_Object_Diagnosticable, A._LerpSides, A._MouseCursor_Object_Diagnosticable, A._ButtonThemeData_Object_Diagnosticable, A.SliverGridDelegate, A._CardTheme_Object_Diagnosticable, A._CheckboxThemeData_Object_Diagnosticable, A._ChipThemeData_Object_Diagnosticable, A._ColorScheme_Object_Diagnosticable, A.DataColumn, A.DataRow, A.DataCell, A.TableColumnWidth, A._DataTableThemeData_Object_Diagnosticable, A._DatePickerThemeData_Object_Diagnosticable, A.Route, A._DialogTheme_Object_Diagnosticable, A._DividerThemeData_Object_Diagnosticable, A._DrawerThemeData_Object_Diagnosticable, A._DropdownRouteResult, A._MenuLimits, A._DropdownMenuThemeData_Object_Diagnosticable, A.MaterialStateProperty, A._ElevatedButtonThemeData_Object_Diagnosticable, A._ElevationOpacity, A.ExpansionPanel, A._ExpansionTileThemeData_Object_Diagnosticable, A._FilledButtonThemeData_Object_Diagnosticable, A._DefaultHeroTag, A._FloatingActionButtonThemeData_Object_Diagnosticable, A.FloatingActionButtonLocation, A.FabTopOffsetY, A.FabFloatOffsetY, A.FabDockedOffsetY, A.FabEndOffsetX, A.FloatingActionButtonAnimator, A._IconButtonThemeData_Object_Diagnosticable, A.InkFeature, A.InteractiveInkFeatureFactory, A.ShapeBorder, A.FloatingLabelAlignment, A._Decoration, A._RenderDecorationLayout, A.InputDecoration, A._InputDecorationTheme_Object_Diagnosticable, A._ListTileThemeData_Object_Diagnosticable, A.DefaultMaterialLocalizations, A._BorderSide_Object_Diagnosticable, A._TextStyle_Object_Diagnosticable, A._LerpProperties, A._MaterialStatePropertyWith, A.MaterialStatePropertyAll, A.MaterialStateMixin, A._MenuThemeData_Object_Diagnosticable, A._MenuButtonThemeData_Object_Diagnosticable, A._MenuStyle_Object_Diagnosticable, A._LerpSides1, A.MergeableMaterialItem, A._AnimationTuple, A._NavigationBarThemeData_Object_Diagnosticable, A._NavigationDrawerThemeData_Object_Diagnosticable, A._NavigationRailThemeData_Object_Diagnosticable, A._OutlinedButtonThemeData_Object_Diagnosticable, A.MaterialRouteTransitionMixin, A.PageTransitionsBuilder, A._PageTransitionsTheme_Object_Diagnosticable, A._ZoomTransitionBase, A._PopupMenuThemeData_Object_Diagnosticable, A._ProgressIndicatorThemeData_Object_Diagnosticable, A._RadioThemeData_Object_Diagnosticable, A.ScaffoldPrelayoutGeometry, A.ScaffoldGeometry, A.Constraints, A._Action_Object_Diagnosticable, A.ScaffoldFeatureController, A._ScrollbarThemeData_Object_Diagnosticable, A._SearchBarThemeData_Object_Diagnosticable, A._LerpSides0, A._SearchViewThemeData_Object_Diagnosticable, A._SegmentedButtonThemeData_Object_Diagnosticable, A.TextSelectionGestureDetectorBuilder, A._SliderThemeData_Object_Diagnosticable, A._SnackBarThemeData_Object_Diagnosticable, A._SwitchConfig, A.__SwitchConfigM2_Object__SwitchConfig, A._SwitchThemeData_Object_Diagnosticable, A.__SwitchConfigM3_Object__SwitchConfig, A._TabBarTheme_Object_Diagnosticable, A._TextButtonThemeData_Object_Diagnosticable, A._TextSelectionThemeData_Object_Diagnosticable, A._TextTheme_Object_Diagnosticable, A._ThemeData_Object_Diagnosticable, A._IdentityThemeDataCacheKey, A._FifoCache, A._VisualDensity_Object_Diagnosticable, A.TimeOfDay, A._TappableLabel, A._TimePickerThemeData_Object_Diagnosticable, A._ToggleButtonsThemeData_Object_Diagnosticable, A.ToggleableStateMixin0, A._TooltipThemeData_Object_Diagnosticable, A._Typography_Object_Diagnosticable, A.ImageProvider, A.AlignmentGeometry, A.TextAlignVertical, A.PaintingBinding, A.BorderRadiusGeometry, A.FittedSizes, A.ClipContext, A.HSLColor, A.ImageSizeInfo, A._BlendedDecorationImage, A._BlendedDecorationImagePainter, A.EdgeInsetsGeometry, A._ColorsAndStops, A.Gradient, A.ImageCache, A._CachedImageBase, A._PendingImage, A.ImageConfiguration, A._ImageStreamCompleter_Object_Diagnosticable, A.AssetBundleImageKey, A.NetworkImageLoadException, A.ImageInfo, A.ImageStreamListener, A._ImageChunkEvent_Object_Diagnosticable, A._ImageStream_Object_Diagnosticable, A.ImageStreamCompleterHandle, A.Accumulator, A.InlineSpanSemanticsInformation, A.NotchedShape, A._StrutStyle_Object_Diagnosticable, A.PlaceholderDimensions, A.TextBoundary, A._TextLayout, A._TextPainterLayoutCacheWithOffset, A._LineCaretMetrics, A._EmptyLineCaretMetrics, A.TextPainter, A._LinearTextScaler, A.SpringDescription, A._CriticalSolution, A._OverdampedSolution, A._UnderdampedSolution, A.Tolerance, A.RendererBinding, A._PipelineOwner_Object_DiagnosticableTreeMixin, A.ParentData, A._IntrinsicDimensionsCacheEntry, A.RenderBoxContainerDefaultsMixin, A.CustomPainterSemantics, A.DebugOverflowIndicatorMixin, A.TextSelectionPoint, A.VerticalCaretMovementRun, A._LayoutSizes, A.AnnotationEntry, A.AnnotationResult, A._Layer_Object_DiagnosticableTreeMixin, A.LayerHandle, A.LayerLink, A._MouseState, A.__MouseTrackerUpdateDetails_Object_Diagnosticable, A.RenderObjectWithChildMixin, A.ContainerParentDataMixin, A.ContainerRenderObjectMixin, A.RelayoutWhenSystemFontsChangeMixin, A._SemanticsFragment, A._SemanticsGeometry, A.SemanticsTag, A.RenderInlineChildrenContainerDefaults, A.__SelectableFragment_Object_Selectable, A._PlatformViewGestureMixin, A.RenderProxyBoxMixin, A.RenderAnimatedOpacityMixin, A.Selectable, A.SelectionRegistrant, A.SelectionEvent, A.SelectionGeometry, A._SelectionPoint_Object_Diagnosticable, A.SliverLayoutDimensions, A._SliverGeometry_Object_Diagnosticable, A.RenderSliverHelpers, A.SliverGridGeometry, A.SliverGridLayout, A.KeepAliveParentDataMixin, A.RenderSliverWithKeepAliveMixin, A.PersistentHeaderShowOnScreenConfiguration, A.RelativeRect, A.ViewConfiguration, A.RevealedOffset, A._RunMetrics, A._TaskEntry, A._FrameCallbackEntry, A.PerformanceModeRequestHandle, A.SchedulerBinding, A.Ticker, A.TickerFuture, A.TickerCanceled, A.SemanticsBinding, A.SemanticsHandle, A.ChildSemanticsConfigurationsResult, A.ChildSemanticsConfigurationsResultBuilder, A.CustomSemanticsAction, A.AttributedString, A._SemanticsData_Object_Diagnosticable, A._SemanticsNode_Object_DiagnosticableTreeMixin, A._BoxEdge, A._SemanticsSortGroup, A._TraversalSortNode, A.SemanticsConfiguration, A._SemanticsSortKey_Object_Diagnosticable, A.SemanticsEvent, A.AssetBundle, A._AssetManifestBin, A.AssetMetadata, A.AutofillConfiguration, A.TextInputConfiguration, A.AutofillScopeMixin, A.BinaryMessenger, A.ServicesBinding, A.BrowserContextMenu, A.ClipboardData, A._KeyEvent_Object_Diagnosticable, A.HardwareKeyboard, A.KeyMessage, A.KeyEventManager, A.KeyboardInsertedContent, A._KeyboardKey_Object_Diagnosticable, A.MethodCall0, A.PlatformException, A.MissingPluginException, A.StringCodec, A.JSONMessageCodec0, A.JSONMethodCodec0, A.StandardMessageCodec0, A.StandardMethodCodec0, A.MouseCursorManager, A.MouseCursorSession, A.BasicMessageChannel, A.MethodChannel, A.PlatformViewsRegistry, A.PlatformViewController, A._RawKeyEventData_Object_Diagnosticable, A._RawKeyEvent_Object_Diagnosticable, A.RawKeyboard0, A._ModifierSidePair, A.RestorationBucket, A.SuggestionSpan, A.SpellCheckResults, A.DefaultSpellCheckService, A.ApplicationSwitcherDescription, A.SystemUiOverlayStyle, A._TextEditingDelta_Object_Diagnosticable, A.TextInputFormatter, A._MutableTextRange, A._TextEditingValueAccumulator, A.TextInputType, A.RawFloatingCursorPoint, A.TextEditingValue, A.TextSelectionDelegate, A.TextInputClient, A.SelectionRect, A.DeltaTextInputClient, A.TextInputConnection, A.TextInput, A.TextInputControl, A.__PlatformTextInputControl_Object_TextInputControl, A.UndoManager, A.UndoManagerClient, A._Intent_Object_Diagnosticable, A._ActionDispatcher_Object_Diagnosticable, A._OverridableActionMixin, A._ChildEntry, A.AsyncSnapshot, A.Notification0, A.AutomaticKeepAliveClientMixin, A.WidgetsBindingObserver, A.WidgetsBinding, A.ContextMenuButtonItem, A.ContextMenuController, A.DisposableBuildContext, A._DraggableSheetExtent, A.ToolbarOptions, A._KeyFrame, A._ScribbleCacheKey, A._GlyphHeights, A._Autofocus, A.FocusAttachment, A._FocusNode_Object_DiagnosticableTreeMixin, A._FocusManager_Object_DiagnosticableTreeMixin, A._HighlightModeManager, A._FocusTraversalGroupInfo, A._FocusTraversalPolicy_Object_Diagnosticable, A._DirectionalPolicyDataEntry, A._DirectionalPolicyData, A.DirectionalFocusTraversalPolicyMixin, A.__ReadingOrderSortData_Object_Diagnosticable, A.__ReadingOrderDirectionalGroupData_Object_Diagnosticable, A._InactiveElements, A.BuildOwner, A.NotifiableElementMixin, A._NotificationNode, A.RootElementMixin, A.IndexedSlot, A.GestureRecognizerFactory, A.SemanticsGestureDelegate, A._HeroFlightManifest, A._HeroFlight, A.NavigatorObserver, A.IconData, A.CapturedThemes, A.RenderConstrainedLayoutBuilder, A._Pending, A.DefaultWidgetsLocalizations, A.MagnifierInfo, A.TextMagnifierConfiguration, A.MagnifierController, A.MediaQueryData, A.RouteSettings, A.RouteTransitionRecord, A.TransitionDelegate, A._NavigatorObservation, A._RestorationInformation, A.OverlayEntry, A._RenderTheaterMixin, A.OverlayPortalController, A._StorageEntryIdentifier, A.PageStorageBucket, A._FixedScrollMetrics_Object_ScrollMetrics, A.ScrollPhysics, A.MenuSerializableShortcut, A.PlatformMenuDelegate, A.PlatformViewCreationParams, A.RestorationMixin, A.RouteInformation, A.LocalHistoryEntry, A.LocalHistoryRoute, A.ScrollActivity, A.ScrollDragController, A._WrappedScrollBehavior, A.SliverChildDelegate, A.ScrollMetrics, A.ViewportNotificationMixin, A.ViewportElementMixin, A.SelectionContainerDelegate, A.ScrollableDetails, A.EdgeDraggingAutoScroller, A.KeySet, A._SingleActivator_Object_Diagnosticable, A.__ActivatorIntentPair_Object_Diagnosticable, A._ShortcutManager_Object_Diagnosticable, A._ShortcutRegistry_Object_ChangeNotifier, A._RenderSliverPersistentHeaderForWidgetsMixin, A.SlottedMultiChildRenderObjectWidgetMixin, A.SlottedContainerRenderObjectMixin, A._DefaultSnapshotPainter, A.SpellCheckConfiguration, A.TableRow, A._TableElementRow, A.__TableSlot_Object_Diagnosticable, A.TextSelectionOverlay, A.SelectionOverlay, A.TextSelectionHandleControls, A.TextSelectionToolbarAnchors, A.SingleTickerProviderStateMixin, A.TickerProviderStateMixin, A._ConstantValueListenable, A.UndoHistoryValue, A._UndoStack, A.GlobalCupertinoLocalizations, A.GlobalMaterialLocalizations, A.GlobalWidgetsLocalizations, A.SlidableAutoCloseNotification, A.SlidableAutoCloseBarrierNotification, A.EndGesture, A.SlidableController, A.ActionPaneData, A.StaggeredGridDelegate, A._TileOrigin, A.StyledToastPosition, A.ToastFuture, A.ToastManager, A.StaticOffsetAligner, A.FollowerAlignment, A.ScreenFollowerBoundary, A.WidgetFollowerBoundary, A._LeaderLink_Object_ChangeNotifier, A.CustomLayerLinkHandle, A.GoogleSignInAuthentication, A.GoogleSignInAccount, A.GoogleSignIn, A.SignInInitParameters, A.GoogleSignInUserData, A.GoogleSignInTokenData, A.AttributeName, A._ParentNode, A._NonElementParentNode, A._ElementAndDocument, A.Node0, A.TreeVisitor, A.HtmlParser, A.Phase, A.ParseError, A.ReparseException, A.EncodingBytes, A.ContentAttrParser, A._EncodingRangeException, A.HtmlInputStream, A.Token0, A.TagAttribute, A.HtmlTokenizer, A.TreeBuilder, A.Pair, A.Node, A._StyleOption, A.Rule, A.BaseClient, A.BaseRequest, A.BaseResponse, A.ClientException, A.MultipartFile, A.MediaType, A.ChannelIterator, A.IfdContainer, A.ExifTag, A.IfdDirectory, A.IfdValue, A.Decoder, A.PngFrame, A.PngInfo, A.IccProfile, A.Palette0, A.ImageException, A.InputBuffer, A.ImageResizer, A.InAppPurchase, A.BillingClientManager, A.BillingClient, A.BillingResponseConverter, A.ProductTypeConverter, A.BillingResultWrapper, A.OneTimePurchaseOfferDetailsWrapper, A.ProductDetailsWrapper, A.ProductDetailsResponseWrapper, A.RecurrenceModeConverter, A.ProductWrapper, A.PurchaseWrapper, A.PurchasesResultWrapper, A.PurchaseStateConverter, A.SubscriptionOfferDetailsWrapper, A.PricingPhaseWrapper, A.InAppPurchasePlatformAddition, A.ProductDetails, A.PurchaseDetails, A.PurchaseParam, A.IAPError, A.InAppPurchaseException, A.ProductDetailsResponse, A.PurchaseVerificationData, A._TransactionObserver, A.SKTransactionStatusConverter, A.SKSubscriptionPeriodUnitConverter, A.SKProductDiscountPaymentModeConverter, A.SKProductDiscountTypeConverter, A.SKPaymentQueueWrapper, A.SKError, A.SKPaymentWrapper, A.SKPaymentTransactionWrapper, A.SkProductResponseWrapper, A.SKProductSubscriptionPeriodWrapper, A.SKProductDiscountWrapper, A.SKProductWrapper, A.SKPriceLocaleWrapper, A.SKRequestMaker, A.SKStorefrontWrapper, A.DateSymbols, A.NumberSymbols, A.DateBuilder, A.DateFormat, A._DateFormatField, A.NumberFormat, A.NumberFormatParseResult, A.NumberFormatParser, A.StringStack, A.UninitializedLocaleData, A.LocaleDataException, A.Country, A.PhoneNumber, A.InvoiceStatusColors, A.RecurringInvoiceStatusColors, A.CreditStatusColors, A.PurchaseOrderStatusColors, A.TransactionStatusColors, A.QuoteStatusColors, A.PaymentStatusColors, A.ExpenseStatusColors, A.TaskStatusColors, A.FileStorage, A.AccountEntity, A._$AccountEntitySerializer, A.AccountEntityBuilder, A.BankAccountListResponse, A.BankAccountItemResponse, A._BankAccountEntity_Object_BaseEntity, A._$BankAccountListResponseSerializer, A._$BankAccountItemResponseSerializer, A._$BankAccountEntitySerializer, A.BankAccountListResponseBuilder, A.BankAccountItemResponseBuilder, A.BankAccountEntityBuilder, A.ClientListResponse, A.ClientItemResponse, A._ClientEntity_Object_BaseEntity, A._ClientContactEntity_Object_BaseEntity, A._$ClientListResponseSerializer, A._$ClientItemResponseSerializer, A._$ClientEntitySerializer, A._$ClientContactEntitySerializer, A.ClientListResponseBuilder, A.ClientItemResponseBuilder, A.ClientEntityBuilder, A.ClientContactEntityBuilder, A.CompanyGatewayListResponse, A.CompanyGatewayItemResponse, A._CompanyGatewayEntity_Object_BaseEntity, A.FeesAndLimitsSettings, A._$CompanyGatewayListResponseSerializer, A._$CompanyGatewayItemResponseSerializer, A._$CompanyGatewayEntitySerializer, A._$FeesAndLimitsSettingsSerializer, A.CompanyGatewayListResponseBuilder, A.CompanyGatewayItemResponseBuilder, A.CompanyGatewayEntityBuilder, A.FeesAndLimitsSettingsBuilder, A._CompanyEntity_Object_BaseEntity, A._GatewayEntity_Object_SelectableEntity, A.GatewayOptionsEntity, A.UserCompanyEntity, A.UserSettingsEntity, A.ReportSettingsEntity, A.CompanyItemResponse, A.RegistrationFieldEntity, A.DashboardField, A._$CompanyEntitySerializer, A._$GatewayEntitySerializer, A._$GatewayOptionsEntitySerializer, A._$UserCompanyEntitySerializer, A._$UserSettingsEntitySerializer, A._$ReportSettingsEntitySerializer, A._$CompanyItemResponseSerializer, A._$RegistrationFieldEntitySerializer, A._$DashboardFieldSerializer, A.CompanyEntityBuilder, A.GatewayEntityBuilder, A.GatewayOptionsEntityBuilder, A.UserCompanyEntityBuilder, A.UserSettingsEntityBuilder, A.ReportSettingsEntityBuilder, A.CompanyItemResponseBuilder, A.RegistrationFieldEntityBuilder, A.DashboardFieldBuilder, A.CreditListResponse, A.CreditItemResponse, A._$CreditListResponseSerializer, A._$CreditItemResponseSerializer, A.CreditListResponseBuilder, A.CreditItemResponseBuilder, A.DashboardSettings, A._$DateRangeSerializer, A._$DateRangeComparisonSerializer, A.DesignListResponse, A.DesignItemResponse, A.DesignPreviewRequest, A._DesignEntity_Object_BaseEntity, A._$DesignListResponseSerializer, A._$DesignItemResponseSerializer, A._$DesignPreviewRequestSerializer, A._$DesignEntitySerializer, A.DesignListResponseBuilder, A.DesignItemResponseBuilder, A.DesignPreviewRequestBuilder, A.DesignEntityBuilder, A.DocumentListResponse, A.DocumentItemResponse, A._DocumentEntity_Object_BaseEntity, A._$DocumentListResponseSerializer, A._$DocumentItemResponseSerializer, A._$DocumentEntitySerializer, A.DocumentListResponseBuilder, A.DocumentItemResponseBuilder, A.DocumentEntityBuilder, A.EntityStatus, A.EntityStats, A.SelectableEntity, A.BaseEntity, A.HasActivities, A.BelongsToClient, A.BelongsToVendor, A.LoginResponse, A.ActivityEntity, A.LedgerEntity, A._$EntityTypeSerializer, A._$EntityStateSerializer, A._$EmailTemplateSerializer, A._$LoginResponseSerializer, A._$ActivityEntitySerializer, A._$LedgerEntitySerializer, A.LoginResponseBuilder, A.ActivityEntityBuilder, A.LedgerEntityBuilder, A.ExpenseCategoryListResponse, A.ExpenseCategoryItemResponse, A._ExpenseCategoryEntity_Object_BaseEntity, A._$ExpenseCategoryListResponseSerializer, A._$ExpenseCategoryItemResponseSerializer, A._$ExpenseCategoryEntitySerializer, A.ExpenseCategoryListResponseBuilder, A.ExpenseCategoryItemResponseBuilder, A.ExpenseCategoryEntityBuilder, A.ExpenseListResponse, A.ExpenseItemResponse, A._ExpenseEntity_Object_BaseEntity, A.ExpenseScheduleEntity, A._ExpenseStatusEntity_Object_EntityStatus, A._$ExpenseListResponseSerializer, A._$ExpenseItemResponseSerializer, A._$ExpenseEntitySerializer, A._$ExpenseScheduleEntitySerializer, A._$ExpenseStatusEntitySerializer, A.ExpenseListResponseBuilder, A.ExpenseItemResponseBuilder, A.ExpenseEntityBuilder, A.ExpenseScheduleEntityBuilder, A.ExpenseStatusEntityBuilder, A.GatewayTokenListResponse, A.GatewayTokenItemResponse, A._GatewayTokenEntity_Object_BaseEntity, A.GatewayTokenMetaEntity, A._$GatewayTokenListResponseSerializer, A._$GatewayTokenItemResponseSerializer, A._$GatewayTokenEntitySerializer, A._$GatewayTokenMetaEntitySerializer, A.GatewayTokenListResponseBuilder, A.GatewayTokenItemResponseBuilder, A.GatewayTokenEntityBuilder, A.GatewayTokenMetaEntityBuilder, A.GroupListResponse, A.GroupItemResponse, A._GroupEntity_Object_BaseEntity, A._$GroupListResponseSerializer, A._$GroupItemResponseSerializer, A._$GroupEntitySerializer, A.GroupListResponseBuilder, A.GroupItemResponseBuilder, A.GroupEntityBuilder, A.HealthCheckResponse, A.HealthCheckPHPResponse, A._$HealthCheckResponseSerializer, A._$HealthCheckPHPResponseSerializer, A.HealthCheckResponseBuilder, A.HealthCheckPHPResponseBuilder, A.PreImportResponse, A.PreImportResponseEntityDetails, A.ImportRequest, A.ImportRequestMapping, A._$PreImportResponseSerializer, A._$PreImportResponseEntityDetailsSerializer, A._$ImportRequestSerializer, A._$ImportRequestMappingSerializer, A.PreImportResponseBuilder, A.PreImportResponseEntityDetailsBuilder, A.ImportRequestBuilder, A.ImportRequestMappingBuilder, A.InvoiceListResponse, A.InvoiceItemResponse, A._InvoiceEntity_Object_BaseEntity, A.InvoiceItemEntity, A._InvitationEntity_Object_BaseEntity, A.InvoiceScheduleEntity, A.InvoiceHistoryEntity, A._$InvoiceListResponseSerializer, A._$InvoiceItemResponseSerializer, A._$InvoiceEntitySerializer, A._$InvoiceItemEntitySerializer, A._$InvitationEntitySerializer, A._$InvoiceScheduleEntitySerializer, A._$InvoiceHistoryEntitySerializer, A.InvoiceListResponseBuilder, A.InvoiceItemResponseBuilder, A.InvoiceEntityBuilder, A.InvoiceItemEntityBuilder, A.InvitationEntityBuilder, A.InvoiceScheduleEntityBuilder, A.InvoiceHistoryEntityBuilder, A.CalculateInvoiceTotal, A.PaymentListResponse, A.PaymentItemResponse, A._PaymentEntity_Object_BaseEntity, A._PaymentableEntity_Object_SelectableEntity, A._$PaymentListResponseSerializer, A._$PaymentItemResponseSerializer, A._$PaymentEntitySerializer, A._$PaymentableEntitySerializer, A.PaymentListResponseBuilder, A.PaymentItemResponseBuilder, A.PaymentEntityBuilder, A.PaymentableEntityBuilder, A.PaymentTermListResponse, A.PaymentTermItemResponse, A._PaymentTermEntity_Object_BaseEntity, A._$PaymentTermListResponseSerializer, A._$PaymentTermItemResponseSerializer, A._$PaymentTermEntitySerializer, A.PaymentTermListResponseBuilder, A.PaymentTermItemResponseBuilder, A.PaymentTermEntityBuilder, A.ProductListResponse, A.ProductItemResponse, A._ProductEntity_Object_BaseEntity, A._$ProductListResponseSerializer, A._$ProductItemResponseSerializer, A._$ProductEntitySerializer, A.ProductListResponseBuilder, A.ProductItemResponseBuilder, A.ProductEntityBuilder, A.ProjectListResponse, A.ProjectItemResponse, A._ProjectEntity_Object_BaseEntity, A._$ProjectListResponseSerializer, A._$ProjectItemResponseSerializer, A._$ProjectEntitySerializer, A.ProjectListResponseBuilder, A.ProjectItemResponseBuilder, A.ProjectEntityBuilder, A.ScheduleListResponse, A.ScheduleItemResponse, A._ScheduleEntity_Object_BaseEntity, A.ScheduleParameters, A._$ScheduleListResponseSerializer, A._$ScheduleItemResponseSerializer, A._$ScheduleEntitySerializer, A._$ScheduleParametersSerializer, A.ScheduleListResponseBuilder, A.ScheduleItemResponseBuilder, A.ScheduleEntityBuilder, A.ScheduleParametersBuilder, A.SettingsEntity, A.PdfPreviewRequest, A._$SettingsEntitySerializer, A._$PdfPreviewRequestSerializer, A.SettingsEntityBuilder, A.PdfPreviewRequestBuilder, A.ColorTheme, A.CountryListResponse, A.CountryItemResponse, A._CountryEntity_Object_SelectableEntity, A._$CountryListResponseSerializer, A._$CountryItemResponseSerializer, A._$CountryEntitySerializer, A.CountryListResponseBuilder, A.CountryItemResponseBuilder, A.CountryEntityBuilder, A.CurrencyListResponse, A.CurrencyItemResponse, A._CurrencyEntity_Object_SelectableEntity, A._$CurrencyListResponseSerializer, A._$CurrencyItemResponseSerializer, A._$CurrencyEntitySerializer, A.CurrencyListResponseBuilder, A.CurrencyItemResponseBuilder, A.CurrencyEntityBuilder, A.DateFormatListResponse, A.DateFormatItemResponse, A._DateFormatEntity_Object_SelectableEntity, A._$DateFormatListResponseSerializer, A._$DateFormatItemResponseSerializer, A._$DateFormatEntitySerializer, A.DateFormatListResponseBuilder, A.DateFormatItemResponseBuilder, A.DateFormatEntityBuilder, A.DatetimeFormatListResponse, A.DatetimeFormatItemResponse, A.DatetimeFormatEntity, A._$DatetimeFormatListResponseSerializer, A._$DatetimeFormatItemResponseSerializer, A._$DatetimeFormatEntitySerializer, A.DatetimeFormatListResponseBuilder, A.DatetimeFormatItemResponseBuilder, A.DatetimeFormatEntityBuilder, A._DocumentStatusEntity_Object_EntityStatus, A.DocumentStatusEntityBuilder, A._FontEntity_Object_SelectableEntity, A.IndustryListResponse, A.IndustryItemResponse, A._IndustryEntity_Object_SelectableEntity, A._$IndustryListResponseSerializer, A._$IndustryItemResponseSerializer, A._$IndustryEntitySerializer, A.IndustryListResponseBuilder, A.IndustryItemResponseBuilder, A.IndustryEntityBuilder, A._InvoiceStatusEntity_Object_EntityStatus, A._$InvoiceStatusEntitySerializer, A.InvoiceStatusEntityBuilder, A.LanguageListResponse, A.LanguageItemResponse, A._LanguageEntity_Object_SelectableEntity, A._$LanguageListResponseSerializer, A._$LanguageItemResponseSerializer, A._$LanguageEntitySerializer, A.LanguageListResponseBuilder, A.LanguageItemResponseBuilder, A.LanguageEntityBuilder, A._PaymentStatusEntity_Object_EntityStatus, A.PaymentStatusEntityBuilder, A.PaymentTypeListResponse, A.PaymentTypeItemResponse, A._PaymentTypeEntity_Object_SelectableEntity, A._$PaymentTypeListResponseSerializer, A._$PaymentTypeItemResponseSerializer, A._$PaymentTypeEntitySerializer, A.PaymentTypeListResponseBuilder, A.PaymentTypeItemResponseBuilder, A.PaymentTypeEntityBuilder, A.SizeListResponse, A.SizeItemResponse, A._SizeEntity_Object_SelectableEntity, A._$SizeListResponseSerializer, A._$SizeItemResponseSerializer, A._$SizeEntitySerializer, A.SizeListResponseBuilder, A.SizeItemResponseBuilder, A.SizeEntityBuilder, A.StaticDataItemResponse, A.StaticDataEntity, A.TemplateEntity, A._$StaticDataItemResponseSerializer, A._$StaticDataEntitySerializer, A._$TemplateEntitySerializer, A.StaticDataItemResponseBuilder, A.StaticDataEntityBuilder, A.TemplateEntityBuilder, A.TimezoneListResponse, A.TimezoneItemResponse, A._TimezoneEntity_Object_SelectableEntity, A._$TimezoneListResponseSerializer, A._$TimezoneItemResponseSerializer, A._$TimezoneEntitySerializer, A.TimezoneListResponseBuilder, A.TimezoneItemResponseBuilder, A.TimezoneEntityBuilder, A.SubscriptionListResponse, A.SubscriptionItemResponse, A._SubscriptionEntity_Object_BaseEntity, A.WebhookConfigurationEntity, A._$SubscriptionListResponseSerializer, A._$SubscriptionItemResponseSerializer, A._$SubscriptionEntitySerializer, A._$WebhookConfigurationEntitySerializer, A.SubscriptionListResponseBuilder, A.SubscriptionItemResponseBuilder, A.SubscriptionEntityBuilder, A.WebhookConfigurationEntityBuilder, A.SystemLogEntity, A._$SystemLogEntitySerializer, A.SystemLogEntityBuilder, A.TaskListResponse, A.TaskItemResponse, A.TaskTime, A._TaskEntity_Object_BaseEntity, A._$TaskListResponseSerializer, A._$TaskItemResponseSerializer, A._$TaskEntitySerializer, A.TaskListResponseBuilder, A.TaskItemResponseBuilder, A.TaskTimeBuilder, A.TaskEntityBuilder, A.TaskStatusListResponse, A.TaskStatusItemResponse, A._TaskStatusEntity_Object_BaseEntity, A._$TaskStatusListResponseSerializer, A._$TaskStatusItemResponseSerializer, A._$TaskStatusEntitySerializer, A.TaskStatusListResponseBuilder, A.TaskStatusItemResponseBuilder, A.TaskStatusEntityBuilder, A.TaxDataEntity, A.TaxConfigEntity, A.TaxConfigRegionEntity, A.TaxConfigSubregionEntity, A._$TaxDataEntitySerializer, A._$TaxConfigEntitySerializer, A._$TaxConfigRegionEntitySerializer, A._$TaxConfigSubregionEntitySerializer, A.TaxDataEntityBuilder, A.TaxConfigEntityBuilder, A.TaxConfigRegionEntityBuilder, A.TaxConfigSubregionEntityBuilder, A.TaxRateListResponse, A.TaxRateItemResponse, A._TaxRateEntity_Object_BaseEntity, A._$TaxRateListResponseSerializer, A._$TaxRateItemResponseSerializer, A._$TaxRateEntitySerializer, A.TaxRateListResponseBuilder, A.TaxRateItemResponseBuilder, A.TaxRateEntityBuilder, A.TokenListResponse, A.TokenItemResponse, A._TokenEntity_Object_BaseEntity, A._$TokenListResponseSerializer, A._$TokenItemResponseSerializer, A._$TokenEntitySerializer, A.TokenListResponseBuilder, A.TokenItemResponseBuilder, A.TokenEntityBuilder, A.TransactionListResponse, A.TransactionItemResponse, A._TransactionEntity_Object_BaseEntity, A._TransactionStatusEntity_Object_EntityStatus, A._$TransactionListResponseSerializer, A._$TransactionItemResponseSerializer, A._$TransactionEntitySerializer, A._$TransactionStatusEntitySerializer, A.TransactionListResponseBuilder, A.TransactionItemResponseBuilder, A.TransactionEntityBuilder, A.TransactionStatusEntityBuilder, A.TransactionRuleListResponse, A.TransactionRuleItemResponse, A._TransactionRuleEntity_Object_BaseEntity, A.TransactionRuleCriteriaEntity, A._$TransactionRuleListResponseSerializer, A._$TransactionRuleItemResponseSerializer, A._$TransactionRuleEntitySerializer, A._$TransactionRuleCriteriaEntitySerializer, A.TransactionRuleListResponseBuilder, A.TransactionRuleItemResponseBuilder, A.TransactionRuleEntityBuilder, A.TransactionRuleCriteriaEntityBuilder, A.UserListResponse, A.UserItemResponse, A.UserTwoFactorResponse, A.UserTwoFactorData, A.UserCompanyItemResponse, A._UserEntity_Object_BaseEntity, A._$UserListResponseSerializer, A._$UserItemResponseSerializer, A._$UserTwoFactorResponseSerializer, A._$UserTwoFactorDataSerializer, A._$UserCompanyItemResponseSerializer, A._$UserEntitySerializer, A.UserListResponseBuilder, A.UserItemResponseBuilder, A.UserTwoFactorResponseBuilder, A.UserTwoFactorDataBuilder, A.UserCompanyItemResponseBuilder, A.UserEntityBuilder, A.VendorListResponse, A.VendorItemResponse, A._VendorEntity_Object_BaseEntity, A._VendorContactEntity_Object_BaseEntity, A._$VendorListResponseSerializer, A._$VendorItemResponseSerializer, A._$VendorEntitySerializer, A._$VendorContactEntitySerializer, A.VendorListResponseBuilder, A.VendorItemResponseBuilder, A.VendorEntityBuilder, A.VendorContactEntityBuilder, A.WebhookListResponse, A.WebhookItemResponse, A._WebhookEntity_Object_BaseEntity, A._$WebhookListResponseSerializer, A._$WebhookItemResponseSerializer, A._$WebhookEntitySerializer, A.WebhookListResponseBuilder, A.WebhookItemResponseBuilder, A.WebhookEntityBuilder, A.AuthRepository, A.BankAccountRepository, A.ClientRepository, A.CompanyGatewayRepository, A.CreditRepository, A.DesignRepository, A.DocumentRepository, A.ExpenseCategoryRepository, A.ExpenseRepository, A.GroupRepository, A.InvoiceRepository, A.PaymentRepository, A.PaymentTermRepository, A.PersistenceRepository, A.ProductRepository, A.ProjectRepository, A.PurchaseOrderRepository, A.QuoteRepository, A.RecurringExpenseRepository, A.RecurringInvoiceRepository, A.ScheduleRepository, A.SettingsRepository, A.SubscriptionRepository, A.TaskRepository, A.TaskStatusRepository, A.TaxRateRepository, A.TokenRepository, A.TransactionRepository, A.TransactionRuleRepository, A.UserRepository, A.VendorRepository, A.WebhookRepository, A.WebClient, A.PersistData, A.ClearPersistedData, A.SwitchListTableLayout, A.PopLastHistory, A.UpdateLastHistory, A.DismissNativeWarning, A.DismissNativeWarningPermanently, A.DismissGatewayWarningPermanently, A.DismissTaskExtensionBanner, A.ViewMainScreen, A.StartLoading, A.StopLoading, A.StartSaving, A.StopSaving, A.LoadStaticSuccess, A.ToggleEditorLayout, A.ToggleViewerLayout, A.TogglePreviewSidebar, A.UpdateUserPreferences, A.LoadAccountSuccess, A.ResendConfirmation, A.ResendConfirmationFailure, A.ResendConfirmationSuccess, A.RefreshData, A.RefreshDataSuccess, A.RefreshDataFailure, A.PreviewEntity, A.ClearPreviewStack, A.PopPreviewStack, A.PopFilterStack, A.ClearData, A.ClearLastError, A.DiscardChanges, A.ClearEntityFilter, A.ClearEntitySelection, A.FilterByEntity, A.FilterCompany, A.AppState, A.Credentials, A.SelectionState, A._$AppStateSerializer, A.AppStateBuilder, A.LoadStateRequest, A.LoadStateSuccess, A.OAuthLoginRequest, A.UserLoadUrl, A.UserLoginRequest, A.UserLoginSuccess, A.UserLoginFailure, A.RecoverPasswordRequest, A.RecoverPasswordSuccess, A.RecoverPasswordFailure, A.UserLogout, A.UserLogoutAll, A.UserLogoutAllSuccess, A.UserLogoutAllFailure, A.UserSignUpRequest, A.OAuthSignUpRequest, A.UserVerifiedPassword, A.UserUnverifiedPassword, A.AuthState, A._$AuthStateSerializer, A.AuthStateBuilder, A.ViewBankAccountList, A.ViewBankAccount, A.EditBankAccount, A.UpdateBankAccount, A.LoadBankAccountRequest, A.LoadBankAccountFailure, A.LoadBankAccountSuccess, A.LoadBankAccountsRequest, A.LoadBankAccountsFailure, A.LoadBankAccountsSuccess, A.SaveBankAccountRequest, A.SaveBankAccountSuccess, A.AddBankAccountSuccess, A.SaveBankAccountFailure, A.ArchiveBankAccountsRequest, A.ArchiveBankAccountsSuccess, A.ArchiveBankAccountsFailure, A.DeleteBankAccountsRequest, A.DeleteBankAccountsSuccess, A.DeleteBankAccountsFailure, A.RestoreBankAccountsRequest, A.RestoreBankAccountsSuccess, A.RestoreBankAccountsFailure, A.FilterBankAccounts, A.SortBankAccounts, A.FilterBankAccountsByState, A.FilterBankAccountsByCustom1, A.FilterBankAccountsByCustom2, A.FilterBankAccountsByCustom3, A.FilterBankAccountsByCustom4, A.StartBankAccountMultiselect, A.AddToBankAccountMultiselect, A.RemoveFromBankAccountMultiselect, A.ClearBankAccountMultiselect, A.BankAccountState, A._BankAccountUIState_Object_EntityUIState, A._$BankAccountStateSerializer, A._$BankAccountUIStateSerializer, A.BankAccountStateBuilder, A.BankAccountUIStateBuilder, A.ViewClientList, A.ViewClient, A.EditClient, A.EditContact, A.ShowPdfClient, A.UpdateClient, A.LoadClient, A.LoadClients, A.LoadClientRequest, A.LoadClientFailure, A.LoadClientSuccess, A.LoadClientsRequest, A.LoadClientsFailure, A.LoadClientsSuccess, A.AddContact, A.UpdateContact, A.DeleteContact, A.SaveClientRequest, A.SaveClientSuccess, A.AddClientSuccess, A.SaveClientFailure, A.ArchiveClientsRequest, A.ArchiveClientsSuccess, A.ArchiveClientsFailure, A.MergeClientsRequest, A.MergeClientsSuccess, A.MergeClientsFailure, A.DeleteClientsRequest, A.DeleteClientsSuccess, A.DeleteClientsFailure, A.PurgeClientRequest, A.PurgeClientSuccess, A.PurgeClientFailure, A.RestoreClientsRequest, A.RestoreClientSuccess, A.RestoreClientFailure, A.FilterClients, A.SortClients, A.FilterClientsByState, A.FilterClientsByCustom1, A.FilterClientsByCustom2, A.FilterClientsByCustom3, A.FilterClientsByCustom4, A.StartClientMultiselect, A.AddToClientMultiselect, A.RemoveFromClientMultiselect, A.ClearClientMultiselect, A.SaveClientDocumentRequest, A.SaveClientDocumentFailure, A.UpdateClientTab, A.ClientState, A._ClientUIState_Object_EntityUIState, A._$ClientStateSerializer, A._$ClientUIStateSerializer, A.ClientStateBuilder, A.ClientUIStateBuilder, A.SelectCompany, A.LoadCompanySuccess, A.UpdateCompany, A.SaveCompanyRequest, A.SaveCompanySuccess, A.SaveCompanyFailure, A.SaveEInvoiceCertificateRequest, A.SaveEInvoiceCertificateSuccess, A.SaveEInvoiceCertificateFailure, A.AddCompany, A.AddCompanySuccess, A.DeleteCompanyRequest, A.DeleteCompanySuccess, A.DeleteCompanyFailure, A.PurgeDataRequest, A.PurgeDataSuccess, A.PurgeDataFailure, A.UpdateCompanyLanguage, A.SaveCompanyDocumentRequest, A.SaveCompanyDocumentFailure, A.SetDefaultCompanyRequest, A.SetDefaultCompanySuccess, A.SetDefaultCompanyFailure, A.UserCompanyState, A._$UserCompanyStateSerializer, A.UserCompanyStateBuilder, A.ViewCompanyGatewayList, A.ViewCompanyGateway, A.EditCompanyGateway, A.UpdateCompanyGateway, A.LoadCompanyGateway, A.LoadCompanyGatewayRequest, A.LoadCompanyGatewayFailure, A.LoadCompanyGatewaySuccess, A.LoadCompanyGatewaysRequest, A.LoadCompanyGatewaysFailure, A.LoadCompanyGatewaysSuccess, A.SaveCompanyGatewayRequest, A.SaveCompanyGatewaySuccess, A.AddCompanyGatewaySuccess, A.SaveCompanyGatewayFailure, A.ArchiveCompanyGatewayRequest, A.ArchiveCompanyGatewaySuccess, A.ArchiveCompanyGatewayFailure, A.DeleteCompanyGatewayRequest, A.DeleteCompanyGatewaySuccess, A.DeleteCompanyGatewayFailure, A.DisconnectCompanyGatewayRequest, A.DisconnectCompanyGatewaySuccess, A.DisconnectCompanyGatewayFailure, A.RestoreCompanyGatewayRequest, A.RestoreCompanyGatewaySuccess, A.RestoreCompanyGatewayFailure, A.FilterCompanyGatewaysByState, A.FilterCompanyGatewaysByCustom1, A.FilterCompanyGatewaysByCustom2, A.FilterCompanyGatewaysByCustom3, A.FilterCompanyGatewaysByCustom4, A.StartCompanyGatewayMultiselect, A.AddToCompanyGatewayMultiselect, A.RemoveFromCompanyGatewayMultiselect, A.ClearCompanyGatewayMultiselect, A.CompanyGatewayState, A._CompanyGatewayUIState_Object_EntityUIState, A._$CompanyGatewayStateSerializer, A._$CompanyGatewayUIStateSerializer, A.CompanyGatewayStateBuilder, A.CompanyGatewayUIStateBuilder, A.ViewCreditList, A.ViewCredit, A.EditCredit, A.ShowEmailCredit, A.ShowPdfCredit, A.EditCreditItem, A.UpdateCredit, A.UpdateCreditClient, A.LoadCredit, A.LoadCredits, A.LoadCreditRequest, A.LoadCreditFailure, A.LoadCreditSuccess, A.LoadCreditsRequest, A.LoadCreditsFailure, A.LoadCreditsSuccess, A.AddCreditContact, A.RemoveCreditContact, A.AddCreditItem, A.MoveCreditItem, A.AddCreditItems, A.UpdateCreditItem, A.DeleteCreditItem, A.SaveCreditRequest, A.SaveCreditSuccess, A.AddCreditSuccess, A.SaveCreditFailure, A.EmailCreditRequest, A.EmailCreditSuccess, A.EmailCreditFailure, A.MarkSentCreditRequest, A.MarkSentCreditSuccess, A.MarkSentCreditFailure, A.BulkEmailCreditsRequest, A.BulkEmailCreditsSuccess, A.BulkEmailCreditsFailure, A.MarkCreditsPaidRequest, A.MarkCreditsPaidSuccess, A.MarkCreditsPaidFailure, A.ArchiveCreditsRequest, A.ArchiveCreditsSuccess, A.ArchiveCreditsFailure, A.DeleteCreditsRequest, A.DeleteCreditsSuccess, A.DeleteCreditsFailure, A.DownloadCreditsRequest, A.DownloadCreditsSuccess, A.DownloadCreditsFailure, A.RestoreCreditsRequest, A.RestoreCreditsSuccess, A.RestoreCreditsFailure, A.FilterCredits, A.SortCredits, A.FilterCreditsByState, A.FilterCreditsByCustom1, A.FilterCreditsByCustom2, A.FilterCreditsByCustom3, A.FilterCreditsByCustom4, A.SaveCreditDocumentRequest, A.SaveCreditDocumentFailure, A.StartCreditMultiselect, A.AddToCreditMultiselect, A.RemoveFromCreditMultiselect, A.ClearCreditMultiselect, A.UpdateCreditTab, A.CreditState, A._CreditUIState_Object_EntityUIState, A._$CreditStateSerializer, A._$CreditUIStateSerializer, A.CreditStateBuilder, A.CreditUIStateBuilder, A.ViewDashboard, A.UpdateDashboardSettings, A.UpdateDashboardFields, A.UpdateDashboardFieldSettingss, A.UpdateDashboardSelection, A.UpdateDashboardSidebar, A.ChartDataGroup, A.ChartMoneyData, A.DashboardUIState, A.DashboardUISettings, A._$DashboardUIStateSerializer, A._$DashboardUISettingsSerializer, A.DashboardUIStateBuilder, A.DashboardUISettingsBuilder, A.ViewDesignList, A.ViewDesign, A.EditDesign, A.UpdateDesign, A.LoadDesignRequest, A.LoadDesignFailure, A.LoadDesignSuccess, A.LoadDesignsRequest, A.LoadDesignsFailure, A.LoadDesignsSuccess, A.SaveDesignRequest, A.SaveDesignSuccess, A.AddDesignSuccess, A.SaveDesignFailure, A.ArchiveDesignsRequest, A.ArchiveDesignsSuccess, A.ArchiveDesignsFailure, A.DeleteDesignsRequest, A.DeleteDesignsSuccess, A.DeleteDesignsFailure, A.RestoreDesignsRequest, A.RestoreDesignsSuccess, A.RestoreDesignsFailure, A.FilterDesigns, A.SortDesigns, A.FilterDesignsByState, A.FilterDesignsByCustom1, A.FilterDesignsByCustom2, A.FilterDesignsByCustom3, A.FilterDesignsByCustom4, A.StartDesignMultiselect, A.AddToDesignMultiselect, A.RemoveFromDesignMultiselect, A.ClearDesignMultiselect, A.DesignState, A._DesignUIState_Object_EntityUIState, A._$DesignStateSerializer, A._$DesignUIStateSerializer, A.DesignStateBuilder, A.DesignUIStateBuilder, A.ViewDocumentList, A.ViewDocument, A.EditDocument, A.UpdateDocument, A.LoadDocumentData, A.LoadDocumentRequest, A.LoadDocumentFailure, A.LoadDocumentSuccess, A.LoadDocumentsSuccess, A.SaveDocumentRequest, A.SaveDocumentSuccess, A.SaveDocumentFailure, A.DownloadDocumentsRequest, A.DownloadDocumentsSuccess, A.DownloadDocumentsFailure, A.ArchiveDocumentRequest, A.ArchiveDocumentSuccess, A.ArchiveDocumentFailure, A.DeleteDocumentRequest, A.DeleteDocumentSuccess, A.DeleteDocumentFailure, A.RestoreDocumentRequest, A.RestoreDocumentSuccess, A.RestoreDocumentFailure, A.FilterDocuments, A.FilterDocumentsByStatus, A.SortDocuments, A.FilterDocumentsByCustom1, A.FilterDocumentsByCustom2, A.FilterDocumentsByCustom3, A.FilterDocumentsByCustom4, A.StartDocumentMultiselect, A.AddToDocumentMultiselect, A.RemoveFromDocumentMultiselect, A.ClearDocumentMultiselect, A.DocumentState, A._DocumentUIState_Object_EntityUIState, A._$DocumentStateSerializer, A._$DocumentUIStateSerializer, A.DocumentStateBuilder, A.DocumentUIStateBuilder, A.ViewExpenseList, A.ViewExpense, A.EditExpense, A.UpdateExpense, A.LoadExpense, A.LoadExpenses, A.LoadExpenseRequest, A.LoadExpenseFailure, A.LoadExpenseSuccess, A.LoadExpensesRequest, A.LoadExpensesFailure, A.LoadExpensesSuccess, A.SaveExpenseRequest, A.SaveExpenseSuccess, A.AddExpenseSuccess, A.SaveExpenseFailure, A.ArchiveExpenseRequest, A.ArchiveExpenseSuccess, A.ArchiveExpenseFailure, A.DeleteExpenseRequest, A.DeleteExpenseSuccess, A.DeleteExpenseFailure, A.RestoreExpenseRequest, A.RestoreExpenseSuccess, A.RestoreExpenseFailure, A.FilterExpenses, A.SortExpenses, A.FilterExpensesByState, A.FilterExpensesByStatus, A.FilterExpensesByCustom1, A.FilterExpensesByCustom2, A.FilterExpensesByCustom3, A.FilterExpensesByCustom4, A.StartExpenseMultiselect, A.AddToExpenseMultiselect, A.RemoveFromExpenseMultiselect, A.ClearExpenseMultiselect, A.SaveExpenseDocumentRequest, A.SaveExpenseDocumentFailure, A.UpdateExpenseTab, A.ExpenseState, A._ExpenseUIState_Object_EntityUIState, A._$ExpenseStateSerializer, A._$ExpenseUIStateSerializer, A.ExpenseStateBuilder, A.ExpenseUIStateBuilder, A.ViewExpenseCategoryList, A.ViewExpenseCategory, A.EditExpenseCategory, A.UpdateExpenseCategory, A.LoadExpenseCategoryRequest, A.LoadExpenseCategoryFailure, A.LoadExpenseCategorySuccess, A.LoadExpenseCategoriesRequest, A.LoadExpenseCategoriesFailure, A.LoadExpenseCategoriesSuccess, A.SaveExpenseCategoryRequest, A.SaveExpenseCategorySuccess, A.AddExpenseCategorySuccess, A.SaveExpenseCategoryFailure, A.ArchiveExpenseCategoriesRequest, A.ArchiveExpenseCategoriesSuccess, A.ArchiveExpenseCategoriesFailure, A.DeleteExpenseCategoriesRequest, A.DeleteExpenseCategoriesSuccess, A.DeleteExpenseCategoriesFailure, A.RestoreExpenseCategoriesRequest, A.RestoreExpenseCategoriesSuccess, A.RestoreExpenseCategoriesFailure, A.FilterExpenseCategories, A.SortExpenseCategories, A.FilterExpenseCategoriesByState, A.FilterExpenseCategoriesByCustom1, A.FilterExpenseCategoriesByCustom2, A.FilterExpenseCategoriesByCustom3, A.FilterExpenseCategoriesByCustom4, A.StartExpenseCategoryMultiselect, A.AddToExpenseCategoryMultiselect, A.RemoveFromExpenseCategoryMultiselect, A.ClearExpenseCategoryMultiselect, A.ExpenseCategoryState, A._ExpenseCategoryUIState_Object_EntityUIState, A._$ExpenseCategoryStateSerializer, A._$ExpenseCategoryUIStateSerializer, A.ExpenseCategoryStateBuilder, A.ExpenseCategoryUIStateBuilder, A.ViewGroupList, A.ViewGroup, A.EditGroup, A.UpdateGroup, A.LoadGroup, A.LoadGroupRequest, A.LoadGroupFailure, A.LoadGroupSuccess, A.LoadGroupsRequest, A.LoadGroupsFailure, A.LoadGroupsSuccess, A.SaveGroupRequest, A.SaveGroupSuccess, A.AddGroupSuccess, A.SaveGroupFailure, A.ArchiveGroupRequest, A.ArchiveGroupSuccess, A.ArchiveGroupFailure, A.DeleteGroupRequest, A.DeleteGroupSuccess, A.DeleteGroupFailure, A.RestoreGroupRequest, A.RestoreGroupSuccess, A.RestoreGroupFailure, A.FilterGroups, A.SortGroups, A.FilterGroupsByState, A.StartGroupMultiselect, A.AddToGroupMultiselect, A.RemoveFromGroupMultiselect, A.ClearGroupMultiselect, A.SaveGroupDocumentRequest, A.SaveGroupDocumentFailure, A.GroupState, A._GroupUIState_Object_EntityUIState, A._$GroupStateSerializer, A._$GroupUIStateSerializer, A.GroupStateBuilder, A.GroupUIStateBuilder, A.ViewInvoiceList, A.ViewInvoice, A.EditInvoice, A.ShowEmailInvoice, A.ShowPdfInvoice, A.EditInvoiceItem, A.UpdateInvoice, A.UpdateInvoiceClient, A.LoadInvoice, A.LoadInvoices, A.LoadInvoiceRequest, A.LoadInvoiceFailure, A.LoadInvoiceSuccess, A.LoadInvoicesRequest, A.LoadInvoicesFailure, A.LoadInvoicesSuccess, A.AddInvoiceContact, A.RemoveInvoiceContact, A.AddInvoiceItem, A.MoveInvoiceItem, A.AddInvoiceItems, A.UpdateInvoiceItem, A.DeleteInvoiceItem, A.SaveInvoiceRequest, A.SaveInvoiceSuccess, A.AddInvoiceSuccess, A.SaveInvoiceFailure, A.EmailInvoiceRequest, A.EmailInvoiceSuccess, A.EmailInvoiceFailure, A.MarkInvoicesSentRequest, A.MarkInvoicesSentSuccess, A.MarkInvoicesSentFailure, A.BulkEmailInvoicesRequest, A.BulkEmailInvoicesSuccess, A.BulkEmailInvoicesFailure, A.MarkInvoicesPaidRequest, A.MarkInvoicesPaidSuccess, A.MarkInvoicesPaidFailure, A.AutoBillInvoicesRequest, A.AutoBillInvoicesSuccess, A.AutoBillInvoicesFailure, A.CancelInvoicesRequest, A.CancelInvoicesSuccess, A.CancelInvoicesFailure, A.ArchiveInvoicesRequest, A.ArchiveInvoicesSuccess, A.ArchiveInvoicesFailure, A.DeleteInvoicesRequest, A.DeleteInvoicesSuccess, A.DeleteInvoicesFailure, A.DownloadInvoicesRequest, A.DownloadInvoicesSuccess, A.DownloadInvoicesFailure, A.RestoreInvoicesRequest, A.RestoreInvoicesSuccess, A.RestoreInvoicesFailure, A.FilterInvoices, A.SortInvoices, A.FilterInvoicesByState, A.FilterInvoicesByStatus, A.FilterInvoicesByCustom1, A.FilterInvoicesByCustom2, A.FilterInvoicesByCustom3, A.FilterInvoicesByCustom4, A.StartInvoiceMultiselect, A.AddToInvoiceMultiselect, A.RemoveFromInvoiceMultiselect, A.ClearInvoiceMultiselect, A.SaveInvoiceDocumentRequest, A.SaveInvoiceDocumentFailure, A.UpdateInvoiceTab, A.InvoiceState, A._InvoiceUIState_Object_EntityUIState, A._$InvoiceStateSerializer, A._$InvoiceUIStateSerializer, A.InvoiceStateBuilder, A.InvoiceUIStateBuilder, A.ViewPaymentList, A.ViewPayment, A.EditPayment, A.ViewRefundPayment, A.UpdatePayment, A.LoadPayment, A.LoadPayments, A.LoadPaymentRequest, A.LoadPaymentFailure, A.LoadPaymentSuccess, A.LoadPaymentsRequest, A.LoadPaymentsFailure, A.LoadPaymentsSuccess, A.SavePaymentRequest, A.SavePaymentSuccess, A.AddPaymentSuccess, A.SavePaymentFailure, A.RefundPaymentRequest, A.RefundPaymentSuccess, A.RefundPaymentFailure, A.ArchivePaymentsRequest, A.ArchivePaymentsSuccess, A.ArchivePaymentsFailure, A.DeletePaymentsRequest, A.DeletePaymentsSuccess, A.DeletePaymentsFailure, A.RestorePaymentsRequest, A.RestorePaymentsSuccess, A.RestorePaymentsFailure, A.EmailPaymentRequest, A.EmailPaymentSuccess, A.FilterPayments, A.SortPayments, A.FilterPaymentsByState, A.FilterPaymentsByStatus, A.FilterPaymentsByCustom1, A.FilterPaymentsByCustom2, A.FilterPaymentsByCustom3, A.FilterPaymentsByCustom4, A.StartPaymentMultiselect, A.AddToPaymentMultiselect, A.RemoveFromPaymentMultiselect, A.ClearPaymentMultiselect, A.PaymentState, A._PaymentUIState_Object_EntityUIState, A._$PaymentStateSerializer, A._$PaymentUIStateSerializer, A.PaymentStateBuilder, A.PaymentUIStateBuilder, A.ViewPaymentTermList, A.ViewPaymentTerm, A.EditPaymentTerm, A.UpdatePaymentTerm, A.LoadPaymentTermRequest, A.LoadPaymentTermFailure, A.LoadPaymentTermSuccess, A.LoadPaymentTermsRequest, A.LoadPaymentTermsFailure, A.LoadPaymentTermsSuccess, A.SavePaymentTermRequest, A.SavePaymentTermSuccess, A.AddPaymentTermSuccess, A.SavePaymentTermFailure, A.ArchivePaymentTermsRequest, A.ArchivePaymentTermsSuccess, A.ArchivePaymentTermsFailure, A.DeletePaymentTermsRequest, A.DeletePaymentTermsSuccess, A.DeletePaymentTermsFailure, A.RestorePaymentTermsRequest, A.RestorePaymentTermsSuccess, A.RestorePaymentTermsFailure, A.FilterPaymentTerms, A.SortPaymentTerms, A.FilterPaymentTermsByState, A.FilterPaymentTermsByCustom1, A.FilterPaymentTermsByCustom2, A.FilterPaymentTermsByCustom3, A.FilterPaymentTermsByCustom4, A.StartPaymentTermMultiselect, A.AddToPaymentTermMultiselect, A.RemoveFromPaymentTermMultiselect, A.ClearPaymentTermMultiselect, A.PaymentTermState, A._PaymentTermUIState_Object_EntityUIState, A._$PaymentTermStateSerializer, A._$PaymentTermUIStateSerializer, A.PaymentTermStateBuilder, A.PaymentTermUIStateBuilder, A.ViewProductList, A.ViewProduct, A.EditProduct, A.UpdateProduct, A.LoadProductRequest, A.LoadProduct, A.LoadProductSuccess, A.LoadProductFailure, A.LoadProducts, A.LoadProductsRequest, A.LoadProductsFailure, A.LoadProductsSuccess, A.SaveProductRequest, A.SaveProductSuccess, A.AddProductSuccess, A.SaveProductFailure, A.ArchiveProductsRequest, A.ArchiveProductsSuccess, A.ArchiveProductsFailure, A.DeleteProductsRequest, A.DeleteProductsSuccess, A.DeleteProductsFailure, A.RestoreProductsRequest, A.RestoreProductsSuccess, A.RestoreProductsFailure, A.SetTaxCategoryProductsRequest, A.SetTaxCategoryProductsSuccess, A.SetTaxCategoryProductsFailure, A.FilterProducts, A.SortProducts, A.FilterProductsByState, A.FilterProductsByCustom1, A.FilterProductsByCustom2, A.FilterProductsByCustom3, A.FilterProductsByCustom4, A.StartProductMultiselect, A.AddToProductMultiselect, A.RemoveFromProductMultiselect, A.ClearProductMultiselect, A.SaveProductDocumentRequest, A.SaveProductDocumentFailure, A.UpdateProductTab, A.ProductState, A._ProductUIState_Object_EntityUIState, A._$ProductStateSerializer, A._$ProductUIStateSerializer, A.ProductStateBuilder, A.ProductUIStateBuilder, A.ViewProjectList, A.ViewProject, A.EditProject, A.UpdateProject, A.LoadProject, A.LoadProjects, A.LoadProjectRequest, A.LoadProjectFailure, A.LoadProjectSuccess, A.LoadProjectsRequest, A.LoadProjectsFailure, A.LoadProjectsSuccess, A.SaveProjectRequest, A.SaveProjectSuccess, A.AddProjectSuccess, A.SaveProjectFailure, A.ArchiveProjectRequest, A.ArchiveProjectSuccess, A.ArchiveProjectFailure, A.DeleteProjectRequest, A.DeleteProjectSuccess, A.DeleteProjectFailure, A.RestoreProjectRequest, A.RestoreProjectSuccess, A.RestoreProjectFailure, A.FilterProjects, A.SortProjects, A.FilterProjectsByState, A.FilterProjectsByCustom1, A.FilterProjectsByCustom2, A.FilterProjectsByCustom3, A.FilterProjectsByCustom4, A.StartProjectMultiselect, A.AddToProjectMultiselect, A.RemoveFromProjectMultiselect, A.ClearProjectMultiselect, A.SaveProjectDocumentRequest, A.SaveProjectDocumentFailure, A.UpdateProjectTab, A.ProjectState, A._ProjectUIState_Object_EntityUIState, A._$ProjectStateSerializer, A._$ProjectUIStateSerializer, A.ProjectStateBuilder, A.ProjectUIStateBuilder, A.ViewPurchaseOrderList, A.ViewPurchaseOrder, A.EditPurchaseOrder, A.ShowEmailPurchaseOrder, A.ShowPdfPurchaseOrder, A.EditPurchaseOrderItem, A.UpdatePurchaseOrder, A.UpdatePurchaseOrderVendor, A.LoadPurchaseOrder, A.LoadPurchaseOrders, A.LoadPurchaseOrderRequest, A.LoadPurchaseOrderFailure, A.LoadPurchaseOrderSuccess, A.LoadPurchaseOrdersRequest, A.LoadPurchaseOrdersFailure, A.LoadPurchaseOrdersSuccess, A.SavePurchaseOrderDocumentRequest, A.SavePurchaseOrderDocumentFailure, A.SavePurchaseOrderRequest, A.SavePurchaseOrderSuccess, A.AddPurchaseOrderSuccess, A.SavePurchaseOrderFailure, A.BulkEmailPurchaseOrdersRequest, A.BulkEmailPurchaseOrdersSuccess, A.BulkEmailPurchaseOrdersFailure, A.ArchivePurchaseOrdersRequest, A.ArchivePurchaseOrdersSuccess, A.ArchivePurchaseOrdersFailure, A.DeletePurchaseOrdersRequest, A.DeletePurchaseOrdersSuccess, A.DeletePurchaseOrdersFailure, A.DownloadPurchaseOrdersRequest, A.DownloadPurchaseOrdersSuccess, A.DownloadPurchaseOrdersFailure, A.AcceptPurchaseOrdersRequest, A.AcceptPurchaseOrderSuccess, A.AcceptPurchaseOrderFailure, A.CancelPurchaseOrdersRequest, A.CancelPurchaseOrderSuccess, A.CancelPurchaseOrderFailure, A.RestorePurchaseOrdersRequest, A.RestorePurchaseOrdersSuccess, A.RestorePurchaseOrdersFailure, A.EmailPurchaseOrderRequest, A.EmailPurchaseOrderSuccess, A.EmailPurchaseOrderFailure, A.MarkPurchaseOrdersSentRequest, A.MarkPurchaseOrderSentSuccess, A.MarkPurchaseOrderSentFailure, A.ConvertPurchaseOrdersToExpensesRequest, A.ConvertPurchaseOrdersToExpensesSuccess, A.ConvertPurchaseOrdersToExpensesFailure, A.AddPurchaseOrdersToInventoryRequest, A.AddPurchaseOrdersToInventorySuccess, A.AddPurchaseOrdersToInventoryFailure, A.ApprovePurchaseOrderSuccess, A.ApprovePurchaseOrderFailure, A.AddPurchaseOrderContact, A.RemovePurchaseOrderContact, A.AddPurchaseOrderItem, A.MovePurchaseOrderItem, A.AddPurchaseOrderItems, A.UpdatePurchaseOrderItem, A.DeletePurchaseOrderItem, A.FilterPurchaseOrders, A.SortPurchaseOrders, A.FilterPurchaseOrdersByState, A.FilterPurchaseOrdersByStatus, A.FilterPurchaseOrdersByCustom1, A.FilterPurchaseOrdersByCustom2, A.FilterPurchaseOrdersByCustom3, A.FilterPurchaseOrdersByCustom4, A.StartPurchaseOrderMultiselect, A.AddToPurchaseOrderMultiselect, A.RemoveFromPurchaseOrderMultiselect, A.ClearPurchaseOrderMultiselect, A.UpdatePurchaseOrderTab, A.PurchaseOrderState, A._PurchaseOrderUIState_Object_EntityUIState, A._$PurchaseOrderStateSerializer, A._$PurchaseOrderUIStateSerializer, A.PurchaseOrderStateBuilder, A.PurchaseOrderUIStateBuilder, A.ViewQuoteList, A.ViewQuote, A.EditQuote, A.ShowEmailQuote, A.ShowPdfQuote, A.EditQuoteItem, A.UpdateQuote, A.UpdateQuoteClient, A.LoadQuote, A.LoadQuotes, A.LoadQuoteRequest, A.LoadQuoteFailure, A.LoadQuoteSuccess, A.LoadQuotesRequest, A.LoadQuotesFailure, A.LoadQuotesSuccess, A.AddQuoteContact, A.RemoveQuoteContact, A.AddQuoteItem, A.MoveQuoteItem, A.AddQuoteItems, A.UpdateQuoteItem, A.DeleteQuoteItem, A.SaveQuoteRequest, A.SaveQuoteSuccess, A.AddQuoteSuccess, A.SaveQuoteFailure, A.EmailQuoteRequest, A.EmailQuoteSuccess, A.EmailQuoteFailure, A.MarkSentQuotesRequest, A.MarkSentQuoteSuccess, A.MarkSentQuoteFailure, A.BulkEmailQuotesRequest, A.BulkEmailQuotesSuccess, A.BulkEmailQuotesFailure, A.ArchiveQuotesRequest, A.ArchiveQuotesSuccess, A.ArchiveQuotesFailure, A.DeleteQuotesRequest, A.DeleteQuotesSuccess, A.DeleteQuotesFailure, A.DownloadQuotesRequest, A.DownloadQuotesSuccess, A.DownloadQuotesFailure, A.RestoreQuotesRequest, A.RestoreQuotesSuccess, A.RestoreQuotesFailure, A.FilterQuotes, A.SortQuotes, A.FilterQuotesByState, A.FilterQuotesByStatus, A.FilterQuotesByCustom1, A.FilterQuotesByCustom2, A.FilterQuotesByCustom3, A.FilterQuotesByCustom4, A.ConvertQuotesToInvoices, A.ConvertQuotesToInvoicesSuccess, A.ConvertQuotesToInvoicesFailure, A.ConvertQuotesToProjects, A.ConvertQuotesToProjectsSuccess, A.ConvertQuotesToProjectsFailure, A.ApproveQuotes, A.ApproveQuoteSuccess, A.ApproveQuoteFailure, A.SaveQuoteDocumentRequest, A.SaveQuoteDocumentFailure, A.StartQuoteMultiselect, A.AddToQuoteMultiselect, A.RemoveFromQuoteMultiselect, A.ClearQuoteMultiselect, A.UpdateQuoteTab, A.QuoteState, A._QuoteUIState_Object_EntityUIState, A._$QuoteStateSerializer, A._$QuoteUIStateSerializer, A.QuoteStateBuilder, A.QuoteUIStateBuilder, A.ViewRecurringExpenseList, A.ViewRecurringExpense, A.EditRecurringExpense, A.UpdateRecurringExpense, A.LoadRecurringExpense, A.LoadRecurringExpenses, A.LoadRecurringExpenseRequest, A.LoadRecurringExpenseFailure, A.LoadRecurringExpenseSuccess, A.LoadRecurringExpensesRequest, A.LoadRecurringExpensesFailure, A.LoadRecurringExpensesSuccess, A.SaveRecurringExpenseRequest, A.SaveRecurringExpenseSuccess, A.AddRecurringExpenseSuccess, A.SaveRecurringExpenseFailure, A.ArchiveRecurringExpensesRequest, A.ArchiveRecurringExpensesSuccess, A.ArchiveRecurringExpensesFailure, A.DeleteRecurringExpensesRequest, A.DeleteRecurringExpensesSuccess, A.DeleteRecurringExpensesFailure, A.RestoreRecurringExpensesRequest, A.RestoreRecurringExpensesSuccess, A.RestoreRecurringExpensesFailure, A.FilterRecurringExpenses, A.SortRecurringExpenses, A.FilterRecurringExpensesByState, A.FilterRecurringExpensesByStatus, A.FilterRecurringExpensesByCustom1, A.FilterRecurringExpensesByCustom2, A.FilterRecurringExpensesByCustom3, A.FilterRecurringExpensesByCustom4, A.StartRecurringExpenseMultiselect, A.AddToRecurringExpenseMultiselect, A.RemoveFromRecurringExpenseMultiselect, A.ClearRecurringExpenseMultiselect, A.UpdateRecurringExpenseTab, A.StartRecurringExpensesRequest, A.StartRecurringExpensesSuccess, A.StartRecurringExpensesFailure, A.StopRecurringExpensesRequest, A.StopRecurringExpensesSuccess, A.StopRecurringExpensesFailure, A.SaveRecurringExpenseDocumentRequest, A.SaveRecurringExpenseDocumentFailure, A.RecurringExpenseState, A._RecurringExpenseUIState_Object_EntityUIState, A._$RecurringExpenseStateSerializer, A._$RecurringExpenseUIStateSerializer, A.RecurringExpenseStateBuilder, A.RecurringExpenseUIStateBuilder, A.ViewRecurringInvoiceList, A.ViewRecurringInvoice, A.EditRecurringInvoice, A.ShowPdfRecurringInvoice, A.EditRecurringInvoiceItem, A.UpdateRecurringInvoice, A.UpdateRecurringInvoiceClient, A.LoadRecurringInvoice, A.LoadRecurringInvoices, A.LoadRecurringInvoiceRequest, A.LoadRecurringInvoiceFailure, A.LoadRecurringInvoiceSuccess, A.LoadRecurringInvoicesRequest, A.LoadRecurringInvoicesFailure, A.LoadRecurringInvoicesSuccess, A.AddRecurringInvoiceContact, A.RemoveRecurringInvoiceContact, A.SaveRecurringInvoiceRequest, A.SaveRecurringInvoiceSuccess, A.AddRecurringInvoiceSuccess, A.AddRecurringInvoiceItem, A.MoveRecurringInvoiceItem, A.AddRecurringInvoiceItems, A.UpdateRecurringInvoiceItem, A.DeleteRecurringInvoiceItem, A.SaveRecurringInvoiceFailure, A.ArchiveRecurringInvoicesRequest, A.ArchiveRecurringInvoicesSuccess, A.ArchiveRecurringInvoicesFailure, A.SendNowRecurringInvoicesRequest, A.SendNowRecurringInvoicesSuccess, A.SendNowRecurringInvoicesFailure, A.UpdatePricesRecurringInvoicesRequest, A.UpdatePricesRecurringInvoicesSuccess, A.UpdatePricesRecurringInvoicesFailure, A.IncreasePricesRecurringInvoicesRequest, A.IncreasePricesRecurringInvoicesSuccess, A.IncreasePricesRecurringInvoicesFailure, A.DeleteRecurringInvoicesRequest, A.DeleteRecurringInvoicesSuccess, A.DeleteRecurringInvoicesFailure, A.RestoreRecurringInvoicesRequest, A.RestoreRecurringInvoicesSuccess, A.RestoreRecurringInvoicesFailure, A.FilterRecurringInvoices, A.SortRecurringInvoices, A.FilterRecurringInvoicesByState, A.FilterRecurringInvoicesByStatus, A.FilterRecurringInvoicesByCustom1, A.FilterRecurringInvoicesByCustom2, A.FilterRecurringInvoicesByCustom3, A.FilterRecurringInvoicesByCustom4, A.SaveRecurringInvoiceDocumentRequest, A.SaveRecurringInvoiceDocumentFailure, A.StartRecurringInvoicesRequest, A.StartRecurringInvoicesSuccess, A.StartRecurringInvoicesFailure, A.StopRecurringInvoicesRequest, A.StopRecurringInvoicesSuccess, A.StopRecurringInvoicesFailure, A.StartRecurringInvoiceMultiselect, A.AddToRecurringInvoiceMultiselect, A.RemoveFromRecurringInvoiceMultiselect, A.ClearRecurringInvoiceMultiselect, A.UpdateRecurringInvoiceTab, A.RecurringInvoiceState, A._RecurringInvoiceUIState_Object_EntityUIState, A._$RecurringInvoiceStateSerializer, A._$RecurringInvoiceUIStateSerializer, A.RecurringInvoiceStateBuilder, A.RecurringInvoiceUIStateBuilder, A.ViewReports, A.UpdateReportSettings, A.ReportsUIState, A._$ReportsUIStateSerializer, A.ReportsUIStateBuilder, A.ViewScheduleList, A.ViewSchedule, A.EditSchedule, A.UpdateSchedule, A.LoadScheduleRequest, A.LoadScheduleFailure, A.LoadScheduleSuccess, A.LoadSchedulesRequest, A.LoadSchedulesFailure, A.LoadSchedulesSuccess, A.SaveScheduleRequest, A.SaveScheduleSuccess, A.AddScheduleSuccess, A.SaveScheduleFailure, A.ArchiveSchedulesRequest, A.ArchiveSchedulesSuccess, A.ArchiveSchedulesFailure, A.DeleteSchedulesRequest, A.DeleteSchedulesSuccess, A.DeleteSchedulesFailure, A.RestoreSchedulesRequest, A.RestoreSchedulesSuccess, A.RestoreSchedulesFailure, A.FilterSchedules, A.SortSchedules, A.FilterSchedulesByState, A.FilterSchedulesByCustom1, A.FilterSchedulesByCustom2, A.FilterSchedulesByCustom3, A.FilterSchedulesByCustom4, A.StartScheduleMultiselect, A.AddToScheduleMultiselect, A.RemoveFromScheduleMultiselect, A.ClearScheduleMultiselect, A.ScheduleState, A._ScheduleUIState_Object_EntityUIState, A._$ScheduleStateSerializer, A._$ScheduleUIStateSerializer, A.ScheduleStateBuilder, A.ScheduleUIStateBuilder, A.ViewSettings, A.ClearSettingsFilter, A.ResetSettings, A.UpdateSettings, A.UpdateSettingsTab, A.UpdatedSetting, A.UpdatedSettingUI, A.UpdateSettingsTemplate, A.UpdateUserSettings, A.UploadLogoRequest, A.UploadLogoFailure, A.SaveUserSettingsRequest, A.SaveUserSettingsSuccess, A.SaveUserSettingsFailure, A.SaveAuthUserRequest, A.SaveAuthUserSuccess, A.SaveAuthUserFailure, A.ConnecOAuthUserRequest, A.ConnectOAuthUserSuccess, A.ConnecOAuthUserFailure, A.DisconnecOAuthUserRequest, A.DisconnectOAuthUserSuccess, A.DisconnecOAuthUserFailure, A.DisconnectOAuthMailerRequest, A.DisconnectOAuthMailerSuccess, A.DisconnectOAuthMailerFailure, A.DisableTwoFactorRequest, A.DisableTwoFactorSuccess, A.DisableTwoFactorFailure, A.ConnecGmailUserSuccess, A.ConnecGmailUserFailure, A.FilterSettings, A.ToggleShowNewSettings, A.ToggleShowPdfPreview, A.SettingsUIState, A._$SettingsUIStateSerializer, A.SettingsUIStateBuilder, A.StaticState, A._$StaticStateSerializer, A.StaticStateBuilder, A.ViewSubscriptionList, A.ViewSubscription, A.EditSubscription, A.UpdateSubscription, A.LoadSubscriptionRequest, A.LoadSubscriptionFailure, A.LoadSubscriptionSuccess, A.LoadSubscriptionsRequest, A.LoadSubscriptionsFailure, A.LoadSubscriptionsSuccess, A.SaveSubscriptionRequest, A.SaveSubscriptionSuccess, A.AddSubscriptionSuccess, A.SaveSubscriptionFailure, A.ArchiveSubscriptionsRequest, A.ArchiveSubscriptionsSuccess, A.ArchiveSubscriptionsFailure, A.DeleteSubscriptionsRequest, A.DeleteSubscriptionsSuccess, A.DeleteSubscriptionsFailure, A.RestoreSubscriptionsRequest, A.RestoreSubscriptionsSuccess, A.RestoreSubscriptionsFailure, A.FilterSubscriptions, A.SortSubscriptions, A.FilterSubscriptionsByState, A.FilterSubscriptionsByCustom1, A.FilterSubscriptionsByCustom2, A.FilterSubscriptionsByCustom3, A.FilterSubscriptionsByCustom4, A.StartSubscriptionMultiselect, A.AddToSubscriptionMultiselect, A.RemoveFromSubscriptionMultiselect, A.ClearSubscriptionMultiselect, A.SubscriptionState, A._SubscriptionUIState_Object_EntityUIState, A._$SubscriptionStateSerializer, A._$SubscriptionUIStateSerializer, A.SubscriptionStateBuilder, A.SubscriptionUIStateBuilder, A.ViewTaskList, A.ViewTask, A.EditTask, A.UpdateTask, A.LoadTask, A.LoadTasks, A.LoadTaskRequest, A.LoadTaskFailure, A.LoadTaskSuccess, A.EditTaskTime, A.AddTaskTime, A.UpdateTaskTime, A.DeleteTaskTime, A.LoadTasksRequest, A.LoadTasksFailure, A.LoadTasksSuccess, A.SaveTaskRequest, A.SaveTaskSuccess, A.AddTaskSuccess, A.SaveTaskFailure, A.ArchiveTaskRequest, A.ArchiveTaskSuccess, A.ArchiveTaskFailure, A.StartTasksRequest, A.StartTasksSuccess, A.StartTasksFailure, A.StopTasksRequest, A.StopTasksSuccess, A.StopTasksFailure, A.DeleteTaskRequest, A.DeleteTaskSuccess, A.DeleteTaskFailure, A.RestoreTaskRequest, A.RestoreTaskSuccess, A.RestoreTaskFailure, A.SortTasksRequest, A.SortTasksSuccess, A.SortTasksFailure, A.FilterTasks, A.SortTasks, A.FilterTasksByState, A.FilterTasksByStatus, A.FilterTasksByCustom1, A.FilterTasksByCustom2, A.FilterTasksByCustom3, A.FilterTasksByCustom4, A.UpdateKanban, A.StartTaskMultiselect, A.AddToTaskMultiselect, A.RemoveFromTaskMultiselect, A.ClearTaskMultiselect, A.SaveTaskDocumentRequest, A.SaveTaskDocumentFailure, A.UpdateTaskTab, A.TaskState, A._TaskUIState_Object_EntityUIState, A._$TaskStateSerializer, A._$TaskUIStateSerializer, A.TaskStateBuilder, A.TaskUIStateBuilder, A.ViewTaskStatusList, A.ViewTaskStatus, A.EditTaskStatus, A.UpdateTaskStatus, A.LoadTaskStatusRequest, A.LoadTaskStatusFailure, A.LoadTaskStatusSuccess, A.LoadTaskStatusesRequest, A.LoadTaskStatusesFailure, A.LoadTaskStatusesSuccess, A.SaveTaskStatusRequest, A.SaveTaskStatusSuccess, A.AddTaskStatusSuccess, A.SaveTaskStatusFailure, A.ArchiveTaskStatusesRequest, A.ArchiveTaskStatusesSuccess, A.ArchiveTaskStatusesFailure, A.DeleteTaskStatusesRequest, A.DeleteTaskStatusesSuccess, A.DeleteTaskStatusesFailure, A.RestoreTaskStatusesRequest, A.RestoreTaskStatusesSuccess, A.RestoreTaskStatusesFailure, A.FilterTaskStatuses, A.SortTaskStatuses, A.FilterTaskStatusesByState, A.FilterTaskStatusesByCustom1, A.FilterTaskStatusesByCustom2, A.FilterTaskStatusesByCustom3, A.FilterTaskStatusesByCustom4, A.StartTaskStatusMultiselect, A.AddToTaskStatusMultiselect, A.RemoveFromTaskStatusMultiselect, A.ClearTaskStatusMultiselect, A.TaskStatusState, A._TaskStatusUIState_Object_EntityUIState, A._$TaskStatusStateSerializer, A._$TaskStatusUIStateSerializer, A.TaskStatusStateBuilder, A.TaskStatusUIStateBuilder, A.ViewTaxRateList, A.ViewTaxRate, A.EditTaxRate, A.UpdateTaxRate, A.LoadTaxRateRequest, A.LoadTaxRateFailure, A.LoadTaxRateSuccess, A.LoadTaxRatesRequest, A.LoadTaxRatesFailure, A.LoadTaxRatesSuccess, A.SaveTaxRateRequest, A.SaveTaxRateSuccess, A.AddTaxRateSuccess, A.SaveTaxRateFailure, A.ArchiveTaxRateRequest, A.ArchiveTaxRatesSuccess, A.ArchiveTaxRateFailure, A.DeleteTaxRateRequest, A.DeleteTaxRatesSuccess, A.DeleteTaxRateFailure, A.RestoreTaxRateRequest, A.RestoreTaxRatesSuccess, A.RestoreTaxRateFailure, A.FilterTaxRates, A.SortTaxRates, A.FilterTaxRatesByState, A.StartTaxRateMultiselect, A.AddToTaxRateMultiselect, A.RemoveFromTaxRateMultiselect, A.ClearTaxRateMultiselect, A.TaxRateState, A._TaxRateUIState_Object_EntityUIState, A._$TaxRateStateSerializer, A._$TaxRateUIStateSerializer, A.TaxRateStateBuilder, A.TaxRateUIStateBuilder, A.ViewTokenList, A.ViewToken, A.EditToken, A.UpdateToken, A.LoadTokenRequest, A.LoadTokenFailure, A.LoadTokenSuccess, A.LoadTokensRequest, A.LoadTokensFailure, A.LoadTokensSuccess, A.SaveTokenRequest, A.SaveTokenSuccess, A.AddTokenSuccess, A.SaveTokenFailure, A.ArchiveTokensRequest, A.ArchiveTokensSuccess, A.ArchiveTokensFailure, A.DeleteTokensRequest, A.DeleteTokensSuccess, A.DeleteTokensFailure, A.RestoreTokensRequest, A.RestoreTokensSuccess, A.RestoreTokensFailure, A.FilterTokens, A.SortTokens, A.FilterTokensByState, A.FilterTokensByCustom1, A.FilterTokensByCustom2, A.FilterTokensByCustom3, A.FilterTokensByCustom4, A.StartTokenMultiselect, A.AddToTokenMultiselect, A.RemoveFromTokenMultiselect, A.ClearTokenMultiselect, A.TokenState, A._TokenUIState_Object_EntityUIState, A._$TokenStateSerializer, A._$TokenUIStateSerializer, A.TokenStateBuilder, A.TokenUIStateBuilder, A.ViewTransactionList, A.ViewTransaction, A.EditTransaction, A.UpdateTransaction, A.LoadTransactions, A.LoadTransactionRequest, A.LoadTransactionFailure, A.LoadTransactionSuccess, A.LoadTransactionsRequest, A.LoadTransactionsFailure, A.LoadTransactionsSuccess, A.SaveTransactionRequest, A.SaveTransactionSuccess, A.AddTransactionSuccess, A.SaveTransactionFailure, A.ArchiveTransactionsRequest, A.ArchiveTransactionsSuccess, A.ArchiveTransactionsFailure, A.DeleteTransactionsRequest, A.DeleteTransactionsSuccess, A.DeleteTransactionsFailure, A.RestoreTransactionsRequest, A.RestoreTransactionsSuccess, A.RestoreTransactionsFailure, A.ConvertTransactionToPaymentRequest, A.ConvertTransactionToPaymentSuccess, A.ConvertTransactionToPaymentFailure, A.LinkTransactionToPaymentRequest, A.LinkTransactionToPaymentSuccess, A.LinkTransactionToPaymentFailure, A.UnlinkTransactionsRequest, A.UnlinkTransactionsSuccess, A.UnlinkTransactionsFailure, A.LinkTransactionToExpenseRequest, A.LinkTransactionToExpenseSuccess, A.LinkTransactionToExpenseFailure, A.ConvertTransactionsToExpensesRequest, A.ConvertTransactionsToExpensesSuccess, A.ConvertTransactionsToExpensesFailure, A.ConvertTransactionsRequest, A.ConvertTransactionsSuccess, A.ConvertTransactionsFailure, A.FilterTransactions, A.SortTransactions, A.FilterTransactionsByState, A.FilterTransactionsByStatus, A.FilterTransactionsByCustom1, A.FilterTransactionsByCustom2, A.FilterTransactionsByCustom3, A.FilterTransactionsByCustom4, A.StartTransactionMultiselect, A.AddToTransactionMultiselect, A.RemoveFromTransactionMultiselect, A.ClearTransactionMultiselect, A.TransactionState, A._TransactionUIState_Object_EntityUIState, A._$TransactionStateSerializer, A._$TransactionUIStateSerializer, A.TransactionStateBuilder, A.TransactionUIStateBuilder, A.ViewTransactionRuleList, A.ViewTransactionRule, A.EditTransactionRule, A.UpdateTransactionRule, A.LoadTransactionRuleRequest, A.LoadTransactionRuleFailure, A.LoadTransactionRuleSuccess, A.LoadTransactionRulesRequest, A.LoadTransactionRulesFailure, A.LoadTransactionRulesSuccess, A.SaveTransactionRuleRequest, A.SaveTransactionRuleSuccess, A.AddTransactionRuleSuccess, A.SaveTransactionRuleFailure, A.ArchiveTransactionRulesRequest, A.ArchiveTransactionRulesSuccess, A.ArchiveTransactionRulesFailure, A.DeleteTransactionRulesRequest, A.DeleteTransactionRulesSuccess, A.DeleteTransactionRulesFailure, A.RestoreTransactionRulesRequest, A.RestoreTransactionRulesSuccess, A.RestoreTransactionRulesFailure, A.FilterTransactionRules, A.SortTransactionRules, A.FilterTransactionRulesByState, A.FilterTransactionRulesByCustom1, A.FilterTransactionRulesByCustom2, A.FilterTransactionRulesByCustom3, A.FilterTransactionRulesByCustom4, A.StartTransactionRuleMultiselect, A.AddToTransactionRuleMultiselect, A.RemoveFromTransactionRuleMultiselect, A.ClearTransactionRuleMultiselect, A.TransactionRuleState, A._TransactionRuleUIState_Object_EntityUIState, A._$TransactionRuleStateSerializer, A._$TransactionRuleUIStateSerializer, A.TransactionRuleStateBuilder, A.TransactionRuleUIStateBuilder, A.EntityUIState, A.ListUIState, A._$ListUIStateSerializer, A.ListUIStateBuilder, A.PrefState, A.PrefStateSortField, A.CompanyPrefState, A.HistoryRecord, A._$PrefStateSerializer, A._$PrefStateSortFieldSerializer, A._$CompanyPrefStateSerializer, A._$AppLayoutSerializer, A._$ModuleLayoutSerializer, A._$AppSidebarModeSerializer, A._$HistoryRecordSerializer, A.PrefStateBuilder, A.PrefStateSortFieldBuilder, A.CompanyPrefStateBuilder, A.HistoryRecordBuilder, A.UpdateCurrentRoute, A.UIState, A._$UIStateSerializer, A.UIStateBuilder, A.ViewUserList, A.ViewUser, A.EditUser, A.UpdateUser, A.LoadUserRequest, A.LoadUserFailure, A.LoadUserSuccess, A.LoadUsersRequest, A.LoadUsersFailure, A.LoadUsersSuccess, A.SaveUserRequest, A.SaveUserSuccess, A.AddUserSuccess, A.SaveUserFailure, A.ArchiveUserRequest, A.ArchiveUserSuccess, A.ArchiveUserFailure, A.DeleteUserRequest, A.DeleteUserSuccess, A.DeleteUserFailure, A.RestoreUserRequest, A.RestoreUserSuccess, A.RestoreUserFailure, A.RemoveUserRequest, A.RemoveUserSuccess, A.RemoveUserFailure, A.ResendInviteRequest, A.ResendInviteSuccess, A.ResendInviteFailure, A.FilterUsers, A.SortUsers, A.FilterUsersByState, A.FilterUsersByCustom1, A.FilterUsersByCustom2, A.FilterUsersByCustom3, A.FilterUsersByCustom4, A.StartUserMultiselect, A.AddToUserMultiselect, A.RemoveFromUserMultiselect, A.ClearUserMultiselect, A.UserState, A._UserUIState_Object_EntityUIState, A._$UserStateSerializer, A._$UserUIStateSerializer, A.UserStateBuilder, A.UserUIStateBuilder, A.ViewVendorList, A.ViewVendor, A.EditVendor, A.UpdateVendor, A.LoadVendor, A.LoadVendors, A.LoadVendorRequest, A.LoadVendorFailure, A.LoadVendorSuccess, A.LoadVendorsRequest, A.LoadVendorsFailure, A.LoadVendorsSuccess, A.SaveVendorRequest, A.SaveVendorSuccess, A.AddVendorSuccess, A.SaveVendorFailure, A.ArchiveVendorRequest, A.ArchiveVendorSuccess, A.ArchiveVendorFailure, A.DeleteVendorRequest, A.DeleteVendorSuccess, A.DeleteVendorFailure, A.RestoreVendorRequest, A.RestoreVendorSuccess, A.RestoreVendorFailure, A.EditVendorContact, A.AddVendorContact, A.UpdateVendorContact, A.DeleteVendorContact, A.FilterVendors, A.SortVendors, A.FilterVendorsByState, A.FilterVendorsByCustom1, A.FilterVendorsByCustom2, A.FilterVendorsByCustom3, A.FilterVendorsByCustom4, A.StartVendorMultiselect, A.AddToVendorMultiselect, A.RemoveFromVendorMultiselect, A.ClearVendorMultiselect, A.SaveVendorDocumentRequest, A.SaveVendorDocumentFailure, A.UpdateVendorTab, A.VendorState, A._VendorUIState_Object_EntityUIState, A._$VendorStateSerializer, A._$VendorUIStateSerializer, A.VendorStateBuilder, A.VendorUIStateBuilder, A.ViewWebhookList, A.ViewWebhook, A.EditWebhook, A.UpdateWebhook, A.LoadWebhookRequest, A.LoadWebhookFailure, A.LoadWebhookSuccess, A.LoadWebhooksRequest, A.LoadWebhooksFailure, A.LoadWebhooksSuccess, A.SaveWebhookRequest, A.SaveWebhookSuccess, A.AddWebhookSuccess, A.SaveWebhookFailure, A.ArchiveWebhooksRequest, A.ArchiveWebhooksSuccess, A.ArchiveWebhooksFailure, A.DeleteWebhooksRequest, A.DeleteWebhooksSuccess, A.DeleteWebhooksFailure, A.RestoreWebhooksRequest, A.RestoreWebhooksSuccess, A.RestoreWebhooksFailure, A.FilterWebhooks, A.SortWebhooks, A.FilterWebhooksByState, A.FilterWebhooksByCustom1, A.FilterWebhooksByCustom2, A.FilterWebhooksByCustom3, A.FilterWebhooksByCustom4, A.StartWebhookMultiselect, A.AddToWebhookMultiselect, A.RemoveFromWebhookMultiselect, A.ClearWebhookMultiselect, A.WebhookState, A._WebhookUIState_Object_EntityUIState, A._$WebhookStateSerializer, A._$WebhookUIStateSerializer, A.WebhookStateBuilder, A.WebhookUIStateBuilder, A.ConfirmEmailVM, A.__AutocompleteEntity_Object_SelectableEntity, A.AppDrawerVM, A.MenuDrawerVM, A._TheState, A.EntityPresenter, A.ExamplePaymentQueueDelegate, A.LoginVM, A.BankAccountListVM, A.BankAccountScreenVM, A.BankAccountEditVM, A.BankAccountViewVM, A.ClientListVM, A.ClientPdfVM, A.ClientScreenVM, A.ClientEditContactsVM, A.ClientEditVM, A.ClientViewVM, A.CompanyGatewayListVM, A.CompanyGatewayScreenVM, A.CompanyGatewayEditVM, A.CompanyGatewayViewVM, A.EmailEntityVM, A.EntityListVM, A.EntityPdfVM, A.CreditScreenVM, A.EntityEditDetailsVM, A.EntityEditItemsVM, A.EntityEditNotesVM, A.EntityEditPDFVM, A.AbstractInvoiceEditVM, A.AbstractInvoiceViewVM, A.DashboardVM, A.DesignListVM, A.DesignScreenVM, A.DesignEditVM, A.DesignViewVM, A.DocumentListVM, A.DocumentScreenVM, A.DocumentEditVM, A.DocumentViewVM, A.AbstractExpenseEditVM, A.ExpenseListVM, A.ExpenseScreenVM, A.AbstractExpenseViewVM, A.ExpenseCategoryEditVM, A.ExpenseCategoryListVM, A.ExpenseCategoryScreenVM, A.ExpenseCategoryViewVM, A.GroupEditVM, A.GroupListVM, A.GroupScreenVM, A.GroupViewVM, A.EntityEditContactsVM, A.InvoiceScreenVM, A.PaymentEditVM, A.PaymentListVM, A.PaymentScreenVM, A.PaymentRefundVM, A.PaymentViewVM, A.PaymentTermEditVM, A.PaymentTermListVM, A.PaymentTermScreenVM, A.PaymentTermViewVM, A.ProductEditVM, A.ProductListVM, A.ProductScreenVM, A.ProductViewVM, A.ProjectEditVM, A.ProjectListVM, A.ProjectScreenVM, A.ProjectViewVM, A.PurchaseOrderScreenVM, A.QuoteScreenVM, A.RecurringExpenseListVM, A.RecurringExpenseScreenVM, A.RecurringInvoiceListVM, A.RecurringInvoiceScreenVM, A.ReportResult, A.ReportElement, A.ReportsScreenVM, A.GroupTotals, A.ScheduleEditVM, A.ScheduleListVM, A.ScheduleScreenVM, A.ScheduleViewVM, A.AccountManagementVM, A.ClientPortalVM, A.CompanyDetailsVM, A.CreditCardsAndBanksVM, A.CustomFieldsVM, A.DataVisualizationsVM, A.DeviceSettingsVM, A.EmailSettingsVM, A.ExpenseSettingsVM, A.GeneratedNumbersVM, A.ImportExportVM, A.InvoiceDesignVM, A.LocalizationSettingsVM, A.PaymentSettingsVM, A.ProductSettingsVM, A.SettingsListVM, A.SettingsScreenVM, A.TaskSettingsVM, A.TaxSettingsVM, A.TemplatesAndRemindersVM, A.UserDetailsVM, A.WorkflowSettingsVM, A.SubscriptionEditVM, A.SubscriptionListVM, A.SubscriptionScreenVM, A.SubscriptionViewVM, A.TaskEditDetailsVM, A.TaskEditTimesVM, A.TaskEditVM, A.KanbanVM, A.TaskListVM, A.TaskScreenVM, A.TaskViewVM, A.TaskStatusEditVM, A.TaskStatusListVM, A.TaskStatusScreenVM, A.TaskStatusViewVM, A.TaxRateEditVM, A.TaxRateListVM, A.TaxRateScreenVM, A.TaxRateViewVM, A.TokenEditVM, A.TokenListVM, A.TokenScreenVM, A.TokenViewVM, A.TransactionEditVM, A.TransactionListVM, A.TransactionScreenVM, A.TransactionViewVM, A.TransactionRuleEditVM, A.TransactionRuleListVM, A.TransactionRuleScreenVM, A.TransactionRuleViewVM, A.UserEditVM, A.UserListVM, A.UserScreenVM, A.UserViewVM, A.VendorEditContactsVM, A.VendorEditVM, A.VendorListVM, A.VendorScreenVM, A.VendorViewVM, A.WebhookEditVM, A.WebhookViewVM, A.WebhookListVM, A.WebhookScreenVM, A.Debouncer, A.SimpleDebouncer, A.PersistDebouncer, A.LocaleCodeAware, A.LocalizationsProvider, A._MarkdownToDocument, A._InlineMarkdownToDocument, A.BlockSyntax, A._AttributedTextEditingController_Object_ChangeNotifier, A.LinkifyElement, A.Linkifier, A.LinkifyOptions, A.LocalAuthentication, A.AuthMessages, A.AuthenticationOptions, A.Level, A.LogRecord, A.Logger, A.Element1, A.Text1, A.UnparsedContent, A.BlockParser, A.ListItem, A.Document0, A.LinkReference, A.ExtensionSet, A.InlineParser, A.InlineSyntax, A.SimpleDelimiter, A.DelimiterRun, A.InlineLink, A.AuthenticationResult, A.Configuration, A.BrowserAuthOptions0, A.PublicClientApplication, A.CommonAuthorizationUrlRequest, A.MsalJsException, A.CupertinoPopoverToolbarAligner, A._MenuPageInfo, A.LeaderMenuFocalPoint, A.Context, A.Style, A.ParsedPath, A.PathException, A.MissingPlatformDirectoryException, A.PdfPageFormat, A.PdfRasterBase, A.WebDelegate, A.PinTheme, A._PinputUtilsMixin, A.Platform, A.Mutex, A.PdfPreviewActionBounds, A.PdfPreviewPageData, A.PdfPreviewRaster, A.PrintJob, A.PrintJobs, A.PrintingInfo, A._QrBitBuffer_Object_ListMixin, A.QrByte, A.InputTooLongException, A.QrPolynomial, A.QrCode, A.QrImage, A.QrRsBlock, A.PaintCache, A._PaintMetrics, A.QrEyeStyle, A.QrDataModuleStyle, A.QrValidationResult, A.MiddlewareClass, A.Store, A.TypedReducer, A.TypedMiddleware, A.RoundedLoadingButtonController, A._Wrapper, A.ForwardingSink, A._Empty, A.ErrorAndStackTrace, A._MultiControllerSink, A.EnvironmentVariables, A.HubAdapter, A.NoOpClient, A.NoOpHub, A.ISentrySpan, A.PlatformChecker, A.Breadcrumb, A.SdkVersion, A.SentryId, A.SentryLevel, A.SpanId, A.SentryOptions, A.SentrySpanContext, A.NoOpTransport, A.SentryFlutterWeb, A.SharedPreferences, A.PreferencesFilter, A.GetAllParameters, A.AuthorizationCredentialAppleID, A.AppleIDAuthorizationRequest, A.SignInWithAppleNotSupportedException, A.SignInWithAppleAuthorizationException, A.SignInWithAppleCredentialsException, A.WebAuthenticationOptions, A.SourceFile, A.SourceLocationMixin, A.SourceSpanMixin, A.Highlighter, A._Highlight, A._Line, A.SourceLocation, A.SourceSpanException, A._Rebuild, A._ReactiveModel_Object_IObservable, A.IObservable, A.SnapState, A.SnapError, A.StringScanner, A.DocumentChangeLog, A.NodeInsertedEvent, A.NodeRemovedEvent, A.NodeChangeEvent, A.DocumentPosition, A.DocumentNode, A._DocumentComposer_Object_ChangeNotifier, A._ComposerPreferences_Object_ChangeNotifier, A.ClearSelectionRequest, A.ChangeSelectionRequest, A.ChangeSelectionCommand, A.SelectionChangeEvent, A.ComposingRegionChangeEvent, A.DocumentSelectionChange, A.ChangeComposingRegionRequest, A.ChangeComposingRegionCommand, A.ChangeInteractionModeRequest, A.ChangeInteractionModeCommand, A.DebugPaintConfig, A.DocumentLayoutEditable, A.DocumentComponent, A.ProxyDocumentComponent, A.MovementModifier, A.DocumentRange, A.SuperEditorContext, A.Editor, A._DocumentEditorCommandExecutor, A.EditCommand, A.EditContext, A.EditorCommandQueue, A.DocumentEdit, A.MutableDocument, A.Stylesheet, A.StyleRule, A.BlockSelector, A._LastBlockMatcher, A.CascadingPadding, A.SelectionStyles, A.ColorAttribution, A.LinkAttribution, A.BlockquoteComponentBuilder, A.SingleColumnLayoutComponentViewModel, A.DeleteUpstreamAtBeginningOfBlockNodeCommand, A.CommonEditorOperations, A.PasteEditorRequest, A.PasteEditorCommand, A.DeleteUpstreamCharacterRequest, A.DeleteUpstreamCharacterCommand, A.UpdateComposerTextStylesReaction, A.SuperEditorDebugVisualsConfig, A.ParagraphPrefixConversionReaction, A.ImageUrlConversionReaction, A.LinkifyReaction, A.SuperEditorAndroidControlsController, A.SuperEditorAndroidToolbarFocalPointDocumentLayerBuilder, A.SuperEditorAndroidHandlesDocumentLayerBuilder, A.SuperEditorIosControlsController, A.TextDeltasDocumentEditor, A.TextInputConnectionDecorator, A.DocumentImeSerializer, A._DeltaTextInputClientDecorator_Object_DeltaTextInputClient, A.KeyboardEditingToolbarOperations, A.SuperEditorImePolicies, A.SuperEditorImeConfiguration, A._AutoScrollController_Object_ChangeNotifier, A.HorizontalRuleComponentBuilder, A.ImageComponentBuilder, A.SingleColumnDocumentComponentContext, A.SingleColumnLayoutPresenter, A.SingleColumnLayoutPresenterChangeListener, A.SingleColumnLayoutStylePhase, A.SingleColumnLayoutViewModel, A._DocumentNodeSelection, A.SingleColumnLayoutComponentStyles, A.DocumentNodeSelection, A.ListItemComponentBuilder, A.IndentListItemRequest, A.IndentListItemCommand, A.UnIndentListItemRequest, A.UnIndentListItemCommand, A.ConvertListItemToParagraphCommand, A.SplitListItemRequest, A.SplitListItemCommand, A.Intention, A.InsertNodeAtIndexRequest, A.InsertNodeBeforeNodeRequest, A.InsertNodeAfterNodeRequest, A.ReplaceNodeRequest, A.ReplaceNodeWithEmptyParagraphWithCaretRequest, A.ReplaceNodeWithEmptyParagraphWithCaretCommand, A.DeleteContentRequest, A.DeleteContentCommand, A.DeleteUpstreamAtBeginningOfNodeRequest, A.DeleteNodeRequest, A.DeleteNodeCommand, A.ParagraphComponentBuilder, A.ChangeParagraphBlockTypeRequest, A.ChangeParagraphBlockTypeCommand, A.CombineParagraphsRequest, A.CombineParagraphsCommand, A.SplitParagraphRequest, A.SplitParagraphCommand, A.DeleteUpstreamAtBeginningOfParagraphCommand, A.UpstreamDownstreamNodePosition, A.UpstreamDownstreamNodeSelection, A._SelectionLeadersDocumentLayerBuilder, A.SuperEditorSelectionPolicies, A.DefaultCaretOverlayBuilder, A._ContentTapDelegate_Object_ChangeNotifier, A.TaskComponentBuilder, A.ChangeTaskCompletionRequest, A.ChangeTaskCompletionCommand, A.ConvertTaskToParagraphCommand, A.SplitExistingTaskRequest, A.SplitExistingTaskCommand, A.TextComponentViewModel, A.ToggleTextAttributionsRequest, A.ToggleTextAttributionsCommand, A.InsertTextRequest, A.InsertTextCommand, A.ConvertTextNodeToParagraphRequest, A.InsertAttributedTextCommand, A.InsertCharacterAtCaretRequest, A.UnknownComponentBuilder, A.Logger0, A.AutoScroller, A.ProxyTextComposable, A._IndexedSlot, A.AxisOffset, A.DocumentScroller, A.DocumentSelectionLayout, A.SelectionLayerLinks, A.OverlayGroupPriority, A.UrlLauncher, A._TapTracker0, A._CountdownZoned0, A.AndroidDocumentLongPressSelectionStrategy, A.FloatingCursorController0, A.FloatingCursorListener, A.IosLongPressSelectionStrategy, A._MagnifierAndToolbarController_Object_ChangeNotifier, A.DragHandleAutoScroller, A.ToolbarConfig, A._AndroidEditingOverlayController_Object_ChangeNotifier, A._EstimatedLineHeight, A.TextFieldScroller, A._TextScrollController_Object_ChangeNotifier, A._IOSEditingOverlayController_Object_ChangeNotifier, A._FloatingCursorController_Object_ChangeNotifier, A.SuperTextFieldContext, A.CaretStyle, A._BlinkController_Object_ChangeNotifier, A.ProseTextBlock, A.RenderParagraphProseTextLayout, A.SelectionHighlightStyle, A.TextLayoutUnderline, A.UnderlineStyle, A._PaintableUnderline, A.ArMessages, A.CaMessages, A.CsMessages, A.DaMessages, A.DeMessages, A.EnMessages, A.EnShortMessages, A.EsMessages, A.EsShortMessages, A.FaMessages, A.FrMessages, A.FrShortMessages, A.HuMessages, A.HuShortMessages, A.ItMessages, A.ItShortMessages, A.JaMessages, A.NbNoShortMessages, A.NbNoMessages, A.NlMessages, A.NlShortMessages, A.PlMessages, A.PtBrMessages, A.PtBrShortMessages, A.RoMessages, A.RoShortMessages, A.RuMessages, A.RuShortMessages, A.SvMessages, A.SvShortMessages, A.ThMessages, A.ThShortMessages, A.ZhMessages, A.WebViewConfiguration, A.InAppWebViewConfiguration, A.LaunchOptions, A.Uuid, A.Matrix3, A.Matrix40, A.Quad, A.Quaternion, A.Vector3, A.Vector4, A.Version, A.VsScrollbarStyle, A.EventStreamProvider0, A._EventStreamSubscription0, A.WindowListener]); - _inheritMany(A.Closure, [A.Closure0Args, A.AppBootstrap_prepareEngineInitializer_closure0, A.AppBootstrap__prepareAppRunner_closure, A.CkCanvas_saveLayerWithFilter_closure, A._canvasKitJsUrls_closure, A._downloadCanvasKitJs_loadEventHandler, A._downloadCanvasKitJs_errorEventHandler, A.HtmlViewEmbedder_getOverlayCanvases_closure, A.HtmlViewEmbedder_submitFrame_closure, A.HtmlViewEmbedder__updateOverlays_closure, A.HtmlViewEmbedder__updateOverlays_closure0, A.HtmlViewEmbedder__updateOverlays_closure1, A.diffViewList_lookForwards, A.diffViewList_lookBackwards, A.SkiaFontCollection_registerDownloadedFonts_makeRegisterFont, A.readChunked_closure, A.ImageFilterEngineLayer_preroll_closure, A._finalizationRegistry_closure, A.CkPaint_imageFilter_closure, A.Closure2Args, A._getEffectiveFontFamilies_closure, A.ClipboardMessageHandler_setDataMethodCall_closure, A.ClipboardMessageHandler_setDataMethodCall_closure0, A.ClipboardMessageHandler_getDataMethodCall_closure, A.ClipboardMessageHandler_getDataMethodCall_closure0, A.ClipboardMessageHandler_getDataMethodCall__closure, A.ClipboardMessageHandler_hasStringsMethodCall_closure, A.ClipboardMessageHandler_hasStringsMethodCall_closure0, A.ClipboardMessageHandler_hasStringsMethodCall__closure, A.DomConsoleExtension_get_warn_closure, A.DomNavigatorExtension_get_languages_closure, A._ttPolicy_closure, A.sendFontChangeMessage_closure, A.sendFontChangeMessage__closure, A.FontFallbackManager$__closure, A.FontFallbackManager$__closure0, A.FontFallbackManager$__closure1, A.FontFallbackManager$__closure2, A.FontFallbackManager$__closure3, A.FontFallbackManager$__closure4, A.FontFallbackManager_findFontsForMissingCodePoints_closure, A.FontFallbackManager__selectFont_closure, A.fetchFontManifest_closure, A.fetchFontManifest_closure0, A.fetchFontManifest_closure1, A.fetchFontManifest__closure, A.HtmlRenderer_decodeImageFromPixels_executeCallback, A.HtmlRenderer_decodeImageFromPixels_executeCallback_closure, A.NormalizedGradient_NormalizedGradient_closure, A.HtmlCodec_getNextFrame_closure, A.HtmlCodec_getNextFrame_closure0, A.HtmlCodec__decodeUsingOnLoad_closure, A.HtmlCodec__decodeUsingOnLoad_closure0, A.initializeEngineServices__closure, A.FlutterEngineInitializer__staticInteropFactoryStub_closure, A.FlutterAppRunner__staticInteropFactoryStub_closure, A.futureToPromise__closure, A.futureToPromise__closure0, A._kLogicalKeyToModifierGetter_closure, A._kLogicalKeyToModifierGetter_closure0, A._kLogicalKeyToModifierGetter_closure1, A._kLogicalKeyToModifierGetter_closure2, A._kLogicalKeyToModifierGetter_closure3, A._kLogicalKeyToModifierGetter_closure4, A._kLogicalKeyToModifierGetter_closure5, A._kLogicalKeyToModifierGetter_closure6, A.KeyboardBinding$__closure, A.KeyboardBinding$__closure0, A.KeyboardBinding__addEventListener_loggedHandler, A.KeyboardBinding__onKeyData_closure, A.KeyboardConverter__scheduleAsyncEvent_closure, A.KeyboardConverter_handleEvent_closure, A.preventDefaultListener_closure, A.MultiEntriesBrowserHistory_onPopState_closure, A.SingleEntryBrowserHistory_onPopState_closure, A.SingleEntryBrowserHistory_onPopState_closure0, A.FallbackFontComponent__activeFonts_closure, A.EnginePlatformDispatcher__zonedPlatformMessageResponseCallback_closure, A.EnginePlatformDispatcher__sendPlatformMessage_closure, A.EnginePlatformDispatcher__sendPlatformMessage_closure0, A.EnginePlatformDispatcher__sendPlatformMessage_closure1, A.EnginePlatformDispatcher__sendPlatformMessage_closure2, A.EnginePlatformDispatcher__addLocaleChangedListener_closure, A.EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure, A.EnginePlatformDispatcher_replyToPlatformMessage_closure, A.SafariPointerEventWorkaround_workAroundMissingPointerEvents_closure, A._BaseAdapter_addEventListener_loggedHandler, A._PointerAdapter__addPointerEventListener_closure, A._PointerAdapter_setup_closure, A._PointerAdapter_setup_closure0, A._PointerAdapter_setup_closure1, A._PointerAdapter_setup_closure2, A._PointerAdapter_setup_closure3, A._PointerAdapter_setup_closure4, A._TouchAdapter__addTouchEventListener_closure, A._TouchAdapter_setup_closure, A._TouchAdapter_setup_closure0, A._TouchAdapter_setup_closure1, A._TouchAdapter_setup_closure2, A._MouseAdapter__addMouseEventListener_closure, A._MouseAdapter_setup_closure, A._MouseAdapter_setup_closure0, A._MouseAdapter_setup_closure1, A._MouseAdapter_setup_closure2, A._MouseAdapter_setup_closure3, A.RawKeyboard$__closure, A.RawKeyboard$__closure0, A.RawKeyboard__handleHtmlEvent_closure0, A.AccessibilityFocusManager_manage_closure, A.AccessibilityFocusManager_manage_closure0, A.Incrementable_closure, A.Incrementable_closure0, A.Scrollable_update_closure0, A.Scrollable_update_closure1, A.SemanticsObject_visitDepthFirst_closure, A.EngineSemanticsOwner__finalizeTree_closure, A.DesktopSemanticsEnabler_prepareAccessibilityPlaceholder_closure, A.MobileSemanticsEnabler_prepareAccessibilityPlaceholder_closure, A.Tappable_update_closure, A.TextField__initializeForBlink_closure, A.TextField__initializeForBlink_closure0, A.TextField__initializeForWebkit_closure, A.TextField__initializeForWebkit_closure0, A.TextField__invokeIosWorkaround_closure0, A.CanvasParagraph_computeLineMetrics_closure, A.EngineAutofillForm_addInputEventListeners_addSubscriptionForKey, A.EngineAutofillForm_addInputEventListeners_addSubscriptionForKey_closure, A.DefaultTextEditingStrategy_addEventHandlers_closure, A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure, A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure0, A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure1, A.IOSTextEditingStrategy_addEventHandlers_closure, A.IOSTextEditingStrategy_addEventHandlers_closure0, A.IOSTextEditingStrategy__addTapListener_closure, A.AndroidTextEditingStrategy_addEventHandlers_closure, A.FirefoxTextEditingStrategy_addEventHandlers_closure, A.FirefoxTextEditingStrategy_addEventHandlers_closure0, A.HybridTextEditing__startEditing_closure, A.EditableTextGeometry_EditableTextGeometry$fromFrameworkMessage_closure, A.bytesToHexString_closure, A.CustomElementDimensionsProvider__closure, A.CustomElementEmbeddingStrategy_initialize_closure, A.FullPageEmbeddingStrategy_initialize_closure, A._CastListBase_removeWhere_closure, A._CastListBase_retainWhere_closure, A.CastSet_removeWhere_closure, A.CastMap_entries_closure, A.Instantiation, A.TearOffClosure, A.JsLinkedHashMap_values_closure, A.JsLinkedHashMap_containsValue_closure, A.initHooks_closure, A.initHooks_closure1, A._StringStream__goalToEventCode_closure, A._AsyncRun__initializeScheduleImmediate_internalCallback, A._AsyncRun__initializeScheduleImmediate_closure, A._awaitOnObject_closure, A._asyncStarHelper_closure0, A._SyncBroadcastStreamController__sendData_closure, A._SyncBroadcastStreamController__sendError_closure, A._SyncBroadcastStreamController__sendDone_closure, A.Future_wait_closure, A.FutureExtensions_onError_closure, A._Future__chainForeignFuture_closure, A._Future__propagateToListeners_handleWhenCompleteCallback_closure, A._Future_timeout_closure0, A.Stream_Stream$fromFuture_closure, A.Stream_asyncMap_closure_add, A.Stream_asyncMap__closure, A.Stream_fold_closure0, A.Stream_fold__closure0, A.Stream_forEach_closure0, A.Stream_forEach__closure0, A.Stream_length_closure, A.Stream_isEmpty_closure0, A.Stream_toList_closure, A.Stream_first_closure0, A._StreamHandlerTransformer_closure, A._RootZone_bindUnaryCallbackGuarded_closure, A._HashMap_values_closure, A._CustomHashMap_closure, A._LinkedCustomHashMap_closure, A.MapBase_entries_closure, A.SplayTreeMap_closure, A.SplayTreeSet_closure, A._JsonMap_values_closure, A._BigIntImpl_hashCode_finish, A._BigIntImpl_toDouble_readBits, A.DateTime_parse_parseIntOrZero, A.DateTime_parse_parseMilliAndMicroseconds, A._Uri__splitQueryStringAll_parsePair, A._createTables_setChars, A._createTables_setRange, A.CanvasElement_toBlob_closure, A._ChildrenElementList__filter_closure, A._EventStreamSubscription_closure, A._EventStreamSubscription_onData_closure, A.FilteredElementList__iterable_closure, A.FilteredElementList__iterable_closure0, A.FilteredElementList_removeRange_closure0, A._FileStream__readBlock_closure, A._FileStream__start_onReady, A._FileStream__start_onOpenFile, A._File_open_closure, A._File_length_closure, A._File_readAsBytes_readUnsized, A._File_readAsBytes_readUnsized_read_closure, A._File_readAsBytes_readSized_read_closure, A._File_readAsBytes_closure, A._File_readAsBytes__closure, A._RandomAccessFile_close_closure, A._RandomAccessFile_read_closure, A._RandomAccessFile_readInto_closure, A._RandomAccessFile_setPosition_closure, A._RandomAccessFile_length_closure, A._convertToJS_closure, A._convertToJS_closure0, A._wrapToDart_closure, A._wrapToDart_closure0, A._wrapToDart_closure1, A.jsify__convert, A.promiseToFuture_closure, A.promiseToFuture_closure0, A.dartify_convert, A.KeyData__quotedCharCode_closure, A.bootstrapEngine_closure, A.HashUrlStrategy_addPopStateListener_wrappedFn, A.HashUrlStrategy__waitForPopState_closure, A.AttributedSpans__getStartingMarkerAtOrBefore_closure, A.AttributedSpans__getStartingMarkerAtOrBefore_closure0, A.AttributedSpans__getEndingMarkerAtOrAfter_closure, A.AttributedSpans__getEndingMarkerAtOrAfter_closure0, A.AttributedSpans_addAttribution_closure, A.AttributedSpans_addAttribution_closure0, A.AttributedSpans_addAttribution_closure1, A.AttributedSpans_addAttribution_closure2, A.AttributedSpans_removeAttribution_closure, A.AttributedSpans_removeAttribution_closure0, A.AttributedSpans_removeAttribution_closure1, A.AttributedSpans_removeAttribution_closure2, A.AttributedSpans_removeAttribution_closure3, A.AttributedSpans_removeAttribution_closure4, A.AttributedSpans__isContinuousAttribution_closure, A.AttributedSpans__getNearestMarkerAtOrBefore_closure, A.AttributedSpans__getNearestMarkerAtOrBefore_closure0, A.AttributedSpans__getMarkerAt_closure, A.AttributedSpans__getMarkerAt_closure0, A.AttributedSpans__getMarkerAt_closure1, A.AttributedSpans__insertMarker_closure, A.AttributedSpans__mergeBackToBackAttributions_closure, A.AttributedSpans__mergeBackToBackAttributions_closure0, A.AttributedSpans__mergeBackToBackAttributions_closure1, A.AttributedSpans_copyAttributionRegion_closure, A.AttributedSpans_copyAttributionRegion_closure0, A.AttributedSpans_copyAttributionRegion_closure2, A.AttributedSpans_copyAttributionRegion_closure3, A.AttributedSpans_copyAttributionRegion_closure4, A.AttributedSpans_copyAttributionRegion_closure5, A.AttributedSpans_pushAttributionsBack_closure, A.AttributedSpans_contractAttributions_closure, A.AttributedSpans_contractAttributions_closure0, A.AttributedSpans_contractAttributions_closure1, A.AttributedSpans_contractAttributions_closure2, A.AttributedSpans_contractAttributions_closure3, A.BoardItemState_build_closure, A.BoardItemState_build_closure3, A.BoardListState_build_closure2, A.BoardViewState_build_closure, A.BoardViewState_build_closure3, A.BoardViewState_build_closure5, A.BoardViewState_build_closure4, A.BoardViewState_build_closure6, A.BuiltListMultimap_BuiltListMultimap_closure, A.BuiltListMultimap_hashCode_closure, A.BuiltListMultimap_forEach__closure, A.ListMultimapBuilder_replace_closure, A.BuiltMap_BuiltMap_closure, A.BuiltMap_BuiltMap$from_closure, A.BuiltMap_hashCode_closure, A.BuiltSet_hashCode_closure, A.BuiltSetMultimap_hashCode_closure, A.BuiltSetMultimap_forEach__closure, A.SetMultimapBuilder_replace_closure, A.newBuiltValueToStringHelper_closure, A.BuiltListMultimapSerializer_serialize_closure, A.BuiltListMultimapSerializer_deserialize_closure, A.BuiltListSerializer_serialize_closure, A.BuiltListSerializer_deserialize_closure, A.BuiltSetMultimapSerializer_serialize_closure, A.BuiltSetMultimapSerializer_deserialize_closure, A.BuiltSetSerializer_serialize_closure, A.BuiltSetSerializer_deserialize_closure, A.StandardJsonPlugin__toList_closure, A.StandardJsonPlugin__toListUsingDiscriminator_closure, A.BaseBarRenderer_preprocessSeries_closure, A.BaseBarRenderer_preprocessSeries__closure0, A.BaseBarRenderer_preprocessSeries__closure2, A.BaseBarRenderer_preprocessSeries_closure0, A.BaseBarRenderer_update_closure, A.BaseBarRenderer_update__closure0, A.BaseBarRenderer_paint__closure0, A.BaseBarRenderer_paint__closure, A.BaseBarRenderer_getNearestDatumDetailPerSeries_closure, A.BaseBarRenderer__getSegmentsForDomainValue_closure0, A.BaseBarRenderer__getVerticalDetailsForDomainValue_closure, A.BaseBarRenderer__getVerticalDetailsForDomainValue_closure0, A.Axis__updateAxisTicks_closure, A.Axis__updateAxisTicks_closure0, A.Axis_paint_closure, A.BaseTickDrawStrategy_splitLabel_closure, A.BaseTickDrawStrategy_getLabelWidth_closure, A.NoneDrawStrategy_decorateTicks_closure, A.SimpleTickFormatterBase_format_closure, A.NumericTickFormatter__getFormatter_closure, A.CartesianChart_makeSeries_closure, A.BaseCartesianRenderer_configureDomainAxes_closure, A.BaseCartesianRenderer_configureMeasureAxes_closure, A.BaseChart_init_closure, A.BaseChart_pointWithinRenderer_closure, A.BaseChart_getNearestDatumDetailPerSeries_closure, A.BaseChart_draw_closure, A.BaseChart_drawInternal_closure, A.BaseChart_configureSeries_closure, A.BaseChart_preprocessSeries_closure, A.BaseChart_preprocessSeries_closure0, A.BaseChart_paint_closure, A.BaseChart_fireOnDraw_closure, A.BaseChart_fireOnPreprocess_closure, A.BaseChart_fireOnPostprocess_closure, A.BaseChart_fireOnAxisConfigured_closure, A.BaseChart_fireOnPostrender_closure, A.BaseChart_fireOnAnimationComplete_closure, A.DomainHighlighter__updateColorFunctions_closure, A.DomainHighlighter__updateColorFunctions__closure, A.PerSeriesLegendEntryGenerator_getLegendEntries_closure, A.PerSeriesLegendEntryGenerator_getLegendEntries_closure0, A.PerSeriesLegendEntryGenerator__updateFromSelection_closure, A.PerSeriesLegendEntryGenerator__updateFromSelection_closure0, A.PerSeriesLegendEntryGenerator__updateFromSeriesList_getMeasureTotal, A.SeriesLegend_onData_closure0, A.SeriesLegend_onData_closure, A.SeriesLegend_preProcessSeriesList_closure, A.SeriesLegend_showSeries_closure, A.SelectNearest__onSelect_closure0, A.SelectNearest__extractSeriesFromNearestSelection_closure, A.MutableSeries_closure, A.MutableSelectionModel_updateSelection_closure, A.MutableSelectionModel_updateSelection_closure0, A.BaseSeriesRenderer_assignMissingColors_closure, A.BaseSeriesRenderer_assignMissingColors__closure3, A.BaseSeriesRenderer_assignMissingColors_closure0, A.BaseSeriesRenderer_assignMissingColors__closure2, A.BaseSeriesRenderer_assignMissingColors_closure1, A.BaseSeriesRenderer_assignMissingColors_closure2, A.BaseSeriesRenderer_assignMissingColors__closure0, A.BaseSeriesRenderer_assignMissingColors__closure1, A.BaseSeriesRenderer_assignMissingColors_closure3, A.BaseSeriesRenderer_assignMissingColors__closure, A.BaseSeriesRenderer_assignMissingColors_closure4, A.LayoutManagerImpl_drawableLayoutAreaBounds_closure, A.LayoutManagerImpl_layout_closure, A.LayoutManagerImpl__viewsForPositions_closure, A.VerticalMarginStrategy_measure_closure, A.LeftMarginLayoutStrategy_layout_closure, A.RightMarginLayoutStrategy_layout_closure, A.HorizontalMarginStrategy_measure_closure, A.TopMarginLayoutStrategy_layout_closure, A.BottomMarginLayoutStrategy_layout_closure, A.LineRenderer_configureSeries_closure, A.LineRenderer_configureSeries__closure, A.LineRenderer_preprocessSeries_closure, A.LineRenderer_preprocessSeries_closure0, A.LineRenderer_preprocessSeries__closure, A.LineRenderer__mergeIntoSeriesMap_closure, A.LineRenderer__mergeIntoSeriesMap__closure, A.LineRenderer_update_closure, A.LineRenderer_update__closure, A.LineRenderer_update___closure, A.LineRenderer__createBoundsSegment_closure, A.LineRenderer__createBoundsSegment_closure0, A.LineRenderer_paint__closure7, A.LineRenderer_paint__closure, A.LineRenderer_paint__closure0, A.LineRenderer_paint__closure1, A.LineRenderer_paint__closure2, A.LineRenderer_paint__closure3, A.LineRenderer_paint__closure4, A.LineRenderer_paint__closure5, A.LineRenderer_paint__closure6, A.PointRenderer_paint__closure1, A.PointRenderer_paint__closure, A.PointRenderer_paint__closure0, A.PointRenderer_paint___closure, A.PointRenderer_paint___closure0, A.PointRenderer_paint___closure1, A.PointRenderer_paint___closure2, A.GestureListener_defaultTapTest_closure, A.MaterialPalette__orderedPalettes_closure10, A.Performance_time_closure, A.Performance_timeEnd_closure, A.ProxyGestureListener_onLongPress_closure, A.ProxyGestureListener_onTap_closure, A.ProxyGestureListener_onDragStart_closure, A.ProxyGestureListener_onDragUpdate_closure, A.ProxyGestureListener_onDragEnd_closure, A.ProxyGestureListener__cancel_closure, A.ProxyGestureListener__populateActiveListeners_closure, A.Series_Series_closure0, A.Series_Series_closure1, A.Series_Series_closure2, A.Series_Series_closure, A.BaseChart__updateBehaviors_closure, A.BaseChart__updateBehaviors_closure0, A.BaseChart__notACustomBehavior_closure, A.BaseChart__updateSelectionModel_closure, A.BaseChart__updateSelectionModel_closure0, A.BaseChart_getDesiredGestures_closure, A.BaseChart_getDesiredGestures_closure0, A.BaseLegendContentBuilder_build_closure, A.SimpleLegendEntryLayout_makeTapUpCallback_closure, A.TabularLegendLayout_build_closure, A.TabularLegendLayout__buildTableFromRows_closure, A.TabularLegendLayout__buildTableFromRows_closure1, A._FlutterSeriesLegend_build_closure, A.ChartContainerRenderObject_requestAnimation_startAnimationController, A.ChartContainerRenderObject_requestRebuild_doRebuild, A.getChartContainerRenderObject_closure, A.CanonicalizedMap_entries_closure, A.CanonicalizedMap_keys_closure, A.CanonicalizedMap_values_closure, A.DesktopDropWeb__registerEvents_closure, A.DesktopDropWeb__registerEvents__closure, A.DesktopDropWeb__registerEvents_closure0, A.DesktopDropWeb__registerEvents_closure1, A.DesktopDropWeb__registerEvents_closure2, A.DesktopDrop_init_closure, A.DesktopDrop__handleMethodChannel_closure, A.DesktopDrop__handleMethodChannel_closure0, A.DesktopDrop__handleMethodChannel_closure1, A.DesktopDrop__handleMethodChannel_closure2, A.DesktopDrop__handleMethodChannel_closure3, A.DesktopDrop__handleMethodChannel_closure4, A.FilePickerWeb_pickFiles_changeEventListener, A.FilePickerWeb_pickFiles_changeEventListener_addPickedFile, A.FilePickerWeb_pickFiles_changeEventListener_closure, A.FilePickerWeb_pickFiles_changeEventListener_closure0, A.FilePickerWeb_pickFiles_cancelledEventListener, A.FilePickerWeb_pickFiles_cancelledEventListener_closure, A.FilePickerMacOS_resultStringToFilePaths_closure, A.FilePickerMacOS_resultStringToFilePaths_closure0, A.FilePickerMacOS_resultStringToFilePaths_closure1, A.FilePickerMacOS_resultStringToFilePaths__closure, A.KDialogHandler_fileTypeToFileFilter_closure, A.KDialogHandler_resultStringToFilePaths_closure, A.QarmaAndZenityHandler_resultStringToFilePaths_closure, A.filePathsToPlatformFiles_closure, A.filePathsToPlatformFiles_closure0, A._CupertinoButtonState__animate_closure, A._CupertinoBackGestureController_dragEnd_closure, A._CupertinoEdgeShadowDecoration_lerp_closure, A._CupertinoEdgeShadowDecoration_lerp_closure0, A._CupertinoScrollbarState_handleThumbPress_closure, A._CupertinoTextSelectionToolbarContentState_build_closure, A._RenderCupertinoTextSelectionToolbarItems_performLayout_closure, A._RenderCupertinoTextSelectionToolbarItems_performLayout_closure0, A._RenderCupertinoTextSelectionToolbarItems_paint_closure, A._RenderCupertinoTextSelectionToolbarItems_redepthChildren_closure, A._RenderCupertinoTextSelectionToolbarItems_visitChildrenForSemantics_closure, A._RenderCupertinoTextSelectionToolbarItems_debugDescribeChildren_closure, A.CupertinoThemeData_resolveFrom_convertColor, A.NoDefaultCupertinoThemeData_resolveFrom_convertColor, A._CupertinoThemeDefaults_resolveFrom_convertColor, A.FlutterErrorDetails_summary_closure, A.FlutterErrorDetails_debugFillProperties_closure, A.FlutterError_FlutterError_closure, A.FlutterError_defaultStackFilter_closure, A.FlutterError_defaultStackFilter_closure0, A.FlutterError_toString_closure, A.debugPrintStack_closure, A.BindingBase_initServiceExtensions_closure0, A.BindingBase_initServiceExtensions_closure2, A.BindingBase_registerBoolServiceExtension_closure, A.BindingBase_registerNumericServiceExtension_closure, A.BindingBase_registerStringServiceExtension_closure, A._PrefixedStringBuilder__wordWrapLine_noWrap, A.TextTreeRenderer__debugRender_visitor, A.TextTreeRenderer__debugRender_closure, A.StackFrame_fromStackString_closure, A.SynchronousFuture_whenComplete_closure, A._GestureArena_toString_closure, A.PointerEventConverter_expand_closure, A.PointerEventConverter_expand_closure0, A.PolynomialFit_toString_closure, A.MultiDragGestureRecognizer_acceptGesture_closure, A.ScaleGestureRecognizer__reconfigure_closure, A.ScaleGestureRecognizer_acceptGesture_closure, A.showLicensePage_closure, A._PackagesViewState_licenses_closure0, A._PackagesViewState_build___closure, A._PackagesViewState__initDefaultDetailPage_closure, A._PackagesViewState__packagesList___closure, A._MasterDetailFlowState__nestedUI_closure0, A._MasterDetailFlowState__masterPageRoute_closure, A._MasterDetailFlowState__detailPageRoute_closure, A._MasterDetailFlowState__detailPageRoute__closure, A._MasterDetailFlowState__lateralUI_closure0, A._MasterDetailScaffoldState_openDetailPage_closure, A._MasterDetailScaffoldState_setInitialDetailPage_closure, A._MasterDetailScaffoldState_build_closure, A.BackButtonIcon_build_closure, A.BackButtonIcon_build_closure0, A.BackButtonIcon_build_closure1, A.DrawerButtonIcon_build_closure, A.DrawerButtonIcon_build_closure0, A.DrawerButtonIcon_build_closure1, A.EndDrawerButtonIcon_build_closure, A.EndDrawerButtonIcon_build_closure0, A.EndDrawerButtonIcon_build_closure1, A.AdaptiveTextSelectionToolbar_getAdaptiveButtons_closure, A.AdaptiveTextSelectionToolbar_getAdaptiveButtons_closure0, A.AdaptiveTextSelectionToolbar_getAdaptiveButtons_closure1, A._MaterialAppState__materialBuilder_closure, A._MaterialAppState__buildWidgetApp_closure, A.MaterialRectArcTween__initialize_closure, A._DragHandle_build_closure, A._DragHandle_build_closure0, A._BottomSheetGestureDetector_build_closure0, A._ButtonStyleState_build_effectiveValue, A._ButtonStyleState_build_resolve, A._ButtonStyleState_build_resolve_closure, A._ButtonStyleState_build_closure, A._ButtonStyleState_build_closure0, A._ButtonStyleState_build_closure1, A._ButtonStyleState_build_closure2, A._ButtonStyleState_build_closure3, A._ButtonStyleState_build_closure4, A._ButtonStyleState_build_closure5, A._ButtonStyleState_build_closure6, A._ButtonStyleState_build_closure7, A._ButtonStyleState_build_closure8, A._ButtonStyleState_build_closure9, A._ButtonStyleState_build_closure10, A._ButtonStyleState_build_closure11, A._ButtonStyleState_build_closure12, A._ButtonStyleState_build_closure20, A._ButtonStyleState_build__closure0, A._ButtonStyleState_build_closure21, A._ButtonStyleState_build__closure, A._ButtonStyleState_build_closure13, A._ButtonStyleState_build_closure14, A._ButtonStyleState_build_closure15, A._ButtonStyleState_build_closure16, A._ButtonStyleState_build_closure17, A._ButtonStyleState_build_closure18, A._ButtonStyleState_build_closure19, A._DayState_build_effectiveValue, A._DayState_build_resolve, A._DayState_build_resolve_closure, A._DayState_build_closure, A._DayState_build_closure0, A._DayState_build_closure2, A._DayState_build__closure, A._YearPickerState__buildYearItem_effectiveValue, A._YearPickerState__buildYearItem_resolve, A._YearPickerState__buildYearItem_resolve_closure, A._YearPickerState__buildYearItem_closure, A._YearPickerState__buildYearItem_closure0, A._YearPickerState__buildYearItem_closure2, A._YearPickerState__buildYearItem__closure, A._CheckboxState__widgetFillColor_closure, A._CheckboxState_build_closure, A._CheckboxDefaultsM2_side_closure, A._CheckboxDefaultsM2_fillColor_closure, A._CheckboxDefaultsM2_overlayColor_closure, A._CheckboxDefaultsM3_side_closure, A._CheckboxDefaultsM3_fillColor_closure, A._CheckboxDefaultsM3_checkColor_closure, A._CheckboxDefaultsM3_overlayColor_closure, A.DataTable_build_closure3, A.DataTable_build_closure, A.DataTable_build_closure0, A.DataTable_build_closure1, A.DataTable_build_closure2, A.DataTable_build_closure4, A.showDatePicker_closure, A._DatePickerDefaultsM2_dayForegroundColor_closure, A._DatePickerDefaultsM2_dayBackgroundColor_closure, A._DatePickerDefaultsM2_dayOverlayColor_closure, A._DatePickerDefaultsM2_todayForegroundColor_closure, A._DatePickerDefaultsM2_rangeSelectionOverlayColor_closure, A._DatePickerDefaultsM3_dayForegroundColor_closure, A._DatePickerDefaultsM3_dayBackgroundColor_closure, A._DatePickerDefaultsM3_dayOverlayColor_closure, A._DatePickerDefaultsM3_todayForegroundColor_closure, A._DatePickerDefaultsM3_yearForegroundColor_closure, A._DatePickerDefaultsM3_yearBackgroundColor_closure, A._DatePickerDefaultsM3_yearOverlayColor_closure, A._DatePickerDefaultsM3_rangeSelectionOverlayColor_closure, A.DialogRoute_closure, A._DropdownRoutePageState_build_closure, A._DropdownButtonState_initState_closure, A._DropdownButtonState_initState_closure0, A._DropdownButtonState__updateSelectedIndex_closure, A._DropdownButtonState__handleTap_closure, A._DropdownButtonState__handleTap_closure0, A._DropdownButtonState_build_closure, A.DropdownButtonFormField_closure, A.DropdownButtonFormField__closure, A.DropdownButtonFormField__closure0, A._ElevatedButtonDefaultsM3_backgroundColor_closure, A._ElevatedButtonDefaultsM3_foregroundColor_closure, A._ElevatedButtonDefaultsM3_overlayColor_closure, A._ElevatedButtonDefaultsM3_elevation_closure, A._ElevatedButtonDefaultsM3_mouseCursor_closure, A._ExpansionPanelListState_build_closure, A._IconButtonM3_themeStyleOf_isIconThemeDefault, A._IconButtonDefaultsM3_foregroundColor_closure, A._IconButtonDefaultsM3_overlayColor_closure, A._IconButtonDefaultsM3_mouseCursor_closure, A._FilledIconButtonDefaultsM3_backgroundColor_closure, A._FilledIconButtonDefaultsM3_foregroundColor_closure, A._FilledIconButtonDefaultsM3_overlayColor_closure, A._FilledIconButtonDefaultsM3_mouseCursor_closure, A._FilledTonalIconButtonDefaultsM3_backgroundColor_closure, A._FilledTonalIconButtonDefaultsM3_foregroundColor_closure, A._FilledTonalIconButtonDefaultsM3_overlayColor_closure, A._FilledTonalIconButtonDefaultsM3_mouseCursor_closure, A._OutlinedIconButtonDefaultsM3_backgroundColor_closure, A._OutlinedIconButtonDefaultsM3_foregroundColor_closure, A._OutlinedIconButtonDefaultsM3_overlayColor_closure, A._OutlinedIconButtonDefaultsM3_side_closure, A._OutlinedIconButtonDefaultsM3_mouseCursor_closure, A._InkResponseState_highlightsExist_closure, A._InkResponseState_build_getHighlightColorForType, A._InputDatePickerFormFieldState_didUpdateWidget_closure, A._RenderDecoration_paint_doPaint, A._InputDecoratorDefaultsM2_hintStyle_closure, A._InputDecoratorDefaultsM2_labelStyle_closure, A._InputDecoratorDefaultsM2_floatingLabelStyle_closure, A._InputDecoratorDefaultsM2_helperStyle_closure, A._InputDecoratorDefaultsM2_errorStyle_closure, A._InputDecoratorDefaultsM2_fillColor_closure, A._InputDecoratorDefaultsM2_iconColor_closure, A._InputDecoratorDefaultsM2_prefixIconColor_closure, A._InputDecoratorDefaultsM2_suffixIconColor_closure, A._InputDecoratorDefaultsM3_hintStyle_closure, A._InputDecoratorDefaultsM3_fillColor_closure, A._InputDecoratorDefaultsM3_activeIndicatorBorder_closure, A._InputDecoratorDefaultsM3_outlineBorder_closure, A._InputDecoratorDefaultsM3_prefixIconColor_closure, A._InputDecoratorDefaultsM3_suffixIconColor_closure, A._InputDecoratorDefaultsM3_labelStyle_closure, A._InputDecoratorDefaultsM3_floatingLabelStyle_closure, A._InputDecoratorDefaultsM3_helperStyle_closure, A._InputDecoratorDefaultsM3_errorStyle_closure, A.ListTile_build_resolveColor, A._RenderListTile_paint_doPaint, A.ListTileTheme_merge_closure, A.TextMagnifier_adaptiveMagnifierConfiguration_closure, A._MaterialState_build_closure, A._MaterialInteriorState_forEachTween_closure, A._MaterialInteriorState_forEachTween_closure0, A._MaterialInteriorState_forEachTween_closure1, A._MaterialInteriorState_forEachTween_closure2, A.MaterialStateMixin_updateMaterialState_closure, A._MergeableMaterialState_didUpdateWidget_closure, A._MergeableMaterialState_didUpdateWidget_closure0, A._OutlinedButtonDefaultsM3_foregroundColor_closure, A._OutlinedButtonDefaultsM3_overlayColor_closure, A._OutlinedButtonDefaultsM3_side_closure, A._OutlinedButtonDefaultsM3_mouseCursor_closure, A._ZoomPageTransition_build_closure, A._ZoomPageTransition_build_closure0, A._ZoomPageTransition_build_closure1, A._ZoomPageTransition_build_closure2, A.PageTransitionsTheme__all_closure, A._PopupMenu_build_closure, A._PopupMenuRoute_buildPage_closure, A.PopupMenuButtonState_showButtonMenu_closure, A._PopupMenuDefaultsM3_labelTextStyle_closure, A._RadioState__widgetFillColor_closure, A._RadioState_build_closure, A._RadioDefaultsM2_fillColor_closure, A._RadioDefaultsM2_overlayColor_closure, A._RadioDefaultsM3_fillColor_closure, A._RadioDefaultsM3_overlayColor_closure, A.RefreshIndicatorState__show_closure, A.ScaffoldMessengerState_hideCurrentSnackBar_closure, A._MaterialScrollbarState__trackVisibility_closure, A._MaterialScrollbarState__thumbColor_closure, A._MaterialScrollbarState__trackColor_closure, A._MaterialScrollbarState__trackBorderColor_closure, A._MaterialScrollbarState__thickness_closure, A._MaterialSwitchState__widgetThumbColor_closure, A._MaterialSwitchState__widgetTrackColor_closure, A._MaterialSwitchState_build_closure, A._SwitchPainter_paint_thumbSizeAnimation, A._SwitchDefaultsM2_thumbColor_closure, A._SwitchDefaultsM2_trackColor_closure, A._SwitchDefaultsM2_mouseCursor_closure, A._SwitchDefaultsM2_overlayColor_closure, A._SwitchDefaultsM3_thumbColor_closure, A._SwitchDefaultsM3_trackColor_closure, A._SwitchDefaultsM3_trackOutlineColor_closure, A._SwitchDefaultsM3_overlayColor_closure, A._SwitchConfigM3_iconColor_closure, A._TabStyle__resolveWithLabelColor_closure, A._TabBarState_initState_closure, A._TabBarState_build_closure, A._TabBarState_build_closure0, A._TabsPrimaryDefaultsM3_overlayColor_closure, A._TextButtonDefaultsM3_foregroundColor_closure, A._TextButtonDefaultsM3_overlayColor_closure, A._TextButtonDefaultsM3_mouseCursor_closure, A._TextFieldState_build_closure7, A._TextFieldState_build_closure8, A._m2StateInputStyle_closure, A._m3StateInputStyle_closure, A.TextFormField_closure, A.TextFormField_closure_onChangedHandler, A._RenderTextSelectionToolbarItemsLayout__layoutChildren_closure, A._RenderTextSelectionToolbarItemsLayout__placeChildren_closure, A._RenderTextSelectionToolbarItemsLayout_paint_closure, A._RenderTextSelectionToolbarItemsLayout_visitChildrenForSemantics_closure, A._AnimatedThemeState_forEachTween_closure, A.ThemeData__lerpThemeExtensions_closure0, A.TimeOfDay_toString_addLeadingZeroIfNeeded, A._HourControl_build_hoursFromSelected, A._DialPainter_paint_paintInnerOuterLabels, A._DialPainter_paint_paintInnerOuterLabels_closure, A._DialPainter_paint_paintInnerOuterLabels_closure0, A._DialState__animateTo_animateToValue, A.showTimePicker_closure, A._TimePickerDefaultsM2_dayPeriodColor_closure, A._TimePickerDefaultsM2_dayPeriodTextColor_closure, A._TimePickerDefaultsM2_dialTextColor_closure, A._TimePickerDefaultsM2_hourMinuteColor_closure, A._TimePickerDefaultsM2_hourMinuteTextColor_closure, A._TimePickerDefaultsM2__hourMinuteInputColor_closure, A._TimePickerDefaultsM3_dayPeriodColor_closure, A._TimePickerDefaultsM3_dayPeriodTextColor_closure, A._TimePickerDefaultsM3_dialTextColor_closure, A._TimePickerDefaultsM3_helpTextStyle_closure, A._TimePickerDefaultsM3_hourMinuteColor_closure, A._TimePickerDefaultsM3_hourMinuteTextColor_closure, A._TimePickerDefaultsM3__hourMinuteTextColor_closure, A._TimePickerDefaultsM3_hourMinuteTextStyle_closure, A.ToggleButtons_build_closure, A.NetworkImage__loadAsync_closure0, A.NetworkImage__loadAsync_closure1, A._CompoundBorder_scale_closure, A._CompoundBorder_preferPaintInterior_closure, A._CompoundBorder_toString_closure, A.ClipContext_clipPathAndPaint_closure, A.ClipContext_clipRRectAndPaint_closure, A.ClipContext_clipRectAndPaint_closure, A.paintImage_closure0, A._sample_closure, A._interpolateColorsAndStops_closure, A.LinearGradient_scale_closure, A._CachedImageBase_dispose_closure, A.ImageProvider_resolve_closure0, A.ImageProvider__createErrorHandlerAndKey_closure, A.AssetImage_obtainKey_closure, A.ImageStreamCompleter_reportError_closure, A.ImageStreamCompleter_reportImageChunkEvent_closure, A.InlineSpan_getSpanForPosition_closure, A.InlineSpan_codeUnitAt_closure, A._ShapeDecorationPainter__precache_closure, A._ShapeDecorationPainter__precache_closure0, A._ShapeDecorationPainter__precache_closure1, A.TextPainter_inlinePlaceholderBoxes_closure, A.TextPainter_getBoxesForSelection_closure, A.TextPainter_computeLineMetrics_closure, A.TextSpan_debugDescribeChildren_closure, A.TextStyle_fontFamilyFallback_closure, A.FrictionSimulation_closure, A.RendererBinding_pipelineOwner_closure1, A.RendererBinding__scheduleMouseTrackerUpdate_closure, A.BoxConstraints_toString_describe, A.RenderEditable_getBoxesForSelection_closure, A.RenderEditable_describeSemanticsConfiguration_closure, A.RenderEditable__canComputeDryLayoutForInlineWidgets_closure, A.RenderListBody_computeMinIntrinsicWidth_closure, A.RenderListBody_computeMinIntrinsicWidth_closure0, A.RenderListBody_computeMaxIntrinsicWidth_closure, A.RenderListBody_computeMaxIntrinsicWidth_closure0, A.RenderListBody_computeMinIntrinsicHeight_closure, A.RenderListBody_computeMinIntrinsicHeight_closure0, A.RenderListBody_computeMaxIntrinsicHeight_closure, A.RenderListBody_computeMaxIntrinsicHeight_closure0, A.MouseTracker__handleDeviceUpdate_closure, A.MouseTracker__handleDeviceUpdateMouseEvents_closure0, A.RenderObject__updateCompositingBits_closure, A.RenderObject_clearSemantics_closure, A.RenderObject__getSemanticsForParent_closure, A.RenderObject__getSemanticsForParent_closure0, A.RenderObject__getSemanticsForParent_closure1, A.RelayoutWhenSystemFontsChangeMixin__scheduleSystemFontsUpdate_closure, A.RenderParagraph_markNeedsLayout_closure, A.RenderParagraph_selectionColor_closure, A.RenderParagraph__canComputeDryLayoutForInlineWidgets_closure, A._factoriesTypeSet_closure, A._PlatformViewGestureRecognizer_closure, A.RenderSliverHelpers_hitTestBoxChild_closure, A.RenderSliverMultiBoxAdaptor__createOrObtainChild_closure, A.RenderSliverMultiBoxAdaptor_collectGarbage_closure, A.RenderSliverMultiBoxAdaptor_collectGarbage__closure, A.RenderSliverPersistentHeader_layoutChild_closure, A.RenderStack_computeMinIntrinsicWidth_closure, A.RenderStack_computeMaxIntrinsicWidth_closure, A.RenderStack_computeMinIntrinsicHeight_closure, A.RenderStack_computeMaxIntrinsicHeight_closure, A.RenderViewportBase_visitChildrenForSemantics_closure, A.RenderViewportBase_hitTestChildren_closure, A.SchedulerBinding_endOfFrame_closure, A.SchedulerBinding__handleDrawFrame_closure, A.TickerFuture_whenCompleteOrCancel_thunk, A.SemanticsNode_getSemanticsData_closure, A.SemanticsNode__childrenInTraversalOrder_closure, A.SemanticsNode_debugDescribeChildren_closure, A._SemanticsSortGroup_sortedWithinVerticalGroup_closure, A._SemanticsSortGroup_sortedWithinKnot_search, A._SemanticsSortGroup_sortedWithinKnot_closure0, A._SemanticsSortGroup_sortedWithinKnot_closure1, A._childrenInDefaultOrder_closure, A.SemanticsOwner_sendSemanticsUpdate_closure, A.SemanticsOwner__getSemanticsActionHandlerForId_closure, A.SemanticsConfiguration__addArgumentlessAction_closure, A.SemanticsConfiguration_onMoveCursorForwardByCharacter_closure, A.SemanticsConfiguration_onMoveCursorBackwardByCharacter_closure, A.SemanticsConfiguration_onMoveCursorForwardByWord_closure, A.SemanticsConfiguration_onMoveCursorBackwardByWord_closure, A.SemanticsConfiguration_onSetSelection_closure, A.SemanticsConfiguration_onSetText_closure, A.CachingAssetBundle_loadStructuredData_closure, A.PlatformAssetBundle_load_closure, A.AssetManifest_loadFromAssetBundle_closure, A._AssetManifestBin_getAssetVariants_closure, A._AutofillScopeTextInputConfiguration_toJson_closure, A.AutofillScopeMixin_attach_closure, A.ServicesBinding__initKeyboard_closure, A._DefaultBinaryMessenger_send_closure, A.BasicMessageChannel_setMessageHandler_closure, A.MethodChannel_setMethodCallHandler_closure, A.RestorationManager_handleRestorationUpdateFromEngine_closure, A.RestorationManager_scheduleSerializationFor_closure, A.RestorationBucket__visitChildren_closure, A.FilteringTextInputFormatter__processRegion_adjustIndex, A.TextEditingValue_replaced_adjustIndex, A.TextInput__handleTextInputInvocation_closure, A.TextInput__handleTextInputInvocation_closure0, A.TextInput__handleTextInputInvocation_closure1, A._PlatformTextInputControl_setSelectionRects_closure, A.HtmlElementViewImpl_get__createController_closure, A.HtmlElementViewImpl__createController_closure, A._getParent_closure, A.Actions__findDispatcher_closure, A.Actions_maybeFind_closure, A.Actions__maybeFindWithoutDependingOn_closure, A.Actions_invoke_closure, A.Actions_maybeInvoke_closure, A._FocusableActionDetectorState_initState_closure, A._FocusableActionDetectorState__mayTriggerCallback_shouldShowHoverHighlight, A._FocusableActionDetectorState__mayTriggerCallback_canRequestFocus, A._FocusableActionDetectorState__mayTriggerCallback_shouldShowFocusHighlight, A._FocusableActionDetectorState_didUpdateWidget_closure, A._AnimatedCrossFadeState_initState_closure, A._AnimatedSwitcherState__newEntry_closure, A._AnimatedSwitcherState__rebuildOutgoingWidgetsIfNeeded_closure, A._AnimatedSwitcherState_build_closure, A._WidgetsAppState__onGenerateRoute_closure, A._WidgetsAppState_build_closure, A._StreamBuilderBaseState__subscribe_closure, A._FutureBuilderState__subscribe_closure, A._RawAutocompleteState__updateOverlay_closure, A._RawAutocompleteState__updateOverlay_closure0, A._RawAutocompleteState__updateOverlay__closure, A.AutofillGroupState_autofillClients_closure, A._AutomaticKeepAliveState__addClient_closure, A._AutomaticKeepAliveState__getChildElement_closure, A._UbiquitousInheritedElement_notifyClients_closure, A._UbiquitousInheritedElement__recurseChildren_closure, A.ClipPath_shape_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure0, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure1, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure3, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure5, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initInstances_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure0, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_initInstances_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure0, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure1, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure2, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure4, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure6, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_drawFrame_closure, A.ContextMenuController_show_closure, A.DefaultSelectionStyle_merge_closure, A.DisplayFeatureSubScreen_avoidBounds_closure, A.DisplayFeatureSubScreen_avoidBounds_closure0, A._DraggableScrollableSheetState_build_closure, A.EditableTextState_cutSelection_closure, A.EditableTextState_pasteText_closure, A.EditableTextState_didChangeDependencies_closure, A.EditableTextState_didUpdateWidget_closure, A.EditableTextState__createSelectionOverlay_closure, A.EditableTextState__scheduleShowCaretOnScreen_closure, A.EditableTextState_didChangeMetrics_closure, A.EditableTextState__startCursorBlink_closure, A.EditableTextState__onCursorTick_closure1, A.EditableTextState_showSpellCheckSuggestionsToolbar_closure, A.EditableTextState__actions_closure, A.EditableTextState_build_closure3, A._ScribbleFocusableState_isInScribbleRect_closure, A.FocusNode_traversalDescendants_closure, A.FocusNode_debugDescribeChildren_closure, A._getAncestor_closure, A.FocusTraversalPolicy__findInitialFocus_closure, A.FocusTraversalPolicy__sortAllDescendants_visitGroups, A.FocusTraversalPolicy__sortAllDescendants_closure, A._ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_changedScope_closure, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure0, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure0, A.DirectionalFocusTraversalPolicyMixin__popPolicyDataIfNeeded_popOrInvalidate, A.DirectionalFocusTraversalPolicyMixin_inDirection_closure, A.DirectionalFocusTraversalPolicyMixin_inDirection_closure0, A.DirectionalFocusTraversalPolicyMixin_inDirection_closure1, A.DirectionalFocusTraversalPolicyMixin_inDirection_closure2, A._ReadingOrderSortData_commonDirectionalityOf_closure, A._ReadingOrderSortData_directionalAncestors_getDirectionalityAncestors, A._ReadingOrderDirectionalGroupData_rect_closure, A.ReadingOrderTraversalPolicy__pickNext_inBand_closure, A.FormState__fieldDidChange_closure, A._InactiveElements__unmount_closure, A.Element_renderObjectAttachingChild_closure, A.Element_describeMissingAncestor_closure, A.Element_describeElements_closure, A.Element_updateChildren_replaceWithNullIfForgotten, A.Element_updateSlotForChild_visit, A.Element__updateDepth_closure, A.Element_detachRenderObject_closure, A.Element_attachRenderObject_closure, A.Element_debugDescribeChildren_closure, A.ParentDataElement__applyParentData_applyParentDataToChild, A.MultiChildRenderObjectElement_children_closure, A.GestureDetector_build_closure0, A.GestureDetector_build_closure2, A.GestureDetector_build_closure4, A.GestureDetector_build_closure6, A.GestureDetector_build_closure8, A.GestureDetector_build_closure10, A.GestureDetector_build_closure12, A.GestureDetector_build_closure14, A._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure, A._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure0, A._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure1, A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure, A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure0, A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure1, A.Hero__allHeroesFor_visitor, A.HeroController_didStopUserGesture_isInvalidFlight, A.HeroController__maybeStartHeroTransition_closure, A.IconTheme_merge_closure, A._ImageState__replaceImage_closure, A.ImplicitlyAnimatedWidgetState_initState_closure, A.ImplicitlyAnimatedWidgetState_didUpdateWidget_closure, A.ImplicitlyAnimatedWidgetState__constructTweens_closure, A._AnimatedContainerState_forEachTween_closure, A._AnimatedContainerState_forEachTween_closure0, A._AnimatedContainerState_forEachTween_closure1, A._AnimatedContainerState_forEachTween_closure2, A._AnimatedContainerState_forEachTween_closure3, A._AnimatedContainerState_forEachTween_closure4, A._AnimatedContainerState_forEachTween_closure5, A._AnimatedContainerState_forEachTween_closure6, A._AnimatedPaddingState_forEachTween_closure, A._AnimatedPositionedState_forEachTween_closure, A._AnimatedPositionedState_forEachTween_closure0, A._AnimatedPositionedState_forEachTween_closure1, A._AnimatedPositionedState_forEachTween_closure2, A._AnimatedPositionedState_forEachTween_closure3, A._AnimatedPositionedState_forEachTween_closure4, A._AnimatedOpacityState_forEachTween_closure, A._AnimatedDefaultTextStyleState_forEachTween_closure, A._AnimatedPhysicalModelState_forEachTween_closure, A._AnimatedPhysicalModelState_forEachTween_closure0, A._AnimatedPhysicalModelState_forEachTween_closure1, A._AnimatedPhysicalModelState_forEachTween_closure2, A.InheritedTheme_capture_closure, A._loadAll_closure, A._loadAll_closure0, A._loadAll_closure1, A._LocalizationsState_load_closure, A._LocalizationsState_load_closure0, A.LookupBoundary_findAncestorStateOfType_closure, A.LookupBoundary_findRootAncestorStateOfType_closure, A.LookupBoundary_findAncestorRenderObjectOfType_closure, A.TextMagnifierConfiguration_magnifierBuilder_closure, A.MagnifierController_show_closure, A.MediaQueryData_removeDisplayFeatures_closure, A.MediaQuery_withNoTextScaling_closure, A.MediaQuery_withClampedTextScaling_closure, A.Route_didPush_closure, A.Route_didAdd_closure, A.Navigator_defaultGenerateInitialRoutes_closure, A._RouteEntry_dispose_closure, A._RouteEntry_isRoutePredicate_closure, A.NavigatorState__handleHistoryChanged_closure, A.NavigatorState_restoreState_closure, A.NavigatorState__forcedDisposeAllRouteEntries_closure, A.NavigatorState__afterNavigation_closure, A.NavigatorState_build_closure, A._NavigatorPopHandlerState_build_closure0, A._NavigatorPopHandlerState_build_closure, A.OverlayEntry_remove_closure, A._RenderTheater_computeMinIntrinsicWidth_closure, A._RenderTheater_computeMaxIntrinsicWidth_closure, A._RenderTheater_computeMinIntrinsicHeight_closure, A._RenderTheater_computeMaxIntrinsicHeight_closure, A._RenderTheater_debugDescribeChildren_closure, A._RenderDeferredLayoutBox__childrenInPaintOrder_closure, A._RenderDeferredLayoutBox_layout_closure, A.PageStorageBucket__allKeys_closure, A._PageViewState_build_closure, A._PlatformViewPlaceholderBox_performLayout_closure, A._extension_0_disposePostFrame_closure, A.SliverReorderableListState__dragStart_closure, A._ReorderableItemState_updateForGap_closure, A.ReorderableDragStartListener_build_closure, A._DragInfo_startDrag_closure, A._RootRestorationScopeState__loadRootBucketIfNecessary_closure, A._RouterState__processParsedRouteInformation_closure, A._RouterState__handleRoutePopped_closure, A.TransitionRoute__updateSecondaryAnimation_jumpOnAnimationEnd, A.TransitionRoute__setSecondaryAnimation_closure, A.LocalHistoryRoute_removeLocalHistoryEntry_closure, A._ModalScopeState_build_closure0, A._ModalScopeState_build__closure, A.ModalRoute_popDisposition_closure, A.ModalRoute__handlePopEntryChange_closure, A.ScrollAwareImageProvider_resolveStreamForKey_closure, A.ScrollBehavior_velocityTrackerBuilder_closure, A.ScrollBehavior_velocityTrackerBuilder_closure0, A.ScrollBehavior_velocityTrackerBuilder_closure1, A.ScrollNotificationObserverState_build_closure, A.ScrollNotificationObserverState_build_closure0, A.ScrollPosition_forcePixels_closure, A.ScrollView_build_closure0, A.Scrollable_ensureVisible_closure, A.ScrollableState_setCanDrag_closure0, A.ScrollableState_setCanDrag_closure2, A._ScrollableSelectionContainerDelegate__scheduleLayoutChange_closure, A.ScrollbarPainter_update_needPaint, A.RawScrollbarState__gestures_closure0, A.RawScrollbarState__gestures__closure, A.RawScrollbarState__gestures__closure0, A.RawScrollbarState__gestures__closure1, A.RawScrollbarState__gestures_closure2, A.RawScrollbarState_build_closure, A.RawScrollbarState_build_closure0, A.MultiSelectableSelectionContainerDelegate__scheduleSelectableUpdate_runScheduledTask, A.MultiSelectableSelectionContainerDelegate_getSelectionGeometry_closure, A.MultiSelectableSelectionContainerDelegate_getSelectionGeometry_closure0, A.MultiSelectableSelectionContainerDelegate__flushInactiveSelections_closure, A.MultiSelectableSelectionContainerDelegate__flushInactiveSelections_closure0, A.MultiSelectableSelectionContainerDelegate_handleSelectWord_closure, A.MultiSelectableSelectionContainerDelegate_handleSelectWord_closure0, A.LogicalKeySet__triggers_closure, A.SliverMultiBoxAdaptorElement_performRebuild_processElement, A.Table_closure, A.Table_closure0, A._TableElement_mount_closure, A._TableElement_mount__closure, A._TableElement_update_closure, A._TableElement_update_closure0, A._TableElement__updateRenderObjectChildren_closure, A._TableElement__updateRenderObjectChildren__closure, A._TableElement_visitChildren_closure, A.SelectionOverlay_showMagnifier_closure, A.SelectionOverlay_showToolbar_closure, A.SelectionOverlay_showSpellCheckSuggestionsToolbar_closure, A.SelectionOverlay_markNeedsBuild_closure, A.SelectionOverlay__buildToolbar_closure, A._SelectionHandleOverlayState_build_closure0, A._TextSelectionGestureDetectorState_build_closure0, A._TextSelectionGestureDetectorState_build_closure2, A._TextSelectionGestureDetectorState_build_closure4, A._TextSelectionGestureDetectorState_build_closure6, A._TextSelectionGestureDetectorState_build_closure8, A.UndoHistoryState_initState_closure, A._throttle_closure, A.Visibility_of_closure, A.WidgetSpan_extractFromInlineSpan_visitSubtree, A._BlockPickerState_build_closure, A._GlobalCupertinoLocalizationsDelegate_load_closure_loadFormats, A._StoreStreamListenerState__createStream_closure, A.SlidableAction_build_closure, A.SlidableAutoCloseBehaviorListener_build_closure, A.SlidableAutoCloseNotificationSender_build_closure, A._SlidableAutoCloseBarrierNotificationSenderState_dispose_closure, A._SlidableAutoCloseBarrierBehaviorListenerState_build_closure, A._SlidableDismissalState_handleResizeRequestChanged_closure, A._RenderFlexEntranceTransition_getTotalFlex_closure, A._RenderFlexEntranceTransition_performLayout_closure, A.showToastWidget_closure, A._StyledToastState_build_closure, A.ToastManager_dismissAll_closure, A.Registrar_send_closure, A.RenderFollower_paint_closure, A.RenderFollower_paint_closure1, A.LeaderLink_notifyListeners_closure, A.GoogleSignIn__ensureInitialized_closure, A.GoogleSignIn__waitFor_closure, A.GoogleSignIn__addMethodCall_closure, A.GoogleSignIn_signIn_isCanceled, A.GoogleSignIn_signIn_closure, A.MethodChannelGoogleSignIn_getTokens_closure, A.GoogleSignInPlugin_closure, A.GoogleSignInPlugin_initWithParams_closure, A.GoogleSignInPlugin_initWithParams_closure0, A.NodeList_retainWhere_closure, A.FilteredElementList_removeRange_closure, A.InTableTextPhase_flushCharacters_closure, A._CssClassSetImpl_add_closure, A.SelectorEvaluator_visitPseudoClassSelector_closure, A.SelectorEvaluator_visitPseudoClassSelector_closure0, A.SelectorEvaluator_visitPseudoClassSelector__closure, A.SelectorEvaluator_visitAttributeSelector_closure, A.HtmlTokenizer_consumeEntity_closure, A._escape_closure, A._escape_closure0, A._escape_closure1, A._escape_closure2, A._escape_closure3, A._escape__closure, A._escape_closure4, A._escape_closure5, A._escape_closure6, A._escape_closure7, A._escape_closure8, A._postProcess_closure, A.Rule_findRule_closure, A.Rule_findRule_closure0, A.Rule__buildFilterFn_closure, A._CommonRules_indentedCodeBlock_closure, A._CommonRules_fencedCodeBlock_closure, A._CommonRules_inlineLink_closure, A._CommonRules_referenceLink_closure0, A._CommonRules_code_closure, A._CommonRules_code__closure, A.get_closure, A.BaseRequest_closure0, A.BrowserClient_send_closure, A.BrowserClient_send_closure0, A.ByteStream_toBytes_closure, A.mapToQuery_closure0, A.onDone_closure, A.CaseInsensitiveMap$from_closure, A.MediaType_toString__closure, A.expectQuotedString_closure, A.BillingClient_queryProductDetails_closure, A._$ProductDetailsWrapperFromJson_closure, A._$ProductDetailsResponseWrapperFromJson_closure0, A._$PurchaseWrapperFromJson_closure, A._$PurchasesResultWrapperFromJson_closure0, A._$SubscriptionOfferDetailsWrapperFromJson_closure, A._$SubscriptionOfferDetailsWrapperFromJson_closure0, A.InAppPurchaseAndroidPlatform_isAvailable_closure, A.InAppPurchaseAndroidPlatform_queryProductDetails_closure, A.InAppPurchaseAndroidPlatform_queryProductDetails__closure0, A.InAppPurchaseAndroidPlatform_queryProductDetails_closure0, A.InAppPurchaseAndroidPlatform_queryProductDetails__closure, A.InAppPurchaseAndroidPlatform_queryProductDetails_closure1, A.InAppPurchaseAndroidPlatform_queryProductDetails_closure2, A.InAppPurchaseAndroidPlatform_queryProductDetails_closure3, A.InAppPurchaseAndroidPlatform_buyNonConsumable_closure, A.InAppPurchaseAndroidPlatform_completePurchase_closure, A.InAppPurchaseAndroidPlatform_restorePurchases_closure, A.InAppPurchaseAndroidPlatform_restorePurchases_closure0, A.InAppPurchaseAndroidPlatform_restorePurchases_closure1, A.InAppPurchaseAndroidPlatform_restorePurchases_closure2, A.InAppPurchaseAndroidPlatform_restorePurchases_closure3, A.InAppPurchaseAndroidPlatform_restorePurchases_closure4, A.InAppPurchaseAndroidPlatform_restorePurchases_closure5, A.InAppPurchaseAndroidPlatform__getPurchaseDetailsFromResult_closure, A.InAppPurchaseAndroidPlatform__getPurchaseDetailsFromResult_closure0, A.InAppPurchaseAndroidPlatformAddition_consumePurchase_closure, A.GooglePlayPurchaseDetails_fromPurchase_closure, A.InAppPurchaseStoreKitPlatform_queryProductDetails_closure, A._TransactionObserver__handleTransationUpdates_closure, A._TransactionObserver__handleTransationUpdates_closure0, A.SKPaymentQueueWrapper__getTransactionList_closure, A._$SkProductResponseWrapperFromJson_closure, A._$SkProductResponseWrapperFromJson_closure0, A._$SKProductWrapperFromJson_closure1, A.Intl__pluralRule_closure, A.DateFormat_dateTimeConstructor_closure, A.DateFormat__checkDateOnly_closure, A.DateFormat__initDigitMatcher_closure, A.DateFormat__initDigitMatcher_closure0, A._DateFormatPatternField_parseStandaloneDay_closure, A.NumberFormat_NumberFormat_closure, A.NumberFormat_NumberFormat$decimalPattern_closure, A._CountryPickerDialogState_build_closure, A.CountryExtensions_stringSearch_closure, A.CountryExtensions_stringSearch__closure, A._IntlPhoneFieldState_initState_closure, A._IntlPhoneFieldState__changeCountry_closure, A._IntlPhoneFieldState__changeCountry___closure, A._IntlPhoneFieldState_build_closure0, A._IntlPhoneFieldState_build_closure, A._IntlPhoneFieldState_build_closure1, A.ClientEntity_ClientEntity_closure, A.ClientEntity_primaryContact_closure, A.ClientEntity_emailContacts_closure, A.ClientEntity_hasEmailAddress_closure, A.ClientEntity_getContact_closure, A.CompanyGatewayEntity_updateConfig_closure, A.CompanyEntity_getCustomFieldValues_closure, A.CompanyEntity_coreCompany_closure, A.GatewayEntity_supportsTokenBilling_closure, A.GatewayEntity_matchesFilter_closure, A.GatewayEntity_matchesFilterValue_closure, A.UserCompanyEntity_UserCompanyEntity_closure, A.UserCompanyEntity__initializeBuilder_closure, A.DesignEntity_clone_closure, A.HasActivities_getActivities_closure, A.ExpenseEntity_clone_closure, A.InvoiceEntity_InvoiceEntity_closure, A.InvoiceEntity_InvoiceEntity_closure0, A.InvoiceEntity_moveLineItem_closure, A.InvoiceEntity_moveLineItem_closure0, A.InvoiceEntity_recreateInvitations_closure0, A.InvoiceEntity_recreateInvitations_closure, A.InvoiceEntity_recreateInvitations_closure2, A.InvoiceEntity_recreateInvitations_closure1, A.InvoiceEntity_clone_closure, A.InvoiceEntity_clone__closure, A.InvoiceEntity_clone__closure0, A.InvoiceEntity_clone___closure, A.InvoiceEntity_clone__closure1, A.InvoiceEntity_applyClient_closure, A.InvoiceEntity_balanceHistory_closure, A.InvoiceEntity_balanceHistory_closure0, A.InvoiceEntity_hasTasks_closure, A.InvoiceEntity_hasProducts_closure, A.InvoiceEntity_hasExpenses_closure, A.InvoiceEntity_applyTax_closure, A.InvoiceEntity_applyTax_closure0, A.InvoiceEntity_applyTax_closure1, A.InvoiceEntity_isViewed_closure, A.InvoiceEntity_getInvitationForClientContact_closure, A.InvoiceEntity_getInvitationForVendorContact_closure, A.InvoiceItemEntity_taxAmount_calculateTaxAmount, A.InvoiceItemEntity_applyTax_closure, A.InvoiceItemEntity_applyTax_closure0, A.InvoiceItemEntity_applyTax_closure1, A.CalculateInvoiceTotal_calculateTaxes_closure, A.CalculateInvoiceTotal_calculateTaxes__closure, A.CalculateInvoiceTotal_calculateTaxes__closure1, A.CalculateInvoiceTotal_calculateTaxes__closure3, A.CalculateInvoiceTotal_calculateTaxes_closure0, A.CalculateInvoiceTotal_calculateTaxes_closure2, A.CalculateInvoiceTotal_calculateTaxes_closure4, A.CalculateInvoiceTotal_getTaxable_closure, A.CalculateInvoiceTotal_calculateTotal_closure, A.CalculateInvoiceTotal_calculateSubtotal_closure, A.PaymentEntity_invoicePaymentables_closure, A.PaymentEntity_creditPaymentables_closure, A.PaymentEntity_invoiceId_closure, A.ProductEntity_clone_closure, A.ProjectEntity_clone_closure, A.SettingsEntity_setFieldsForSection_closure, A.SettingsEntity_setFieldsForSection_closure0, A.TaskTime_stop_closure, A.TaskEntity_clone_closure, A.TaskEntity_areTimesValid_closure, A.TaskEntity_getInvalidTimeIndices_closure, A.TaskEntity_isRunning_closure, A.TaskEntity_isBetween_closure, A.TaskEntity_getTaskTimes_closure, A.TaskEntity_addTaskTime_closure, A.TaskEntity_updateTaskTime_closure, A.TaskEntity_deleteTaskTime_closure, A.TaskEntity_calculateDuration_closure, A.TransactionEntity_TransactionEntity_closure, A.TransactionEntity_TransactionEntity_closure0, A.VendorEntity_VendorEntity_closure, A.VendorEntity_emailContacts_closure, A.VendorEntity_primaryContact_closure, A.VendorEntity_hasEmailAddress_closure, A.VendorEntity_getContact_closure, A.ClientRepository_saveData_closure, A.CreditRepository_saveData_closure, A.InvoiceRepository_saveData_closure, A.ProductRepository_saveData_closure, A.PurchaseOrderRepository_saveData_closure, A.QuoteRepository_saveData_closure, A.TransactionRepository_convertToExpense_closure, A._parseError__closure, A._initialState_closure, A._initialState_closure0, A._registerErrorHandlers_closure, A.InvoiceNinjaAppState_initState_closure, A.InvoiceNinjaAppState_generateRoute_closure, A.InvoiceNinjaAppState_generateRoute_closure0, A.InvoiceNinjaAppState_build_closure, A.InvoiceNinjaAppState_build__closure, A.InvoiceNinjaAppState_build__closure0, A.InvoiceNinjaAppState_build__closure1, A.InvoiceNinjaAppState_build__closure2, A.InvoiceNinjaAppState_build__closure3, A.InvoiceNinjaAppState_build__closure4, A.InvoiceNinjaAppState_build__closure5, A.InvoiceNinjaAppState_build__closure6, A.InvoiceNinjaAppState_build__closure7, A.InvoiceNinjaAppState_build__closure8, A.InvoiceNinjaAppState_build__closure9, A.InvoiceNinjaAppState_build__closure10, A.InvoiceNinjaAppState_build__closure11, A.InvoiceNinjaAppState_build__closure12, A.InvoiceNinjaAppState_build__closure13, A.InvoiceNinjaAppState_build__closure14, A.InvoiceNinjaAppState_build__closure15, A.InvoiceNinjaAppState_build__closure16, A.InvoiceNinjaAppState_build__closure17, A.InvoiceNinjaAppState_build__closure18, A.InvoiceNinjaAppState_build__closure19, A.InvoiceNinjaAppState_build__closure20, A.InvoiceNinjaAppState_build__closure21, A.InvoiceNinjaAppState_build__closure22, A.InvoiceNinjaAppState_build__closure23, A.InvoiceNinjaAppState_build__closure24, A.InvoiceNinjaAppState_build__closure25, A.InvoiceNinjaAppState_build__closure26, A.InvoiceNinjaAppState_build__closure27, A.InvoiceNinjaAppState_build__closure28, A.InvoiceNinjaAppState_build__closure29, A.InvoiceNinjaAppState_build__closure30, A.InvoiceNinjaAppState_build__closure31, A.InvoiceNinjaAppState_build__closure32, A.InvoiceNinjaAppState_build__closure33, A.InvoiceNinjaAppState_build__closure34, A.InvoiceNinjaAppState_build__closure35, A.InvoiceNinjaAppState_build__closure36, A.InvoiceNinjaAppState_build__closure37, A.InvoiceNinjaAppState_build__closure38, A.InvoiceNinjaAppState_build__closure39, A.InvoiceNinjaAppState_build__closure40, A.InvoiceNinjaAppState_build__closure41, A.InvoiceNinjaAppState_build__closure42, A.InvoiceNinjaAppState_build__closure43, A.InvoiceNinjaAppState_build__closure44, A.InvoiceNinjaAppState_build__closure45, A.InvoiceNinjaAppState_build__closure46, A.InvoiceNinjaAppState_build__closure47, A.InvoiceNinjaAppState_build__closure48, A.InvoiceNinjaAppState_build__closure49, A.InvoiceNinjaAppState_build__closure50, A.InvoiceNinjaAppState_build__closure51, A.InvoiceNinjaAppState_build__closure52, A.InvoiceNinjaAppState_build__closure53, A.InvoiceNinjaAppState_build__closure54, A.InvoiceNinjaAppState_build__closure55, A.InvoiceNinjaAppState_build__closure56, A.InvoiceNinjaAppState_build__closure57, A.InvoiceNinjaAppState_build__closure58, A.InvoiceNinjaAppState_build__closure59, A.InvoiceNinjaAppState_build__closure60, A.InvoiceNinjaAppState_build__closure61, A.InvoiceNinjaAppState_build__closure62, A.InvoiceNinjaAppState_build__closure63, A.InvoiceNinjaAppState_build__closure64, A.InvoiceNinjaAppState_build__closure65, A.InvoiceNinjaAppState_build__closure66, A.InvoiceNinjaAppState_build__closure67, A.InvoiceNinjaAppState_build__closure68, A.InvoiceNinjaAppState_build__closure69, A.InvoiceNinjaAppState_build__closure70, A.InvoiceNinjaAppState_build__closure71, A.InvoiceNinjaAppState_build__closure72, A.InvoiceNinjaAppState_build__closure73, A.InvoiceNinjaAppState_build__closure74, A.InvoiceNinjaAppState_build__closure75, A.InvoiceNinjaAppState_build__closure76, A.InvoiceNinjaAppState_build__closure77, A.InvoiceNinjaAppState_build__closure78, A.InvoiceNinjaAppState_build__closure79, A.InvoiceNinjaAppState_build__closure80, A.InvoiceNinjaAppState_build__closure81, A.InvoiceNinjaAppState_build__closure82, A.InvoiceNinjaAppState_build__closure83, A.InvoiceNinjaAppState_build__closure84, A.InvoiceNinjaAppState_build__closure85, A.InvoiceNinjaAppState_build__closure86, A.InvoiceNinjaAppState_build__closure87, A.InvoiceNinjaAppState_build__closure88, A.InvoiceNinjaAppState_build__closure89, A.InvoiceNinjaAppState_build__closure90, A.InvoiceNinjaAppState_build__closure91, A.InvoiceNinjaAppState_build__closure92, A.InvoiceNinjaAppState_build__closure93, A.InvoiceNinjaAppState_build__closure94, A.InvoiceNinjaAppState_build__closure95, A.InvoiceNinjaAppState_build__closure96, A.InvoiceNinjaAppState_build__closure97, A.InvoiceNinjaAppState_build__closure98, A.InvoiceNinjaAppState_build__closure99, A.InvoiceNinjaAppState_build__closure100, A.InvoiceNinjaAppState_build__closure101, A.InvoiceNinjaAppState_build__closure102, A.InvoiceNinjaAppState_build__closure103, A.InvoiceNinjaAppState_build__closure104, A.InvoiceNinjaAppState_build__closure105, A.InvoiceNinjaAppState_build__closure106, A.InvoiceNinjaAppState_build__closure107, A.InvoiceNinjaAppState_build__closure108, A.InvoiceNinjaAppState_build__closure109, A.InvoiceNinjaAppState_build__closure110, A.InvoiceNinjaAppState_build__closure111, A.InvoiceNinjaAppState_build__closure112, A.InvoiceNinjaAppState_build__closure113, A.InvoiceNinjaAppState_build__closure114, A.InvoiceNinjaAppState_build__closure115, A.InvoiceNinjaAppState_build__closure116, A.InvoiceNinjaAppState_build__closure117, A.InvoiceNinjaAppState_build__closure118, A.InvoiceNinjaAppState_build__closure119, A.InvoiceNinjaAppState_build__closure120, A.InvoiceNinjaAppState_build__closure121, A.InvoiceNinjaAppState_build__closure122, A.viewEntityById__closure, A.checkForChanges_closure, A._createLoadState_closure, A._createLoadState__closure, A._createLoadState__closure0, A._createLoadState__closure1, A._createLoadState__closure2, A._createLoadState__closure3, A._getRoutes_closure, A._getRoutes_closure0, A._createUserLoggedIn_closure, A._createPersistData_closure, A._createPersistUI_closure, A._createPersistPrefs_closure, A._createPersistPrefs__closure, A._createAccountLoaded_closure, A._createDataRefreshed_closure, A._createPersistStatic_closure, A._createDeleteState_closure, A._createDeleteState__closure, A._createViewMainScreen_closure, A._createViewMainScreen__closure, A._createClearData_closure, A._createClearData__closure, A.appReducer_closure, A.appReducer__closure, A.appReducer_closure0, A.appReducer_closure1, A.appReducer_closure2, A.AppState_AppState_closure, A.AppState_companies_closure, A.AppState_historyList_closure, A.AppState_getEntityMap_closure, A.AppState_getEntityMap_closure0, A._createUserLogout_closure, A._createUserLogout__closure, A._createUserLogoutAll_closure, A._createUserLogoutAll__closure, A._createUserLogoutAll__closure0, A._createLoginRequest_closure, A._createLoginRequest__closure, A._createLoginRequest__closure0, A._createSignUpRequest_closure, A._createSignUpRequest__closure, A._createSignUpRequest__closure0, A._createOAuthLoginRequest_closure, A._createOAuthLoginRequest__closure, A._createOAuthLoginRequest__closure0, A._createOAuthSignUpRequest_closure, A._createOAuthSignUpRequest__closure, A._createOAuthSignUpRequest__closure0, A._createRefreshRequest_closure, A._createRefreshRequest__closure, A._createRefreshRequest___closure, A._createRefreshRequest____closure, A._createRefreshRequest__closure0, A._createRecoverRequest_closure, A._createRecoverRequest__closure, A._createRecoverRequest__closure0, A._createCompany_closure, A._createCompany__closure, A._createCompany___closure, A._setDefaultCompany_closure, A._setDefaultCompany__closure, A._setDefaultCompany__closure0, A._deleteCompany_closure, A._deleteCompany__closure, A._deleteCompany__closure0, A._purgeData_closure, A._purgeData__closure, A._purgeData___closure, A._purgeData__closure0, A._resendConfirmation_closure, A._resendConfirmation__closure, A._resendConfirmation__closure0, A.userLoadUrlReducer_closure, A.userSignUpRequestReducer_closure, A.userLoginRequestReducer_closure, A.oauthLoginRequestReducer_closure, A.oauthSignUpRequestReducer_closure, A.userLoginSuccessReducer_closure, A.userVerifiedPasswordReducer_closure, A.userUnverifiedPasswordReducer_closure, A.handleBankAccountAction_closure, A.handleBankAccountAction_closure0, A._editBankAccount_closure, A._viewBankAccount_closure, A._viewBankAccountList_closure0, A._viewBankAccountList__closure, A._archiveBankAccount_closure, A._archiveBankAccount__closure, A._archiveBankAccount__closure0, A._archiveBankAccount__closure1, A._deleteBankAccount_closure, A._deleteBankAccount__closure, A._deleteBankAccount__closure0, A._deleteBankAccount__closure1, A._restoreBankAccount_closure, A._restoreBankAccount__closure, A._restoreBankAccount__closure0, A._restoreBankAccount__closure1, A._saveBankAccount_closure, A._saveBankAccount__closure, A._saveBankAccount__closure0, A._loadBankAccount_closure, A._loadBankAccount__closure, A._loadBankAccount__closure0, A._loadBankAccounts_closure, A._loadBankAccounts__closure, A._loadBankAccounts__closure0, A.bankAccountUIReducer_closure, A.editingReducer__closure45, A.bankAccountListReducer__closure, A._viewBankAccountList_closure, A._filterBankAccountsByCustom1_closure, A._filterBankAccountsByCustom1_closure0, A._filterBankAccountsByCustom2_closure, A._filterBankAccountsByCustom2_closure0, A._filterBankAccountsByState_closure, A._filterBankAccountsByState_closure0, A._filterBankAccounts_closure, A._sortBankAccounts_closure, A._startListMultiselect_closure21, A._addToListMultiselect_closure21, A._removeFromListMultiselect_closure21, A._clearListMultiselect_closure21, A._archiveBankAccountSuccess_closure, A._deleteBankAccountSuccess_closure, A._restoreBankAccountSuccess_closure, A._addBankAccount_closure, A._updateBankAccount_closure, A._setLoadedBankAccount_closure, A.memoizedDropdownBankAccountList_closure, A.dropdownBankAccountsSelector_closure, A.memoizedFilteredBankAccountList_closure, A.filteredBankAccountsSelector_closure, A.BankAccountState_loadBankAccounts_closure0, A.BankAccountState_loadBankAccounts_closure1, A.BankAccountState_loadBankAccounts_closure, A.handleClientAction_closure, A.handleClientAction_closure0, A.handleClientAction_closure1, A.handleClientAction_closure2, A.handleClientAction_closure3, A.handleClientAction_closure4, A.handleClientAction_closure5, A.__MergClientPickerState_build_closure, A._editClient_closure, A._viewClient_closure, A._viewClientList_closure0, A._viewClientList__closure, A._archiveClient_closure, A._archiveClient__closure, A._archiveClient__closure0, A._archiveClient__closure1, A._mergeClients_closure, A._mergeClients__closure, A._mergeClients__closure0, A._deleteClient_closure, A._deleteClient__closure, A._deleteClient__closure0, A._deleteClient__closure1, A._purgeClient_closure, A._purgeClient__closure, A._purgeClient__closure0, A._restoreClient_closure, A._restoreClient__closure, A._restoreClient__closure0, A._restoreClient__closure1, A._saveClient_closure, A._saveClient__closure, A._saveClient__closure0, A._loadClient_closure, A._loadClient__closure, A._loadClient__closure0, A._loadClients_closure, A._loadClients__closure, A._loadClients___closure, A._loadClients____closure, A._loadClients_____closure, A._loadClients__closure0, A._saveDocument_closure11, A._saveDocument__closure23, A._saveDocument___closure11, A._saveDocument____closure11, A._saveDocument__closure24, A._showPdfClient_closure, A.clientUIReducer_closure, A.editingReducer__closure59, A.editingReducer__closure58, A.editingReducer__closure57, A.editingReducer__closure56, A.clientListReducer__closure, A._viewClientList_closure, A._filterClientsByCustom1_closure, A._filterClientsByCustom1_closure0, A._filterClientsByCustom2_closure, A._filterClientsByCustom2_closure0, A._filterClientsByCustom3_closure, A._filterClientsByCustom3_closure0, A._filterClientsByCustom4_closure, A._filterClientsByCustom4_closure0, A._filterClientsByState_closure, A._filterClientsByState_closure0, A._filterClients_closure, A._sortClients_closure, A._startListMultiselect_closure26, A._addToListMultiselect_closure26, A._removeFromListMultiselect_closure26, A._clearListMultiselect_closure26, A._archiveClientSuccess_closure, A._deleteClientSuccess_closure, A._restoreClientSuccess_closure, A._addClient_closure, A._addClient__closure, A._updateClient_closure, A._updateClient__closure, A._setLoadedClient_closure, A._setLoadedClient__closure, A._mergeClientSuccess_closure, A._purgeClientSuccess_closure26, A.memoizedDropdownClientList_closure, A.dropdownClientsSelector_closure, A.memoizedFilteredClientList_closure, A.filteredClientsSelector_closure, A.filteredClientsSelector__closure, A.ClientState_loadClients_closure0, A.ClientState_loadClients_closure1, A.ClientState_loadClients_closure, A.companyReducer_closure, A.userCompanyEntityReducer__closure12, A.userCompanyEntityReducer__closure10, A.userCompanyEntityReducer___closure, A.userCompanyEntityReducer__closure11, A.userCompanyEntityReducer__closure9, A.userCompanyEntityReducer__closure8, A.userCompanyEntityReducer__closure7, A.userCompanyEntityReducer__closure6, A.userCompanyEntityReducer__closure5, A.userCompanyEntityReducer__closure4, A.userCompanyEntityReducer__closure3, A.userCompanyEntityReducer__closure2, A.userCompanyEntityReducer__closure1, A.userCompanyEntityReducer__closure, A.userCompanyEntityReducer__closure0, A.loadCompanySuccessReducer_closure, A.loadCompanySuccessReducer_closure0, A.saveCompanySuccessReducer_closure, A.saveCompanySuccessReducer_closure0, A.dropdownExpenseCategoriesSelector_closure1, A.memoizedHasMultipleCurrencies_closure, A.memoizedGetCurrencyIds_closure, A.filteredSelector_closure, A.filteredSelector_closure0, A.filteredSelector_closure1, A.filteredSelector_closure2, A.filteredSelector_closure3, A.filteredSelector_closure4, A.filteredSelector_closure5, A.filteredSelector_closure6, A.filteredSelector_closure7, A.filteredSelector_closure8, A.filteredSelector_closure9, A.filteredSelector_closure10, A.filteredSelector_closure11, A.filteredSelector_closure12, A.handleCompanyGatewayAction_closure, A.handleCompanyGatewayAction_closure0, A.handleCompanyGatewayAction_closure1, A._editCompanyGateway_closure, A._viewCompanyGateway_closure, A._viewCompanyGatewayList_closure, A._viewCompanyGatewayList__closure, A._archiveCompanyGateway_closure, A._archiveCompanyGateway__closure, A._archiveCompanyGateway__closure0, A._archiveCompanyGateway__closure1, A._deleteCompanyGateway_closure, A._deleteCompanyGateway__closure, A._deleteCompanyGateway__closure0, A._deleteCompanyGateway__closure1, A._restoreCompanyGateway_closure, A._restoreCompanyGateway__closure, A._restoreCompanyGateway__closure0, A._restoreCompanyGateway__closure1, A._disconnectCompanyGateway_closure, A._disconnectCompanyGateway__closure, A._disconnectCompanyGateway__closure0, A._saveCompanyGateway_closure, A._saveCompanyGateway__closure, A._saveCompanyGateway__closure0, A._loadCompanyGateway_closure, A._loadCompanyGateway__closure, A._loadCompanyGateway__closure0, A._loadCompanyGateways_closure, A._loadCompanyGateways__closure, A._loadCompanyGateways__closure0, A.companyGatewayUIReducer_closure, A.editingReducer__closure13, A.companyGatewayListReducer__closure, A._filterCompanyGatewaysByCustom1_closure, A._filterCompanyGatewaysByCustom1_closure0, A._filterCompanyGatewaysByCustom2_closure, A._filterCompanyGatewaysByCustom2_closure0, A._filterCompanyGatewaysByState_closure, A._filterCompanyGatewaysByState_closure0, A._filterCompanyGateways_closure, A._sortCompanyGateways_closure, A._startListMultiselect_closure7, A._addToListMultiselect_closure7, A._removeFromListMultiselect_closure7, A._clearListMultiselect_closure7, A._archiveCompanyGatewaySuccess_closure, A._deleteCompanyGatewaySuccess_closure, A._restoreCompanyGatewaySuccess_closure, A._addCompanyGateway_closure, A._addCompanyGateway__closure, A._updateCompanyGateway_closure, A._updateCompanyGateway__closure, A._setLoadedCompanyGateway_closure, A._setLoadedCompanyGateway__closure, A._setLoadedCompany_closure1, A._setLoadedCompany__closure1, A._setLoadedCompany__closure2, A._setLoadedCompany_closure2, A._setLoadedCompanyGateways_closure, A._setLoadedCompanyGateways__closure, A._setLoadedCompanyGateways__closure0, A._setLoadedCompanyGateways_closure0, A.memoizedFilteredCompanyGatewayList_closure, A.filteredCompanyGatewaysSelector_closure, A.filteredCompanyGatewaysSelector_closure0, A.filteredCompanyGatewaysSelector_closure1, A.clientStatsForCompanyGateway__closure, A.handleCreditAction_closure, A.handleCreditAction_closure0, A.handleCreditAction_closure3, A.handleCreditAction_closure4, A.handleCreditAction_closure5, A.handleCreditAction_closure6, A.handleCreditAction_closure7, A.handleCreditAction_closure8, A.handleCreditAction_closure9, A.handleCreditAction__closure, A.handleCreditAction_closure10, A.handleCreditAction_closure11, A.handleCreditAction_closure12, A.handleCreditAction_closure13, A._viewCredit_closure, A._viewCreditList_closure0, A._viewCreditList__closure, A._editCredit_closure, A._showEmailCredit_closure, A._showPdfCredit_closure, A._archiveCredit_closure, A._archiveCredit__closure, A._archiveCredit__closure0, A._archiveCredit__closure1, A._deleteCredit_closure, A._deleteCredit__closure, A._deleteCredit__closure0, A._deleteCredit__closure1, A._restoreCredit_closure, A._restoreCredit__closure, A._restoreCredit__closure0, A._restoreCredit__closure1, A._markSentCredit_closure, A._markSentCredit__closure, A._markSentCredit__closure0, A._markPaidCredit_closure, A._markPaidCredit__closure, A._markPaidCredit__closure0, A._emailCredit_closure, A._emailCredit__closure, A._emailCredit__closure0, A._saveCredit_closure, A._saveCredit__closure, A._saveCredit___closure, A._saveCredit__closure0, A._saveCredit__closure1, A._loadCredit_closure, A._loadCredit__closure, A._loadCredit__closure0, A._loadCredits_closure, A._loadCredits__closure, A._loadCredits___closure, A._loadCredits____closure, A._loadCredits_____closure, A._loadCredits__closure0, A._downloadCredits_closure, A._downloadCredits__closure, A._downloadCredits__closure0, A._bulkEmailCredits_closure, A._bulkEmailCredits__closure, A._bulkEmailCredits__closure0, A._saveDocument_closure0, A._saveDocument__closure1, A._saveDocument___closure0, A._saveDocument____closure0, A._saveDocument__closure2, A.creditUIReducer_closure, A.editingReducer__closure22, A.editingReducer__closure21, A.editingReducer__closure20, A.editingReducer__closure19, A.editingReducer__closure18, A.editingReducer___closure0, A.editingReducer__closure17, A.editingReducer__closure16, A._addCreditItem_closure, A._addCreditItems_closure, A._removeCreditItem_closure, A._updateCreditItem_closure, A.creditListReducer__closure, A._viewCreditList_closure, A._filterCreditsByCustom1_closure, A._filterCreditsByCustom1_closure0, A._filterCreditsByCustom2_closure, A._filterCreditsByCustom2_closure0, A._filterCreditsByCustom3_closure, A._filterCreditsByCustom3_closure0, A._filterCreditsByCustom4_closure, A._filterCreditsByCustom4_closure0, A._filterCreditsByState_closure, A._filterCreditsByState_closure0, A._filterCreditsByStatus_closure, A._filterCreditsByStatus_closure0, A._filterCredits_closure, A._sortCredits_closure, A._startListMultiselect_closure10, A._addToListMultiselect_closure10, A._removeFromListMultiselect_closure10, A._clearListMultiselect_closure10, A._purgeClientSuccess_closure9, A._purgeClientSuccess_closure10, A._purgeClientSuccess_closure8, A._purgeClientSuccess__closure6, A._markSentCreditSuccess_closure0, A._markSentCreditSuccess_closure1, A._markSentCreditSuccess_closure, A._archiveCreditSuccess_closure, A._deleteCreditSuccess_closure, A._restoreCreditSuccess_closure, A._addCredit_closure, A._addCredit__closure, A._updateCredit_closure, A._updateCredit__closure, A.creditContactSelector_closure, A.creditContactSelector_closure0, A.memoizedDropdownCreditList_closure, A.dropdownCreditSelector_closure, A.memoizedFilteredCreditList_closure, A.filteredCreditsSelector__closure0, A.filteredCreditsSelector_closure0, A.filteredCreditsSelector__closure, A.CreditState_loadCredits_closure0, A.CreditState_loadCredits_closure1, A.CreditState_loadCredits_closure, A._createViewDashboard_closure, A._createViewDashboard___closure, A.dashboardUIReducer_closure, A.selectedEntitiesReducer__closure0, A.selectedEntitiesReducer__closure, A.dashboardSettingsReducer_closure, A.dashboardSettingsReducer_closure0, A.dashboardSettingsReducer_closure1, A.dashboardSettingsReducer_closure2, A.dashboardSettingsReducer_closure3, A.memoizedChartInvoices_closure, A.memoizedChartOverviewInvoices_closure, A.memoizedPreviousChartInvoices_closure, A.memoizedChartQuotes_closure, A.memoizedPreviousChartQuotes_closure, A.memoizedChartPayments_closure, A.memoizedPreviousChartPayments_closure, A.memoizedChartTasks_closure, A.memoizedPreviousChartTasks_closure, A.chartTasks__closure, A.memoizedChartExpenses_closure, A.memoizedPreviousChartExpenses_closure, A.handleDesignAction_closure, A.handleDesignAction_closure0, A.handleDesignAction_closure1, A.handleDesignAction_closure2, A.handleDesignAction_closure3, A._editDesign_closure, A._viewDesign_closure, A._viewDesignList_closure0, A._viewDesignList__closure, A._archiveDesign_closure, A._archiveDesign__closure, A._archiveDesign__closure0, A._archiveDesign__closure1, A._deleteDesign_closure, A._deleteDesign__closure, A._deleteDesign__closure0, A._deleteDesign__closure1, A._restoreDesign_closure, A._restoreDesign__closure, A._restoreDesign__closure0, A._restoreDesign__closure1, A._saveDesign_closure, A._saveDesign__closure, A._saveDesign__closure0, A._loadDesign_closure, A._loadDesign__closure, A._loadDesign__closure0, A._loadDesigns_closure, A._loadDesigns__closure, A._loadDesigns__closure0, A.designUIReducer_closure, A.editingReducer__closure23, A.designListReducer__closure, A._viewDesignList_closure, A._filterDesignsByCustom1_closure, A._filterDesignsByCustom1_closure0, A._filterDesignsByCustom2_closure, A._filterDesignsByCustom2_closure0, A._filterDesignsByState_closure, A._filterDesignsByState_closure0, A._filterDesigns_closure, A._sortDesigns_closure, A._startListMultiselect_closure11, A._addToListMultiselect_closure11, A._removeFromListMultiselect_closure11, A._clearListMultiselect_closure11, A._archiveDesignSuccess_closure, A._deleteDesignSuccess_closure, A._restoreDesignSuccess_closure, A._addDesign_closure, A._updateDesign_closure, A._setLoadedDesign_closure, A.memoizedFilteredDesignList_closure, A.filteredDesignsSelector_closure, A.DesignState_cleanDesign_closure, A.DesignState_customDesigns_closure, A.DesignState_customDesigns_closure0, A.DesignState_loadDesigns_closure0, A.DesignState_loadDesigns_closure1, A.DesignState_loadDesigns_closure, A.handleDocumentAction_closure, A.handleDocumentAction_showDocument_closure, A.handleDocumentAction_showDocument__closure0, A.handleDocumentAction_closure0, A.handleDocumentAction_closure1, A.handleDocumentAction_closure2, A.handleDocumentAction___closure, A.handleDocumentAction___closure0, A.handleDocumentAction___closure1, A.handleDocumentAction___closure2, A.handleDocumentAction___closure3, A.handleDocumentAction___closure4, A.handleDocumentAction___closure5, A.handleDocumentAction___closure6, A.handleDocumentAction___closure7, A.handleDocumentAction___closure8, A.handleDocumentAction___closure9, A.handleDocumentAction___closure10, A.handleDocumentAction___closure11, A.handleDocumentAction___closure12, A.handleDocumentAction___closure13, A._editDocument_closure, A._viewDocument_closure, A._viewDocumentList_closure0, A._viewDocumentList__closure, A._saveDocument_closure13, A._saveDocument__closure27, A._saveDocument___closure13, A._saveDocument__closure28, A._archiveDocument_closure, A._archiveDocument__closure, A._archiveDocument__closure0, A._archiveDocument__closure1, A._downloadDocuments_closure, A._downloadDocuments__closure, A._downloadDocuments__closure0, A._deleteDocument_closure, A._deleteDocument__closure, A._deleteDocument__closure0, A._restoreDocument_closure, A._restoreDocument__closure, A._restoreDocument__closure0, A._restoreDocument__closure1, A._loadDocument_closure, A._loadDocument__closure, A._loadDocument__closure0, A._loadDocumentData_closure, A._loadDocumentData__closure, A._loadDocumentData___closure, A._loadDocumentData__closure0, A.documentUIReducer_closure, A.editingReducer__closure11, A.documentListReducer__closure, A._viewDocumentList_closure, A._filterDocumentsByCustom1_closure, A._filterDocumentsByCustom1_closure0, A._filterDocumentsByCustom2_closure, A._filterDocumentsByCustom2_closure0, A._filterDocumentsByState_closure, A._filterDocumentsByState_closure0, A._filterDocumentsByStatus_closure, A._filterDocumentsByStatus_closure0, A._filterDocuments_closure, A._sortDocuments_closure, A._startListMultiselect_closure5, A._addToListMultiselect_closure5, A._removeFromListMultiselect_closure5, A._clearListMultiselect_closure5, A._archiveDocumentSuccess_closure, A._deleteDocumentSuccess_closure, A._restoreDocumentSuccess_closure, A._addDocument_closure, A._addDocument__closure, A._addDocument__closure0, A._addDocument_closure0, A._updateDocument_closure, A._setLoadedDocument_closure, A._setLoadedDocuments_closure, A._setLoadedDocuments__closure, A._setLoadedDocuments__closure0, A._setLoadedDocuments_closure0, A._setLoadedCompany_closure9, A._setLoadedCompany__closure24, A._setLoadedCompany_closure10, A._setLoadedCompany__closure23, A._setLoadedCompany___closure11, A._setLoadedCompany_closure11, A._setLoadedCompany__closure22, A._setLoadedCompany___closure10, A._setLoadedCompany_closure12, A._setLoadedCompany__closure21, A._setLoadedCompany___closure9, A._setLoadedCompany_closure13, A._setLoadedCompany__closure20, A._setLoadedCompany___closure8, A._setLoadedCompany_closure14, A._setLoadedCompany__closure19, A._setLoadedCompany___closure7, A._setLoadedCompany_closure15, A._setLoadedCompany__closure18, A._setLoadedCompany___closure6, A._setLoadedCompany_closure16, A._setLoadedCompany__closure17, A._setLoadedCompany___closure5, A._setLoadedCompany_closure17, A._setLoadedCompany__closure16, A._setLoadedCompany___closure4, A._setLoadedCompany_closure18, A._setLoadedCompany__closure15, A._setLoadedCompany___closure3, A._setLoadedCompany_closure19, A._setLoadedCompany__closure14, A._setLoadedCompany___closure2, A._setLoadedCompany_closure20, A._setLoadedCompany__closure13, A._setLoadedCompany___closure1, A._setLoadedCompany_closure21, A._setLoadedCompany__closure12, A._setLoadedCompany___closure0, A._setLoadedCompany_closure22, A._setLoadedCompany__closure11, A._setLoadedCompany___closure, A._setLoadedCompany_closure23, A._setLoadedCompany__closure9, A._setLoadedCompany__closure10, A._setLoadedCompany_closure24, A.memoizedFilteredDocumentList_closure, A.filteredDocumentsSelector_closure, A.handleExpenseAction_closure, A.handleExpenseAction_closure0, A.handleExpenseAction_closure1, A.handleExpenseAction_closure2, A.handleExpenseAction_closure3, A.handleExpenseAction_closure4, A._editExpense_closure, A._viewExpense_closure, A._viewExpenseList_closure0, A._viewExpenseList__closure, A._archiveExpense_closure, A._archiveExpense__closure, A._archiveExpense__closure0, A._archiveExpense__closure1, A._deleteExpense_closure, A._deleteExpense__closure, A._deleteExpense__closure0, A._deleteExpense__closure1, A._restoreExpense_closure, A._restoreExpense__closure, A._restoreExpense__closure0, A._restoreExpense__closure1, A._saveExpense_closure, A._saveExpense__closure, A._saveExpense__closure0, A._loadExpense_closure, A._loadExpense__closure, A._loadExpense__closure0, A._loadExpenses_closure, A._loadExpenses__closure, A._loadExpenses___closure, A._loadExpenses____closure, A._loadExpenses_____closure, A._loadExpenses__closure0, A._saveDocument_closure9, A._saveDocument__closure19, A._saveDocument___closure9, A._saveDocument____closure9, A._saveDocument__closure20, A.expenseUIReducer_closure, A.editingReducer__closure10, A.expenseListReducer__closure, A._viewExpenseList_closure, A._filterExpensesByCustom1_closure, A._filterExpensesByCustom1_closure0, A._filterExpensesByCustom2_closure, A._filterExpensesByCustom2_closure0, A._filterExpensesByCustom3_closure, A._filterExpensesByCustom3_closure0, A._filterExpensesByCustom4_closure, A._filterExpensesByCustom4_closure0, A._filterExpensesByState_closure, A._filterExpensesByState_closure0, A._filterExpensesByStatus_closure, A._filterExpensesByStatus_closure0, A._filterExpenses_closure, A._sortExpenses_closure, A._startListMultiselect_closure4, A._addToListMultiselect_closure4, A._removeFromListMultiselect_closure4, A._clearListMultiselect_closure4, A._purgeClientSuccess_closure21, A._purgeClientSuccess_closure22, A._purgeClientSuccess_closure20, A._purgeClientSuccess__closure14, A._archiveExpenseSuccess_closure, A._deleteExpenseSuccess_closure, A._restoreExpenseSuccess_closure, A._addExpense_closure, A._updateExpense_closure, A._setLoadedExpense_closure, A.convertExpenseToInvoiceItem_closure, A.memoizedFilteredExpenseList_closure, A.filteredExpensesSelector_closure, A.clientExpenseList_closure, A.ExpenseState_loadExpenses_closure0, A.ExpenseState_loadExpenses_closure1, A.ExpenseState_loadExpenses_closure, A.handleExpenseCategoryAction_closure, A.handleExpenseCategoryAction_closure0, A.handleExpenseCategoryAction_closure1, A._editExpenseCategory_closure, A._viewExpenseCategory_closure, A._viewExpenseCategoryList_closure, A._viewExpenseCategoryList__closure, A._archiveExpenseCategory_closure, A._archiveExpenseCategory__closure, A._archiveExpenseCategory__closure0, A._archiveExpenseCategory__closure1, A._deleteExpenseCategory_closure, A._deleteExpenseCategory__closure, A._deleteExpenseCategory__closure0, A._deleteExpenseCategory__closure1, A._restoreExpenseCategory_closure, A._restoreExpenseCategory__closure, A._restoreExpenseCategory__closure0, A._restoreExpenseCategory__closure1, A._saveExpenseCategory_closure, A._saveExpenseCategory__closure, A._saveExpenseCategory__closure0, A._loadExpenseCategory_closure, A._loadExpenseCategory__closure, A._loadExpenseCategory__closure0, A._loadExpenseCategories_closure, A._loadExpenseCategories__closure, A._loadExpenseCategories__closure0, A.expenseCategoryUIReducer_closure, A.editingReducer__closure34, A.expenseCategoryListReducer__closure, A._filterExpenseCategoriesByCustom1_closure, A._filterExpenseCategoriesByCustom1_closure0, A._filterExpenseCategoriesByCustom2_closure, A._filterExpenseCategoriesByCustom2_closure0, A._filterExpenseCategoriesByState_closure, A._filterExpenseCategoriesByState_closure0, A._filterExpenseCategories_closure, A._sortExpenseCategories_closure, A._startListMultiselect_closure16, A._addToListMultiselect_closure16, A._removeFromListMultiselect_closure16, A._clearListMultiselect_closure16, A._archiveExpenseCategorySuccess_closure, A._deleteExpenseCategorySuccess_closure, A._restoreExpenseCategorySuccess_closure, A._addExpenseCategory_closure, A._updateExpenseCategory_closure, A._setLoadedExpenseCategory_closure, A.memoizedDropdownExpenseCategoryList_closure, A.dropdownExpenseCategoriesSelector_closure, A.memoizedFilteredExpenseCategoryList_closure, A.filteredExpenseCategoriesSelector_closure, A.ExpenseCategoryState_loadExpenseCategories_closure0, A.ExpenseCategoryState_loadExpenseCategories_closure1, A.ExpenseCategoryState_loadExpenseCategories_closure, A.handleGroupAction_closure, A.handleGroupAction_closure0, A._editGroup_closure, A._viewGroup_closure, A._viewGroupList_closure0, A._viewGroupList__closure, A._archiveGroup_closure, A._archiveGroup__closure, A._archiveGroup__closure0, A._archiveGroup__closure1, A._deleteGroup_closure, A._deleteGroup__closure, A._deleteGroup__closure0, A._deleteGroup__closure1, A._restoreGroup_closure, A._restoreGroup__closure, A._restoreGroup__closure0, A._restoreGroup__closure1, A._saveGroup_closure, A._saveGroup__closure, A._saveGroup__closure0, A._loadGroup_closure, A._loadGroup__closure, A._loadGroup__closure0, A._loadGroups_closure, A._loadGroups__closure, A._loadGroups___closure, A._loadGroups____closure, A._loadGroups_____closure, A._loadGroups__closure0, A._saveDocument_closure, A._saveDocument__closure, A._saveDocument___closure, A._saveDocument____closure, A._saveDocument__closure0, A.groupUIReducer_closure, A.editingReducer__closure12, A.groupListReducer__closure, A._viewGroupList_closure, A._filterGroupsByState_closure, A._filterGroupsByState_closure0, A._filterGroups_closure, A._sortGroups_closure, A._startListMultiselect_closure6, A._addToListMultiselect_closure6, A._removeFromListMultiselect_closure6, A._clearListMultiselect_closure6, A._archiveGroupSuccess_closure, A._deleteGroupSuccess_closure, A._restoreGroupSuccess_closure, A._addGroup_closure, A._updateGroup_closure, A._setLoadedGroup_closure, A._setLoadedGroups_closure, A._setLoadedGroups__closure, A._setLoadedGroups__closure0, A._setLoadedGroups_closure0, A._setLoadedCompany_closure, A._setLoadedCompany__closure, A._setLoadedCompany__closure0, A._setLoadedCompany_closure0, A.memoizedFilteredGroupList_closure, A.filteredGroupsSelector_closure, A.handleInvoiceAction_closure, A.handleInvoiceAction_closure0, A.handleInvoiceAction_closure1, A.handleInvoiceAction_closure2, A.handleInvoiceAction_closure3, A.handleInvoiceAction_closure6, A.handleInvoiceAction_closure7, A.handleInvoiceAction__closure1, A.handleInvoiceAction_closure8, A.handleInvoiceAction_closure9, A.handleInvoiceAction_closure10, A.handleInvoiceAction_closure11, A.handleInvoiceAction_closure12, A.handleInvoiceAction__closure, A.handleInvoiceAction__closure0, A.handleInvoiceAction_closure13, A.handleInvoiceAction_closure14, A.handleInvoiceAction_closure15, A.handleInvoiceAction_closure16, A.handleInvoiceAction_closure17, A.handleInvoiceAction_closure18, A.handleInvoiceAction_closure19, A._viewInvoiceList_closure0, A._viewInvoiceList__closure, A._viewInvoice_closure, A._editInvoice_closure, A._showEmailInvoice_closure, A._showPdfInvoice_closure, A._cancelInvoices_closure, A._cancelInvoices__closure, A._cancelInvoices__closure0, A._archiveInvoice_closure, A._archiveInvoice__closure, A._archiveInvoice__closure0, A._archiveInvoice__closure1, A._deleteInvoice_closure, A._deleteInvoice__closure, A._deleteInvoice__closure0, A._deleteInvoice__closure1, A._restoreInvoice_closure, A._restoreInvoice__closure, A._restoreInvoice__closure0, A._restoreInvoice__closure1, A._markInvoiceSent_closure, A._markInvoiceSent__closure, A._markInvoiceSent__closure0, A._autoBillInvoices_closure, A._autoBillInvoices__closure, A._autoBillInvoices__closure0, A._markInvoicePaid_closure, A._markInvoicePaid__closure, A._markInvoicePaid__closure0, A._downloadInvoices_closure, A._downloadInvoices__closure, A._downloadInvoices__closure0, A._emailInvoice_closure, A._emailInvoice__closure, A._emailInvoice__closure0, A._bulkEmailInvoices_closure, A._bulkEmailInvoices__closure, A._bulkEmailInvoices__closure0, A._saveInvoice_closure, A._saveInvoice__closure, A._saveInvoice___closure, A._saveInvoice__closure0, A._saveInvoice__closure1, A._loadInvoice_closure, A._loadInvoice__closure, A._loadInvoice__closure0, A._loadInvoices_closure, A._loadInvoices__closure, A._loadInvoices___closure, A._loadInvoices____closure, A._loadInvoices_____closure, A._loadInvoices__closure0, A._saveDocument_closure10, A._saveDocument__closure21, A._saveDocument___closure10, A._saveDocument____closure10, A._saveDocument__closure22, A.invoiceUIReducer_closure, A.editingReducer__closure55, A.editingReducer__closure54, A.editingReducer__closure53, A.editingReducer__closure52, A.editingReducer__closure51, A.editingReducer___closure3, A.editingReducer__closure50, A.editingReducer__closure49, A._updateEditing_closure, A._addInvoiceItem_closure, A._addInvoiceItem_closure0, A._addInvoiceItems_closure, A._removeInvoiceItem_closure, A._updateInvoiceItem_closure, A.invoiceListReducer__closure, A._viewInvoiceList_closure, A._filterInvoicesByCustom1_closure, A._filterInvoicesByCustom1_closure0, A._filterInvoicesByCustom2_closure, A._filterInvoicesByCustom2_closure0, A._filterInvoicesByCustom3_closure, A._filterInvoicesByCustom3_closure0, A._filterInvoicesByCustom4_closure, A._filterInvoicesByCustom4_closure0, A._filterInvoicesByState_closure, A._filterInvoicesByState_closure0, A._filterInvoicesByStatus_closure, A._filterInvoicesByStatus_closure0, A._filterInvoices_closure, A._sortInvoices_closure, A._startListMultiselect_closure25, A._addToListMultiselect_closure25, A._removeFromListMultiselect_closure25, A._clearListMultiselect_closure25, A._purgeClientSuccess_closure24, A._purgeClientSuccess_closure25, A._purgeClientSuccess_closure23, A._purgeClientSuccess__closure16, A._markInvoicesSentSuccess_closure, A._markInvoicesPaidSuccess_closure, A._cancelInvoicesSuccess_closure, A._archiveInvoiceSuccess_closure, A._deleteInvoiceSuccess_closure, A._emailInvoiceSuccess_closure, A._restoreInvoiceSuccess_closure, A._addInvoice_closure, A._addInvoice__closure, A._updateInvoice_closure, A._updateInvoice__closure, A.invoiceContactSelector_closure, A.invoiceContactSelector_closure0, A.memoizedDropdownInvoiceList_closure, A.dropdownInvoiceSelector_closure, A.memoizedFilteredInvoiceList_closure, A.filteredInvoicesSelector__closure0, A.filteredInvoicesSelector_closure0, A.filteredInvoicesSelector__closure, A.InvoiceState_loadInvoices_closure0, A.InvoiceState_loadInvoices_closure1, A.InvoiceState_loadInvoices_closure, A.handlePaymentAction_closure, A.handlePaymentAction_closure0, A.handlePaymentAction__closure1, A.handlePaymentAction_closure1, A.handlePaymentAction__closure, A.handlePaymentAction__closure0, A.handlePaymentAction_closure2, A._editPayment_closure, A._editPayment__closure, A._viewRefundPayment_closure, A._viewRefundPayment__closure, A._viewPayment_closure, A._viewPaymentList_closure0, A._viewPaymentList__closure, A._archivePayment_closure, A._archivePayment__closure, A._archivePayment__closure0, A._archivePayment__closure1, A._deletePayment_closure, A._deletePayment__closure, A._deletePayment__closure0, A._deletePayment__closure1, A._restorePayment_closure, A._restorePayment__closure, A._restorePayment__closure0, A._restorePayment__closure1, A._savePayment_closure, A._savePayment__closure, A._savePayment__closure0, A._refundPayment_closure, A._refundPayment__closure, A._refundPayment__closure0, A._emailPayment_closure, A._emailPayment__closure, A._emailPayment__closure0, A._loadPayment_closure, A._loadPayment__closure, A._loadPayment__closure0, A._loadPayments_closure, A._loadPayments__closure, A._loadPayments__closure0, A.paymentUIReducer_closure, A.editingReducer__closure6, A.paymentListReducer__closure, A._viewPaymentList_closure, A._filterPaymentsByCustom1_closure, A._filterPaymentsByCustom1_closure0, A._filterPaymentsByCustom2_closure, A._filterPaymentsByCustom2_closure0, A._filterPaymentsByCustom3_closure, A._filterPaymentsByCustom3_closure0, A._filterPaymentsByCustom4_closure, A._filterPaymentsByCustom4_closure0, A._filterPaymentsByState_closure, A._filterPaymentsByState_closure0, A._filterPaymentsByStatus_closure, A._filterPaymentsByStatus_closure0, A._filterPayments_closure, A._sortPayments_closure, A._startListMultiselect_closure0, A._addToListMultiselect_closure0, A._removeFromListMultiselect_closure0, A._clearListMultiselect_closure0, A._purgeClientSuccess_closure3, A._purgeClientSuccess_closure4, A._purgeClientSuccess_closure2, A._purgeClientSuccess__closure2, A._archivePaymentSuccess_closure, A._deletePaymentSuccess_closure, A._restorePaymentSuccess_closure, A._addPayment_closure, A._updatePayment_closure, A._setLoadedPayment_closure, A.memoizedPaymentsByInvoice_closure, A.paymentsByInvoiceSelector_closure, A.paymentsByInvoiceSelector_closure0, A.paymentsByInvoiceSelector__closure, A.memoizedPaymentsByCredit_closure, A.paymentsByCreditSelector_closure, A.paymentsByCreditSelector_closure0, A.paymentsByCreditSelector__closure, A.memoizedFilteredPaymentList_closure, A.filteredPaymentsSelector_closure, A.filteredPaymentsSelector__closure, A.memoizedPaymentStatsForClient_closure, A.PaymentState_loadPayments_closure0, A.PaymentState_loadPayments_closure1, A.PaymentState_loadPayments_closure, A.handlePaymentTermAction_closure, A._editPaymentTerm_closure, A._viewPaymentTerm_closure, A._viewPaymentTermList_closure0, A._viewPaymentTermList__closure, A._archivePaymentTerm_closure, A._archivePaymentTerm__closure, A._archivePaymentTerm__closure0, A._archivePaymentTerm__closure1, A._deletePaymentTerm_closure, A._deletePaymentTerm__closure, A._deletePaymentTerm__closure0, A._deletePaymentTerm__closure1, A._restorePaymentTerm_closure, A._restorePaymentTerm__closure, A._restorePaymentTerm__closure0, A._restorePaymentTerm__closure1, A._savePaymentTerm_closure, A._savePaymentTerm__closure, A._savePaymentTerm__closure0, A._loadPaymentTerm_closure, A._loadPaymentTerm__closure, A._loadPaymentTerm__closure0, A._loadPaymentTerms_closure, A._loadPaymentTerms__closure, A._loadPaymentTerms__closure0, A.paymentTermUIReducer_closure, A.editingReducer__closure24, A.paymentTermListReducer__closure, A._viewPaymentTermList_closure, A._filterPaymentTermsByCustom1_closure, A._filterPaymentTermsByCustom1_closure0, A._filterPaymentTermsByCustom2_closure, A._filterPaymentTermsByCustom2_closure0, A._filterPaymentTermsByState_closure, A._filterPaymentTermsByState_closure0, A._filterPaymentTerms_closure, A._sortPaymentTerms_closure, A._startListMultiselect_closure12, A._addToListMultiselect_closure12, A._removeFromListMultiselect_closure12, A._clearListMultiselect_closure12, A._archivePaymentTermSuccess_closure, A._deletePaymentTermSuccess_closure, A._restorePaymentTermSuccess_closure, A._addPaymentTerm_closure, A._updatePaymentTerm_closure, A._setLoadedPaymentTerm_closure, A._setLoadedCompany_closure7, A._setLoadedCompany__closure7, A._setLoadedCompany__closure8, A._setLoadedCompany_closure8, A.dropdownPaymentTermsSelector_closure, A.memoizedFilteredPaymentTermList_closure, A.filteredPaymentTermsSelector_closure, A.PaymentTermState_loadPaymentTerms_closure0, A.PaymentTermState_loadPaymentTerms_closure1, A.PaymentTermState_loadPaymentTerms_closure, A.handleProductAction_closure, A.handleProductAction_closure0, A.handleProductAction__closure1, A.handleProductAction_closure1, A.handleProductAction__closure0, A.handleProductAction_closure2, A.handleProductAction__closure, A._editProduct_closure, A._viewProduct_closure, A._viewProductList_closure0, A._viewProductList__closure, A._archiveProduct_closure, A._archiveProduct__closure, A._archiveProduct__closure0, A._archiveProduct__closure1, A._setTaxCategoryProducts_closure, A._setTaxCategoryProducts__closure, A._setTaxCategoryProducts__closure0, A._deleteProduct_closure, A._deleteProduct__closure, A._deleteProduct__closure0, A._deleteProduct__closure1, A._restoreProduct_closure, A._restoreProduct__closure, A._restoreProduct__closure0, A._restoreProduct__closure1, A._saveProduct_closure, A._saveProduct__closure, A._saveProduct__closure0, A._loadProduct_closure, A._loadProduct__closure, A._loadProduct__closure0, A._loadProducts_closure, A._loadProducts__closure, A._loadProducts___closure, A._loadProducts____closure, A._loadProducts_____closure, A._loadProducts__closure0, A._saveDocument_closure12, A._saveDocument__closure25, A._saveDocument___closure12, A._saveDocument____closure12, A._saveDocument__closure26, A.productUIReducer_closure, A.editingReducer__closure60, A.productListReducer__closure, A._viewProductList_closure, A._filterProductsByState_closure, A._filterProductsByState_closure0, A._filterProductsByCustom1_closure, A._filterProductsByCustom1_closure0, A._filterProductsByCustom2_closure, A._filterProductsByCustom2_closure0, A._filterProductsByCustom3_closure, A._filterProductsByCustom3_closure0, A._filterProductsByCustom4_closure, A._filterProductsByCustom4_closure0, A._filterProducts_closure, A._sortProducts_closure, A._startListMultiselect_closure27, A._addToListMultiselect_closure27, A._removeFromListMultiselect_closure27, A._clearListMultiselect_closure27, A._archiveProductSuccess_closure, A._deleteProductSuccess_closure, A._restoreProductSuccess_closure, A._setTaxCategoryProductsSuccess_closure, A._addProduct_closure, A._updateProduct_closure, A._setLoadedProduct_closure, A.convertProductToInvoiceItem_closure, A.memoizedDropdownProductList_closure, A.dropdownProductsSelector_closure, A.memoizedProductList_closure, A.productList_closure, A.memoizedFilteredProductList_closure, A.filteredProductsSelector_closure, A.ProductState_loadProducts_closure0, A.ProductState_loadProducts_closure1, A.ProductState_loadProducts_closure, A.handleProjectAction_closure, A.handleProjectAction_closure0, A.handleProjectAction_closure1, A.handleProjectAction_closure2, A.handleProjectAction_closure3, A.handleProjectAction_closure4, A.handleProjectAction_closure5, A.handleProjectAction_closure6, A.handleProjectAction_closure7, A._editProject_closure, A._viewProject_closure, A._viewProjectList_closure0, A._viewProjectList__closure, A._archiveProject_closure, A._archiveProject__closure, A._archiveProject__closure0, A._archiveProject__closure1, A._deleteProject_closure, A._deleteProject__closure, A._deleteProject__closure0, A._deleteProject__closure1, A._restoreProject_closure, A._restoreProject__closure, A._restoreProject__closure0, A._restoreProject__closure1, A._saveProject_closure, A._saveProject__closure, A._saveProject__closure0, A._loadProject_closure, A._loadProject__closure, A._loadProject__closure0, A._loadProjects_closure, A._loadProjects__closure, A._loadProjects___closure, A._loadProjects____closure, A._loadProjects_____closure, A._loadProjects__closure0, A._saveDocument_closure6, A._saveDocument__closure13, A._saveDocument___closure6, A._saveDocument____closure6, A._saveDocument__closure14, A.projectUIReducer_closure, A.editingReducer__closure7, A.projectListReducer__closure, A._viewProjectList_closure, A._filterProjectsByCustom1_closure, A._filterProjectsByCustom1_closure0, A._filterProjectsByCustom2_closure, A._filterProjectsByCustom2_closure0, A._filterProjectsByCustom3_closure, A._filterProjectsByCustom3_closure0, A._filterProjectsByCustom4_closure, A._filterProjectsByCustom4_closure0, A._filterProjectsByState_closure, A._filterProjectsByState_closure0, A._filterProjects_closure, A._sortProjects_closure, A._startListMultiselect_closure1, A._addToListMultiselect_closure1, A._removeFromListMultiselect_closure1, A._clearListMultiselect_closure1, A._purgeClientSuccess_closure6, A._purgeClientSuccess_closure7, A._purgeClientSuccess_closure5, A._purgeClientSuccess__closure4, A._archiveProjectSuccess_closure, A._deleteProjectSuccess_closure, A._restoreProjectSuccess_closure, A._addProject_closure, A._updateProject_closure, A._setLoadedProject_closure, A.convertProjectToInvoiceItem_closure3, A.convertProjectToInvoiceItem_closure4, A.memoizedDropdownProjectList_closure, A.dropdownProjectsSelector_closure, A.memoizedFilteredProjectList_closure, A.filteredProjectsSelector_closure, A.ProjectState_loadProjects_closure0, A.ProjectState_loadProjects_closure1, A.ProjectState_loadProjects_closure, A.handlePurchaseOrderAction_closure, A.handlePurchaseOrderAction_closure0, A.handlePurchaseOrderAction_closure1, A.handlePurchaseOrderAction_closure2, A.handlePurchaseOrderAction_closure5, A.handlePurchaseOrderAction_closure6, A.handlePurchaseOrderAction_closure7, A.handlePurchaseOrderAction_closure8, A.handlePurchaseOrderAction_closure9, A.handlePurchaseOrderAction_closure10, A.handlePurchaseOrderAction_closure11, A.handlePurchaseOrderAction_closure12, A._viewPurchaseOrder_closure, A._viewPurchaseOrderList_closure0, A._viewPurchaseOrderList__closure, A._editPurchaseOrder_closure, A._showEmailPurchaseOrder_closure, A._showPdfPurchaseOrder_closure, A._archivePurchaseOrder_closure, A._archivePurchaseOrder__closure, A._archivePurchaseOrder__closure0, A._archivePurchaseOrder__closure1, A._deletePurchaseOrder_closure, A._deletePurchaseOrder__closure, A._deletePurchaseOrder__closure0, A._deletePurchaseOrder__closure1, A._restorePurchaseOrder_closure, A._restorePurchaseOrder__closure, A._restorePurchaseOrder__closure0, A._restorePurchaseOrder__closure1, A._approvePurchaseOrder_closure, A._approvePurchaseOrder__closure, A._approvePurchaseOrder__closure0, A._markSentPurchaseOrder_closure, A._markSentPurchaseOrder__closure, A._markSentPurchaseOrder__closure0, A._convertPurchaseOrdersToExpense_closure, A._convertPurchaseOrdersToExpense__closure, A._convertPurchaseOrdersToExpense__closure0, A._addPurchaseOrdersToInventory_closure, A._addPurchaseOrdersToInventory__closure, A._addPurchaseOrdersToInventory__closure0, A._acceptPurchaseOrders_closure, A._acceptPurchaseOrders__closure, A._acceptPurchaseOrders__closure0, A._cancelPurchaseOrders_closure, A._cancelPurchaseOrders__closure, A._cancelPurchaseOrders__closure0, A._emailPurchaseOrder_closure, A._emailPurchaseOrder__closure, A._emailPurchaseOrder__closure0, A._savePurchaseOrder_closure, A._savePurchaseOrder__closure, A._savePurchaseOrder___closure, A._savePurchaseOrder__closure0, A._savePurchaseOrder__closure1, A._loadPurchaseOrder_closure, A._loadPurchaseOrder__closure, A._loadPurchaseOrder__closure0, A._downloadPurchaseOrders_closure, A._downloadPurchaseOrders__closure, A._downloadPurchaseOrders__closure0, A._bulkEmailPurchaseOrders_closure, A._bulkEmailPurchaseOrders__closure, A._bulkEmailPurchaseOrders__closure0, A._loadPurchaseOrders_closure, A._loadPurchaseOrders__closure, A._loadPurchaseOrders___closure, A._loadPurchaseOrders____closure, A._loadPurchaseOrders_____closure, A._loadPurchaseOrders__closure0, A._saveDocument_closure3, A._saveDocument__closure7, A._saveDocument___closure3, A._saveDocument____closure3, A._saveDocument__closure8, A.purchaseOrderUIReducer_closure, A.editingReducer__closure44, A.editingReducer__closure43, A.editingReducer__closure42, A.editingReducer__closure41, A.editingReducer__closure40, A.editingReducer___closure2, A.editingReducer__closure39, A.editingReducer__closure38, A._addPurchaseOrderItem_closure, A._addPurchaseOrderItems_closure, A._removePurchaseOrderItem_closure, A._updatePurchaseOrderItem_closure, A.purchaseOrderListReducer__closure, A._viewPurchaseOrderList_closure, A._filterPurchaseOrdersByCustom1_closure, A._filterPurchaseOrdersByCustom1_closure0, A._filterPurchaseOrdersByCustom2_closure, A._filterPurchaseOrdersByCustom2_closure0, A._filterPurchaseOrdersByCustom3_closure, A._filterPurchaseOrdersByCustom3_closure0, A._filterPurchaseOrdersByCustom4_closure, A._filterPurchaseOrdersByCustom4_closure0, A._filterPurchaseOrdersByState_closure, A._filterPurchaseOrdersByState_closure0, A._filterPurchaseOrdersByStatus_closure, A._filterPurchaseOrdersByStatus_closure0, A._filterPurchaseOrders_closure, A._sortPurchaseOrders_closure, A._startListMultiselect_closure20, A._addToListMultiselect_closure20, A._removeFromListMultiselect_closure20, A._clearListMultiselect_closure20, A._markSentPurchaseOrderSuccess_closure0, A._markSentPurchaseOrderSuccess_closure1, A._markSentPurchaseOrderSuccess_closure, A._convertPurchaseOrdersToExpenses_closure0, A._convertPurchaseOrdersToExpenses_closure1, A._convertPurchaseOrdersToExpenses_closure, A._addPurchaseOrdersToInventorySuccess_closure0, A._addPurchaseOrdersToInventorySuccess_closure1, A._addPurchaseOrdersToInventorySuccess_closure, A._acceptPurchaseOrderSuccess_closure0, A._acceptPurchaseOrderSuccess_closure1, A._acceptPurchaseOrderSuccess_closure, A._cancelPurchaseOrderSuccess_closure0, A._cancelPurchaseOrderSuccess_closure1, A._cancelPurchaseOrderSuccess_closure, A._archivePurchaseOrderSuccess_closure, A._deletePurchaseOrderSuccess_closure, A._restorePurchaseOrderSuccess_closure, A._emailPurchaseOrderSuccess_closure, A._approvePurchaseOrderSuccess_closure0, A._approvePurchaseOrderSuccess_closure1, A._approvePurchaseOrderSuccess_closure, A._addPurchaseOrder_closure, A._addPurchaseOrder__closure, A._updatePurchaseOrder_closure, A._updatePurchaseOrder__closure, A.purchaseOrderContactSelector_closure, A.purchaseOrderContactSelector_closure0, A.memoizedDropdownPurchaseOrderList_closure, A.dropdownPurchaseOrdersSelector_closure, A.memoizedFilteredPurchaseOrderList_closure, A.filteredPurchaseOrdersSelector_closure, A.PurchaseOrderState_loadPurchaseOrders_closure0, A.PurchaseOrderState_loadPurchaseOrders_closure1, A.PurchaseOrderState_loadPurchaseOrders_closure, A.handleQuoteAction_closure, A.handleQuoteAction_closure0, A.handleQuoteAction_closure1, A.handleQuoteAction_closure2, A.handleQuoteAction_closure5, A.handleQuoteAction_closure6, A.handleQuoteAction_closure7, A.handleQuoteAction_closure8, A.handleQuoteAction_closure9, A.handleQuoteAction_closure10, A.handleQuoteAction_closure11, A.handleQuoteAction_closure12, A.handleQuoteAction_closure13, A.handleQuoteAction_closure14, A._viewQuote_closure, A._viewQuoteList_closure0, A._viewQuoteList__closure, A._editQuote_closure, A._showEmailQuote_closure, A._showPdfQuote_closure, A._archiveQuote_closure, A._archiveQuote__closure, A._archiveQuote__closure0, A._archiveQuote__closure1, A._deleteQuote_closure, A._deleteQuote__closure, A._deleteQuote__closure0, A._deleteQuote__closure1, A._restoreQuote_closure, A._restoreQuote__closure, A._restoreQuote__closure0, A._restoreQuote__closure1, A._convertQuotesToInvoices_closure, A._convertQuotesToInvoices__closure, A._convertQuotesToInvoices__closure0, A._convertQuotesToProjects_closure, A._convertQuotesToProjects__closure, A._convertQuotesToProjects__closure0, A._approveQuote_closure, A._approveQuote__closure, A._approveQuote__closure0, A._markSentQuote_closure, A._markSentQuote__closure, A._markSentQuote__closure0, A._emailQuote_closure, A._emailQuote__closure, A._emailQuote__closure0, A._saveQuote_closure, A._saveQuote__closure, A._saveQuote___closure, A._saveQuote__closure0, A._saveQuote__closure1, A._loadQuote_closure, A._loadQuote__closure, A._loadQuote__closure0, A._downloadQuotes_closure, A._downloadQuotes__closure, A._downloadQuotes__closure0, A._bulkEmailQuotes_closure, A._bulkEmailQuotes__closure, A._bulkEmailQuotes__closure0, A._loadQuotes_closure, A._loadQuotes__closure, A._loadQuotes___closure, A._loadQuotes____closure, A._loadQuotes_____closure, A._loadQuotes__closure0, A._saveDocument_closure5, A._saveDocument__closure11, A._saveDocument___closure5, A._saveDocument____closure5, A._saveDocument__closure12, A.quoteUIReducer_closure, A.editingReducer__closure5, A.editingReducer__closure4, A.editingReducer__closure3, A.editingReducer__closure2, A.editingReducer__closure1, A.editingReducer___closure, A.editingReducer__closure0, A.editingReducer__closure, A._addQuoteItem_closure, A._addQuoteItems_closure, A._removeQuoteItem_closure, A._updateQuoteItem_closure, A.quoteListReducer__closure, A._viewQuoteList_closure, A._filterQuotesByCustom1_closure, A._filterQuotesByCustom1_closure0, A._filterQuotesByCustom2_closure, A._filterQuotesByCustom2_closure0, A._filterQuotesByCustom3_closure, A._filterQuotesByCustom3_closure0, A._filterQuotesByCustom4_closure, A._filterQuotesByCustom4_closure0, A._filterQuotesByState_closure, A._filterQuotesByState_closure0, A._filterQuotesByStatus_closure, A._filterQuotesByStatus_closure0, A._filterQuotes_closure, A._sortQuotes_closure, A._startListMultiselect_closure, A._addToListMultiselect_closure, A._removeFromListMultiselect_closure, A._clearListMultiselect_closure, A._purgeClientSuccess_closure0, A._purgeClientSuccess_closure1, A._purgeClientSuccess_closure, A._purgeClientSuccess__closure0, A._markSentQuoteSuccess_closure0, A._markSentQuoteSuccess_closure1, A._markSentQuoteSuccess_closure, A._archiveQuoteSuccess_closure, A._deleteQuoteSuccess_closure, A._restoreQuoteSuccess_closure, A._emailQuoteSuccess_closure, A._convertQuotesToInvoicesSuccess_closure0, A._convertQuotesToInvoicesSuccess_closure1, A._convertQuotesToInvoicesSuccess_closure, A._convertQuotesToProjectsSuccess_closure0, A._convertQuotesToProjectsSuccess_closure1, A._convertQuotesToProjectsSuccess_closure, A._addQuote_closure, A._addQuote__closure, A._updateQuote_closure, A._updateQuote__closure, A.quoteContactSelector_closure, A.quoteContactSelector_closure0, A.memoizedDropdownQuoteList_closure, A.dropdownQuoteSelector_closure, A.memoizedFilteredQuoteList_closure, A.filteredQuotesSelector_closure, A.QuoteState_loadQuotes_closure0, A.QuoteState_loadQuotes_closure1, A.QuoteState_loadQuotes_closure, A.handleRecurringExpenseAction_closure, A.handleRecurringExpenseAction_closure0, A.handleRecurringExpenseAction_closure1, A._editRecurringExpense_closure, A._viewRecurringExpense_closure, A._viewRecurringExpenseList_closure0, A._viewRecurringExpenseList__closure, A._archiveRecurringExpense_closure, A._archiveRecurringExpense__closure, A._archiveRecurringExpense__closure0, A._archiveRecurringExpense__closure1, A._deleteRecurringExpense_closure, A._deleteRecurringExpense__closure, A._deleteRecurringExpense__closure0, A._deleteRecurringExpense__closure1, A._restoreRecurringExpense_closure, A._restoreRecurringExpense__closure, A._restoreRecurringExpense__closure0, A._restoreRecurringExpense__closure1, A._saveRecurringExpense_closure, A._saveRecurringExpense__closure, A._saveRecurringExpense__closure0, A._loadRecurringExpense_closure, A._loadRecurringExpense__closure, A._loadRecurringExpense__closure0, A._loadRecurringExpenses_closure, A._loadRecurringExpenses__closure, A._loadRecurringExpenses___closure, A._loadRecurringExpenses____closure, A._loadRecurringExpenses_____closure, A._loadRecurringExpenses__closure0, A._startRecurringExpense_closure, A._startRecurringExpense__closure, A._startRecurringExpense__closure0, A._stopRecurringExpense_closure, A._stopRecurringExpense__closure, A._stopRecurringExpense__closure0, A._saveDocument_closure2, A._saveDocument__closure5, A._saveDocument___closure2, A._saveDocument____closure2, A._saveDocument__closure6, A.recurringExpenseUIReducer_closure, A.editingReducer__closure37, A.recurringExpenseListReducer__closure, A._viewRecurringExpenseList_closure, A._filterRecurringExpensesByCustom1_closure, A._filterRecurringExpensesByCustom1_closure0, A._filterRecurringExpensesByCustom2_closure, A._filterRecurringExpensesByCustom2_closure0, A._filterRecurringExpensesByState_closure, A._filterRecurringExpensesByState_closure0, A._filterRecurringExpensesByStatus_closure, A._filterRecurringExpensesByStatus_closure0, A._filterRecurringExpenses_closure, A._sortRecurringExpenses_closure, A._startListMultiselect_closure19, A._addToListMultiselect_closure19, A._removeFromListMultiselect_closure19, A._clearListMultiselect_closure19, A._purgeClientSuccess_closure15, A._purgeClientSuccess_closure16, A._purgeClientSuccess_closure14, A._purgeClientSuccess__closure10, A._archiveRecurringExpenseSuccess_closure, A._deleteRecurringExpenseSuccess_closure, A._restoreRecurringExpenseSuccess_closure, A._addRecurringExpense_closure, A._addRecurringExpense__closure, A._updateRecurringExpense_closure, A._updateRecurringExpense__closure, A._startRecurringExpensesSuccess_closure, A._stopRecurringExpensesSuccess_closure, A._setLoadedRecurringExpense_closure, A._setLoadedRecurringExpense__closure, A.memoizedFilteredRecurringExpenseList_closure, A.filteredRecurringExpensesSelector_closure, A.RecurringExpenseState_loadRecurringExpenses_closure0, A.RecurringExpenseState_loadRecurringExpenses_closure1, A.RecurringExpenseState_loadRecurringExpenses_closure, A.handleRecurringInvoiceAction_closure, A.handleRecurringInvoiceAction_closure0, A.handleRecurringInvoiceAction_closure1, A.handleRecurringInvoiceAction__closure, A.handleRecurringInvoiceAction_closure2, A.handleRecurringInvoiceAction_closure3, A.handleRecurringInvoiceAction_closure4, A.handleRecurringInvoiceAction_closure5, A._editRecurringInvoice_closure, A._viewRecurringInvoice_closure, A._viewRecurringInvoiceList_closure, A._viewRecurringInvoiceList__closure, A._showPdfRecurringInvoice_closure, A._startRecurringInvoice_closure, A._startRecurringInvoice__closure, A._startRecurringInvoice__closure0, A._stopRecurringInvoice_closure, A._stopRecurringInvoice__closure, A._stopRecurringInvoice__closure0, A._updatePricesRecurringInvoice_closure, A._updatePricesRecurringInvoice__closure, A._updatePricesRecurringInvoice__closure0, A._increasePricesRecurringInvoice_closure, A._increasePricesRecurringInvoice__closure, A._increasePricesRecurringInvoice__closure0, A._sendNowRecurringInvoice_closure, A._sendNowRecurringInvoice__closure, A._sendNowRecurringInvoice__closure0, A._archiveRecurringInvoice_closure, A._archiveRecurringInvoice__closure, A._archiveRecurringInvoice__closure0, A._archiveRecurringInvoice__closure1, A._deleteRecurringInvoice_closure, A._deleteRecurringInvoice__closure, A._deleteRecurringInvoice__closure0, A._deleteRecurringInvoice__closure1, A._restoreRecurringInvoice_closure, A._restoreRecurringInvoice__closure, A._restoreRecurringInvoice__closure0, A._restoreRecurringInvoice__closure1, A._saveRecurringInvoice_closure, A._saveRecurringInvoice__closure, A._saveRecurringInvoice___closure, A._saveRecurringInvoice__closure0, A._saveRecurringInvoice__closure1, A._loadRecurringInvoice_closure, A._loadRecurringInvoice__closure, A._loadRecurringInvoice__closure0, A._loadRecurringInvoices_closure, A._loadRecurringInvoices__closure, A._loadRecurringInvoices___closure, A._loadRecurringInvoices____closure, A._loadRecurringInvoices_____closure, A._loadRecurringInvoices__closure0, A._saveDocument_closure1, A._saveDocument__closure3, A._saveDocument___closure1, A._saveDocument____closure1, A._saveDocument__closure4, A.recurringInvoiceUIReducer_closure, A.editingReducer__closure33, A.editingReducer__closure32, A.editingReducer__closure31, A.editingReducer__closure30, A.editingReducer__closure29, A.editingReducer___closure1, A.editingReducer__closure28, A.editingReducer__closure27, A._addRecurringInvoiceItem_closure, A._addRecurringInvoiceItems_closure, A._removeRecurringInvoiceItem_closure, A._updateRecurringInvoiceItem_closure, A.recurringInvoiceListReducer__closure, A._filterRecurringInvoicesByCustom1_closure, A._filterRecurringInvoicesByCustom1_closure0, A._filterRecurringInvoicesByCustom2_closure, A._filterRecurringInvoicesByCustom2_closure0, A._filterRecurringInvoicesByCustom3_closure, A._filterRecurringInvoicesByCustom3_closure0, A._filterRecurringInvoicesByCustom4_closure, A._filterRecurringInvoicesByCustom4_closure0, A._filterRecurringInvoicesByState_closure, A._filterRecurringInvoicesByState_closure0, A._filterRecurringInvoicesByStatus_closure, A._filterRecurringInvoicesByStatus_closure0, A._filterRecurringInvoices_closure, A._sortRecurringInvoices_closure, A._startListMultiselect_closure15, A._addToListMultiselect_closure15, A._removeFromListMultiselect_closure15, A._clearListMultiselect_closure15, A._purgeClientSuccess_closure12, A._purgeClientSuccess_closure13, A._purgeClientSuccess_closure11, A._purgeClientSuccess__closure8, A._archiveRecurringInvoiceSuccess_closure, A._deleteRecurringInvoiceSuccess_closure, A._emailRecurringInvoiceSuccess_closure, A._restoreRecurringInvoiceSuccess_closure, A._sendNowRecurringInvoiceSuccess_closure, A._startRecurringInvoicesSuccess_closure, A._stopRecurringInvoicesSuccess_closure, A._addRecurringInvoice_closure, A._addRecurringInvoice__closure, A._updateRecurringInvoice_closure, A._updateRecurringInvoice__closure, A.memoizedFilteredRecurringInvoiceList_closure, A.filteredRecurringInvoicesSelector_closure, A.RecurringInvoiceState_loadRecurringInvoices_closure0, A.RecurringInvoiceState_loadRecurringInvoices_closure1, A.RecurringInvoiceState_loadRecurringInvoices_closure, A._viewReports_closure, A._viewReports___closure, A.reportsUIReducer_closure, A.reportsUIReducer_closure0, A.reportsUIReducer_closure1, A.handleScheduleAction_closure, A._editSchedule_closure, A._viewSchedule_closure, A._viewScheduleList_closure0, A._viewScheduleList__closure, A._archiveSchedule_closure, A._archiveSchedule__closure, A._archiveSchedule__closure0, A._archiveSchedule__closure1, A._deleteSchedule_closure, A._deleteSchedule__closure, A._deleteSchedule__closure0, A._deleteSchedule__closure1, A._restoreSchedule_closure, A._restoreSchedule__closure, A._restoreSchedule__closure0, A._restoreSchedule__closure1, A._saveSchedule_closure, A._saveSchedule__closure, A._saveSchedule__closure0, A._loadSchedule_closure, A._loadSchedule__closure, A._loadSchedule__closure0, A._loadSchedules_closure, A._loadSchedules__closure, A._loadSchedules__closure0, A.scheduleUIReducer_closure, A.editingReducer__closure48, A.scheduleListReducer__closure, A._viewScheduleList_closure, A._filterSchedulesByCustom1_closure, A._filterSchedulesByCustom1_closure0, A._filterSchedulesByCustom2_closure, A._filterSchedulesByCustom2_closure0, A._filterSchedulesByState_closure, A._filterSchedulesByState_closure0, A._filterSchedules_closure, A._sortSchedules_closure, A._startListMultiselect_closure24, A._addToListMultiselect_closure24, A._removeFromListMultiselect_closure24, A._clearListMultiselect_closure24, A._archiveScheduleSuccess_closure, A._deleteScheduleSuccess_closure, A._restoreScheduleSuccess_closure, A._addSchedule_closure, A._updateSchedule_closure, A._setLoadedSchedule_closure, A.memoizedFilteredScheduleList_closure, A.filteredSchedulesSelector_closure, A.ScheduleState_loadSchedules_closure0, A.ScheduleState_loadSchedules_closure1, A.ScheduleState_loadSchedules_closure, A._viewSettings_closure, A._viewSettings___closure, A._saveCompany_closure, A._saveCompany__closure, A._saveCompany__closure0, A._saveEInvoiceCertificate_closure, A._saveEInvoiceCertificate__closure, A._saveEInvoiceCertificate__closure0, A._saveAuthUser_closure, A._saveAuthUser__closure, A._saveAuthUser__closure0, A._connectOAuthUser_closure0, A._connectOAuthUser__closure, A._connectOAuthUser__closure0, A._disconnectOAuthUser_closure0, A._disconnectOAuthUser__closure, A._disconnectOAuthUser__closure0, A._disconnectOAuthMailer_closure0, A._disconnectOAuthMailer__closure, A._disconnectOAuthMailer__closure0, A._connectGmailUser_closure0, A._connectGmailUser__closure, A._connectGmailUser__closure0, A._disableTwoFactor_closure, A._disableTwoFactor__closure, A._disableTwoFactor__closure0, A._saveSettings_closure, A._saveSettings__closure, A._saveSettings__closure0, A._uploadLogo_closure, A._uploadLogo__closure, A._uploadLogo__closure0, A._saveDocument_closure4, A._saveDocument__closure9, A._saveDocument___closure4, A._saveDocument____closure4, A._saveDocument__closure10, A.settingsUIReducer__closure20, A.settingsUIReducer__closure19, A.settingsUIReducer__closure16, A.settingsUIReducer__closure17, A.settingsUIReducer__closure18, A.settingsUIReducer__closure15, A.settingsUIReducer__closure14, A.settingsUIReducer__closure13, A.settingsUIReducer__closure12, A.settingsUIReducer__closure11, A.settingsUIReducer__closure10, A.settingsUIReducer__closure9, A.settingsUIReducer__closure8, A.settingsUIReducer__closure7, A.settingsUIReducer__closure6, A.settingsUIReducer__closure5, A.settingsUIReducer__closure4, A.settingsUIReducer__closure3, A.settingsUIReducer__closure2, A.settingsUIReducer__closure1, A.settingsUIReducer__closure0, A.settingsUIReducer__closure, A.staticLoadedReducer_closure, A.staticLoadedReducer__closure, A.staticLoadedReducer__closure0, A.staticLoadedReducer__closure1, A.staticLoadedReducer__closure2, A.staticLoadedReducer__closure3, A.staticLoadedReducer__closure4, A.staticLoadedReducer__closure5, A.staticLoadedReducer__closure6, A.staticLoadedReducer__closure7, A.staticLoadedReducer__closure8, A.staticLoadedReducer__closure9, A.staticLoadedReducer__closure10, A.staticLoadedReducer__closure11, A.staticLoadedReducer__closure12, A.staticLoadedReducer__closure13, A.staticLoadedReducer__closure14, A.staticLoadedReducer__closure15, A.staticLoadedReducer__closure16, A.memoizedCountryList_closure, A.memoizedCountryIso2Map_closure, A.countryIso2Map_closure, A.memoizedGroupList_closure, A.groupList_closure, A.memoizedLanguageList_closure, A.memoizedCurrencyList_closure, A.memoizedTimezoneList_closure, A.memoizedDateFormatList_closure, A.memoizedIndustryList_closure, A.memoizedSizeList_closure, A.gatewayList_closure, A.memoizedPaymentTypeList_closure, A.memoizedFontMap_closure, A.fontMap_closure, A.fontMap_closure0, A.handleSubscriptionAction_closure, A._editSubscription_closure, A._viewSubscription_closure, A._viewSubscriptionList_closure, A._viewSubscriptionList__closure, A._archiveSubscription_closure, A._archiveSubscription__closure, A._archiveSubscription__closure0, A._archiveSubscription__closure1, A._deleteSubscription_closure, A._deleteSubscription__closure, A._deleteSubscription__closure0, A._deleteSubscription__closure1, A._restoreSubscription_closure, A._restoreSubscription__closure, A._restoreSubscription__closure0, A._restoreSubscription__closure1, A._saveSubscription_closure, A._saveSubscription__closure, A._saveSubscription__closure0, A._loadSubscription_closure, A._loadSubscription__closure, A._loadSubscription__closure0, A._loadSubscriptions_closure, A._loadSubscriptions__closure, A._loadSubscriptions__closure0, A.subscriptionUIReducer_closure, A.editingReducer__closure36, A.subscriptionListReducer__closure, A._filterSubscriptionsByCustom1_closure, A._filterSubscriptionsByCustom1_closure0, A._filterSubscriptionsByCustom2_closure, A._filterSubscriptionsByCustom2_closure0, A._filterSubscriptionsByState_closure, A._filterSubscriptionsByState_closure0, A._filterSubscriptions_closure, A._sortSubscriptions_closure, A._startListMultiselect_closure18, A._addToListMultiselect_closure18, A._removeFromListMultiselect_closure18, A._clearListMultiselect_closure18, A._archiveSubscriptionSuccess_closure, A._deleteSubscriptionSuccess_closure, A._restoreSubscriptionSuccess_closure, A._addSubscription_closure, A._updateSubscription_closure, A._setLoadedSubscription_closure, A.memoizedFilteredSubscriptionList_closure, A.filteredSubscriptionsSelector_closure, A.SubscriptionState_loadSubscriptions_closure0, A.SubscriptionState_loadSubscriptions_closure1, A.SubscriptionState_loadSubscriptions_closure, A.handleTaskAction_closure, A.handleTaskAction_closure0, A.handleTaskAction_closure2, A.handleTaskAction_closure3, A.handleTaskAction_closure4, A.handleTaskAction_closure5, A._editTask_closure, A._viewTask_closure, A._viewTaskList_closure0, A._viewTaskList__closure, A._archiveTask_closure, A._archiveTask__closure, A._archiveTask__closure0, A._archiveTask__closure1, A._startTask_closure, A._startTask__closure, A._startTask__closure0, A._startTask__closure1, A._stopTask_closure, A._stopTask__closure, A._stopTask__closure0, A._stopTask__closure1, A._deleteTask_closure, A._deleteTask__closure, A._deleteTask__closure0, A._deleteTask__closure1, A._restoreTask_closure, A._restoreTask__closure, A._restoreTask__closure0, A._restoreTask__closure1, A._saveTask_closure, A._saveTask__closure, A._saveTask__closure0, A._loadTask_closure, A._loadTask__closure, A._loadTask__closure0, A._loadTasks_closure, A._loadTasks__closure, A._loadTasks___closure, A._loadTasks____closure, A._loadTasks_____closure, A._loadTasks__closure0, A._saveDocument_closure7, A._saveDocument__closure15, A._saveDocument___closure7, A._saveDocument____closure7, A._saveDocument__closure16, A._sortTasks_closure0, A._sortTasks__closure, A._sortTasks__closure0, A.taskUIReducer_closure, A.editingReducer__closure8, A.taskListReducer__closure, A._viewTaskList_closure, A._filterTasksByCustom1_closure, A._filterTasksByCustom1_closure0, A._filterTasksByCustom2_closure, A._filterTasksByCustom2_closure0, A._filterTasksByState_closure, A._filterTasksByState_closure0, A._filterTasksByStatus_closure, A._filterTasksByStatus_closure0, A._filterTasks_closure, A._sortTasks_closure, A._startListMultiselect_closure2, A._addToListMultiselect_closure2, A._removeFromListMultiselect_closure2, A._clearListMultiselect_closure2, A._purgeClientSuccess_closure18, A._purgeClientSuccess_closure19, A._purgeClientSuccess_closure17, A._purgeClientSuccess__closure12, A._sortTasksSuccess_closure, A._sortTasksSuccess__closure, A._archiveTaskSuccess_closure, A._startTaskSuccess_closure, A._stopTaskSuccess_closure, A._deleteTaskSuccess_closure, A._restoreTaskSuccess_closure, A._addTask_closure, A._updateTask_closure, A._setLoadedTask_closure, A.convertTaskToInvoiceItem_closure, A.convertTaskToInvoiceItem_closure0, A.convertTaskToInvoiceItem_closure2, A.memoizedTaskList_closure, A.taskList_closure, A.memoizedKanbanTaskList_closure, A.kanbanTasksSelector_closure, A.memoizedFilteredTaskList_closure, A.filteredTasksSelector_closure, A.TaskState_loadTasks_closure0, A.TaskState_loadTasks_closure1, A.TaskState_loadTasks_closure, A.handleTaskStatusAction_closure, A.handleTaskStatusAction_closure0, A._editTaskStatus_closure, A._viewTaskStatus_closure, A._viewTaskStatusList_closure0, A._viewTaskStatusList__closure, A._archiveTaskStatus_closure, A._archiveTaskStatus__closure, A._archiveTaskStatus__closure0, A._archiveTaskStatus__closure1, A._deleteTaskStatus_closure, A._deleteTaskStatus__closure, A._deleteTaskStatus__closure0, A._deleteTaskStatus__closure1, A._restoreTaskStatus_closure, A._restoreTaskStatus__closure, A._restoreTaskStatus__closure0, A._restoreTaskStatus__closure1, A._saveTaskStatus_closure, A._saveTaskStatus__closure, A._saveTaskStatus__closure0, A._loadTaskStatus_closure, A._loadTaskStatus__closure, A._loadTaskStatus__closure0, A._loadTaskStatuses_closure, A._loadTaskStatuses__closure, A._loadTaskStatuses__closure0, A.taskStatusUIReducer_closure, A.editingReducer__closure35, A.taskStatusListReducer__closure, A._viewTaskStatusList_closure, A._filterTaskStatusesByCustom1_closure, A._filterTaskStatusesByCustom1_closure0, A._filterTaskStatusesByCustom2_closure, A._filterTaskStatusesByCustom2_closure0, A._filterTaskStatusesByState_closure, A._filterTaskStatusesByState_closure0, A._filterTaskStatuses_closure, A._sortTaskStatuses_closure, A._startListMultiselect_closure17, A._addToListMultiselect_closure17, A._removeFromListMultiselect_closure17, A._clearListMultiselect_closure17, A._sortTaskStatusSuccess_closure, A._sortTaskStatusSuccess__closure, A._archiveTaskStatusSuccess_closure, A._deleteTaskStatusSuccess_closure, A._restoreTaskStatusSuccess_closure, A._addTaskStatus_closure, A._updateTaskStatus_closure, A._setLoadedTaskStatus_closure, A.sortedActiveTaskStatusIds_closure, A.memoizedDropdownTaskStatusList_closure, A.dropdownTaskStatusesSelector_closure, A.memoizedFilteredTaskStatusList_closure, A.filteredTaskStatusesSelector_closure, A.defaultTaskStatusId_closure, A.TaskStatusState_loadTaskStatuses_closure0, A.TaskStatusState_loadTaskStatuses_closure1, A.TaskStatusState_loadTaskStatuses_closure, A.handleTaxRateAction_closure, A._editTaxRate_closure, A._viewTaxRate_closure, A._viewTaxRateList_closure0, A._viewTaxRateList__closure, A._archiveTaxRate_closure, A._archiveTaxRate__closure, A._archiveTaxRate__closure0, A._archiveTaxRate__closure1, A._deleteTaxRate_closure, A._deleteTaxRate__closure, A._deleteTaxRate__closure0, A._deleteTaxRate__closure1, A._restoreTaxRate_closure, A._restoreTaxRate__closure, A._restoreTaxRate__closure0, A._restoreTaxRate__closure1, A._saveTaxRate_closure, A._saveTaxRate__closure, A._saveTaxRate__closure0, A._loadTaxRate_closure, A._loadTaxRate__closure, A._loadTaxRate__closure0, A._loadTaxRates_closure, A._loadTaxRates__closure, A._loadTaxRates__closure0, A.taxRateUIReducer_closure, A.editingReducer__closure14, A.taxRateListReducer__closure, A._viewTaxRateList_closure, A._filterTaxRatesByState_closure, A._filterTaxRatesByState_closure0, A._filterTaxRates_closure, A._sortTaxRates_closure, A._startListMultiselect_closure8, A._addToListMultiselect_closure8, A._removeFromListMultiselect_closure8, A._clearListMultiselect_closure8, A._archiveTaxRateSuccess_closure, A._deleteTaxRateSuccess_closure, A._restoreTaxRateSuccess_closure, A._addTaxRate_closure, A._updateTaxRate_closure, A._setLoadedTaxRate_closure, A._setLoadedTaxRates_closure, A._setLoadedTaxRates__closure, A._setLoadedTaxRates__closure0, A._setLoadedTaxRates_closure0, A._setLoadedCompany_closure3, A._setLoadedCompany__closure3, A._setLoadedCompany__closure4, A._setLoadedCompany_closure4, A.memoizedFilteredTaxRateList_closure, A.filteredTaxRatesSelector_closure, A.handleTokenAction_closure, A._editToken_closure, A._viewToken_closure, A._viewTokenList_closure0, A._viewTokenList__closure, A._archiveToken_closure, A._archiveToken__closure, A._archiveToken__closure0, A._archiveToken__closure1, A._deleteToken_closure, A._deleteToken__closure, A._deleteToken__closure0, A._deleteToken__closure1, A._restoreToken_closure, A._restoreToken__closure, A._restoreToken__closure0, A._restoreToken__closure1, A._saveToken_closure, A._saveToken__closure, A._saveToken__closure0, A._loadToken_closure, A._loadToken__closure, A._loadToken__closure0, A._loadTokens_closure, A._loadTokens__closure, A._loadTokens__closure0, A.tokenUIReducer_closure, A.editingReducer__closure25, A.tokenListReducer__closure, A._viewTokenList_closure, A._filterTokensByCustom1_closure, A._filterTokensByCustom1_closure0, A._filterTokensByCustom2_closure, A._filterTokensByCustom2_closure0, A._filterTokensByState_closure, A._filterTokensByState_closure0, A._filterTokens_closure, A._sortTokens_closure, A._startListMultiselect_closure13, A._addToListMultiselect_closure13, A._removeFromListMultiselect_closure13, A._clearListMultiselect_closure13, A._archiveTokenSuccess_closure, A._deleteTokenSuccess_closure, A._restoreTokenSuccess_closure, A._addToken_closure, A._updateToken_closure, A._setLoadedToken_closure, A.memoizedFilteredTokenList_closure, A.filteredTokensSelector_closure, A.TokenState_loadTokens_closure0, A.TokenState_loadTokens_closure1, A.TokenState_loadTokens_closure, A.handleTransactionAction_closure, A._editTransaction_closure, A._viewTransaction_closure, A._viewTransactionList_closure0, A._viewTransactionList__closure, A._archiveTransaction_closure, A._archiveTransaction__closure, A._archiveTransaction__closure0, A._archiveTransaction__closure1, A._deleteTransaction_closure, A._deleteTransaction__closure, A._deleteTransaction__closure0, A._deleteTransaction__closure1, A._restoreTransaction_closure, A._restoreTransaction__closure, A._restoreTransaction__closure0, A._restoreTransaction__closure1, A._convertTransactions_closure, A._convertTransactions__closure, A._convertTransactions__closure0, A._unlinkTransactions_closure, A._unlinkTransactions__closure, A._unlinkTransactions__closure0, A._convertToPayment_closure, A._convertToPayment__closure, A._convertToPayment__closure0, A._convertToExpense_closure, A._convertToExpense__closure, A._convertToExpense__closure0, A._linkToPayment_closure, A._linkToPayment__closure, A._linkToPayment__closure0, A._linkToExpense_closure, A._linkToExpense__closure, A._linkToExpense__closure0, A._saveTransaction_closure, A._saveTransaction__closure, A._saveTransaction__closure0, A._loadTransaction_closure, A._loadTransaction__closure, A._loadTransaction__closure0, A._loadTransactions_closure, A._loadTransactions__closure, A._loadTransactions__closure0, A.transactionUIReducer_closure, A.editingReducer__closure46, A.transactionListReducer__closure, A._viewTransactionList_closure, A._filterTransactionsByCustom1_closure, A._filterTransactionsByCustom1_closure0, A._filterTransactionsByCustom2_closure, A._filterTransactionsByCustom2_closure0, A._filterTransactionsByState_closure, A._filterTransactionsByState_closure0, A._filterTransactionsByStatus_closure, A._filterTransactionsByStatus_closure0, A._filterTransactions_closure, A._sortTransactions_closure, A._startListMultiselect_closure22, A._addToListMultiselect_closure22, A._removeFromListMultiselect_closure22, A._clearListMultiselect_closure22, A._archiveTransactionSuccess_closure, A._deleteTransactionSuccess_closure, A._restoreTransactionSuccess_closure, A._addTransaction_closure, A._updateTransaction_closure, A._convertTransactionToPayment_closure, A._linkTransactionToPayment_closure, A._linkTransactionToExpense_closure, A._setLoadedTransaction_closure, A.memoizedFilteredTransactionList_closure, A.filteredTransactionsSelector_closure, A.TransactionState_loadTransactions_closure0, A.TransactionState_loadTransactions_closure1, A.TransactionState_loadTransactions_closure, A.handleTransactionRuleAction_closure, A._editTransactionRule_closure, A._viewTransactionRule_closure, A._viewTransactionRuleList_closure0, A._viewTransactionRuleList__closure, A._archiveTransactionRule_closure, A._archiveTransactionRule__closure, A._archiveTransactionRule__closure0, A._archiveTransactionRule__closure1, A._deleteTransactionRule_closure, A._deleteTransactionRule__closure, A._deleteTransactionRule__closure0, A._deleteTransactionRule__closure1, A._restoreTransactionRule_closure, A._restoreTransactionRule__closure, A._restoreTransactionRule__closure0, A._restoreTransactionRule__closure1, A._saveTransactionRule_closure, A._saveTransactionRule__closure, A._saveTransactionRule__closure0, A._loadTransactionRule_closure, A._loadTransactionRule__closure, A._loadTransactionRule__closure0, A._loadTransactionRules_closure, A._loadTransactionRules__closure, A._loadTransactionRules__closure0, A.transactionRuleUIReducer_closure, A.editingReducer__closure47, A.transactionRuleListReducer__closure, A._viewTransactionRuleList_closure, A._filterTransactionRulesByCustom1_closure, A._filterTransactionRulesByCustom1_closure0, A._filterTransactionRulesByCustom2_closure, A._filterTransactionRulesByCustom2_closure0, A._filterTransactionRulesByState_closure, A._filterTransactionRulesByState_closure0, A._filterTransactionRules_closure, A._sortTransactionRules_closure, A._startListMultiselect_closure23, A._addToListMultiselect_closure23, A._removeFromListMultiselect_closure23, A._clearListMultiselect_closure23, A._archiveTransactionRuleSuccess_closure, A._deleteTransactionRuleSuccess_closure, A._restoreTransactionRuleSuccess_closure, A._addTransactionRule_closure, A._updateTransactionRule_closure, A._setLoadedTransactionRule_closure, A.memoizedFilteredTransactionRuleList_closure, A.filteredTransactionRulesSelector_closure, A.TransactionRuleState_loadTransactionRules_closure0, A.TransactionRuleState_loadTransactionRules_closure1, A.TransactionRuleState_loadTransactionRules_closure, A.prefReducer_closure, A._resortFields_closure, A._resortFields_closure0, A.sidebarEditorReducer__closure, A.sidebarEditorReducer__closure0, A.sidebarViewerReducer__closure, A.sidebarViewerReducer__closure0, A.companyPrefReducer_closure, A.historyReducer__closure0, A.historyReducer__closure, A.historyReducer___closure, A._addToHistory_closure, A._addToHistory_closure0, A._addToHistory_closure1, A.uiReducer_closure, A.previewStackReducer__closure, A.filterStackReducer__closure, A.UIState_mainRoute_closure, A.UIState_subRoute_closure, A.UIState_previousMainRoute_closure, A.UIState_previousSubRoute_closure, A.handleUserAction_closure, A.handleUserAction_closure0, A.handleUserAction_closure1, A.handleUserAction_closure2, A.handleUserAction_closure3, A.handleUserAction_closure4, A.handleUserAction_closure5, A.handleUserAction_closure6, A.handleUserAction_closure7, A.handleUserAction_closure8, A.handleUserAction_closure9, A.handleUserAction_closure11, A.handleUserAction_closure13, A.handleUserAction_closure15, A.handleUserAction_closure17, A.handleUserAction_closure16, A._editUser_closure, A._viewUser_closure, A._viewUserList_closure0, A._viewUserList__closure, A._archiveUser_closure, A._archiveUser__closure, A._archiveUser__closure0, A._archiveUser__closure1, A._deleteUser_closure, A._deleteUser__closure, A._deleteUser__closure0, A._deleteUser__closure1, A._restoreUser_closure, A._restoreUser__closure, A._restoreUser__closure0, A._restoreUser__closure1, A._removeUser_closure, A._removeUser__closure, A._removeUser__closure0, A._resendInvite_closure, A._resendInvite__closure, A._resendInvite__closure0, A._saveUser_closure, A._saveUser__closure, A._saveUser__closure0, A._loadUser_closure, A._loadUser__closure, A._loadUser__closure0, A._loadUsers_closure, A._loadUsers__closure, A._loadUsers__closure0, A.userUIReducer_closure, A.editingReducer__closure15, A.userListReducer__closure, A._viewUserList_closure, A._filterUsersByCustom1_closure, A._filterUsersByCustom1_closure0, A._filterUsersByCustom2_closure, A._filterUsersByCustom2_closure0, A._filterUsersByCustom3_closure, A._filterUsersByCustom3_closure0, A._filterUsersByCustom4_closure, A._filterUsersByCustom4_closure0, A._filterUsersByState_closure, A._filterUsersByState_closure0, A._filterUsers_closure, A._sortUsers_closure, A._startListMultiselect_closure9, A._addToListMultiselect_closure9, A._removeFromListMultiselect_closure9, A._clearListMultiselect_closure9, A._archiveUserSuccess_closure, A._deleteUserSuccess_closure, A._restoreUserSuccess_closure, A._removeUserSuccess_closure, A._addUser_closure, A._updateUser_closure, A._updateAuthUser_closure, A._connectOAuthUser_closure, A._disconnectOAuthUser_closure, A._disconnectOAuthMailer_closure, A._connectGmailUser_closure, A._setLoadedUser_closure, A._setLoadedUsers_closure, A._setLoadedUsers__closure, A._setLoadedUsers__closure0, A._setLoadedUsers_closure0, A._setLoadedCompany_closure5, A._setLoadedCompany__closure5, A._setLoadedCompany__closure6, A._setLoadedCompany_closure6, A.memoizedFilteredUserList_closure, A.filteredUsersSelector_closure, A.memoizedUserList_closure, A.userList_closure, A.memoizedGmailUserList_closure, A.gmailUserList_closure, A.memoizedMicrosoftUserList_closure, A.microsoftUserList_closure, A.handleVendorAction_closure, A.handleVendorAction_closure0, A._editVendor_closure, A._viewVendor_closure, A._viewVendorList_closure0, A._viewVendorList__closure, A._archiveVendor_closure, A._archiveVendor__closure, A._archiveVendor__closure0, A._archiveVendor__closure1, A._deleteVendor_closure, A._deleteVendor__closure, A._deleteVendor__closure0, A._deleteVendor__closure1, A._restoreVendor_closure, A._restoreVendor__closure, A._restoreVendor__closure0, A._restoreVendor__closure1, A._saveVendor_closure, A._saveVendor__closure, A._saveVendor__closure0, A._loadVendor_closure, A._loadVendor__closure, A._loadVendor__closure0, A._loadVendors_closure, A._loadVendors__closure, A._loadVendors___closure, A._loadVendors____closure, A._loadVendors_____closure, A._loadVendors__closure0, A._saveDocument_closure8, A._saveDocument__closure17, A._saveDocument___closure8, A._saveDocument____closure8, A._saveDocument__closure18, A.vendorUIReducer_closure, A.editingReducer__closure9, A._addContact_closure, A._removeContact_closure, A._updateContact_closure, A.vendorListReducer__closure, A._viewVendorList_closure, A._filterVendorsByCustom1_closure, A._filterVendorsByCustom1_closure0, A._filterVendorsByCustom2_closure, A._filterVendorsByCustom2_closure0, A._filterVendorsByCustom3_closure, A._filterVendorsByCustom3_closure0, A._filterVendorsByCustom4_closure, A._filterVendorsByCustom4_closure0, A._filterVendorsByState_closure, A._filterVendorsByState_closure0, A._filterVendors_closure, A._sortVendors_closure, A._startListMultiselect_closure3, A._addToListMultiselect_closure3, A._removeFromListMultiselect_closure3, A._clearListMultiselect_closure3, A._archiveVendorSuccess_closure, A._deleteVendorSuccess_closure, A._restoreVendorSuccess_closure, A._addVendor_closure, A._addVendor__closure, A._updateVendor_closure, A._updateVendor__closure, A._setLoadedVendor_closure, A._setLoadedVendor__closure, A.memoizedDropdownVendorList_closure, A.dropdownVendorsSelector_closure, A.memoizedFilteredVendorList_closure, A.filteredVendorsSelector_closure, A.memoizedCalculateVendorBalance_closure, A.calculateVendorBalance_closure, A.VendorState_loadVendors_closure0, A.VendorState_loadVendors_closure1, A.VendorState_loadVendors_closure, A.handleWebhookAction_closure, A._editWebhook_closure, A._viewWebhook_closure, A._viewWebhookList_closure0, A._viewWebhookList__closure, A._archiveWebhook_closure, A._archiveWebhook__closure, A._archiveWebhook__closure0, A._archiveWebhook__closure1, A._deleteWebhook_closure, A._deleteWebhook__closure, A._deleteWebhook__closure0, A._deleteWebhook__closure1, A._restoreWebhook_closure, A._restoreWebhook__closure, A._restoreWebhook__closure0, A._restoreWebhook__closure1, A._saveWebhook_closure, A._saveWebhook__closure, A._saveWebhook__closure0, A._loadWebhook_closure, A._loadWebhook__closure, A._loadWebhook__closure0, A._loadWebhooks_closure, A._loadWebhooks__closure, A._loadWebhooks__closure0, A.webhookUIReducer_closure, A.editingReducer__closure26, A.webhookListReducer__closure, A._viewWebhookList_closure, A._filterWebhooksByCustom1_closure, A._filterWebhooksByCustom1_closure0, A._filterWebhooksByCustom2_closure, A._filterWebhooksByCustom2_closure0, A._filterWebhooksByState_closure, A._filterWebhooksByState_closure0, A._filterWebhooks_closure, A._sortWebhooks_closure, A._startListMultiselect_closure14, A._addToListMultiselect_closure14, A._removeFromListMultiselect_closure14, A._clearListMultiselect_closure14, A._archiveWebhookSuccess_closure, A._deleteWebhookSuccess_closure, A._restoreWebhookSuccess_closure, A._addWebhook_closure, A._updateWebhook_closure, A._setLoadedWebhook_closure, A.memoizedFilteredWebhookList_closure, A.filteredWebhooksSelector_closure, A.WebhookState_loadWebhooks_closure0, A.WebhookState_loadWebhooks_closure1, A.WebhookState_loadWebhooks_closure, A.ActionMenuButton_build_closure, A.ActionMenuButton_build_closure0, A.ActionMenuButton_build_closure1, A._AppBottomBarState_build__closure14, A._AppBottomBarState_build___closure8, A._AppBottomBarState_build____closure1, A._AppBottomBarState_build_____closure2, A._AppBottomBarState_build__closure12, A._AppBottomBarState_build___closure6, A._AppBottomBarState_build____closure0, A._AppBottomBarState_build_____closure1, A._AppBottomBarState_build__closure2, A._AppBottomBarState_build___closure0, A._AppBottomBarState_build____closure, A._AppBottomBarState_build_____closure, A._AppBottomBarState_build__closure10, A._AppBottomBarState_build___closure4, A._AppBottomBarState_build__closure8, A._AppBottomBarState_build___closure3, A._AppBottomBarState_build__closure6, A._AppBottomBarState_build___closure2, A._AppBottomBarState_build__closure4, A._AppBottomBarState_build___closure1, A._AppBottomBarState_build___onColumnsPressed_closure, A._AppBottomBarState_build___onColumnsPressed__closure, A._AppBottomBarState_build___onColumnsPressed__closure0, A._AppBottomBarState_build___onColumnsPressed__closure1, A.CustomFieldSelector_build_closure0, A.CustomFieldSelector_build__closure, A.CustomFieldSelector_build___closure, A._ChangeLayoutBannerState_build__closure, A.ConfirmEmail_build___closure, A.ConfirmEmailVM_fromStore_closure2, A.ConfirmEmailVM_fromStore__closure, A._DesktopSessionTimeoutState_initState_closure, A._DesktopSessionTimeoutState_build__closure, A.MessageDialog_build_closure, A.ErrorDialog_build__closure, A._HealthCheckDialogState_runCheck_closure0, A._HealthCheckDialogState_runCheck_closure1, A._HealthCheckDialogState_clearCache_closure0, A._HealthCheckDialogState_clearCache__closure, A._HealthCheckDialogState_clearCache_closure1, A.multiselectDialog_closure, A.multiselectDialog__closure, A.MultiSelectListState_build_closure, A.MultiSelectListState_build_closure0, A.MultiSelectListState_build_closure2, A.MultiSelectListState_build_closure3, A.MultiSelectListState_build_closure4, A.DismissibleEntity_build_closure, A.DismissibleEntity_build_closure0, A.DismissibleEntity_build_closure1, A.DismissibleEntity_build_closure2, A.DismissibleEntity_build_closure3, A._DocumentGridState_build_closure, A._DocumentGridState_build__closure2, A._DocumentGridState_build__closure0, A._DocumentGridState_build__closure1, A._DocumentGridState_build__closure, A.DocumentTile_build_closure1, A.DocumentTile_build__closure, A.DocumentTile_build___closure, A.DocumentTile_build___closure0, A.DocumentTile_build_closure0, A.EditScaffold_build__closure3, A.EditScaffold_build_closure3, A.EditScaffold_build__closure2, A.EditScaffold_build__closure1, A.EditScaffold_build___closure, A.EditScaffold_build_closure6, A.EditScaffold_build_closure7, A.EditScaffold_build_closure8, A.EditScaffold_build__closure, A.EditScaffold_build_closure9, A.showEntityActionsDialog_closure, A.showEntityActionsDialog_closure0, A._EntityListTileState_build_closure3, A._EntityListTileState_build_closure4, A._EntitiesListTileState_build_closure2, A._EntitiesListTileState_build_closure3, A._EntityDropdownState__showOptions_closure, A._EntityDropdownState__showOptions__closure, A._EntityDropdownState__showOptions__closure1, A._EntityDropdownState_build__closure8, A._EntityDropdownState_build_closure4, A._EntityDropdownState_build__closure0, A._EntityDropdownState_build__closure1, A._EntityDropdownState_build__closure2, A._EntityDropdownState_build_closure1, A._EntityDropdownState_build_closure3, A._EntityDropdownState_build_closure__wrapUp, A._EntityDropdownState_build___wrapUp_closure, A._EntityDropdownState_build__closure3, A._EntityDropdownState_build__closure4, A._EntityDropdownState_build__closure5, A._EntityDropdownState_build_closure2, A._EntityDropdownState_build__closure7, A._EntityDropdownState_build__closure6, A._EntityDropdownState_build_closure5, A._EntityDropdownState_build___closure, A._EntityDropdownState_build____closure, A._EntityDropdownState_build____closure0, A._EntityDropdownDialogState_build__selectEntity, A._EntityDropdownDialogState_build__headerRow_closure, A._EntityDropdownDialogState_build__headerRow__closure, A._EntityDropdownDialogState_build__createList_closure, A._EntityDropdownDialogState_build__createList_closure0, A._EntityDropdownDialogState_build__createList__closure, A.EntityTopFilter_build_closure, A.EntityTopFilter_build__closure0, A.EntityTopFilter_build__closure, A.EntityTopFilter_build___closure, A.EntityTopFilter_build___closure0, A.EntityTopFilterHeader_build_closure2, A.EntityTopFilterHeader_build__closure0, A.EntityTopFilterHeader_build__closure, A.EntityTopFilterHeader_build___closure, A.AppDropdownButton_build_closure, A.AppToggleButtons_build__closure, A.AppToggleButtons_build__closure0, A.BoolDropdownButton_build_closure, A.BoolDropdownButton_build_closure0, A.BoolDropdownButton_build_closure1, A.BoolDropdownButton_build_closure3, A.ClientPicker_build_closure, A._FormColorPickerState_didChangeDependencies_closure, A._FormColorPickerState_didChangeDependencies_closure0, A._FormColorPickerState__showPicker_closure, A._FormColorPickerState__showPicker__closure, A._CustomFieldState_build_closure, A._CustomFieldState_build_closure1, A._CustomFieldState_build_closure2, A._DatePickerState_build_closure1, A._DecoratedFormFieldState_build_closure2, A._DecoratedFormFieldState_build_closure0, A._DecoratedFormFieldState_build_closure1, A.DesignPicker_build_closure1, A.DesignPicker_build_closure, A.DesignPicker_build_closure0, A._DurationPickerState_build_closure1, A._DurationPickerState_build_closure, A._DurationPickerState_build__closure0, A._DurationPickerState_build_closure0, A.DynamicSelector_build_closure0, A.DynamicSelector_build_closure, A.DynamicSelector_build_closure1, A.NotificationSettings_build_closure, A.NotificationSettings_build_closure0, A.NotificationSettings_build_closure1, A.NotificationSettings_build__closure, A._NotificationSelector_build_closure, A._PasswordFormFieldState_build_closure0, A.ProjectPicker_build_closure0, A.ProjectPicker_build__closure, A.SaveCancelButtons_build_closure, A.SaveCancelButtons_build_closure0, A._TimePickerState_build_closure0, A._TimePickerState_build__closure, A._TimePickerState_build__closure0, A.VendorPicker_build_closure0, A.VendorPicker_build__closure, A.HistoryDrawer_build_closure, A._HistoryListTileState_build__closure, A._InvoiceEmailViewState_dispose_closure, A._InvoiceEmailViewState__loadTemplate_closure0, A._InvoiceEmailViewState__buildTemplateDropdown_closure, A._InvoiceEmailViewState__buildTemplateDropdown__closure0, A._InvoiceEmailViewState__buildTemplateDropdown_closure0, A._InvoiceEmailViewState__buildTemplateDropdown_closure1, A._InvoiceEmailViewState__buildEdit__closure, A._InvoiceEmailViewState__buildEdit_closure0, A._InvoiceEmailViewState__buildEdit_closure1, A._InvoiceEmailViewState_build_closure, A._InvoiceEmailViewState_build_closure0, A._InvoiceEmailViewState_build_closure1, A._InvoiceEmailViewState_build_closure2, A._TaxRateDropdownState_didChangeDependencies_closure, A._TaxRateDropdownState_didChangeDependencies_closure0, A._TaxRateDropdownState_build_closure, A._TaxRateDropdownState_build_closure0, A._TaxRateDropdownState_build_closure1, A._TaxRateDropdownState_build_closure4, A._TaxRateDropdownState_build_closure3, A.TaxRateField_build_closure, A.TaxRateField_build_closure0, A._LinkTextRelatedEntityState_build_closure2, A._LinkTextRelatedEntityState_build_closure1, A._ListFilterState_build_closure0, A._ListFilterState_build_closure4, A._ListFilterState_build__closure2, A._ListFilterState_build__closure3, A._ListFilterState_build_closure3, A._ListFilterState_build_closure2, A._ListFilterState_build__closure4, A._ListFilterState_build_closure7, A._ListFilterState_build__closure, A._ListFilterState_build___closure0, A._ListFilterState_build__closure0, A._ListFilterState_build___closure, A._ListFilterState_build_closure6, A._ListFilterState_build_closure5, A._ListFilterState_build__closure1, A.ListScaffold_build_closure0, A.ListScaffold_build_closure5, A.ListScaffold_build_closure4, A._LiveTextState_initState_closure, A.MainScreen_build__closure, A._MenuDrawerState_build__companyLogo, A._MenuDrawerState_build__companyLogo_closure, A._MenuDrawerState_build__companyListItem, A._MenuDrawerState_build__companyListItem_closure, A._MenuDrawerState_build__companyListItem_closure2, A._MenuDrawerState_build__companyListItem_closure3, A._MenuDrawerState_build_closure, A._MenuDrawerState_build__closure5, A._MenuDrawerState_build_closure0, A._MenuDrawerState_build__closure4, A._MenuDrawerState_build_closure3, A._MenuDrawerState_build__closure3, A._MenuDrawerState_build_closure1, A._MenuDrawerState_build_closure2, A._MenuDrawerState_build__closure2, A._MenuDrawerState_build__closure1, A._MenuDrawerState_build__closure0, A._MenuDrawerState_build__closure, A._DrawerTileState_build_closure3, A._DrawerTileState_build_closure4, A.SidebarFooter_build__closure, A.SidebarFooterCollapsed_build_closure0, A.SidebarFooterCollapsed_build_closure, A._showContactUs_closure, A._showUpdate_closure, A._showAbout_closure, A._showAbout___closure1, A._showAbout___closure0, A._showAbout_____closure, A._showAbout___closure, A._ContactUsDialogState__sendMessage_closure0, A._ContactUsDialogState__sendMessage__closure1, A._ContactUsDialogState__sendMessage_closure1, A._ContactUsDialogState_build_closure1, A._ContactUsDialogState_build_closure2, A.MenuDrawerVM_fromStore_closure1, A.MenuDrawerVM_fromStore__closure, A.MenuDrawerVM_fromStore_closure, A.MenuDrawerVM_fromStore_closure0, A.MenuDrawerVM_fromStore__closure0, A.MenuDrawerVM_fromStore___closure, A.MenuDrawerVM_fromStore___closure0, A._DropDownMultiSelectState_initState_closure, A._DropDownMultiSelectState_build___closure2, A._DropDownMultiSelectState_build___closure3, A._DropDownMultiSelectState_build__closure1, A._DropDownMultiSelectState_build__closure2, A._DropDownMultiSelectState_build___closure, A._DropDownMultiSelectState_build__closure0, A._DropDownMultiSelectState_build____closure, A.AppPinput_build_closure, A.PortalLinks_build_closure1, A.PortalLinks_build_closure2, A.SearchText_build_closure0, A._AccountSmsVerificationState__sendCode_closure0, A._AccountSmsVerificationState__sendCode_closure1, A._AccountSmsVerificationState__verifyCode_closure0, A._AccountSmsVerificationState__verifyCode_closure1, A._AccountSmsVerificationState_build_closure, A._AccountSmsVerificationState_build_closure0, A._AccountSmsVerificationState_build_closure1, A._UserSmsVerificationState_initState_closure, A._UserSmsVerificationState__sendCode_closure0, A._UserSmsVerificationState__sendCode_closure1, A._UserSmsVerificationState__verifyCode_closure0, A._UserSmsVerificationState__verifyCode_closure1, A._UserSmsVerificationState_build_closure, A._SystemLogViewerState_build_closure, A._SystemLogViewerState_build_closure0, A._SystemLogViewerState_build_closure1, A.AppPaginatedDataTableState__getProgressIndicatorRowFor_closure, A.AppPaginatedDataTableState_build_closure, A.EntityDataTableSource_getRow_closure, A.EntityDataTableSource_getRow_closure4, A._EntityListState_initState_closure, A._EntityListState_build_closure, A._EntityListState_build__closure, A._EntityListState_build__closure3, A._EntityListState_build__closure8, A._EntityListState_build___closure, A._EntityListState_build___closure0, A._EntityListState_build__closure5, A._EntityListState_build__closure6, A._EntityListState_build__closure7, A._EntityListState_build_closure0, A._EntityListState_build_closure1, A._EntityListState_build__closure13, A._EntityListState_build_closure2, A._EntityListState_build__closure11, A._EntityListState_build__closure10, A._EntityListState_build___closure2, A._EntityListState_build_closure5, A._EntityListState_build__closure9, A._EntityListState_build_closure4, A._UpgradeDialogState_initState_closure, A._UpgradeDialogState_initState_closure1, A._UpgradeDialogState__buildProductList_closure, A._UpgradeDialogState__buildProductList_closure1, A._VariablesHelpState_build_closure, A._VariablesHelpState_build_closure0, A._VariablesHelpState_build_closure1, A._VariableGrid_build__closure, A.ViewScaffold_build_closure4, A._WebSessionTimeoutState_initState_closure, A.InitScreen_build_closure0, A._LoginState__submitSignUpForm_closure0, A._LoginState__submitSignUpForm_closure1, A._LoginState__submitSignUpForm_closure2, A._LoginState__submitLoginForm_closure0, A._LoginState__submitLoginForm___closure, A._LoginState__submitLoginForm_closure1, A._LoginState__submitLoginForm_closure2, A._LoginState_build_closure2, A._LoginState_build_closure3, A._LoginState_build_closure4, A._LoginState_build_closure5, A._LoginState_build_closure6, A._LoginState_build_closure7, A._LoginState_build_closure8, A._LoginState_build_closure9, A.LoginVM_fromStore__handleLogin, A.LoginVM_fromStore__handleLogin_closure, A.LoginVM_fromStore__formatApiUrl, A.LoginVM_fromStore_closure3, A.LoginVM_fromStore___closure2, A.LoginVM_fromStore_closure4, A.LoginVM_fromStore___closure1, A.LoginVM_fromStore_closure5, A.LoginVM_fromStore___closure0, A.LoginVM_fromStore__closure4, A.LoginVM_fromStore_closure6, A.LoginVM_fromStore___closure, A.LoginVM_fromStore__closure2, A.LoginVM_fromStore_closure7, A.LoginVM_fromStore__closure0, A.LoginVM_fromStore_closure8, A.LoginVM_fromStore__closure, A.LoginVM_fromStore_closure1, A.LoginVM_fromStore__closure7, A.LoginVM_fromStore_closure0, A.LoginVM_fromStore_closure, A.LoginVM_fromStore__closure8, A.LoginVM_fromStore_closure2, A.BankAccountListItem_build_closure, A.BankAccountListVM_fromStore__handleRefresh, A.BankAccountListVM_fromStore_closure, A.BankAccountListVM_fromStore_closure0, A.BankAccountScreen_connectAccounts_closure, A.BankAccountScreen__connectAccounts_closure, A.BankAccountScreen__connectAccounts_closure0, A.BankAccountScreen_build_closure12, A.BankAccountScreen_build_closure9, A.BankAccountScreen_build_closure5, A.BankAccountScreen_build_closure6, A.BankAccountScreen_build_closure7, A.BankAccountScreen_build_closure8, A.BankAccountScreenVM_fromStore_closure, A.BankAccountScreenVM_fromStore__closure, A.BankAccountScreenVM_fromStore__closure0, A._BankAccountEditState_didChangeDependencies_closure, A._BankAccountEditState_didChangeDependencies_closure0, A._BankAccountEditState_dispose_closure, A._BankAccountEditState__onChanged_closure, A._BankAccountEditState_build_closure3, A._BankAccountEditState_build_closure4, A._BankAccountEditState_build_closure0, A._BankAccountEditState_build_closure, A._BankAccountEditState_build__closure0, A._BankAccountEditState_build_closure2, A._BankAccountEditState_build__closure, A.BankAccountEditScreen_build_closure0, A.BankAccountEditVM_BankAccountEditVM$fromStore_closure, A.BankAccountEditVM_BankAccountEditVM$fromStore_closure1, A.BankAccountEditVM_BankAccountEditVM$fromStore_closure0, A.BankAccountEditVM_BankAccountEditVM$fromStore___closure, A.BankAccountEditVM_BankAccountEditVM$fromStore___closure0, A.BankAccountEditVM_BankAccountEditVM$fromStore____closure, A.BankAccountViewScreen_build_closure0, A.ClientListItem_build__closure, A.ClientListItem_build__closure3, A.ClientListVM_fromStore__handleRefresh, A.ClientListVM_fromStore_closure, A.ClientListVM_fromStore_closure0, A._ClientPdfViewState_loadPDF_closure0, A._ClientPdfViewState_loadPDF_closure1, A._ClientPdfViewState_loadPDF__closure0, A._ClientPdfViewState_build_closure1, A._ClientPdfViewState_build_closure, A._ClientPdfViewState_build_closure0, A._ClientPdfViewState_build_closure3, A._ClientPdfViewState_build_closure2, A._ClientPdfViewState_build_closure5, A._ClientPdfViewState_build_closure4, A._ClientPdfViewState_build__closure4, A._ClientPdfViewState_build__closure2, A._ClientPdfViewState_build_closure13, A.ClientPdfScreen_build_closure0, A.ClientPresenter_getField_closure0, A.ClientScreen_build_closure7, A.ClientScreen_build_closure4, A.ClientScreen_build_closure0, A.ClientScreen_build_closure1, A.ClientScreen_build_closure2, A.ClientScreen_build_closure3, A._ClientEditState_build_closure, A._ClientEditState_build_closure0, A.ClientEditBillingAddressState_didChangeDependencies_closure, A.ClientEditBillingAddressState_didChangeDependencies_closure0, A.ClientEditBillingAddressState_dispose_closure, A.ClientEditBillingAddressState__onChanged_closure, A.ClientEditBillingAddressState_build_closure, A.ClientEditBillingAddressState_build__closure0, A.ClientEditBillingAddressState_build__closure, A._ClientEditContactsState__showContactEditor_closure, A._ClientEditContactsState__showContactEditor__closure, A._ClientEditContactsState_build_closure, A._ClientEditContactsState_build_closure0, A.ContactEditDetailsState_didChangeDependencies_closure, A.ContactEditDetailsState_didChangeDependencies_closure0, A.ContactEditDetailsState_dispose_closure, A.ContactEditDetailsState__onChanged_closure, A.ContactEditDetailsState_build_closure0, A.ContactEditDetailsState_build_closure, A.ContactEditDetailsState_build_closure2, A.ContactEditDetailsState_build_closure1, A.ContactEditDetailsState_build_closure4, A.ContactEditDetailsState_build_closure3, A.ContactEditDetailsState_build_closure6, A.ContactEditDetailsState_build_closure5, A.ContactEditDetailsState_build_closure7, A.ContactEditDetailsState_build_closure8, A.ContactEditDetailsState_build_closure9, A.ContactEditDetailsState_build_closure10, A.ContactEditDetailsState_build_closure11, A.ContactEditDetailsState_build_closure12, A.ContactEditDetailsState_build___closure, A.ContactEditDetailsState_build__closure1, A.ContactEditDetailsState_build__closure, A.ClientEditContactsScreen_build_closure0, A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure0, A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure1, A.ClientEditDetailsState_didChangeDependencies_closure, A.ClientEditDetailsState_didChangeDependencies_closure0, A.ClientEditDetailsState_dispose_closure, A.ClientEditDetailsState__onChanged_closure, A.ClientEditDetailsState_build_closure, A.ClientEditDetailsState_build_closure0, A.ClientEditDetailsState_build__closure2, A.ClientEditDetailsState_build_closure1, A.ClientEditDetailsState_build__closure1, A.ClientEditDetailsState_build_closure3, A.ClientEditDetailsState_build__closure0, A.ClientEditDetailsState_build_closure2, A.ClientEditDetailsState_build_closure4, A.ClientEditDetailsState_build__closure, A.ClientEditNotesState_didChangeDependencies_closure, A.ClientEditNotesState_didChangeDependencies_closure0, A.ClientEditNotesState_dispose_closure, A.ClientEditNotesState__onChanged_closure, A.ClientEditNotesState_build_closure, A.ClientEditNotesState_build_closure0, A.ClientEditNotesState_build__closure0, A.ClientEditNotesState_build_closure1, A.ClientEditNotesState_build__closure, A.ClientEditSettingsState_didChangeDependencies_closure, A.ClientEditSettingsState_didChangeDependencies_closure0, A.ClientEditSettingsState_dispose_closure, A.ClientEditSettingsState__onChanged_closure, A.ClientEditSettingsState_build_closure, A.ClientEditSettingsState_build__closure3, A.ClientEditSettingsState_build_closure0, A.ClientEditSettingsState_build__closure2, A.ClientEditSettingsState_build_closure1, A.ClientEditSettingsState_build_closure2, A.ClientEditSettingsState_build__closure1, A.ClientEditSettingsState_build_closure3, A.ClientEditSettingsState_build_closure4, A.ClientEditSettingsState_build__closure0, A.ClientEditSettingsState_build_closure5, A.ClientEditSettingsState_build__closure, A.ClientEditShippingAddressState_didChangeDependencies_closure, A.ClientEditShippingAddressState_didChangeDependencies_closure0, A.ClientEditShippingAddressState_dispose_closure, A.ClientEditShippingAddressState__onChanged_closure, A.ClientEditShippingAddressState_build_closure, A.ClientEditShippingAddressState_build__closure0, A.ClientEditShippingAddressState_build__closure, A.ClientEditScreen_build_closure0, A.ClientEditVM_ClientEditVM$fromStore_closure, A.ClientEditVM_ClientEditVM$fromStore__closure, A.ClientEditVM_ClientEditVM$fromStore__closure0, A.ClientEditVM_ClientEditVM$fromStore_closure1, A.ClientEditVM_ClientEditVM$fromStore_closure0, A.ClientEditVM_ClientEditVM$fromStore___closure, A.ClientEditVM_ClientEditVM$fromStore___closure0, A.ClientEditVM_ClientEditVM$fromStore___closure1, A.ClientEditVM_ClientEditVM$fromStore____closure, A._ClientViewState_build_closure, A._ClientViewDetailsState_build__buildDetailsList_closure, A._ClientViewFullwidthState_build_closure, A._ClientViewFullwidthState_build__closure2, A._ClientViewLedgerState_build_closure, A.ClientOverview_build_closure, A.ClientOverview_build_closure0, A.ClientViewPaymentMethods_build__closure, A.ClientViewScreen_build_closure0, A.ClientViewVM_ClientViewVM$fromStore__handleRefresh, A.ClientViewVM_ClientViewVM$fromStore_closure, A.ClientViewVM_ClientViewVM$fromStore_closure0, A.ClientViewVM_ClientViewVM$fromStore__closure, A.ClientViewVM_ClientViewVM$fromStore__closure0, A.ClientViewVM_ClientViewVM$fromStore___closure, A._CompanyGatewayListState_build_closure, A.CompanyGatewayListItem_build_closure, A.CompanyGatewayListVM_fromStore__handleRefresh, A.CompanyGatewayListVM_fromStore_closure, A.CompanyGatewayListVM_fromStore_closure1, A.CompanyGatewayListVM_fromStore__closure, A.CompanyGatewayListVM_fromStore__closure0, A.CompanyGatewayScreen_build_closure, A.CompanyGatewayScreen_build__closure0, A.CompanyGatewayScreen_build__closure1, A.CompanyGatewayScreen_build_closure0, A.CompanyGatewayScreen_build__closure, A.CompanyGatewayScreen_build_closure2, A.CompanyGatewayScreen_build_closure4, A.CompanyGatewayScreen_build_closure5, A.CompanyGatewayScreen_build_closure6, A.CompanyGatewayScreen_build_closure7, A.CompanyGatewayScreenVM_fromStore_closure, A._CompanyGatewayEditState_didChangeDependencies_closure, A._CompanyGatewayEditState_build_closure, A._CompanyGatewayEditState_build_closure0, A._CompanyGatewayEditState_build__closure17, A._CompanyGatewayEditState_build_closure3, A._CompanyGatewayEditState_build__closure16, A._CompanyGatewayEditState_build_closure4, A._CompanyGatewayEditState_build__closure15, A._CompanyGatewayEditState_build_closure6, A._CompanyGatewayEditState_build__closure14, A._CompanyGatewayEditState_build_closure5, A._CompanyGatewayEditState_build_closure7, A._CompanyGatewayEditState_build__closure13, A._CompanyGatewayEditState_build___closure, A._CompanyGatewayEditState_build_closure8, A._CompanyGatewayEditState_build__closure12, A._CompanyGatewayEditState_build_closure9, A._CompanyGatewayEditState_build__closure11, A._CompanyGatewayEditState_build_closure10, A._CompanyGatewayEditState_build__closure10, A._CompanyGatewayEditState_build_closure11, A._CompanyGatewayEditState_build__closure9, A._CompanyGatewayEditState_build_closure12, A._CompanyGatewayEditState_build__closure8, A._CompanyGatewayEditState_build_closure13, A._CompanyGatewayEditState_build__closure7, A._CompanyGatewayEditState_build_closure14, A._CompanyGatewayEditState_build__closure6, A._CompanyGatewayEditState_build_closure15, A._CompanyGatewayEditState_build__closure5, A._CompanyGatewayEditState_build_closure16, A._CompanyGatewayEditState_build__closure4, A._CompanyGatewayEditState_build_closure17, A._CompanyGatewayEditState_build__closure3, A._CompanyGatewayEditState_build_closure18, A._CompanyGatewayEditState_build__closure2, A._CompanyGatewayEditState_build_closure19, A._CompanyGatewayEditState_build__closure1, A._CompanyGatewayEditState_build_closure20, A._CompanyGatewayEditState_build__closure0, A._CompanyGatewayEditState_build_closure21, A._CompanyGatewayEditState_build_closure22, A.GatewayConfigSettings_build_closure0, A.GatewayConfigSettings_build__closure, A._GatewayConfigFieldState__obscureText_closure, A._GatewayConfigFieldState_build_closure0, A._GatewayConfigFieldState_build_closure, A._GatewayConfigFieldState_build_closure1, A._GatewayConfigFieldState_build_closure2, A._GatewayConfigFieldState_build_closure3, A._LimitEditorState__onChanged_closure, A._LimitEditorState__onChanged_closure0, A._LimitEditorState_build_closure, A._LimitEditorState_build_closure0, A._FeesEditorState_dispose_closure, A._FeesEditorState_didChangeDependencies_closure, A._FeesEditorState_didChangeDependencies_closure0, A._FeesEditorState__onChanged_closure, A._FeesEditorState__onChanged__closure, A._FeesEditorState_build_closure, A._FeesEditorState_build__closure2, A._FeesEditorState_build___closure2, A._FeesEditorState_build_closure0, A._FeesEditorState_build__closure1, A._FeesEditorState_build___closure1, A._FeesEditorState_build_closure1, A._FeesEditorState_build__closure0, A._FeesEditorState_build___closure0, A._FeesEditorState_build_closure2, A._FeesEditorState_build__closure, A._FeesEditorState_build___closure, A.CompanyGatewayEditScreen_build_closure0, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure1, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure0, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure0, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure0, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure2, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure0, A._CompanyGatewayOverview_build_closure2, A.CompanyGatewayViewScreen_build_closure0, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__handleRefresh, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure0, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure2, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore____closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure0, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure1, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure1, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure2, A.CreditEmailScreen_build_closure1, A.CreditEmailScreen_build_closure0, A.EmailCreditVM_EmailCreditVM$fromStore_closure, A.EmailCreditVM_EmailCreditVM$fromStore__closure, A.CreditListItem_build__closure, A.CreditListItem_build__closure3, A.CreditListVM_fromStore__handleRefresh, A.CreditListVM_fromStore_closure, A.CreditListVM_fromStore_closure0, A.CreditPdfScreen_build_closure0, A.CreditScreen_build_closure7, A.CreditScreen_build_closure4, A.CreditScreen_build_closure0, A.CreditScreen_build_closure1, A.CreditScreen_build_closure2, A.CreditScreen_build_closure3, A._CreditEditState_build_closure1, A._CreditEditState_build_closure2, A._CreditEditState_build__closure, A._CreditEditState_build___closure0, A._CreditEditState_build___closure1, A._CreditEditState_build___closure, A.CreditEditDetailsScreen_build_closure0, A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure, A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure0, A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure, A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure0, A.CreditEditItemsScreen_build_closure0, A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure, A.CreditEditItemsVM_CreditEditItemsVM$fromStore__closure, A.CreditEditNotesScreen_build_closure0, A.CreditEditNotesVM_CreditEditNotesVM$fromStore_closure, A.CreditEditPDFScreen_build_closure0, A.CreditEditScreen_build_closure0, A.CreditEditVM_CreditEditVM$fromStore_closure, A.CreditEditVM_CreditEditVM$fromStore___closure0, A.CreditEditVM_CreditEditVM$fromStore___closure1, A.CreditEditVM_CreditEditVM$fromStore___closure2, A.CreditEditVM_CreditEditVM$fromStore____closure, A.CreditEditVM_CreditEditVM$fromStore_closure0, A.CreditEditVM_CreditEditVM$fromStore_closure1, A.CreditEditVM_CreditEditVM$fromStore_closure2, A.CreditEditVM_CreditEditVM$fromStore__closure, A.CreditEditVM_CreditEditVM$fromStore__closure0, A.CreditEditVM_CreditEditVM$fromStore___closure, A.CreditViewScreen_build_closure0, A.CreditViewVM_CreditViewVM$fromStore__handleRefresh, A.CreditViewVM_CreditViewVM$fromStore_closure, A.CreditViewVM_CreditViewVM$fromStore_closure0, A.CreditViewVM_CreditViewVM$fromStore_closure1, A.CreditViewVM_CreditViewVM$fromStore__closure, A.CreditViewVM_CreditViewVM$fromStore__closure0, A.CreditViewVM_CreditViewVM$fromStore___closure, A.CreditViewVM_CreditViewVM$fromStore_closure2, A._DashboardChartState__onSelectionChanged_closure, A._DashboardChartState__onSelectionChanged_closure0, A._DashboardChartState_build_closure, A._DashboardDateRangePickerState_build_closure, A._DashboardDateRangePickerState_build_closure0, A._DashboardDateRangePickerState_build_closure1, A._DashboardDateRangePickerState_build_closure2, A._DashboardDateRangePickerState_build_closure5, A._DashboardDateRangePickerState_build_closure6, A._DashboardDateRangePickerState_build__closure, A.DashboardPanels__showDateOptions_closure, A.DashboardPanels__header__closure, A.DashboardPanels__header__closure0, A.DashboardPanels__header__closure1, A.DashboardPanels__header___closure0, A.DashboardPanels__header___closure1, A.DashboardPanels__header__closure2, A.DashboardPanels__header___closure, A.DashboardPanels__header__closure3, A.DashboardPanels__header__closure4, A.DashboardPanels__header___showSettings_closure, A.DashboardPanels__runningTasks_closure, A.DashboardPanels_build_closure, A.DashboardPanels_build_closure0, A.DashboardPanels_build_closure1, A.DashboardPanels_build_closure2, A.DashboardPanels_build_closure3, A.DashboardPanels_build__closure2, A.__DashboardPanelState_build_closure, A.__OverviewPanelState_build_closure, A.__DashboardSettingsState_build_closure, A.__DashboardSettingsState_build_closure0, A.__DashboardSettingsState_build_closure1, A.__DashboardSettingsState_build_closure2, A.__DashboardSettingsState_build__closure6, A.__DashboardSettingsState_build__closure2, A.__DashboardSettingsState_build__closure4, A.__DashboardSettingsState_build__closure0, A.__DashboardSettingsState_build_closure9, A.__DashboardSettingsState_build_closure8, A._DashboardFieldState_build__closure3, A._DashboardFieldState_build_closure0, A._DashboardFieldState_build_closure1, A._DashboardFieldState_build__closure, A._DashboardFieldState_build__closure0, A._DashboardScreenState_initState_closure, A._DashboardScreenState_initState_closure0, A._DashboardScreenState_initState__closure, A._DashboardScreenState_build_closure, A._DashboardScreenState_build_closure0, A._DashboardScreenState_build__closure0, A._DashboardScreenState_build___closure, A._DashboardScreenState_build___closure0, A._DashboardScreenState_build___closure1, A._DashboardScreenState_build_closure3, A.DashboardVM_fromStore__handleRefresh, A.DashboardVM_fromStore_closure, A.DashboardVM_fromStore_closure0, A.DashboardVM_fromStore_closure4, A.DashboardVM_fromStore_closure5, A.DashboardVM_fromStore_closure2, A.DashboardVM_fromStore_closure3, A.DesignListItem_build_closure, A.DesignListVM_fromStore__handleRefresh, A.DesignListVM_fromStore_closure, A.DesignListVM_fromStore_closure0, A.DesignScreen_build_closure7, A.DesignScreen_build_closure4, A.DesignScreen_build_closure0, A.DesignScreen_build_closure1, A.DesignScreen_build_closure2, A.DesignScreen_build_closure3, A._DesignEditState_didChangeDependencies_closure, A._DesignEditState_didChangeDependencies_closure0, A._DesignEditState_dispose_closure, A._DesignEditState__onChanged_closure, A._DesignEditState__loadDesign_closure, A._DesignEditState__loadDesign_closure0, A._DesignEditState__loadPreview_closure0, A._DesignEditState_build_closure2, A._DesignEditState_build_closure, A._DesignEditState_build_closure0, A._DesignEditState_build_closure1, A._DesignSettingsState_build_closure, A._DesignSettingsState_build_closure0, A._DesignSettingsState_build_closure1, A._DesignSettingsState_build__closure2, A._DesignSettingsState_build_closure2, A._DesignSettingsState_build_closure3, A._DesignSettingsState_build__closure1, A._DesignSettingsState_build___closure, A._DesignSettingsState_build____closure, A._DesignSettingsState_build__closure, A._DesignSettingsState_build__closure0, A._PdfDesignPreviewState_build_closure, A.__DesignImportDialogState_build_closure, A.DesignEditScreen_build_closure0, A.DesignEditVM_DesignEditVM$fromStore_closure, A.DesignEditVM_DesignEditVM$fromStore_closure1, A.DesignEditVM_DesignEditVM$fromStore_closure0, A._DesignViewState_build_closure, A._DesignViewState_build_closure0, A._DesignViewState_build_closure1, A._DesignViewState_build_closure2, A._DesignViewState_build_closure3, A._DesignViewState_build_closure4, A._DesignViewState_build_closure5, A._DesignViewState_build_closure6, A.DesignViewScreen_build_closure0, A.DocumentListItem_build__closure, A.DocumentListItem_build__closure3, A.DocumentListBuilder_build__closure1, A.DocumentListVM_fromStore_closure0, A.DocumentScreen_build_closure, A.DocumentScreen_build_closure0, A.DocumentScreen_build_closure1, A.DocumentScreen_build_closure2, A.DocumentScreen_build_closure3, A.DocumentScreen_build_closure4, A.DocumentScreen_build_closure11, A.DocumentScreen_build_closure7, A.DocumentScreen_build_closure8, A.DocumentScreen_build_closure9, A.DocumentScreen_build_closure10, A._DocumentEditState_didChangeDependencies_closure, A._DocumentEditState_didChangeDependencies_closure0, A._DocumentEditState_dispose_closure, A._DocumentEditState__onChanged_closure, A._DocumentEditState_build_closure1, A._DocumentEditState_build_closure0, A._DocumentEditState_build_closure, A._DocumentEditState_build__closure, A._DocumentEditState_build__closure0, A.DocumentEditScreen_build_closure0, A.DocumentEditVM_DocumentEditVM$fromStore_closure1, A.DocumentEditVM_DocumentEditVM$fromStore_closure, A.DocumentEditVM_DocumentEditVM$fromStore_closure0, A.DocumentEditVM_DocumentEditVM$fromStore___closure, A.DocumentEditVM_DocumentEditVM$fromStore___closure0, A.DocumentEditVM_DocumentEditVM$fromStore____closure, A._DocumentViewState_build_closure, A.DocumentViewScreen_build_closure0, A._ExpenseEditState__onSavePressed_closure, A._ExpenseEditState_build_closure1, A._ExpenseEditState_build_closure2, A.ExpenseEditDetailsState_didChangeDependencies_closure, A.ExpenseEditDetailsState_didChangeDependencies_closure0, A.ExpenseEditDetailsState_dispose_closure, A.ExpenseEditDetailsState__onChanged_closure, A.ExpenseEditDetailsState_build_closure1, A.ExpenseEditDetailsState_build__closure18, A.ExpenseEditDetailsState_build_closure, A.ExpenseEditDetailsState_build__closure19, A.ExpenseEditDetailsState_build_closure3, A.ExpenseEditDetailsState_build__closure17, A.ExpenseEditDetailsState_build_closure2, A.ExpenseEditDetailsState_build_closure4, A.ExpenseEditDetailsState_build__closure16, A.ExpenseEditDetailsState_build_closure6, A.ExpenseEditDetailsState_build__closure14, A.ExpenseEditDetailsState_build__closure15, A.ExpenseEditDetailsState_build_closure7, A.ExpenseEditDetailsState_build__closure13, A.ExpenseEditDetailsState_build_closure8, A.ExpenseEditDetailsState_build__closure12, A.ExpenseEditDetailsState_build_closure9, A.ExpenseEditDetailsState_build__closure11, A.ExpenseEditDetailsState_build_closure10, A.ExpenseEditDetailsState_build__closure10, A.ExpenseEditDetailsState_build_closure11, A.ExpenseEditDetailsState_build__closure9, A.ExpenseEditDetailsState_build_closure12, A.ExpenseEditDetailsState_build__closure8, A.ExpenseEditDetailsState_build_closure13, A.ExpenseEditDetailsState_build__closure7, A.ExpenseEditDetailsState_build_closure14, A.ExpenseEditDetailsState_build__closure6, A.ExpenseEditDetailsState_build_closure15, A.ExpenseEditDetailsState_build__closure5, A.ExpenseEditDetailsState_build_closure16, A.ExpenseEditDetailsState_build__closure4, A.ExpenseEditDetailsState_build_closure17, A.ExpenseEditDetailsState_build__closure3, A.ExpenseEditDetailsState_build__closure2, A.ExpenseEditDetailsState_build_closure20, A.ExpenseEditDetailsState_build__closure1, A.ExpenseEditDetailsState_build_closure19, A.ExpenseEditDetailsState_build__closure0, A.ExpenseEditDetailsState_build_closure23, A.ExpenseEditDetailsState_build__closure, A.ExpenseEditDetailsState_build_closure22, A.ExpenseEditNotesState_didChangeDependencies_closure, A.ExpenseEditNotesState_didChangeDependencies_closure0, A.ExpenseEditNotesState_dispose_closure, A.ExpenseEditNotesState__onChanged_closure, A.ExpenseEditSettingsState_didChangeDependencies_closure, A.ExpenseEditSettingsState_didChangeDependencies_closure0, A.ExpenseEditSettingsState_dispose_closure, A.ExpenseEditSettingsState__onChanged_closure, A.ExpenseEditSettingsState__setCurrency_closure, A.ExpenseEditSettingsState__setCurrency_closure0, A.ExpenseEditSettingsState__calculateExchangeRate_closure, A.ExpenseEditSettingsState_build_closure, A.ExpenseEditSettingsState_build__closure11, A.ExpenseEditSettingsState_build_closure0, A.ExpenseEditSettingsState_build__closure7, A.ExpenseEditSettingsState_build__closure8, A.ExpenseEditSettingsState_build__closure9, A.ExpenseEditSettingsState_build_closure1, A.ExpenseEditSettingsState_build__closure6, A.ExpenseEditSettingsState_build__closure5, A.ExpenseEditSettingsState_build_closure3, A.ExpenseEditSettingsState_build__closure3, A.ExpenseEditSettingsState_build__closure4, A.ExpenseEditSettingsState_build_closure4, A.ExpenseEditSettingsState_build_closure7, A.ExpenseEditSettingsState_build_closure5, A.ExpenseEditSettingsState_build_closure6, A.ExpenseEditSettingsState_build_closure8, A.ExpenseEditSettingsState_build__closure1, A.ExpenseEditSettingsState_build_closure10, A.ExpenseEditSettingsState_build__closure0, A.ExpenseEditSettingsState_build_closure11, A.ExpenseEditSettingsState_build__closure, A.ExpenseEditScreen_build_closure0, A.ExpenseEditVM_ExpenseEditVM$fromStore_closure, A.ExpenseEditVM_ExpenseEditVM$fromStore_closure1, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure3, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure4, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure1, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure2, A.ExpenseEditVM_ExpenseEditVM$fromStore_closure0, A.ExpenseEditVM_ExpenseEditVM$fromStore___closure0, A.ExpenseEditVM_ExpenseEditVM$fromStore___closure1, A.ExpenseEditVM_ExpenseEditVM$fromStore____closure, A.ExpenseEditVM_ExpenseEditVM$fromStore_closure4, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure0, A.ExpenseEditVM_ExpenseEditVM$fromStore___closure, A.ExpenseListItem_build__closure, A.ExpenseListItem_build__closure3, A.ExpenseListVM_fromStore__handleRefresh, A.ExpenseListVM_fromStore_closure, A.ExpenseListVM_fromStore_closure0, A.ExpenseScreen_build_closure, A.ExpenseScreen_build_closure0, A.ExpenseScreen_build_closure1, A.ExpenseScreen_build_closure2, A.ExpenseScreen_build_closure3, A.ExpenseScreen_build_closure14, A.ExpenseScreen_build_closure10, A.ExpenseScreen_build_closure6, A.ExpenseScreen_build_closure7, A.ExpenseScreen_build_closure8, A.ExpenseScreen_build_closure9, A._ExpenseViewState_build_closure, A._ExpenseViewScheduleState_build_closure, A.ExpenseViewScreen_build_closure0, A.ExpenseViewVM_ExpenseViewVM$fromStore__handleRefresh, A.ExpenseViewVM_ExpenseViewVM$fromStore_closure, A.ExpenseViewVM_ExpenseViewVM$fromStore_closure0, A.ExpenseViewVM_ExpenseViewVM$fromStore__closure, A.ExpenseViewVM_ExpenseViewVM$fromStore__closure0, A.ExpenseViewVM_ExpenseViewVM$fromStore___closure, A._ExpenseCategoryEditState_didChangeDependencies_closure, A._ExpenseCategoryEditState_didChangeDependencies_closure0, A._ExpenseCategoryEditState_dispose_closure, A._ExpenseCategoryEditState__onChanged_closure, A._ExpenseCategoryEditState_build_closure0, A._ExpenseCategoryEditState_build_closure1, A._ExpenseCategoryEditState_build_closure, A._ExpenseCategoryEditState_build__closure, A._ExpenseCategoryEditState_build__closure0, A._ExpenseCategoryEditState_build__closure1, A._ExpenseCategoryEditState_build___closure, A.ExpenseCategoryEditScreen_build_closure0, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure1, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure0, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure0, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore____closure, A.ExpenseCategoryListItem_build_closure, A.ExpenseCategoryListVM_fromStore__handleRefresh, A.ExpenseCategoryListVM_fromStore_closure, A.ExpenseCategoryListVM_fromStore_closure0, A.ExpenseCategoryScreen_build_closure7, A.ExpenseCategoryScreen_build_closure4, A.ExpenseCategoryScreen_build_closure0, A.ExpenseCategoryScreen_build_closure1, A.ExpenseCategoryScreen_build_closure2, A.ExpenseCategoryScreen_build_closure3, A.ExpenseCategoryViewScreen_build_closure0, A._GroupEditState_didChangeDependencies_closure, A._GroupEditState_didChangeDependencies_closure0, A._GroupEditState_dispose_closure, A._GroupEditState__onChanged_closure, A._GroupEditState_build_closure0, A._GroupEditState_build_closure1, A._GroupEditState_build_closure, A._GroupEditState_build__closure, A._GroupEditState_build__closure0, A.GroupEditScreen_build_closure0, A.GroupEditVM_GroupEditVM$fromStore_closure, A.GroupEditVM_GroupEditVM$fromStore_closure1, A.GroupEditVM_GroupEditVM$fromStore_closure0, A.GroupEditVM_GroupEditVM$fromStore___closure, A.GroupEditVM_GroupEditVM$fromStore___closure0, A.GroupEditVM_GroupEditVM$fromStore____closure, A.GroupListItem_build_closure, A.GroupListVM_fromStore__handleRefresh, A.GroupListVM_fromStore_closure, A.GroupListVM_fromStore_closure0, A.GroupSettingsScreen_build_closure3, A.GroupSettingsScreen_build_closure0, A.GroupViewScreen_build_closure0, A.GroupViewVM_GroupViewVM$fromStore_closure0, A.GroupViewVM_GroupViewVM$fromStore__closure, A.GroupViewVM_GroupViewVM$fromStore__closure0, A.GroupViewVM_GroupViewVM$fromStore___closure, A._InvoiceEditState__onSavePressed_closure, A._InvoiceEditState_build_closure1, A._InvoiceEditState_build_closure2, A._InvoiceEditState_build__closure, A._InvoiceEditState_build___closure0, A._InvoiceEditState_build___closure1, A._InvoiceEditState_build___closure, A.InvoiceEditContacts_build_closure0, A.InvoiceEditContacts_build_closure2, A._ContactListTileState_build_closure, A._ContactListTileState_build_closure0, A._ContactListTileState_build_closure1, A._ContactListTileState_build__closure, A._ContactListTileState_build__closure0, A.InvoiceEditContactsScreen_build_closure0, A.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure, A.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure0, A.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure1, A.InvoiceEditDesktopState_didChangeDependencies_closure, A.InvoiceEditDesktopState_didChangeDependencies_closure0, A.InvoiceEditDesktopState_dispose_closure, A.InvoiceEditDesktopState__onChanged_closure, A.InvoiceEditDesktopState_build_closure, A.InvoiceEditDesktopState_build_closure0, A.InvoiceEditDesktopState_build_closure1, A.InvoiceEditDesktopState_build_closure2, A.InvoiceEditDesktopState_build_closure3, A.InvoiceEditDesktopState_build_closure4, A.InvoiceEditDesktopState_build_closure8, A.InvoiceEditDesktopState_build__closure21, A.InvoiceEditDesktopState_build_closure7, A.InvoiceEditDesktopState_build__closure20, A.InvoiceEditDesktopState_build_closure11, A.InvoiceEditDesktopState_build__closure19, A.InvoiceEditDesktopState_build_closure10, A.InvoiceEditDesktopState_build_closure13, A.InvoiceEditDesktopState_build__closure18, A.InvoiceEditDesktopState_build_closure12, A.InvoiceEditDesktopState_build_closure15, A.InvoiceEditDesktopState_build__closure17, A.InvoiceEditDesktopState_build__closure16, A.InvoiceEditDesktopState_build_closure17, A.InvoiceEditDesktopState_build__closure15, A.InvoiceEditDesktopState_build_closure19, A.InvoiceEditDesktopState_build_closure20, A.InvoiceEditDesktopState_build__closure14, A.InvoiceEditDesktopState_build_closure21, A.InvoiceEditDesktopState_build__closure13, A.InvoiceEditDesktopState_build_closure23, A.InvoiceEditDesktopState_build__closure12, A.InvoiceEditDesktopState_build_closure22, A.InvoiceEditDesktopState_build_closure24, A.InvoiceEditDesktopState_build_closure25, A.InvoiceEditDesktopState_build__closure10, A.InvoiceEditDesktopState_build_closure26, A.InvoiceEditDesktopState_build__closure9, A.InvoiceEditDesktopState_build__closure0, A.InvoiceEditDesktopState_build___closure8, A.InvoiceEditDesktopState_build__closure1, A.InvoiceEditDesktopState_build___closure7, A.InvoiceEditDesktopState_build__closure2, A.InvoiceEditDesktopState_build___closure5, A.InvoiceEditDesktopState_build___closure6, A.InvoiceEditDesktopState_build__closure3, A.InvoiceEditDesktopState_build___closure4, A.InvoiceEditDesktopState_build__closure5, A.InvoiceEditDesktopState_build___closure2, A.InvoiceEditDesktopState_build___closure3, A.InvoiceEditDesktopState_build__closure6, A.InvoiceEditDesktopState_build___closure1, A.InvoiceEditDesktopState_build__closure7, A.InvoiceEditDesktopState_build___closure0, A.InvoiceEditDesktopState_build__closure8, A.InvoiceEditDesktopState_build___closure, A.InvoiceEditDesktopState_build_closure30, A.InvoiceEditDesktopState_build_closure31, A.InvoiceEditDesktopState_build_closure32, A.InvoiceEditDesktopState_build__closure, A.__PdfPreviewState__loadPdf_closure0, A.__PdfPreviewState__loadPdf_closure1, A.__PdfPreviewState_build_closure1, A.InvoiceEditDetailsState_didChangeDependencies_closure, A.InvoiceEditDetailsState_didChangeDependencies_closure0, A.InvoiceEditDetailsState_dispose_closure, A.InvoiceEditDetailsState__onChanged_closure, A.InvoiceEditDetailsState_build_closure, A.InvoiceEditDetailsState_build_closure0, A.InvoiceEditDetailsState_build_closure1, A.InvoiceEditDetailsState_build_closure2, A.InvoiceEditDetailsState_build_closure3, A.InvoiceEditDetailsState_build_closure4, A.InvoiceEditDetailsState_build__closure19, A.InvoiceEditDetailsState_build_closure6, A.InvoiceEditDetailsState_build__closure18, A.InvoiceEditDetailsState_build_closure5, A.InvoiceEditDetailsState_build__closure17, A.InvoiceEditDetailsState_build_closure9, A.InvoiceEditDetailsState_build__closure16, A.InvoiceEditDetailsState_build_closure8, A.InvoiceEditDetailsState_build_closure11, A.InvoiceEditDetailsState_build__closure15, A.InvoiceEditDetailsState_build_closure10, A.InvoiceEditDetailsState_build_closure13, A.InvoiceEditDetailsState_build__closure14, A.InvoiceEditDetailsState_build__closure13, A.InvoiceEditDetailsState_build_closure15, A.InvoiceEditDetailsState_build__closure12, A.InvoiceEditDetailsState_build_closure17, A.InvoiceEditDetailsState_build__closure11, A.InvoiceEditDetailsState_build_closure18, A.InvoiceEditDetailsState_build__closure10, A.InvoiceEditDetailsState_build_closure20, A.InvoiceEditDetailsState_build__closure9, A.InvoiceEditDetailsState_build_closure19, A.InvoiceEditDetailsState_build_closure21, A.InvoiceEditDetailsState_build_closure22, A.InvoiceEditDetailsState_build_closure23, A.InvoiceEditDetailsState_build_closure24, A.InvoiceEditDetailsState_build__closure8, A.InvoiceEditDetailsState_build_closure25, A.InvoiceEditDetailsState_build__closure6, A.InvoiceEditDetailsState_build__closure7, A.InvoiceEditDetailsState_build_closure26, A.InvoiceEditDetailsState_build__closure5, A.InvoiceEditDetailsState_build_closure28, A.InvoiceEditDetailsState_build__closure3, A.InvoiceEditDetailsState_build__closure4, A.InvoiceEditDetailsState_build_closure29, A.InvoiceEditDetailsState_build__closure2, A.InvoiceEditDetailsState_build_closure30, A.InvoiceEditDetailsState_build__closure1, A.InvoiceEditDetailsState_build_closure31, A.InvoiceEditDetailsState_build__closure0, A.InvoiceEditDetailsState_build__closure, A.InvoiceEditDetailsScreen_build_closure0, A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure, A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure0, A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure, A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure0, A._InvoiceEditItemsState__showInvoiceItemEditor_closure, A._InvoiceEditItemsState_build_closure, A.ItemEditDetailsState_didChangeDependencies_closure, A.ItemEditDetailsState_dispose_closure, A.ItemEditDetailsState__onChanged_closure, A.ItemEditDetailsState__onChanged_closure0, A.ItemEditDetailsState_build__closure3, A.ItemEditDetailsState_build_closure2, A.ItemEditDetailsState_build_closure1, A.ItemEditDetailsState_build_closure3, A.ItemEditDetailsState_build_closure4, A.ItemEditDetailsState_build_closure5, A._InvoiceEditItemsDesktopState__updateColumns_closure, A._InvoiceEditItemsDesktopState__updateColumns_closure0, A._InvoiceEditItemsDesktopState__updateColumns_closure1, A._InvoiceEditItemsDesktopState__updateColumns_closure2, A._InvoiceEditItemsDesktopState__updateColumns_closure3, A._InvoiceEditItemsDesktopState__onFocusChange_closure, A._InvoiceEditItemsDesktopState_build_closure, A._InvoiceEditItemsDesktopState_build_closure0, A._InvoiceEditItemsDesktopState_build__closure33, A._InvoiceEditItemsDesktopState_build__closure34, A._InvoiceEditItemsDesktopState_build_closure4, A._InvoiceEditItemsDesktopState_build_closure5, A._InvoiceEditItemsDesktopState_build_closure7, A._InvoiceEditItemsDesktopState_build__closure5, A._InvoiceEditItemsDesktopState_build__closure3, A._InvoiceEditItemsDesktopState_build___closure13, A._InvoiceEditItemsDesktopState_build___closure14, A._InvoiceEditItemsDesktopState_build__closure0, A._InvoiceEditItemsDesktopState_build__closure2, A._InvoiceEditItemsDesktopState_build___closure15, A._InvoiceEditItemsDesktopState_build___closure16, A._InvoiceEditItemsDesktopState_build__closure1, A._InvoiceEditItemsDesktopState_build___closure18, A._InvoiceEditItemsDesktopState_build___closure17, A._InvoiceEditItemsDesktopState_build____closure1, A._InvoiceEditItemsDesktopState_build__closure4, A._InvoiceEditItemsDesktopState_build____closure, A._InvoiceEditItemsDesktopState_build____closure0, A._InvoiceEditItemsDesktopState_build__closure7, A._InvoiceEditItemsDesktopState_build__closure6, A._InvoiceEditItemsDesktopState_build___closure11, A._InvoiceEditItemsDesktopState_build__closure9, A._InvoiceEditItemsDesktopState_build__closure8, A._InvoiceEditItemsDesktopState_build___closure10, A._InvoiceEditItemsDesktopState_build__closure11, A._InvoiceEditItemsDesktopState_build__closure10, A._InvoiceEditItemsDesktopState_build___closure9, A._InvoiceEditItemsDesktopState_build__closure13, A._InvoiceEditItemsDesktopState_build__closure12, A._InvoiceEditItemsDesktopState_build___closure8, A._InvoiceEditItemsDesktopState_build__closure15, A._InvoiceEditItemsDesktopState_build__closure14, A._InvoiceEditItemsDesktopState_build___closure7, A._InvoiceEditItemsDesktopState_build__closure18, A._InvoiceEditItemsDesktopState_build__closure17, A._InvoiceEditItemsDesktopState_build___closure6, A._InvoiceEditItemsDesktopState_build__closure16, A._InvoiceEditItemsDesktopState_build__closure20, A._InvoiceEditItemsDesktopState_build__closure19, A._InvoiceEditItemsDesktopState_build___closure5, A._InvoiceEditItemsDesktopState_build___closure4, A._InvoiceEditItemsDesktopState_build__closure23, A._InvoiceEditItemsDesktopState_build__closure22, A._InvoiceEditItemsDesktopState_build___closure3, A._InvoiceEditItemsDesktopState_build__closure25, A._InvoiceEditItemsDesktopState_build__closure24, A._InvoiceEditItemsDesktopState_build___closure2, A._InvoiceEditItemsDesktopState_build__closure27, A._InvoiceEditItemsDesktopState_build__closure26, A._InvoiceEditItemsDesktopState_build___closure1, A._InvoiceEditItemsDesktopState_build__closure29, A._InvoiceEditItemsDesktopState_build__closure28, A._InvoiceEditItemsDesktopState_build___closure0, A._InvoiceEditItemsDesktopState_build__closure31, A._InvoiceEditItemsDesktopState_build__closure30, A._InvoiceEditItemsDesktopState_build___closure, A._InvoiceEditItemsDesktopState_build_closure8, A._InvoiceEditItemsDesktopState_build__closure, A._InvoiceEditItemsDesktopState_build_closure9, A.InvoiceEditItemsScreen_build_closure0, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore__closure0, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure0, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore__closure, A.InvoiceEditNotesState_didChangeDependencies_closure, A.InvoiceEditNotesState_didChangeDependencies_closure0, A.InvoiceEditNotesState_dispose_closure, A.InvoiceEditNotesState__onChanged_closure, A.InvoiceEditNotesScreen_build_closure0, A.InvoiceEditNotesVM_InvoiceEditNotesVM$fromStore_closure, A.InvoiceEditPDFState_didChangeDependencies_closure0, A.InvoiceEditPDFState_didChangeDependencies_closure1, A.InvoiceEditPDFState_build_closure, A.InvoiceEditPDFScreen_build_closure0, A.InvoiceEditScreen_build_closure0, A.InvoiceEditVM_InvoiceEditVM$fromStore_closure, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure1, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure2, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure3, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure4, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure5, A.InvoiceEditVM_InvoiceEditVM$fromStore____closure, A.InvoiceEditVM_InvoiceEditVM$fromStore_closure0, A.InvoiceEditVM_InvoiceEditVM$fromStore__closure1, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure0, A.InvoiceEditVM_InvoiceEditVM$fromStore_closure1, A.InvoiceEditVM_InvoiceEditVM$fromStore_closure2, A.InvoiceEditVM_InvoiceEditVM$fromStore__closure, A.InvoiceEditVM_InvoiceEditVM$fromStore__closure0, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure, A._InvoiceItemSelectorState__onItemsSelected_closure, A._InvoiceItemSelectorState__updateClientId_closure, A._InvoiceItemSelectorState_build_closure, A._InvoiceItemSelectorState_build_closure0, A._InvoiceItemSelectorState_build_closure1, A._InvoiceItemSelectorState_build__productList__closure, A._InvoiceItemSelectorState_build__taskList__closure, A._InvoiceItemSelectorState_build__expenseList__closure, A._InvoiceItemSelectorState_build_closure2, A.InvoiceEmailScreen_build_closure1, A.InvoiceEmailScreen_build_closure0, A.EmailInvoiceVM_EmailInvoiceVM$fromStore_closure, A.EmailInvoiceVM_EmailInvoiceVM$fromStore__closure, A.InvoiceListItem_build__closure, A.InvoiceListItem_build__closure3, A.InvoiceListVM_fromStore__handleRefresh, A.InvoiceListVM_fromStore_closure, A.InvoiceListVM_fromStore_closure0, A._InvoicePdfViewState_loadPdf_closure0, A._InvoicePdfViewState_loadPdf_closure1, A._InvoicePdfViewState_loadPdf__closure0, A._InvoicePdfViewState_build_closure0, A._InvoicePdfViewState_build_closure, A._InvoicePdfViewState_build_closure1, A._InvoicePdfViewState_build_closure5, A.InvoicePdfScreen_build_closure0, A.InvoiceScreen_build_closure, A.InvoiceScreen_build_closure0, A.InvoiceScreen_build_closure1, A.InvoiceScreen_build_closure2, A.InvoiceScreen_build_closure3, A.InvoiceScreen_build_closure4, A.InvoiceScreen_build_closure5, A.InvoiceScreen_build_closure6, A.InvoiceScreen_build_closure16, A.InvoiceScreen_build_closure12, A.InvoiceScreen_build_closure8, A.InvoiceScreen_build_closure9, A.InvoiceScreen_build_closure10, A.InvoiceScreen_build_closure11, A._InvoiceViewState_build_closure, A.InvoiceViewContacts_build_closure, A._InvitationListTile_build_closure, A._InvitationListTile_build_closure1, A.InvoiceViewDocuments_build_closure0, A._InvoiceViewHistoryState_build_closure, A._InvoiceViewHistoryState_build_closure0, A.InvoiceOverview_build_closure, A.InvoiceOverview_build__closure0, A.InvoiceOverview_build__closure1, A.InvoiceOverview_build_closure0, A.InvoiceOverview_build_closure1, A.InvoiceOverview_build_closure2, A.InvoiceOverview_build__closure, A._InvoiceViewScheduleState_build_closure, A.InvoiceViewScreen_build_closure0, A.InvoiceViewVM_InvoiceViewVM$fromStore__handleRefresh, A.InvoiceViewVM_InvoiceViewVM$fromStore_closure, A.InvoiceViewVM_InvoiceViewVM$fromStore_closure0, A.InvoiceViewVM_InvoiceViewVM$fromStore_closure1, A.InvoiceViewVM_InvoiceViewVM$fromStore__closure, A.InvoiceViewVM_InvoiceViewVM$fromStore__closure0, A.InvoiceViewVM_InvoiceViewVM$fromStore___closure, A.InvoiceViewVM_InvoiceViewVM$fromStore_closure3, A._PaymentEditState_didChangeDependencies_closure, A._PaymentEditState_didChangeDependencies_closure0, A._PaymentEditState_dispose_closure, A._PaymentEditState__onChanged_closure, A._PaymentEditState_convertCurrency_closure, A._PaymentEditState_build_closure, A._PaymentEditState_build_closure0, A._PaymentEditState_build_closure1, A._PaymentEditState_build_closure2, A._PaymentEditState_build_closure4, A._PaymentEditState_build_closure3, A._PaymentEditState_build__closure5, A._PaymentEditState_build_closure5, A._PaymentEditState_build_closure6, A._PaymentEditState_build_closure8, A._PaymentEditState_build__closure4, A._PaymentEditState_build_closure9, A._PaymentEditState_build__closure3, A._PaymentEditState_build_closure10, A._PaymentEditState_build__closure2, A._PaymentEditState_build_closure11, A._PaymentEditState_build__closure0, A._PaymentEditState_build_closure12, A._PaymentEditState_build_closure14, A._PaymentEditState_build__closure, A._PaymentEditState_build_closure13, A._PaymentEditState_build_closure17, A._PaymentableEditorState_didChangeDependencies_closure, A._PaymentableEditorState_didChangeDependencies_closure0, A._PaymentableEditorState_dispose_closure0, A._PaymentableEditorState__onChanged_closure, A._PaymentableEditorState__onChanged_closure0, A._PaymentableEditorState__onChanged_closure1, A._PaymentableEditorState__onChanged_closure2, A._PaymentableEditorState__onChanged_closure3, A._PaymentableEditorState__onChanged_closure4, A._PaymentableEditorState__onChanged_closure5, A._PaymentableEditorState_build_closure, A._PaymentableEditorState_build_closure0, A._PaymentableEditorState_build_closure3, A._PaymentableEditorState_build_closure2, A._PaymentableEditorState_build_closure1, A._PaymentableEditorState_build_closure6, A._PaymentableEditorState_build_closure5, A._PaymentableEditorState_build_closure4, A._PaymentableEditorState_build__closure, A._PaymentableEditorState_build__closure0, A.PaymentEditFooter_build_closure, A.PaymentEditFooter_build_closure0, A.PaymentEditScreen_build_closure0, A.PaymentEditVM_PaymentEditVM$fromStore_closure, A.PaymentEditVM_PaymentEditVM$fromStore_closure1, A.PaymentEditVM_PaymentEditVM$fromStore_closure0, A.PaymentEditVM_PaymentEditVM$fromStore___closure, A.PaymentEditVM_PaymentEditVM$fromStore___closure0, A.PaymentEditVM_PaymentEditVM$fromStore___closure1, A.PaymentEditVM_PaymentEditVM$fromStore___closure2, A.PaymentEditVM_PaymentEditVM$fromStore___closure3, A.PaymentEditVM_PaymentEditVM$fromStore____closure, A.PaymentListItem_build__closure, A.PaymentListItem_build__closure3, A.PaymentListVM_fromStore__handleRefresh, A.PaymentListVM_fromStore_closure, A.PaymentListVM_fromStore_closure0, A.PaymentPresenter_getField_closure, A.PaymentPresenter_getField_closure0, A.PaymentPresenter_getField_closure1, A.PaymentScreen_build_closure, A.PaymentScreen_build_closure0, A.PaymentScreen_build_closure1, A.PaymentScreen_build_closure2, A.PaymentScreen_build_closure3, A.PaymentScreen_build_closure4, A.PaymentScreen_build_closure5, A.PaymentScreen_build_closure6, A.PaymentScreen_build_closure17, A.PaymentScreen_build_closure13, A.PaymentScreen_build_closure9, A.PaymentScreen_build_closure10, A.PaymentScreen_build_closure11, A.PaymentScreen_build_closure12, A._PaymentRefundState_didChangeDependencies_closure, A._PaymentRefundState_didChangeDependencies_closure0, A._PaymentRefundState_dispose_closure, A._PaymentRefundState__onChanged__closure, A._PaymentRefundState_build_closure, A._PaymentRefundState_build_closure1, A._PaymentRefundState_build__closure1, A._PaymentRefundState_build_closure2, A._PaymentRefundState_build__closure0, A._PaymentRefundState_build_closure3, A._PaymentRefundState_build__closure, A._PaymentRefundState_build_onSavePressed, A._PaymentRefundState_build_onSavePressed_closure0, A._PaymentRefundState_build_closure4, A._PaymentRefundState_build_closure5, A._PaymentableEditorState_didChangeDependencies_closure1, A._PaymentableEditorState_didChangeDependencies_closure2, A._PaymentableEditorState_dispose_closure, A._PaymentableEditorState__onChanged_closure6, A._PaymentableEditorState__onChanged_closure7, A._PaymentableEditorState__onChanged_closure8, A._PaymentableEditorState__onChanged_closure9, A._PaymentableEditorState_build_closure8, A._PaymentableEditorState_build_closure10, A._PaymentableEditorState_build_closure9, A._PaymentableEditorState_build_closure11, A._PaymentableEditorState_build__closure1, A.PaymentRefundScreen_build_closure0, A.PaymentRefundVM_PaymentRefundVM$fromStore_closure, A.PaymentRefundVM_PaymentRefundVM$fromStore_closure1, A.PaymentRefundVM_PaymentRefundVM$fromStore__closure, A.PaymentRefundVM_PaymentRefundVM$fromStore__closure0, A.PaymentRefundVM_PaymentRefundVM$fromStore___closure, A._PaymentViewState_build_closure, A.PaymentViewScreen_build_closure0, A.PaymentViewVM_PaymentViewVM$fromStore__handleRefresh, A.PaymentViewVM_PaymentViewVM$fromStore_closure, A._PaymentTermEditState_didChangeDependencies_closure, A._PaymentTermEditState_didChangeDependencies_closure0, A._PaymentTermEditState_dispose_closure, A._PaymentTermEditState__onChanged_closure, A._PaymentTermEditState_build_closure0, A._PaymentTermEditState_build_closure1, A._PaymentTermEditState_build_closure, A._PaymentTermEditState_build__closure0, A._PaymentTermEditState_build__closure, A.PaymentTermEditScreen_build_closure0, A.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure, A.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure1, A.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure0, A.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure, A.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure0, A.PaymentTermEditVM_PaymentTermEditVM$fromStore____closure, A.PaymentTermListItem_build_closure, A.PaymentTermListVM_fromStore__handleRefresh, A.PaymentTermListVM_fromStore_closure, A.PaymentTermListVM_fromStore_closure0, A.PaymentTermScreen_build_closure7, A.PaymentTermScreen_build_closure4, A.PaymentTermScreen_build_closure0, A.PaymentTermScreen_build_closure1, A.PaymentTermScreen_build_closure2, A.PaymentTermScreen_build_closure3, A.PaymentTermViewScreen_build_closure0, A._ProductEditState_didChangeDependencies_closure, A._ProductEditState_didChangeDependencies_closure0, A._ProductEditState_dispose_closure, A._ProductEditState__onChanged_closure, A._ProductEditState_build_closure6, A._ProductEditState_build_closure, A._ProductEditState_build_closure1, A._ProductEditState_build__closure3, A._ProductEditState_build_closure0, A._ProductEditState_build_closure2, A._ProductEditState_build__closure2, A._ProductEditState_build_closure3, A._ProductEditState_build__closure1, A._ProductEditState_build_closure4, A._ProductEditState_build__closure0, A._ProductEditState_build_closure5, A._ProductEditState_build__closure, A.ProductEditScreen_build_closure0, A.ProductEditVM_ProductEditVM$fromStore_closure, A.ProductEditVM_ProductEditVM$fromStore_closure1, A.ProductEditVM_ProductEditVM$fromStore_closure0, A.ProductEditVM_ProductEditVM$fromStore___closure, A.ProductEditVM_ProductEditVM$fromStore___closure0, A.ProductEditVM_ProductEditVM$fromStore____closure, A.ProductListItem_build__closure, A.ProductListItem_build__closure3, A.ProductListVM_fromStore__handleRefresh, A.ProductListVM_fromStore_closure, A.ProductListVM_fromStore_closure0, A.ProductScreen_build_closure8, A.ProductScreen_build_closure5, A.ProductScreen_build_closure1, A.ProductScreen_build_closure2, A.ProductScreen_build_closure3, A.ProductScreen_build_closure4, A._ProductViewState_build_closure, A.ProductViewScreen_build_closure0, A.ProductViewVM_ProductViewVM$fromStore__handleRefresh, A.ProductViewVM_ProductViewVM$fromStore_closure, A.ProductViewVM_ProductViewVM$fromStore_closure0, A.ProductViewVM_ProductViewVM$fromStore__closure, A.ProductViewVM_ProductViewVM$fromStore__closure0, A.ProductViewVM_ProductViewVM$fromStore___closure, A._ProjectEditState_didChangeDependencies_closure, A._ProjectEditState_didChangeDependencies_closure0, A._ProjectEditState_dispose_closure, A._ProjectEditState__onChanged_closure, A._ProjectEditState_build_closure0, A._ProjectEditState_build_closure, A._ProjectEditState_build__closure, A._ProjectEditState_build__closure2, A._ProjectEditState_build__closure1, A._ProjectEditState_build___closure1, A._ProjectEditState_build__closure0, A._ProjectEditState_build__closure4, A._ProjectEditState_build___closure, A._ProjectEditState_build___closure0, A.ProjectEditScreen_build_closure0, A.ProjectEditVM_ProjectEditVM$fromStore_closure, A.ProjectEditVM_ProjectEditVM$fromStore_closure1, A.ProjectEditVM_ProjectEditVM$fromStore__closure, A.ProjectEditVM_ProjectEditVM$fromStore__closure0, A.ProjectEditVM_ProjectEditVM$fromStore_closure0, A.ProjectEditVM_ProjectEditVM$fromStore___closure, A.ProjectEditVM_ProjectEditVM$fromStore___closure0, A.ProjectEditVM_ProjectEditVM$fromStore____closure, A.ProjectListItem_build__closure, A.ProjectListItem_build__closure3, A.ProjectListVM_fromStore__handleRefresh, A.ProjectListVM_fromStore_closure, A.ProjectListVM_fromStore_closure0, A.ProjectScreen_build_closure7, A.ProjectScreen_build_closure4, A.ProjectScreen_build_closure0, A.ProjectScreen_build_closure1, A.ProjectScreen_build_closure2, A.ProjectScreen_build_closure3, A._ProjectViewState_build_closure, A._ProjectOverviewState_initState_closure, A.ProjectViewScreen_build_closure0, A.ProjectViewVM_ProjectViewVM$fromStore__handleRefresh, A.ProjectViewVM_ProjectViewVM$fromStore_closure, A.ProjectViewVM_ProjectViewVM$fromStore_closure0, A.ProjectViewVM_ProjectViewVM$fromStore__closure, A.ProjectViewVM_ProjectViewVM$fromStore__closure0, A.ProjectViewVM_ProjectViewVM$fromStore___closure, A._PurchaseOrderEditState_build_closure1, A._PurchaseOrderEditState_build_closure2, A._PurchaseOrderEditState_build__closure, A._PurchaseOrderEditState_build___closure0, A._PurchaseOrderEditState_build___closure1, A._PurchaseOrderEditState_build___closure, A.PurchaseOrderEditDetailsScreen_build_closure0, A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure, A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure0, A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore__closure, A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore__closure0, A.PurchaseOrderEditItemsScreen_build_closure0, A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure, A.PurchaseOrderEditNotesScreen_build_closure0, A.PurchaseOrderEditNotesVM_PurchaseOrderEditNotesVM$fromStore_closure, A.PurchaseOrderEditPDFScreen_build_closure0, A.PurchaseOrderEditScreen_build_closure0, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure0, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure1, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure2, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore____closure, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure0, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure1, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure2, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore__closure, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore__closure0, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure, A.PurchaseOrderEmailScreen_build_closure1, A.PurchaseOrderEmailScreen_build_closure0, A.EmailPurchaseOrderVM_EmailPurchaseOrderVM$fromStore_closure, A.EmailPurchaseOrderVM_EmailPurchaseOrderVM$fromStore__closure, A.PurchaseOrderListItem_build__closure, A.PurchaseOrderListItem_build__closure3, A.PurchaseOrderListVM_fromStore__handleRefresh, A.PurchaseOrderListVM_fromStore_closure, A.PurchaseOrderListVM_fromStore_closure0, A.PurchaseOrderPdfScreen_build_closure0, A.PurchaseOrderScreen_build_closure, A.PurchaseOrderScreen_build_closure0, A.PurchaseOrderScreen_build_closure1, A.PurchaseOrderScreen_build_closure2, A.PurchaseOrderScreen_build_closure12, A.PurchaseOrderScreen_build_closure8, A.PurchaseOrderScreen_build_closure4, A.PurchaseOrderScreen_build_closure5, A.PurchaseOrderScreen_build_closure6, A.PurchaseOrderScreen_build_closure7, A.PurchaseOrderViewScreen_build_closure0, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__handleRefresh, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure0, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure1, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure0, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore___closure, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure2, A._QuoteEditState_build_closure1, A._QuoteEditState_build_closure2, A._QuoteEditState_build__closure, A._QuoteEditState_build___closure0, A._QuoteEditState_build___closure1, A._QuoteEditState_build___closure, A.QuoteEditDetailsScreen_build_closure0, A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure, A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure0, A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure, A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure0, A.QuoteEditItemsScreen_build_closure0, A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure, A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore__closure, A.QuoteEditNotesScreen_build_closure0, A.QuoteEditNotesVM_QuoteEditNotesVM$fromStore_closure, A.QuoteEditPDFScreen_build_closure0, A.QuoteEditScreen_build_closure0, A.QuoteEditVM_QuoteEditVM$fromStore_closure, A.QuoteEditVM_QuoteEditVM$fromStore___closure0, A.QuoteEditVM_QuoteEditVM$fromStore___closure1, A.QuoteEditVM_QuoteEditVM$fromStore___closure2, A.QuoteEditVM_QuoteEditVM$fromStore____closure, A.QuoteEditVM_QuoteEditVM$fromStore_closure0, A.QuoteEditVM_QuoteEditVM$fromStore_closure1, A.QuoteEditVM_QuoteEditVM$fromStore_closure2, A.QuoteEditVM_QuoteEditVM$fromStore__closure, A.QuoteEditVM_QuoteEditVM$fromStore__closure0, A.QuoteEditVM_QuoteEditVM$fromStore___closure, A.QuoteEmailScreen_build_closure1, A.QuoteEmailScreen_build_closure0, A.EmailQuoteVM_EmailQuoteVM$fromStore_closure, A.EmailQuoteVM_EmailQuoteVM$fromStore__closure, A.QuoteListItem_build__closure, A.QuoteListItem_build__closure3, A.QuoteListVM_fromStore__handleRefresh, A.QuoteListVM_fromStore_closure, A.QuoteListVM_fromStore_closure0, A.QuotePdfScreen_build_closure0, A.QuoteScreen_build_closure, A.QuoteScreen_build_closure0, A.QuoteScreen_build_closure1, A.QuoteScreen_build_closure2, A.QuoteScreen_build_closure3, A.QuoteScreen_build_closure4, A.QuoteScreen_build_closure14, A.QuoteScreen_build_closure10, A.QuoteScreen_build_closure6, A.QuoteScreen_build_closure7, A.QuoteScreen_build_closure8, A.QuoteScreen_build_closure9, A.QuoteViewScreen_build_closure0, A.QuoteViewVM_QuoteViewVM$fromStore__handleRefresh, A.QuoteViewVM_QuoteViewVM$fromStore_closure, A.QuoteViewVM_QuoteViewVM$fromStore_closure0, A.QuoteViewVM_QuoteViewVM$fromStore_closure1, A.QuoteViewVM_QuoteViewVM$fromStore__closure, A.QuoteViewVM_QuoteViewVM$fromStore__closure0, A.QuoteViewVM_QuoteViewVM$fromStore___closure, A.QuoteViewVM_QuoteViewVM$fromStore_closure2, A.RecurringExpenseEditScreen_build_closure0, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure3, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure4, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure1, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure2, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure1, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure0, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure0, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure1, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore____closure, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure4, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure0, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure, A.RecurringExpenseListItem_build__closure, A.RecurringExpenseListItem_build__closure3, A.RecurringExpenseListVM_fromStore__handleRefresh, A.RecurringExpenseListVM_fromStore_closure, A.RecurringExpenseListVM_fromStore_closure0, A.RecurringExpenseScreen_build_closure, A.RecurringExpenseScreen_build_closure0, A.RecurringExpenseScreen_build_closure1, A.RecurringExpenseScreen_build_closure2, A.RecurringExpenseScreen_build_closure3, A.RecurringExpenseScreen_build_closure13, A.RecurringExpenseScreen_build_closure9, A.RecurringExpenseScreen_build_closure5, A.RecurringExpenseScreen_build_closure6, A.RecurringExpenseScreen_build_closure7, A.RecurringExpenseScreen_build_closure8, A.RecurringExpenseViewScreen_build_closure0, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__handleRefresh, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure0, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure0, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore___closure, A._RecurringInvoiceEditState_build_closure1, A._RecurringInvoiceEditState_build_closure2, A._RecurringInvoiceEditState_build__closure, A._RecurringInvoiceEditState_build___closure0, A._RecurringInvoiceEditState_build___closure1, A._RecurringInvoiceEditState_build___closure, A.RecurringInvoiceEditDetailsScreen_build_closure0, A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure, A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure0, A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure, A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure0, A.RecurringInvoiceEditItemsScreen_build_closure0, A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure, A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore__closure, A.RecurringInvoiceEditNotesScreen_build_closure0, A.RecurringInvoiceEditNotesVM_RecurringInvoiceEditNotesVM$fromStore_closure, A.RecurringInvoiceEditPDFScreen_build_closure0, A.RecurringInvoiceEditScreen_build_closure0, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure0, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure1, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure2, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore____closure, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure0, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure1, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure2, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure0, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure, A.RecurringInvoiceListItem_build__closure, A.RecurringInvoiceListItem_build__closure3, A.RecurringInvoiceListVM_fromStore__handleRefresh, A.RecurringInvoiceListVM_fromStore_closure, A.RecurringInvoiceListVM_fromStore_closure0, A.RecurringInvoicePdfScreen_build_closure0, A.RecurringInvoiceScreen_build_closure, A.RecurringInvoiceScreen_build_closure0, A.RecurringInvoiceScreen_build_closure1, A.RecurringInvoiceScreen_build_closure2, A.RecurringInvoiceScreen_build_closure3, A.RecurringInvoiceScreen_build_closure13, A.RecurringInvoiceScreen_build_closure9, A.RecurringInvoiceScreen_build_closure5, A.RecurringInvoiceScreen_build_closure6, A.RecurringInvoiceScreen_build_closure7, A.RecurringInvoiceScreen_build_closure8, A.RecurringInvoiceViewScreen_build_closure0, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__handleRefresh, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure0, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure1, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure0, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore___closure, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure2, A.memoizedClientReport_closure, A.clientReport_closure, A.clientReport_closure0, A.clientReport_closure2, A.clientReport_closure3, A.memoizedContactReport_closure, A.contactReport_closure, A.contactReport_closure0, A.contactReport_closure2, A.contactReport_closure3, A.memoizedCreditItemReport_closure, A.lineItemReport_closure11, A.lineItemReport_closure12, A.lineItemReport_closure14, A.lineItemReport_closure15, A.lineItemReport_closure16, A.memoizedCreditReport_closure, A.creditReport_closure, A.creditReport_closure0, A.creditReport_closure2, A.creditReport_closure3, A.memoizedDocumentReport_closure, A.documentReport_closure, A.documentReport_closure0, A.documentReport_closure1, A.documentReport_closure3, A.documentReport_closure4, A.memoizedExpenseReport_closure, A.expenseReport_closure, A.expenseReport_closure0, A.expenseReport_closure2, A.expenseReport_closure3, A.memoizedInvoiceItemReport_closure, A.lineItemReport_closure17, A.lineItemReport_closure18, A.lineItemReport_closure20, A.lineItemReport_closure21, A.lineItemReport_closure22, A.memoizedInvoiceReport_closure, A.invoiceReport_closure, A.invoiceReport__closure, A.invoiceReport_closure1, A.invoiceReport_closure3, A.invoiceReport_closure4, A.memoizedInvoiceTaxReport_closure, A.taxReport_closure, A.taxReport_closure1, A.taxReport_closure2, A.taxReport_closure3, A.taxReport_closure4, A.memoizedPaymentReport_closure, A.paymentReport_closure, A.paymentReport_closure0, A.paymentReport_closure2, A.paymentReport_closure3, A.memoizedPaymentTaxReport_closure, A.paymentTaxReport_closure, A.paymentTaxReport_closure1, A.paymentTaxReport_closure2, A.paymentTaxReport_closure3, A.paymentTaxReport_closure4, A.memoizedProductReport_closure, A.productReport_closure, A.productReport_closure0, A.productReport_closure2, A.productReport_closure3, A.memoizedProfitAndLossReport_closure, A.profitAndLossReport_closure, A.profitAndLossReport_closure1, A.profitAndLossReport_closure2, A.profitAndLossReport_closure3, A.profitAndLossReport_closure4, A.memoizedPurchaseOrderItemReport_closure, A.lineItemReport_closure, A.lineItemReport_closure0, A.lineItemReport_closure2, A.lineItemReport_closure3, A.lineItemReport_closure4, A.memoizedPurchaseOrderReport_closure, A.purchaseOrderReport_closure, A.purchaseOrderReport_closure0, A.purchaseOrderReport_closure2, A.purchaseOrderReport_closure3, A.memoizedQuoteItemReport_closure, A.lineItemReport_closure5, A.lineItemReport_closure6, A.lineItemReport_closure8, A.lineItemReport_closure9, A.lineItemReport_closure10, A.memoizedQuoteReport_closure, A.quoteReport_closure, A.quoteReport_closure0, A.quoteReport_closure2, A.quoteReport_closure3, A.memoizedRecurringExpenseReport_closure, A.recurringExpenseReport_closure, A.recurringExpenseReport_closure0, A.recurringExpenseReport_closure2, A.recurringExpenseReport_closure3, A.memoizedRecurringInvoiceReport_closure, A.recurringInvoiceReport_closure, A.recurringInvoiceReport_closure0, A.recurringInvoiceReport_closure2, A.recurringInvoiceReport_closure3, A.ReportCharts_build_closure0, A.ReportCharts_build_closure3, A.ReportCharts_build_closure6, A.ReportsScreen_build_closure, A.ReportsScreen_build_closure0, A.ReportsScreen_build_closure3, A.ReportsScreen_build_closure2, A.ReportsScreen_build_closure6, A.ReportsScreen_build_closure4, A.ReportsScreen_build_closure5, A.ReportsScreen_build_closure7, A.ReportsScreen_build_closure8, A.ReportsScreen_build_closure9, A.ReportsScreen_build_closure11, A.ReportsScreen_build__closure5, A.ReportsScreen_build_closure10, A.ReportsScreen_build_closure12, A.ReportsScreen_build__closure4, A.ReportsScreen_build_closure13, A.ReportsScreen_build_closure14, A.ReportsScreen_build_closure19, A.ReportsScreen_build_closure17, A.ReportsScreen_build_closure18, A.ReportsScreen_build_closure27, A.ReportsScreen_build_closure20, A.ReportsScreen_build___closure0, A.ReportsScreen_build__closure2, A.ReportsScreen_build_closure23, A.ReportsScreen_build__closure0, A.ReportsScreen_build_closure25, A.ReportsScreen_build___closure, A._ReportDataTableState_initState__closure, A._ReportDataTableState__onChanged_closure, A._ReportDataTableState_dispose_closure, A._ReportDataTableState_dispose__closure, A.getReportColumnType_convertCustomFieldType, A.ReportResult_tableFilters_closure, A.ReportResult_tableFilters_closure0, A.ReportResult_tableFilters_closure1, A.ReportResult_tableFilters_closure3, A.ReportResult_tableFilters_closure4, A.ReportResult_tableFilters_closure5, A.ReportResult_tableFilters_closure9, A.ReportResult_tableFilters__closure, A.ReportResult_tableFilters__closure0, A.ReportResult_tableFilters_closure8, A.ReportResult_tableFilters__closure1, A.ReportResult_tableFilters_closure6, A.ReportResult_tableFilters__closure4, A.ReportResult_tableFilters_closure7, A.ReportResult_tableRow__closure, A.ReportResult_totalColumns_closure, A.ReportResult_totalRows_closure0, A.ReportResult_totalRows_closure2, A.ReportResult_totalRows__closure, A.ReportsScreenVM_fromStore__closure6, A.ReportsScreenVM_fromStore___closure0, A.ReportsScreenVM_fromStore__closure7, A.ReportsScreenVM_fromStore__closure8, A.ReportsScreenVM_fromStore_closure4, A.ReportsScreenVM_fromStore_closure0, A.ReportsScreenVM_fromStore__closure0, A.ReportsScreenVM_fromStore__closure1, A.ReportsScreenVM_fromStore__closure2, A.ReportsScreenVM_fromStore__closure4, A.ReportsScreenVM_fromStore__closure5, A.ReportsScreenVM_fromStore___closure, A.memoizeedGroupTotals_closure, A.memoizedTaskItemReport_closure, A.taskItemReport_closure, A.taskItemReport_closure0, A.taskItemReport_closure2, A.taskItemReport_closure3, A.memoizedTaskReport_closure, A.taskReport_closure, A.taskReport_closure0, A.taskReport_closure2, A.taskReport_closure3, A.memoizedTransactionReport_closure, A.transactionReport_closure, A.transactionReport_closure0, A.transactionReport_closure1, A.transactionReport_closure2, A.transactionReport_closure3, A.transactionReport_closure5, A.transactionReport_closure6, A.memoizedVendorReport_closure, A.vendorReport_closure, A.vendorReport_closure0, A.vendorReport_closure2, A.vendorReport_closure3, A._ScheduleEditState_didChangeDependencies_closure, A._ScheduleEditState_didChangeDependencies_closure0, A._ScheduleEditState_dispose_closure, A._ScheduleEditState__onChanged__closure, A._ScheduleEditState_build_closure0, A._ScheduleEditState_build_closure1, A._ScheduleEditState_build_closure, A._ScheduleEditState_build__closure0, A._ScheduleEditState_build___closure15, A._ScheduleEditState_build__closure, A._ScheduleEditState_build___closure14, A._ScheduleEditState_build__closure2, A._ScheduleEditState_build__closure4, A._ScheduleEditState_build___closure13, A._ScheduleEditState_build__closure3, A._ScheduleEditState_build__closure6, A._ScheduleEditState_build___closure12, A._ScheduleEditState_build__closure5, A._ScheduleEditState_build__closure9, A._ScheduleEditState_build___closure11, A._ScheduleEditState_build__closure7, A._ScheduleEditState_build__closure8, A._ScheduleEditState_build__closure11, A._ScheduleEditState_build___closure10, A._ScheduleEditState_build__closure10, A._ScheduleEditState_build__closure12, A._ScheduleEditState_build___closure9, A._ScheduleEditState_build__closure13, A._ScheduleEditState_build___closure8, A._ScheduleEditState_build__closure14, A._ScheduleEditState_build___closure7, A._ScheduleEditState_build__closure15, A._ScheduleEditState_build___closure5, A._ScheduleEditState_build___closure4, A._ScheduleEditState_build__closure18, A._ScheduleEditState_build___closure3, A._ScheduleEditState_build__closure17, A._ScheduleEditState_build__closure19, A._ScheduleEditState_build___closure2, A._ScheduleEditState_build__closure20, A._ScheduleEditState_build___closure1, A._ScheduleEditState_build__closure21, A._ScheduleEditState_build___closure0, A._ScheduleEditState_build__closure22, A._ScheduleEditState_build___closure, A.ScheduleEditScreen_build_closure0, A.ScheduleEditVM_ScheduleEditVM$fromStore_closure, A.ScheduleEditVM_ScheduleEditVM$fromStore_closure1, A.ScheduleEditVM_ScheduleEditVM$fromStore_closure0, A.ScheduleEditVM_ScheduleEditVM$fromStore___closure, A.ScheduleEditVM_ScheduleEditVM$fromStore___closure0, A.ScheduleEditVM_ScheduleEditVM$fromStore____closure, A.ScheduleListItem_build_closure, A.ScheduleListVM_fromStore__handleRefresh, A.ScheduleListVM_fromStore_closure, A.ScheduleListVM_fromStore_closure0, A.ScheduleScreen_build_closure7, A.ScheduleScreen_build_closure4, A.ScheduleScreen_build_closure0, A.ScheduleScreen_build_closure1, A.ScheduleScreen_build_closure2, A.ScheduleScreen_build_closure3, A.ScheduleViewScreen_build_closure0, A._AccountManagementState_didChangeDependencies_closure, A._AccountManagementState_didChangeDependencies_closure0, A._AccountManagementState__onChanged_closure, A._AccountManagementState_dispose_closure, A._AccountManagementState_build_closure, A._AccountManagementState_build__closure2, A._AccountManagementState_build___closure, A._AccountManagementState_build_closure0, A._AccountManagementState_build__closure1, A._AccountManagementState_build_closure1, A._AccountManagementState_build__closure0, A._AccountManagementState_build_closure2, A._AccountManagementState_build__closure, A._AccountOverview_build__closure7, A._AccountOverview_build_closure1, A._AccountOverview_build__closure6, A._AccountOverview_build_closure2, A._AccountOverview_build__closure5, A._AccountOverview_build_closure3, A._AccountOverview_build__closure4, A._AccountOverview_build_closure4, A._AccountOverview_build__closure3, A._AccountOverview_build_closure5, A._AccountOverview_build__closure2, A._AccountOverview_build__closure1, A._AccountOverview_build___closure1, A._AccountOverview_build___closure2, A._AccountOverview_build___closure3, A._AccountOverview_build__closure0, A._AccountOverview_build__closure, A.AccountManagementVM_fromStore_closure1, A.AccountManagementVM_fromStore_closure2, A.AccountManagementVM_fromStore__closure, A.AccountManagementVM_fromStore__closure0, A.AccountManagementVM_fromStore___closure0, A.AccountManagementVM_fromStore__closure1, A.AccountManagementVM_fromStore___closure, A.AccountManagementVM_fromStore_closure, A.AccountManagementVM_fromStore_closure3, A.AccountManagementVM_fromStore_closure0, A._ClientPortalState__validateSubdomain__closure1, A._ClientPortalState__validateSubdomain__closure2, A._ClientPortalState_dispose_closure, A._ClientPortalState_didChangeDependencies_closure, A._ClientPortalState_didChangeDependencies_closure0, A._ClientPortalState__onChanged__closure, A._ClientPortalState__onChanged__closure0, A._ClientPortalState_build_closure21, A._ClientPortalState_build_closure, A._ClientPortalState_build__closure13, A._ClientPortalState_build_closure1, A._ClientPortalState_build_closure0, A._ClientPortalState_build_closure2, A._ClientPortalState_build_closure5, A._ClientPortalState_build__closure12, A._ClientPortalState_build_closure6, A._ClientPortalState_build__closure11, A._ClientPortalState_build_closure7, A._ClientPortalState_build__closure10, A._ClientPortalState_build_closure8, A._ClientPortalState_build__closure9, A._ClientPortalState_build_closure9, A._ClientPortalState_build__closure8, A._ClientPortalState_build_closure11, A._ClientPortalState_build__closure7, A._ClientPortalState_build_closure13, A._ClientPortalState_build__closure6, A._ClientPortalState_build___closure, A._ClientPortalState_build____closure, A._ClientPortalState_build_closure14, A._ClientPortalState_build__closure5, A._ClientPortalState_build_closure15, A._ClientPortalState_build__closure4, A._ClientPortalState_build_closure16, A._ClientPortalState_build__closure3, A._ClientPortalState_build_closure17, A._ClientPortalState_build__closure2, A._ClientPortalState_build_closure18, A._ClientPortalState_build__closure1, A._ClientPortalState_build_closure19, A._ClientPortalState_build__closure0, A._ClientPortalState_build_closure20, A._ClientPortalState_build__closure, A.ClientPortalVM_fromStore_closure1, A.ClientPortalVM_fromStore_closure0, A.ClientPortalVM_fromStore_closure, A.ClientPortalVM_fromStore___closure, A._CompanyDetailsState_didChangeDependencies_closure, A._CompanyDetailsState_didChangeDependencies_closure0, A._CompanyDetailsState_dispose_closure, A._CompanyDetailsState__onSettingsChanged_closure, A._CompanyDetailsState_build_closure0, A._CompanyDetailsState_build__closure11, A._CompanyDetailsState_build_closure, A._CompanyDetailsState_build_closure1, A._CompanyDetailsState_build_closure2, A._CompanyDetailsState_build__closure10, A._CompanyDetailsState_build_closure3, A._CompanyDetailsState_build__closure9, A._CompanyDetailsState_build_closure4, A._CompanyDetailsState_build__closure8, A._CompanyDetailsState_build_closure5, A._CompanyDetailsState_build___closure, A._CompanyDetailsState_build_closure6, A._CompanyDetailsState_build_closure7, A._CompanyDetailsState_build__closure5, A._CompanyDetailsState_build_closure8, A._CompanyDetailsState_build_closure9, A._CompanyDetailsState_build__closure4, A._CompanyDetailsState_build_closure11, A._CompanyDetailsState_build__closure3, A._CompanyDetailsState_build_closure12, A._CompanyDetailsState_build__closure2, A._CompanyDetailsState_build_closure13, A._CompanyDetailsState_build__closure1, A._CompanyDetailsState_build_closure14, A._CompanyDetailsState_build__closure0, A._CompanyDetailsState_build_closure15, A._CompanyDetailsState_build__closure, A.CompanyDetailsVM_fromStore_closure, A.CompanyDetailsVM_fromStore_closure0, A.CompanyDetailsVM_fromStore_closure3, A.CompanyDetailsVM_fromStore__closure1, A.CompanyDetailsVM_fromStore__closure2, A.CompanyDetailsVM_fromStore__closure3, A.CompanyDetailsVM_fromStore_closure1, A.CompanyDetailsVM_fromStore_closure4, A.CompanyDetailsVM_fromStore_closure5, A.CompanyDetailsVM_fromStore__closure, A.CompanyDetailsVM_fromStore__closure0, A.CompanyDetailsVM_fromStore___closure, A._CreditCardsAndBanksState_dispose_closure, A._CreditCardsAndBanksState_didChangeDependencies_closure, A._CreditCardsAndBanksState_didChangeDependencies_closure0, A._CustomFieldsState_initState_closure, A.CustomFieldsSettings_build_closure, A.CustomFieldsSettings_build__closure6, A.CustomFieldsSettings_build_closure0, A.CustomFieldsSettings_build__closure5, A.CustomFieldsSettings_build_closure1, A.CustomFieldsSettings_build__closure4, A.CustomFieldsSettings_build_closure2, A.CustomFieldsSettings_build__closure3, A.CustomFieldsSettings_build_closure3, A.CustomFieldsSettings_build__closure2, A.CustomFieldsSettings_build_closure4, A.CustomFieldsSettings_build__closure1, A.CustomFieldsSettings_build_closure5, A.CustomFieldsSettings_build__closure0, A.CustomFieldsSettings_build_closure6, A.CustomFieldsSettings_build__closure, A._CustomFormFieldState_dispose_closure, A._CustomFormFieldState_didChangeDependencies_closure, A._CustomFormFieldState_didChangeDependencies_closure0, A._CustomFormFieldState__onChanged_closure, A._CustomFormFieldState_build_closure, A._CustomFormFieldState_build_closure1, A.CustomFieldsVM_fromStore_closure0, A.CustomFieldsVM_fromStore_closure, A._DataVisualizationsState_dispose_closure, A._DataVisualizationsState_didChangeDependencies_closure, A._DataVisualizationsState_didChangeDependencies_closure0, A._DeviceSettingsState_didChangeDependencies_closure, A._DeviceSettingsState_didChangeDependencies_closure0, A._DeviceSettingsState_build_closure, A._DeviceSettingsState_build_closure0, A._DeviceSettingsState_build_closure1, A._DeviceSettingsState_build_closure2, A._DeviceSettingsState_build_closure3, A._DeviceSettingsState_build_closure4, A._DeviceSettingsState_build_closure5, A._DeviceSettingsState_build_closure6, A._DeviceSettingsState_build_closure7, A._DeviceSettingsState_build_closure8, A._DeviceSettingsState_build__closure7, A._DeviceSettingsState_build_closure10, A._DeviceSettingsState_build_closure11, A._DeviceSettingsState_build_closure12, A._DeviceSettingsState_build_closure13, A._DeviceSettingsState_build_closure14, A._DeviceSettingsState_build__closure4, A._DeviceSettingsState_build_closure16, A._DeviceSettingsState_build_closure17, A._DeviceSettingsState_build_closure18, A._DeviceSettingsState_build_closure19, A._DeviceSettingsState_build__closure2, A._DeviceSettingsState_build__closure3, A._DeviceSettingsState_build_closure20, A._DeviceSettingsState_build__closure1, A._DeviceSettingsState_build___closure0, A._DeviceSettingsState_build__closure0, A._DeviceSettingsState_build__closure, A._DeviceSettingsState_build___closure, A.DeviceSettingsVM_fromStore_closure, A.DeviceSettingsVM_fromStore_closure0, A.DeviceSettingsVM_fromStore__closure, A._EmailSettingsState_dispose_closure, A._EmailSettingsState_didChangeDependencies_closure, A._EmailSettingsState_didChangeDependencies_closure0, A._EmailSettingsState__onChanged_closure, A._EmailSettingsState__onChanged_closure0, A._EmailSettingsState_build_closure, A._EmailSettingsState_build__closure11, A._EmailSettingsState_build_closure1, A._EmailSettingsState_build__closure10, A._EmailSettingsState_build_closure2, A._EmailSettingsState_build_closure4, A._EmailSettingsState_build__closure9, A._EmailSettingsState_build_closure5, A._EmailSettingsState_build_closure6, A._EmailSettingsState_build_closure7, A._EmailSettingsState_build_closure8, A._EmailSettingsState_build_closure10, A._EmailSettingsState_build__closure8, A._EmailSettingsState_build_closure9, A._EmailSettingsState_build_closure12, A._EmailSettingsState_build__closure7, A._EmailSettingsState_build_closure11, A._EmailSettingsState_build_closure13, A._EmailSettingsState_build__closure6, A._EmailSettingsState_build_closure14, A._EmailSettingsState_build__closure5, A._EmailSettingsState_build_closure15, A._EmailSettingsState_build__closure4, A._EmailSettingsState_build_closure16, A._EmailSettingsState_build__closure3, A._EmailSettingsState_build_closure17, A._EmailSettingsState_build__closure2, A._EmailSettingsState_build_closure18, A._EmailSettingsState_build__closure1, A._EmailSettingsState_build_closure19, A._EmailSettingsState_build__closure0, A._EmailSettingsState_build_closure21, A._EmailSettingsState_build__closure, A._EmailSettingsState_build_closure20, A.EmailSettingsVM_fromStore_closure1, A.EmailSettingsVM_fromStore_closure0, A.EmailSettingsVM_fromStore_closure, A.EmailSettingsVM_fromStore_closure2, A._ExpenseSettingsState_build_closure, A._ExpenseSettingsState_build__closure6, A._ExpenseSettingsState_build_closure0, A._ExpenseSettingsState_build__closure5, A._ExpenseSettingsState_build_closure1, A._ExpenseSettingsState_build__closure4, A._ExpenseSettingsState_build_closure2, A._ExpenseSettingsState_build__closure3, A._ExpenseSettingsState_build_closure3, A._ExpenseSettingsState_build__closure2, A._ExpenseSettingsState_build_closure4, A._ExpenseSettingsState_build__closure1, A._ExpenseSettingsState_build_closure5, A._ExpenseSettingsState_build__closure0, A._ExpenseSettingsState_build_closure6, A._ExpenseSettingsState_build__closure, A.ExpenseSettingsVM_fromStore_closure0, A.ExpenseSettingsVM_fromStore_closure1, A.ExpenseSettingsVM_fromStore_closure, A.ExpenseSettingsVM_fromStore_closure2, A._GeneratedNumbersState_initState_closure, A._GeneratedNumbersState_dispose_closure, A._GeneratedNumbersState_didChangeDependencies_closure, A._GeneratedNumbersState_didChangeDependencies_closure0, A._GeneratedNumbersState__onChanged__closure, A._GeneratedNumbersState__onSavePressed_closure, A._GeneratedNumbersState__onSavePressed_closure0, A._GeneratedNumbersState_build_closure0, A._GeneratedNumbersState_build__closure16, A._GeneratedNumbersState_build_closure, A._GeneratedNumbersState_build_closure1, A._GeneratedNumbersState_build__closure15, A._GeneratedNumbersState_build_closure3, A._GeneratedNumbersState_build__closure14, A._GeneratedNumbersState_build__closure13, A._GeneratedNumbersState_build_closure5, A._GeneratedNumbersState_build__closure12, A._GeneratedNumbersState_build_closure6, A._GeneratedNumbersState_build__closure11, A._GeneratedNumbersState_build__closure10, A._GeneratedNumbersState_build__closure9, A._GeneratedNumbersState_build__closure8, A._GeneratedNumbersState_build__closure7, A._GeneratedNumbersState_build__closure6, A._GeneratedNumbersState_build__closure5, A._GeneratedNumbersState_build__closure4, A._GeneratedNumbersState_build__closure3, A._GeneratedNumbersState_build__closure2, A._GeneratedNumbersState_build__closure1, A._GeneratedNumbersState_build__closure0, A._GeneratedNumbersState_build__closure, A._EntityNumberSettingsState_dispose_closure, A._EntityNumberSettingsState_didChangeDependencies_closure, A._EntityNumberSettingsState_didChangeDependencies_closure0, A._EntityNumberSettingsState_build_closure0, A.HelpPanel_build_closure, A.HelpPanel_build_closure0, A.HelpPanel_build_closure1, A.HelpPanel_build_closure2, A.GeneratedNumbersVM_fromStore_closure0, A.GeneratedNumbersVM_fromStore_closure, A._ImportExportState_build_closure0, A._ImportExportState_build_closure, A._ImportExportState_build_closure3, A._ImportExportState_build_closure2, A._ImportExportState_build_closure5, A._ImportExportState_build_closure4, A._ImportExportState_build_closure7, A._ImportExportState_build_closure6, A._ImportExportState_build_closure9, A._ImportExportState_build_closure8, A._ImportExportState_build__closure0, A._ImportExportState_build__closure1, A._FileImportState_uploadJsonFile_closure0, A._FileImportState_uploadJsonFile_closure1, A._FileImportState_uploadFile_closure0, A._FileImportState_uploadFile_closure1, A._FileImportState_build_closure0, A._FileImportState_build_closure, A._FileImportState_build_closure2, A._FileImportState_build_closure3, A.__FileMapperState_build_closure, A.__FileMapperState_build_closure0, A.__FileMapperState_build_closure1, A.__FileMapperState_build__closure2, A.__FileMapperState_build_closure2, A.__FileMapperState_build_closure3, A.__FileMapperState_build__closure0, A.__FileMapperState_build__closure1, A._FieldMapper_build_closure2, A._FieldMapper_build__closure, A._FieldMapper_build_closure1, A._FieldMapper_build_closure0, A._InvoiceDesignState_initState_closure, A._InvoiceDesignState_didChangeDependencies_closure, A._InvoiceDesignState_didChangeDependencies_closure0, A._InvoiceDesignState__onChanged_closure, A._InvoiceDesignState_dispose_closure, A._InvoiceDesignState_build_closure76, A._InvoiceDesignState_build_closure, A._InvoiceDesignState_build_closure1, A._InvoiceDesignState_build_closure2, A._InvoiceDesignState_build__closure29, A._InvoiceDesignState_build_closure3, A._InvoiceDesignState_build_closure4, A._InvoiceDesignState_build__closure26, A._InvoiceDesignState_build_closure5, A._InvoiceDesignState_build_closure6, A._InvoiceDesignState_build__closure23, A._InvoiceDesignState_build_closure7, A._InvoiceDesignState_build_closure8, A._InvoiceDesignState_build__closure20, A._InvoiceDesignState_build_closure9, A._InvoiceDesignState_build_closure11, A._InvoiceDesignState_build__closure17, A._InvoiceDesignState_build_closure12, A._InvoiceDesignState_build__closure16, A._InvoiceDesignState_build_closure13, A._InvoiceDesignState_build__closure15, A._InvoiceDesignState_build_closure14, A._InvoiceDesignState_build__closure14, A._InvoiceDesignState_build_closure16, A._InvoiceDesignState_build__closure13, A._InvoiceDesignState_build_closure15, A._InvoiceDesignState_build_closure18, A._InvoiceDesignState_build__closure12, A._InvoiceDesignState_build_closure17, A._InvoiceDesignState_build_closure20, A._InvoiceDesignState_build__closure11, A._InvoiceDesignState_build_closure19, A._InvoiceDesignState_build_closure21, A._InvoiceDesignState_build__closure10, A._InvoiceDesignState_build_closure22, A._InvoiceDesignState_build__closure9, A._InvoiceDesignState_build_closure23, A._InvoiceDesignState_build__closure8, A._InvoiceDesignState_build_closure24, A._InvoiceDesignState_build__closure7, A._InvoiceDesignState_build_closure25, A._InvoiceDesignState_build__closure6, A._InvoiceDesignState_build_closure26, A._InvoiceDesignState_build__closure5, A._InvoiceDesignState_build_closure27, A._InvoiceDesignState_build__closure4, A._InvoiceDesignState_build_closure28, A._InvoiceDesignState_build__closure3, A._InvoiceDesignState_build_closure29, A._InvoiceDesignState_build__closure2, A._InvoiceDesignState_build_closure30, A._InvoiceDesignState_build__closure1, A._InvoiceDesignState_build_closure31, A._InvoiceDesignState_build__closure0, A._InvoiceDesignState_build_closure32, A._InvoiceDesignState_build_closure33, A._InvoiceDesignState_build_closure34, A._InvoiceDesignState_build_closure35, A._InvoiceDesignState_build_closure36, A._InvoiceDesignState_build_closure37, A._InvoiceDesignState_build_closure38, A._InvoiceDesignState_build_closure39, A._InvoiceDesignState_build_closure40, A._InvoiceDesignState_build_closure41, A._InvoiceDesignState_build_closure42, A._InvoiceDesignState_build_closure43, A._InvoiceDesignState_build_closure44, A._InvoiceDesignState_build_closure45, A._InvoiceDesignState_build_closure46, A._InvoiceDesignState_build_closure47, A._InvoiceDesignState_build_closure48, A._InvoiceDesignState_build_closure49, A._InvoiceDesignState_build_closure50, A._InvoiceDesignState_build_closure51, A._InvoiceDesignState_build_closure52, A._InvoiceDesignState_build_closure53, A._InvoiceDesignState_build_closure54, A._InvoiceDesignState_build_closure55, A._InvoiceDesignState_build_closure56, A._InvoiceDesignState_build_closure57, A._InvoiceDesignState_build_closure58, A._InvoiceDesignState_build_closure59, A._InvoiceDesignState_build_closure60, A._InvoiceDesignState_build_closure61, A._InvoiceDesignState_build_closure62, A._InvoiceDesignState_build_closure63, A._InvoiceDesignState_build_closure64, A._InvoiceDesignState_build_closure65, A._InvoiceDesignState_build_closure66, A._InvoiceDesignState_build__closure, A._InvoiceDesignState_build_closure67, A._InvoiceDesignState_build_closure68, A._InvoiceDesignState_build_closure69, A._InvoiceDesignState_build_closure70, A._InvoiceDesignState_build_closure71, A._InvoiceDesignState_build_closure72, A._InvoiceDesignState_build_closure73, A._InvoiceDesignState_build_closure74, A._InvoiceDesignState_build_closure75, A._PdfPreviewState__loadPdf_closure0, A._PdfPreviewState_build_closure, A.InvoiceDesignVM_fromStore_closure, A.InvoiceDesignVM_fromStore___closure, A.InvoiceDesignVM_fromStore____closure, A.InvoiceDesignVM_fromStore_____closure, A.InvoiceDesignVM_fromStore_____closure0, A._LocalizationSettingsState_dispose_closure, A._LocalizationSettingsState_didChangeDependencies_closure, A._LocalizationSettingsState_didChangeDependencies_closure0, A._LocalizationSettingsState_build_closure, A._LocalizationSettingsState_build_closure1, A._LocalizationSettingsState_build__closure13, A._LocalizationSettingsState_build_closure2, A._LocalizationSettingsState_build__closure12, A._LocalizationSettingsState_build_closure3, A._LocalizationSettingsState_build__closure11, A._LocalizationSettingsState_build_closure4, A._LocalizationSettingsState_build__closure10, A._LocalizationSettingsState_build_closure5, A._LocalizationSettingsState_build__closure9, A._LocalizationSettingsState_build_closure6, A._LocalizationSettingsState_build__closure8, A._LocalizationSettingsState_build_closure7, A._LocalizationSettingsState_build__closure7, A._LocalizationSettingsState_build_closure9, A._LocalizationSettingsState_build__closure6, A._LocalizationSettingsState_build_closure10, A._LocalizationSettingsState_build_closure11, A._LocalizationSettingsState_build__closure5, A._LocalizationSettingsState_build__closure3, A._LocalizationSettingsState_build___closure, A._LocalizationSettingsState_build__closure1, A._LocalizationSettingsState_build__closure2, A._LocalizationSettingsState_build_closure14, A._LocalizationSettingsState_build__closure0, A._LocalizationSettingsState_build__closure, A._AddCompanyDialogState_build_closure1, A.LocalizationSettingsVM_fromStore_closure0, A.LocalizationSettingsVM_fromStore_closure, A.LocalizationSettingsVM_fromStore_closure1, A.LocalizationSettingsVM_fromStore___closure, A.LocalizationSettingsVM_fromStore____closure, A._PaymentSettingsState_didChangeDependencies_closure, A._PaymentSettingsState_didChangeDependencies_closure0, A._PaymentSettingsState__onChanged_closure, A._PaymentSettingsState_build_closure, A._PaymentSettingsState_build__closure13, A._PaymentSettingsState_build_closure2, A._PaymentSettingsState_build__closure11, A._PaymentSettingsState_build_closure0, A._PaymentSettingsState_build__closure12, A._PaymentSettingsState_build_closure1, A._PaymentSettingsState_build_closure3, A._PaymentSettingsState_build__closure10, A._PaymentSettingsState_build_closure4, A._PaymentSettingsState_build__closure9, A._PaymentSettingsState_build_closure5, A._PaymentSettingsState_build__closure8, A._PaymentSettingsState_build_closure6, A._PaymentSettingsState_build__closure7, A._PaymentSettingsState_build_closure7, A._PaymentSettingsState_build__closure6, A._PaymentSettingsState_build_closure8, A._PaymentSettingsState_build__closure5, A._PaymentSettingsState_build_closure9, A._PaymentSettingsState_build__closure4, A._PaymentSettingsState_build_closure10, A._PaymentSettingsState_build__closure3, A._PaymentSettingsState_build_closure11, A._PaymentSettingsState_build__closure2, A._PaymentSettingsState_build_closure12, A._PaymentSettingsState_build__closure1, A._PaymentSettingsState_build_closure13, A._PaymentSettingsState_build__closure0, A._PaymentSettingsState_build_closure14, A._PaymentSettingsState_build__closure, A.PaymentSettingsVM_fromStore_closure0, A.PaymentSettingsVM_fromStore_closure1, A.PaymentSettingsVM_fromStore_closure, A.PaymentSettingsVM_fromStore_closure2, A._ProductSettingsState_didChangeDependencies_closure, A._ProductSettingsState_didChangeDependencies_closure0, A._ProductSettingsState_dispose_closure, A._ProductSettingsState__onChanged_closure, A._ProductSettingsState_build_closure, A._ProductSettingsState_build__closure9, A._ProductSettingsState_build_closure0, A._ProductSettingsState_build__closure8, A._ProductSettingsState_build_closure1, A._ProductSettingsState_build__closure7, A._ProductSettingsState_build_closure2, A._ProductSettingsState_build__closure6, A._ProductSettingsState_build_closure3, A._ProductSettingsState_build__closure5, A._ProductSettingsState_build_closure4, A._ProductSettingsState_build__closure4, A._ProductSettingsState_build_closure5, A._ProductSettingsState_build__closure3, A._ProductSettingsState_build_closure6, A._ProductSettingsState_build__closure2, A._ProductSettingsState_build_closure7, A._ProductSettingsState_build__closure1, A._ProductSettingsState_build_closure8, A._ProductSettingsState_build__closure0, A._ProductSettingsState_build_closure9, A._ProductSettingsState_build__closure, A.ProductSettingsVM_fromStore_closure0, A.ProductSettingsVM_fromStore_closure, A._SettingsListTileState_build_closure0, A._SettingsListTileState_build_closure1, A.SettingsSearch_build_closure0, A.SettingsListVM_fromStore_closure, A.SettingsListVM_fromStore_closure1, A.SettingsListVM_fromStore_closure0, A.SettingsScreen_build_closure, A._SettingsWizardState_dispose_closure, A._SettingsWizardState__validateSubdomain__closure1, A._SettingsWizardState__validateSubdomain__closure2, A._SettingsWizardState__onSavePressed__closure, A._SettingsWizardState__onSavePressed___closure0, A._SettingsWizardState__onSavePressed___closure1, A._SettingsWizardState__onSavePressed___closure2, A._SettingsWizardState__onSavePressed__closure0, A._SettingsWizardState__onSavePressed__closure2, A._SettingsWizardState_build_closure, A._SettingsWizardState_build_closure0, A._SettingsWizardState_build_closure1, A._SettingsWizardState_build_closure2, A._SettingsWizardState_build_closure3, A._SettingsWizardState_build_closure4, A._SettingsWizardState_build_closure5, A._SettingsWizardState_build__closure, A._SettingsWizardState_build_closure8, A._SettingsWizardState_build_closure7, A._TaskSettingsState_didChangeDependencies_closure, A._TaskSettingsState_didChangeDependencies_closure0, A._TaskSettingsState_dispose_closure, A._TaskSettingsState__onChanged_closure, A._TaskSettingsState_build_closure, A._TaskSettingsState_build__closure13, A._TaskSettingsState_build_closure0, A._TaskSettingsState_build__closure12, A._TaskSettingsState_build_closure1, A._TaskSettingsState_build__closure11, A._TaskSettingsState_build_closure2, A._TaskSettingsState_build__closure10, A._TaskSettingsState_build_closure4, A._TaskSettingsState_build__closure9, A._TaskSettingsState_build_closure5, A._TaskSettingsState_build__closure8, A._TaskSettingsState_build_closure6, A._TaskSettingsState_build__closure7, A._TaskSettingsState_build_closure7, A._TaskSettingsState_build__closure6, A._TaskSettingsState_build_closure8, A._TaskSettingsState_build__closure5, A._TaskSettingsState_build_closure9, A._TaskSettingsState_build__closure4, A._TaskSettingsState_build_closure10, A._TaskSettingsState_build__closure3, A._TaskSettingsState_build_closure11, A._TaskSettingsState_build__closure2, A._TaskSettingsState_build_closure12, A._TaskSettingsState_build__closure1, A._TaskSettingsState_build_closure13, A._TaskSettingsState_build__closure0, A._TaskSettingsState_build_closure14, A._TaskSettingsState_build__closure, A._TaskSettingsState_build_closure15, A.TaskSettingsVM_fromStore_closure0, A.TaskSettingsVM_fromStore_closure1, A.TaskSettingsVM_fromStore_closure, A.TaskSettingsVM_fromStore_closure2, A._TaxSettingsState_build_closure, A._TaxSettingsState_build__closure11, A._TaxSettingsState_build_closure0, A._TaxSettingsState_build__closure10, A._TaxSettingsState_build_closure1, A._TaxSettingsState_build__closure9, A._TaxSettingsState_build_closure2, A._TaxSettingsState_build__closure8, A._TaxSettingsState_build_closure3, A._TaxSettingsState_build__closure7, A._TaxSettingsState_build_closure4, A._TaxSettingsState_build__closure6, A._TaxSettingsState_build_closure5, A._TaxSettingsState_build__closure5, A._TaxSettingsState_build_closure7, A._TaxSettingsState_build__closure4, A._TaxSettingsState_build_closure9, A._TaxSettingsState_build__closure3, A._TaxSettingsState_build_closure8, A._TaxSettingsState_build_closure10, A._TaxSettingsState_build__closure0, A._TaxSettingsState_build___closure2, A._TaxSettingsState_build____closure1, A._TaxSettingsState_build__closure, A._TaxSettingsState_build__closure2, A._TaxSettingsState_build___closure, A._TaxSettingsState_build____closure0, A._TaxSettingsState_build_____closure, A._TaxSettingsState_build______closure, A._TaxSettingsState_build_______closure, A._TaxSettingsState_build____closure, A.NumberOfRatesSelector_build_closure, A.__EditSubregionDialogState__onDone_closure, A.__EditSubregionDialogState__onDone__closure, A.__EditSubregionDialogState__onDone___closure, A.__EditSubregionDialogState__onDone____closure, A.__EditSubregionDialogState_build_closure0, A.__EditSubregionDialogState_build_closure1, A.__EditSubregionDialogState_build_closure2, A.__EditSubregionDialogState_build_closure3, A.__EditSubregionDialogState_build_closure4, A.__EditSubregionDialogState_build_closure5, A.TaxSettingsVM_fromStore_closure0, A.TaxSettingsVM_fromStore_closure1, A.TaxSettingsVM_fromStore_closure, A.TaxSettingsVM_fromStore_closure2, A._TemplatesAndRemindersState_initState_closure, A._TemplatesAndRemindersState_dispose_closure, A._TemplatesAndRemindersState__onChanged_closure, A._TemplatesAndRemindersState__onChanged_closure0, A._TemplatesAndRemindersState__onChanged_closure1, A._TemplatesAndRemindersState__onChanged_closure2, A._TemplatesAndRemindersState__onChanged_closure3, A._TemplatesAndRemindersState__onChanged_closure4, A._TemplatesAndRemindersState__onChanged_closure5, A._TemplatesAndRemindersState__onChanged_closure6, A._TemplatesAndRemindersState__onChanged_closure7, A._TemplatesAndRemindersState__onChanged_closure8, A._TemplatesAndRemindersState__onChanged_closure9, A._TemplatesAndRemindersState__onChanged_closure10, A._TemplatesAndRemindersState__onChanged_closure11, A._TemplatesAndRemindersState__onChanged_closure12, A._TemplatesAndRemindersState__renderTemplate_closure0, A._TemplatesAndRemindersState_build_closure9, A._TemplatesAndRemindersState_build_closure1, A._TemplatesAndRemindersState_build_closure, A._TemplatesAndRemindersState_build_closure0, A._TemplatesAndRemindersState_build_closure2, A._TemplatesAndRemindersState_build__closure3, A._TemplatesAndRemindersState_build_closure3, A._TemplatesAndRemindersState_build__closure2, A._TemplatesAndRemindersState_build_closure4, A._TemplatesAndRemindersState_build__closure1, A._TemplatesAndRemindersState_build_closure5, A._TemplatesAndRemindersState_build__closure0, A._TemplatesAndRemindersState_build_closure7, A._TemplatesAndRemindersState_build__closure, A._ReminderSettingsState_dispose_closure, A._ReminderSettingsState_didChangeDependencies_closure, A._ReminderSettingsState_didChangeDependencies_closure0, A._ReminderSettingsState_build_closure, A._ReminderSettingsState_build_closure0, A.TemplatesAndRemindersVM_fromStore_closure0, A.TemplatesAndRemindersVM_fromStore_closure, A.TemplatesAndRemindersVM_fromStore____closure, A.TemplatesAndRemindersVM_fromStore____closure0, A.TemplatesAndRemindersVM_fromStore___closure0, A.TemplatesAndRemindersVM_fromStore___closure1, A.TemplatesAndRemindersVM_fromStore___closure2, A._UserDetailsState_dispose_closure, A._UserDetailsState_didChangeDependencies_closure, A._UserDetailsState_didChangeDependencies_closure0, A._UserDetailsState__onChanged_closure, A._UserDetailsState_build_closure4, A._UserDetailsState_build_closure5, A._UserDetailsState_build_closure6, A._UserDetailsState_build__closure5, A._UserDetailsState_build__closure6, A._UserDetailsState_build__closure7, A._UserDetailsState_build_closure8, A._UserDetailsState_build__closure4, A._UserDetailsState_build_closure9, A._UserDetailsState_build__closure3, A._UserDetailsState_build_closure11, A._UserDetailsState_build__closure2, A._UserDetailsState_build_closure10, A._UserDetailsState_build_closure12, A._UserDetailsState_build__closure1, A._UserDetailsState_build_closure13, A._UserDetailsState_build__closure0, A._UserDetailsState_build__closure, A._EnableTwoFactorState_initState_closure, A._EnableTwoFactorState_initState_closure0, A._EnableTwoFactorState__onSavePressed_closure1, A._EnableTwoFactorState__onSavePressed_closure2, A._EnableTwoFactorState_build_closure, A._EnableTwoFactorState_build_closure1, A._EnableTwoFactorState_build_closure0, A.UserDetailsVM_fromStore_closure, A.UserDetailsVM_fromStore_closure5, A.UserDetailsVM_fromStore__closure2, A.UserDetailsVM_fromStore_closure6, A.UserDetailsVM_fromStore__closure1, A.UserDetailsVM_fromStore_closure7, A.UserDetailsVM_fromStore__closure0, A.UserDetailsVM_fromStore_closure2, A.UserDetailsVM_fromStore__closure5, A.UserDetailsVM_fromStore____closure, A.UserDetailsVM_fromStore_closure1, A.UserDetailsVM_fromStore_closure4, A.UserDetailsVM_fromStore__closure3, A.UserDetailsVM_fromStore_closure8, A.UserDetailsVM_fromStore__closure, A.UserDetailsVM_fromStore_closure3, A.UserDetailsVM_fromStore___closure5, A.UserDetailsVM_fromStore_closure0, A.UserDetailsVM_fromStore___closure8, A.UserDetailsVM_fromStore____closure1, A.UserDetailsVM_fromStore____closure2, A.UserDetailsVM_fromStore___closure9, A._WorkflowSettingsState_build_closure, A._WorkflowSettingsState_build__closure5, A._WorkflowSettingsState_build_closure0, A._WorkflowSettingsState_build__closure4, A._WorkflowSettingsState_build_closure1, A._WorkflowSettingsState_build__closure3, A._WorkflowSettingsState_build_closure2, A._WorkflowSettingsState_build__closure2, A._WorkflowSettingsState_build_closure4, A._WorkflowSettingsState_build__closure1, A._WorkflowSettingsState_build_closure3, A._WorkflowSettingsState_build_closure5, A._WorkflowSettingsState_build__closure0, A._WorkflowSettingsState_build_closure6, A._WorkflowSettingsState_build__closure, A.WorkflowSettingsVM_fromStore_closure0, A.WorkflowSettingsVM_fromStore_closure1, A.WorkflowSettingsVM_fromStore_closure, A._SubscriptionEditState_didChangeDependencies_closure, A._SubscriptionEditState_didChangeDependencies_closure0, A._SubscriptionEditState_dispose_closure, A._SubscriptionEditState__onChanged_closure, A._SubscriptionEditState_build_closure33, A._SubscriptionEditState_build_closure, A._SubscriptionEditState_build__closure30, A._SubscriptionEditState_build_closure0, A._SubscriptionEditState_build__closure29, A._SubscriptionEditState_build_closure1, A._SubscriptionEditState_build__closure27, A._SubscriptionEditState_build___closure7, A._SubscriptionEditState_build__closure28, A._SubscriptionEditState_build_closure2, A._SubscriptionEditState_build_closure3, A._SubscriptionEditState_build___closure6, A._SubscriptionEditState_build_closure4, A._SubscriptionEditState_build__closure24, A._SubscriptionEditState_build___closure5, A._SubscriptionEditState_build__closure25, A._SubscriptionEditState_build_closure5, A._SubscriptionEditState_build_closure6, A._SubscriptionEditState_build___closure4, A._SubscriptionEditState_build_closure7, A._SubscriptionEditState_build__closure21, A._SubscriptionEditState_build___closure3, A._SubscriptionEditState_build__closure22, A._SubscriptionEditState_build_closure8, A._SubscriptionEditState_build_closure9, A._SubscriptionEditState_build___closure2, A._SubscriptionEditState_build_closure10, A._SubscriptionEditState_build__closure18, A._SubscriptionEditState_build___closure1, A._SubscriptionEditState_build__closure19, A._SubscriptionEditState_build_closure11, A._SubscriptionEditState_build_closure12, A._SubscriptionEditState_build___closure0, A._SubscriptionEditState_build_closure14, A._SubscriptionEditState_build__closure16, A._SubscriptionEditState_build_closure13, A._SubscriptionEditState_build_closure16, A._SubscriptionEditState_build__closure15, A._SubscriptionEditState_build_closure17, A._SubscriptionEditState_build__closure14, A._SubscriptionEditState_build_closure15, A._SubscriptionEditState_build_closure18, A._SubscriptionEditState_build__closure13, A._SubscriptionEditState_build_closure19, A._SubscriptionEditState_build__closure12, A._SubscriptionEditState_build_closure20, A._SubscriptionEditState_build__closure11, A._SubscriptionEditState_build_closure21, A._SubscriptionEditState_build__closure10, A._SubscriptionEditState_build_closure22, A._SubscriptionEditState_build__closure9, A._SubscriptionEditState_build_closure23, A._SubscriptionEditState_build__closure8, A._SubscriptionEditState_build_closure24, A._SubscriptionEditState_build__closure7, A._SubscriptionEditState_build_closure25, A._SubscriptionEditState_build__closure6, A._SubscriptionEditState_build_closure26, A._SubscriptionEditState_build__closure5, A._SubscriptionEditState_build_closure27, A._SubscriptionEditState_build__closure4, A._SubscriptionEditState_build_closure28, A._SubscriptionEditState_build__closure3, A._SubscriptionEditState_build_closure29, A._SubscriptionEditState_build_closure30, A._SubscriptionEditState_build__closure0, A._SubscriptionEditState_build_closure32, A._SubscriptionEditState_build___closure, A.SubscriptionEditScreen_build_closure0, A.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure, A.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure1, A.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure0, A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure, A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure0, A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure1, A.SubscriptionEditVM_SubscriptionEditVM$fromStore____closure, A.SubscriptionListItem_build_closure, A.SubscriptionListVM_fromStore__handleRefresh, A.SubscriptionListVM_fromStore_closure, A.SubscriptionListVM_fromStore_closure0, A.SubscriptionScreen_build_closure7, A.SubscriptionScreen_build_closure4, A.SubscriptionScreen_build_closure0, A.SubscriptionScreen_build_closure1, A.SubscriptionScreen_build_closure2, A.SubscriptionScreen_build_closure3, A.SubscriptionViewScreen_build_closure0, A._UpdateDialogState_updateApp__closure0, A._UpdateDialogState_updateApp__closure1, A._TaskEditState_build_closure1, A._TaskEditState_build_closure2, A._TaskEditDesktopState_didChangeDependencies_closure, A._TaskEditDesktopState_didChangeDependencies_closure0, A._TaskEditDesktopState_dispose_closure, A._TaskEditDesktopState__onChanged_closure, A._TaskEditDesktopState_build_closure, A._TaskEditDesktopState_build_closure0, A._TaskEditDesktopState_build_closure2, A._TaskEditDesktopState_build__closure10, A._TaskEditDesktopState_build_closure1, A._TaskEditDesktopState_build_closure3, A._TaskEditDesktopState_build__closure9, A._TaskEditDesktopState_build_closure4, A._TaskEditDesktopState_build_closure5, A._TaskEditDesktopState_build__closure8, A._TaskEditDesktopState_build_closure6, A._TaskEditDesktopState_build__closure7, A._TaskEditDesktopState_build_closure7, A._TaskEditDesktopState_build__closure0, A._TaskEditDesktopState_build__closure2, A._TaskEditDesktopState_build__closure3, A._TaskEditDesktopState_build__closure4, A._TaskEditDesktopState_build___closure1, A._TaskEditDesktopState_build___closure0, A._TaskEditDesktopState_build___closure, A._TaskEditDetailsState_didChangeDependencies_closure, A._TaskEditDetailsState_didChangeDependencies_closure0, A._TaskEditDetailsState_dispose_closure, A._TaskEditDetailsState__onChanged_closure, A._TaskEditDetailsState_build_closure0, A._TaskEditDetailsState_build__closure2, A._TaskEditDetailsState_build_closure, A._TaskEditDetailsState_build_closure1, A._TaskEditDetailsState_build__closure1, A._TaskEditDetailsState_build_closure2, A._TaskEditDetailsState_build_closure3, A._TaskEditDetailsState_build__closure0, A._TaskEditDetailsState_build_closure4, A._TaskEditDetailsState_build__closure, A.TaskEditDetailsScreen_build_closure0, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure2, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure3, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure3, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure0, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure1, A._TaskEditTimesState__showTaskTimeEditor_closure, A._TaskEditTimesState__showTaskTimeEditor__closure, A._TaskEditTimesState_build_closure, A._TaskEditTimesState_build_closure0, A.TimeEditDetailsState_build_closure0, A.TimeEditDetailsState_build_closure2, A.TimeEditDetailsState_build_closure3, A.TimeEditDetailsState_build_closure4, A.TimeEditDetailsState_build__closure1, A.TimeEditDetailsState_build_closure5, A.TimeEditDetailsState_build__closure, A.TaskEditTimesScreen_build_closure0, A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure, A.TaskEditScreen_build_closure0, A.TaskEditVM_TaskEditVM$fromStore_closure0, A.TaskEditVM_TaskEditVM$fromStore__closure, A.TaskEditVM_TaskEditVM$fromStore_closure, A.TaskEditVM_TaskEditVM$fromStore___closure, A.TaskEditVM_TaskEditVM$fromStore___closure0, A.TaskEditVM_TaskEditVM$fromStore___closure1, A.TaskEditVM_TaskEditVM$fromStore____closure, A._KanbanTaskCardState_build_closure, A._KanbanTaskCardState_build__closure4, A._KanbanTaskCardState_build_closure10, A._KanbanTaskCardState_build_closure9, A._KanbanTaskCardState_build_closure6, A._KanbanTaskCardState_build__closure2, A._KanbanTaskCardState_build_closure7, A._KanbanStatusCardState__onSavePressed_closure, A._KanbanStatusCardState_build_closure, A._KanbanStatusCardState_build_closure0, A.KanbanViewState__initBoard_closure, A.KanbanViewState__onBoardChanged_closure, A.KanbanViewState_build_closure, A.KanbanViewState_build_closure0, A.KanbanViewState_build____closure3, A.KanbanViewState_build__closure3, A.KanbanViewState_build__closure4, A.KanbanViewState_build___closure3, A.KanbanViewState_build___closure2, A.KanbanVM_fromStore_closure, A.KanbanVM_fromStore_closure1, A.KanbanVM_fromStore__closure, A.KanbanVM_fromStore_closure0, A.KanbanVM_fromStore__closure0, A.KanbanVM_fromStore__closure1, A.KanbanVM_fromStore__closure2, A.KanbanVM_fromStore__closure3, A.TaskListItem_build__closure, A.TaskListItem_build__closure3, A.TaskListVM_fromStore__handleRefresh, A.TaskListVM_fromStore_closure0, A.TaskListVM_fromStore_closure, A.TaskPresenter_getField_closure, A.TaskPresenter_getField_closure0, A.TaskScreen_build_closure, A.TaskScreen_build_closure0, A.TaskScreen_build_closure1, A.TaskScreen_build_closure2, A.TaskScreen_build_closure17, A.TaskScreen_build_closure13, A.TaskScreen_build_closure9, A.TaskScreen_build_closure10, A.TaskScreen_build_closure11, A.TaskScreen_build_closure12, A._TaskViewState_build_closure, A._TaskOverviewState_initState_closure, A._TaskOverviewState_build__buildView_closure, A._TaskOverviewState_build__buildView__closure, A.TaskViewScreen_build_closure0, A.TaskViewVM_TaskViewVM$fromStore__handleRefresh, A.TaskViewVM_TaskViewVM$fromStore_closure, A.TaskViewVM_TaskViewVM$fromStore_closure0, A.TaskViewVM_TaskViewVM$fromStore_closure1, A.TaskViewVM_TaskViewVM$fromStore__closure, A.TaskViewVM_TaskViewVM$fromStore__closure0, A.TaskViewVM_TaskViewVM$fromStore___closure, A._TaskStatusEditState_didChangeDependencies_closure, A._TaskStatusEditState_didChangeDependencies_closure0, A._TaskStatusEditState_dispose_closure, A._TaskStatusEditState__onChanged_closure, A._TaskStatusEditState_build_closure0, A._TaskStatusEditState_build_closure, A._TaskStatusEditState_build__closure, A._TaskStatusEditState_build__closure0, A._TaskStatusEditState_build___closure, A.TaskStatusEditScreen_build_closure0, A.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure, A.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure1, A.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure0, A.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure, A.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure0, A.TaskStatusEditVM_TaskStatusEditVM$fromStore____closure, A._TaskStatusListState_build_closure, A.TaskStatusListItem_build_closure, A.TaskStatusListVM_fromStore__handleRefresh, A.TaskStatusListVM_fromStore_closure, A.TaskStatusListVM_fromStore__closure, A.TaskStatusScreen_build_closure8, A.TaskStatusScreen_build__closure, A.TaskStatusScreen_build__closure0, A.TaskStatusScreen_build_closure5, A.TaskStatusScreen_build_closure1, A.TaskStatusScreen_build_closure2, A.TaskStatusScreen_build_closure3, A.TaskStatusScreen_build_closure4, A.TaskStatusViewScreen_build_closure0, A._TaxRateEditState_didChangeDependencies_closure, A._TaxRateEditState_didChangeDependencies_closure0, A._TaxRateEditState_dispose_closure, A._TaxRateEditState__onChanged_closure, A._TaxRateEditState_build_closure, A.TaxRateEditScreen_build_closure0, A.TaxRateEditVM_TaxRateEditVM$fromStore_closure, A.TaxRateEditVM_TaxRateEditVM$fromStore_closure1, A.TaxRateEditVM_TaxRateEditVM$fromStore_closure0, A.TaxRateEditVM_TaxRateEditVM$fromStore___closure, A.TaxRateEditVM_TaxRateEditVM$fromStore___closure0, A.TaxRateEditVM_TaxRateEditVM$fromStore____closure, A.TaxRateListItem_build_closure, A.TaxRateListVM_fromStore__handleRefresh, A.TaxRateListVM_fromStore_closure, A.TaxRateListVM_fromStore_closure0, A.TaxRateSettingsScreen_build_closure3, A.TaxRateSettingsScreen_build_closure0, A.TaxRateViewScreen_build_closure0, A._TokenEditState_didChangeDependencies_closure, A._TokenEditState_didChangeDependencies_closure0, A._TokenEditState_dispose_closure, A._TokenEditState__onChanged_closure, A._TokenEditState_build_closure0, A._TokenEditState_build_closure, A._TokenEditState_build__closure, A.TokenEditScreen_build_closure0, A.TokenEditVM_TokenEditVM$fromStore_closure, A.TokenEditVM_TokenEditVM$fromStore_closure1, A.TokenEditVM_TokenEditVM$fromStore_closure0, A.TokenEditVM_TokenEditVM$fromStore____closure, A.TokenEditVM_TokenEditVM$fromStore____closure0, A.TokenEditVM_TokenEditVM$fromStore_____closure, A.TokenListItem_build_closure, A.TokenListVM_fromStore__handleRefresh, A.TokenListVM_fromStore_closure, A.TokenListVM_fromStore_closure0, A.TokenScreen_build_closure7, A.TokenScreen_build_closure4, A.TokenScreen_build_closure0, A.TokenScreen_build_closure1, A.TokenScreen_build_closure2, A.TokenScreen_build_closure3, A.TokenViewScreen_build_closure0, A._TransactionEditState_didChangeDependencies_closure, A._TransactionEditState_didChangeDependencies_closure0, A._TransactionEditState_dispose_closure, A._TransactionEditState__onChanged__closure, A._TransactionEditState_build_closure0, A._TransactionEditState_build_closure1, A._TransactionEditState_build_closure, A._TransactionEditState_build__closure, A._TransactionEditState_build___closure3, A._TransactionEditState_build___closure2, A._TransactionEditState_build__closure1, A._TransactionEditState_build__closure2, A._TransactionEditState_build__closure3, A._TransactionEditState_build___closure1, A._TransactionEditState_build__closure6, A._TransactionEditState_build___closure, A._TransactionEditState_build__closure4, A._TransactionEditState_build___closure0, A._TransactionEditState_build__closure8, A._TransactionEditState_build__closure7, A.TransactionEditScreen_build_closure0, A.TransactionEditVM_TransactionEditVM$fromStore_closure, A.TransactionEditVM_TransactionEditVM$fromStore_closure1, A.TransactionEditVM_TransactionEditVM$fromStore_closure0, A.TransactionEditVM_TransactionEditVM$fromStore___closure, A.TransactionEditVM_TransactionEditVM$fromStore___closure0, A.TransactionEditVM_TransactionEditVM$fromStore____closure, A.TransactionEditVM_TransactionEditVM$fromStore__closure, A.TransactionEditVM_TransactionEditVM$fromStore__closure0, A.TransactionListItem_build__closure, A.TransactionListItem_build__closure3, A.TransactionListVM_fromStore__handleRefresh, A.TransactionListVM_fromStore_closure, A.TransactionListVM_fromStore_closure0, A.TransactionPresenter_getField_closure, A.TransactionPresenter_getField_closure0, A.TransactionPresenter_getField_closure1, A.TransactionPresenter_getField_closure2, A.TransactionScreen_build_closure, A.TransactionScreen_build_closure0, A.TransactionScreen_build_closure1, A.TransactionScreen_build_closure2, A.TransactionScreen_build_closure3, A.TransactionScreen_build_closure13, A.TransactionScreen_build_closure10, A.TransactionScreen_build_closure6, A.TransactionScreen_build_closure7, A.TransactionScreen_build_closure8, A.TransactionScreen_build_closure9, A._TransactionViewState_build_closure, A._TransactionViewState_build_closure0, A._TransactionViewState_build_closure1, A._MatchDepositsState_initState_closure, A._MatchDepositsState_updateInvoiceList_closure, A._MatchDepositsState_updatePaymentList_closure, A._MatchDepositsState_build_closure, A._MatchDepositsState_build_closure0, A._MatchDepositsState_build_closure1, A._MatchDepositsState_build_closure2, A._MatchDepositsState_build_closure5, A._MatchDepositsState_build_closure8, A._MatchDepositsState_build_closure9, A._MatchDepositsState_build__closure, A._MatchWithdrawalsState_updateCategoryList_closure, A._MatchWithdrawalsState_updateVendorList_closure, A._MatchWithdrawalsState_updateExpenseList_closure, A._MatchWithdrawalsState_build_closure, A._MatchWithdrawalsState_build_closure0, A._MatchWithdrawalsState_build_closure1, A._MatchWithdrawalsState_build_closure2, A._MatchWithdrawalsState_build_closure5, A._MatchWithdrawalsState_build_closure6, A._MatchWithdrawalsState_build____closure1, A._MatchWithdrawalsState_build_____closure, A._MatchWithdrawalsState_build_closure11, A._MatchWithdrawalsState_build__closure6, A._MatchWithdrawalsState_build__closure7, A._MatchWithdrawalsState_build___closure2, A._MatchWithdrawalsState_build____closure0, A._MatchWithdrawalsState_build_closure16, A._MatchWithdrawalsState_build__closure1, A._MatchWithdrawalsState_build__closure2, A._MatchWithdrawalsState_build___closure0, A._MatchWithdrawalsState_build____closure, A._MatchWithdrawalsState_build__closure, A.TransactionViewScreen_build_closure0, A.TransactionViewScreen_build__closure, A.TransactionViewVM_TransactionViewVM$fromStore_closure, A.TransactionViewVM_TransactionViewVM$fromStore_closure1, A.TransactionViewVM_TransactionViewVM$fromStore__closure, A._TransactionRuleEditState_didChangeDependencies_closure, A._TransactionRuleEditState_didChangeDependencies_closure0, A._TransactionRuleEditState_dispose_closure, A._TransactionRuleEditState__onChanged__closure, A._TransactionRuleEditState_build_closure0, A._TransactionRuleEditState_build_closure1, A._TransactionRuleEditState_build_closure, A._TransactionRuleEditState_build__closure, A._TransactionRuleEditState_build__closure0, A._TransactionRuleEditState_build__closure1, A._TransactionRuleEditState_build___closure9, A._TransactionRuleEditState_build__closure2, A._TransactionRuleEditState_build___closure8, A._TransactionRuleEditState_build___closure6, A._TransactionRuleEditState_build___closure7, A._TransactionRuleEditState_build___closure5, A._TransactionRuleEditState_build___closure3, A._TransactionRuleEditState_build___closure4, A._TransactionRuleEditState_build__closure7, A._TransactionRuleEditState_build___closure1, A._TransactionRuleEditState_build___closure2, A._TransactionRuleEditState_build__closure9, A._TransactionRuleEditState_build___closure, A._TransactionRuleEditState_build___closure0, A.__RuleCriteriaState_build_closure, A.__RuleCriteriaState_build___closure1, A.__RuleCriteriaState_build_closure0, A.__RuleCriteriaState_build___closure0, A.__RuleCriteriaState_build_closure1, A.__RuleCriteriaState_build___closure, A.__RuleCriteriaState_build_closure2, A.__RuleCriteriaState_build_closure3, A.TransactionRuleEditScreen_build_closure0, A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore_closure, A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore_closure1, A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore_closure0, A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore___closure, A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore___closure0, A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore____closure, A.TransactionRuleListItem_build_closure, A.TransactionRuleListVM_fromStore__handleRefresh, A.TransactionRuleListVM_fromStore_closure, A.TransactionRuleListVM_fromStore_closure0, A.TransactionRuleScreen_build_closure7, A.TransactionRuleScreen_build_closure4, A.TransactionRuleScreen_build_closure0, A.TransactionRuleScreen_build_closure1, A.TransactionRuleScreen_build_closure2, A.TransactionRuleScreen_build_closure3, A.TransactionRuleViewScreen_build_closure0, A._UserEditState_didChangeDependencies_closure, A._UserEditState_didChangeDependencies_closure0, A._UserEditState_dispose_closure, A._UserEditState__onChanged_closure, A._UserEditState__togglePermission_closure, A._UserEditState__togglePermission_closure0, A._UserEditState_build_closure15, A._UserEditState_build_closure, A._UserEditState_build_closure0, A._UserEditState_build_closure1, A._UserEditState_build__closure12, A._UserEditState_build_closure3, A._UserEditState_build__closure11, A._UserEditState_build_closure4, A._UserEditState_build__closure9, A._UserEditState_build__closure10, A._UserEditState_build_closure5, A._UserEditState_build__closure7, A._UserEditState_build__closure8, A._UserEditState_build__closure6, A._UserEditState_build___closure0, A._UserEditState_build_closure7, A._UserEditState_build_closure9, A._UserEditState_build_closure11, A._UserEditState_build_closure13, A._UserEditState_build_closure14, A._UserEditState_build___closure, A._UserEditState_build____closure, A._UserEditState_build__closure1, A._UserEditState_build__closure3, A._UserEditState_build__closure5, A.UserEditScreen_build_closure0, A.UserEditVM_UserEditVM$fromStore_closure, A.UserEditVM_UserEditVM$fromStore_closure1, A.UserEditVM_UserEditVM$fromStore_closure0, A.UserEditVM_UserEditVM$fromStore___closure0, A.UserEditVM_UserEditVM$fromStore___closure1, A.UserEditVM_UserEditVM$fromStore____closure, A.UserListItem_build_closure, A.UserListVM_fromStore__handleRefresh, A.UserListVM_fromStore_closure, A.UserListVM_fromStore_closure0, A.UserScreen_build_closure7, A.UserScreen_build_closure4, A.UserScreen_build_closure0, A.UserScreen_build_closure1, A.UserScreen_build_closure2, A.UserScreen_build_closure3, A.UserViewScreen_build_closure0, A._VendorEditState_build_closure, A._VendorEditState_build_closure0, A.VendorEditAddressState_didChangeDependencies_closure, A.VendorEditAddressState_didChangeDependencies_closure0, A.VendorEditAddressState_dispose_closure, A.VendorEditAddressState__onChanged_closure, A.VendorEditAddressState_build_closure, A.VendorEditAddressState_build__closure, A._VendorEditContactsState__showContactEditor_closure, A._VendorEditContactsState__showContactEditor__closure, A._VendorEditContactsState_build_closure, A._VendorEditContactsState_build_closure0, A.VendorContactEditDetailsState_didChangeDependencies_closure, A.VendorContactEditDetailsState_didChangeDependencies_closure0, A.VendorContactEditDetailsState_dispose_closure, A.VendorContactEditDetailsState__onChanged_closure, A.VendorContactEditDetailsState_build_closure, A.VendorContactEditDetailsState_build_closure0, A.VendorContactEditDetailsState_build_closure1, A.VendorContactEditDetailsState_build_closure2, A.VendorContactEditDetailsState_build_closure4, A.VendorContactEditDetailsState_build_closure3, A.VendorContactEditDetailsState_build_closure5, A.VendorContactEditDetailsState_build_closure6, A.VendorContactEditDetailsState_build_closure7, A.VendorContactEditDetailsState_build_closure8, A.VendorContactEditDetailsState_build_closure9, A.VendorContactEditDetailsState_build_closure10, A.VendorContactEditDetailsState_build___closure, A.VendorContactEditDetailsState_build__closure1, A.VendorContactEditDetailsState_build__closure, A.VendorEditContactsScreen_build_closure0, A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure0, A.VendorEditDetailsState_didChangeDependencies_closure, A.VendorEditDetailsState_didChangeDependencies_closure0, A.VendorEditDetailsState_dispose_closure, A.VendorEditDetailsState__onChanged_closure, A.VendorEditDetailsState_build_closure, A.VendorEditDetailsState_build_closure0, A.VendorEditDetailsState_build__closure0, A.VendorEditDetailsState_build_closure2, A.VendorEditDetailsState_build__closure, A.VendorEditDetailsState_build_closure1, A.VendorEditNotesState_didChangeDependencies_closure, A.VendorEditNotesState_didChangeDependencies_closure0, A.VendorEditNotesState_dispose_closure, A.VendorEditNotesState__onChanged_closure, A.VendorEditSettingsState_build_closure, A.VendorEditSettingsState_build__closure0, A.VendorEditSettingsState_build_closure0, A.VendorEditSettingsState_build__closure, A.VendorEditScreen_build_closure0, A.VendorEditVM_VendorEditVM$fromStore_closure, A.VendorEditVM_VendorEditVM$fromStore_closure1, A.VendorEditVM_VendorEditVM$fromStore_closure0, A.VendorEditVM_VendorEditVM$fromStore___closure, A.VendorEditVM_VendorEditVM$fromStore___closure0, A.VendorEditVM_VendorEditVM$fromStore___closure1, A.VendorEditVM_VendorEditVM$fromStore____closure, A.VendorListItem_build__closure, A.VendorListItem_build__closure3, A.VendorListVM_fromStore__handleRefresh, A.VendorListVM_fromStore_closure, A.VendorListVM_fromStore_closure0, A.VendorPresenter_getField_closure, A.VendorScreen_build_closure7, A.VendorScreen_build_closure4, A.VendorScreen_build_closure0, A.VendorScreen_build_closure1, A.VendorScreen_build_closure2, A.VendorScreen_build_closure3, A._VendorViewState_build_closure, A._VendorViewDetailsState_build__buildDetailsList_closure, A._VendorViewFullwidthState_build__closure1, A.VendorViewScreen_build_closure0, A.VendorViewVM_VendorViewVM$fromStore__handleRefresh, A.VendorViewVM_VendorViewVM$fromStore_closure, A.VendorViewVM_VendorViewVM$fromStore_closure0, A.VendorViewVM_VendorViewVM$fromStore__closure, A.VendorViewVM_VendorViewVM$fromStore__closure0, A.VendorViewVM_VendorViewVM$fromStore___closure, A._WebhookEditState_didChangeDependencies_closure, A._WebhookEditState_didChangeDependencies_closure0, A._WebhookEditState_dispose_closure, A._WebhookEditState__onChanged_closure, A._WebhookEditState_build_closure0, A._WebhookEditState_build_closure, A._WebhookEditState_build__closure, A._WebhookEditState_build__closure1, A._WebhookEditState_build___closure4, A._WebhookEditState_build__closure0, A._WebhookEditState_build__closure2, A._WebhookEditState_build___closure3, A._WebhookEditState_build__closure3, A._WebhookEditState_build__closure4, A._WebhookEditState_build___closure0, A._WebhookEditState_build__closure6, A._WebhookEditState_build____closure, A.WebhookEditScreen_build_closure0, A.WebhookEditVM_WebhookEditVM$fromStore_closure, A.WebhookEditVM_WebhookEditVM$fromStore_closure1, A.WebhookEditVM_WebhookEditVM$fromStore_closure0, A.WebhookEditVM_WebhookEditVM$fromStore___closure, A.WebhookEditVM_WebhookEditVM$fromStore___closure0, A.WebhookEditVM_WebhookEditVM$fromStore____closure, A.WebhookViewScreen_build_closure0, A.WebhookListItem_build_closure, A.WebhookListVM_fromStore__handleRefresh, A.WebhookListVM_fromStore_closure, A.WebhookListVM_fromStore_closure0, A.WebhookScreen_build_closure7, A.WebhookScreen_build_closure4, A.WebhookScreen_build_closure0, A.WebhookScreen_build_closure1, A.WebhookScreen_build_closure2, A.WebhookScreen_build_closure3, A.snackBarCompleter_closure, A.snackBarCompleter_closure0, A.snackBarCompleter__closure, A.loadDesign_closure, A.loadDesign_closure0, A.showRefreshDataDialog_closure, A.showErrorDialog_closure, A.showMessageDialog_closure, A.confirmCallback_closure, A.confirmCallback__closure, A.confirmCallback__closure0, A.confirmCallback__closure1, A.passwordCallback_closure0, A.passwordCallback__closure0, A.passwordCallback__closure, A.passwordCallback_closure3, A._PasswordConfirmationState_build_closure0, A._PasswordConfirmationState_build_closure1, A.fieldCallback_closure, A._FieldConfirmationState_build_closure, A._FieldConfirmationState_build_closure0, A.cloneToDialog_closure, A.changeTaskStatusDialog_closure, A.changeTaskStatusDialog_closure0, A.changeTaskStatusDialog__closure, A.changeTaskStatusDialog____closure, A.addToInvoiceDialog_closure, A.addToInvoiceDialog_closure0, A.addToInvoiceDialog__closure, A.addToInvoiceDialog____closure, A._RunTemplateDialogState_build__closure1, A._RunTemplateDialogState_build__closure3, A._RunTemplateDialogState_build__closure4, A._RunTemplateDialogState_build_closure2, A._RunTemplateDialogState_build_closure3, A._RunTemplateDialogState_build_closure4, A._RunTemplateDialogState_build_closure5, A.EnumUtils_fromString_closure, A.GoogleOAuth_signIn_closure, A.GoogleOAuth_signUp_closure, A.toSnakeCase_closure, A.toCamelCase_closure, A.toSpaceCase_closure, A.toTitleCase_closure, A.matchesStrings_closure, A.matchesString_closure, A.matchesString_closure0, A.matchesStringsValue_closure, A.getRandomString_closure, A._ExampleEditorState__showEditorToolbar_closure, A._ExampleEditorState__showImageToolbar_closure, A._ExampleEditorState_build_closure, A._ExampleEditorState_build_closure0, A._ExampleEditorState__buildMountedToolbar_closure, A._EditorToolbarState__getSelectedLinkSpans_closure, A._EditorToolbarState__onLinkPressed_closure, A._EditorToolbarState__buildUrlField_closure0, A._EditorToolbarState__buildUrlField_closure, A._ImageFormatToolbarState_build_closure, A._PositionedToolbar_build_closure, A.loadEmailTemplate_closure, A.loadEmailTemplate_closure0, A.WebUtils_registerWebView_closure, A.WebUtils_warnChanges_closure, A.WebUtils_microsoftLogin_closure, A.WebUtils_microsoftLogin_closure0, A.Element_textContent_closure, A.BlockSyntax_isAtBlockEnd_closure, A.BlockquoteSyntax_parseChildLines_closure, A.ListSyntax_parse_tryMatch, A.ParagraphSyntax__extractReflinkDefinitions_lineStartsReflinkDefinition, A.InlineParser_closure, A.InlineParser_parse_closure, A.InlineParser__linkOrImage_closure, A.InlineParser__linkOrImage_closure0, A.InlineParser__processEmphasis_closure0, A.LinkSyntax_closure, A.ImageSyntax__createNode_closure, A.memo1_closure, A.memo3_closure, A.memo4_closure, A.memo5_closure, A.memo6_closure, A.memo7_closure, A.memo8_closure, A.memo9_closure, A.memo10_closure, A.RenderOverflowView_resetOffstage_closure, A.RenderOverflowView_performFixedLayout_getChildOffset, A.RenderOverflowView_visitOnlyOnStageChildren_closure, A.RenderOverflowView_paint_paintChild, A.RenderOverflowView_hitTestChildren_closure, A._RenderIosPagedMenu__scheduleUpdateControllerPageCount_closure, A.Context_joinAll_closure, A.Context_split_closure, A._validateArgList_closure, A._PinchZoomState_build_closure0, A._PinchZoomState_build_closure, A._PinputState__buildPinput_closure1, A._PinputState__buildPinput__closure0, A._PinputState__buildPinput__closure1, A._PinputState__buildEditable_closure, A._PinputState__buildEditable_closure0, A._PinputState__buildFields_onlyFields_closure, A._SeparatedRaw_build_closure, A._PinputAnimatedCursorState__startCursorAnimation_closure, A._registerFactory_closure, A.PrintingPlugin_layoutPdf_closure, A.PrintingPlugin_layoutPdf_closure0, A.PrintingPlugin_raster_closure, A.PrintingPlugin_raster_closure0, A.MethodChannelPrinting__handleMethod_closure, A.PdfPreviewCustomState_didChangeDependencies_closure, A.PdfPreviewState_didChangeDependencies_closure, A.PdfPreviewState_build_closure, A.PdfRaster_toImage_closure, A.Store__createReduceAndNotify_closure, A.Store__createDispatchers_closure, A.RoundedLoadingButtonState_initState_closure1, A.RoundedLoadingButtonState_initState_closure3, A._forwardMulti_closure, A._forwardMulti_closure_listenToUpstream, A._forward_closure_listenToUpstream, A.SdkVersion_toJson_closure, A.SharedPreferencesPlugin__getFilteredKeys_closure, A.MethodChannelSignInWithApple__signInWithAppleAndroid_closure, A.Highlighter$__closure, A.Highlighter$___closure, A.Highlighter$__closure0, A.Highlighter__collateLines_closure, A.Highlighter__collateLines_closure1, A.Highlighter__collateLines__closure, A.Highlighter_highlight_closure, A.OnBuilder_closure, A.OnBuilder_closure0, A._MyStatefulWidgetState_initState_closure, A.ReactiveModelImp_setStateNullable_closure0, A.ReactiveModelImp_initialize_closure, A.ReactiveModelImp__handleAsyncState_closure, A.ReactiveModelImp__handleAsyncState__closure0, A.MutableDocument_onTransactionEnd_closure, A._BlockquoteComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure, A.PasteEditorCommand__convertLinesToParagraphs_closure, A.UpdateComposerTextStylesReaction_react_closure, A.UpdateComposerTextStylesReaction__updateComposerStylesAtCaret_closure, A.UpdateComposerTextStylesReaction__updateComposerStylesAtCaret_closure0, A.defaultRequestHandlers_closure, A.defaultRequestHandlers_closure0, A.defaultRequestHandlers_closure1, A.defaultRequestHandlers_closure2, A.defaultRequestHandlers_closure3, A.defaultRequestHandlers_closure4, A.defaultRequestHandlers_closure5, A.defaultRequestHandlers_closure6, A.defaultRequestHandlers_closure7, A.defaultRequestHandlers_closure8, A.defaultRequestHandlers_closure9, A.defaultRequestHandlers_closure10, A.defaultRequestHandlers_closure11, A.defaultRequestHandlers_closure12, A.defaultRequestHandlers_closure13, A.defaultRequestHandlers_closure14, A.defaultRequestHandlers_closure15, A.defaultRequestHandlers_closure16, A.defaultRequestHandlers_closure17, A.defaultRequestHandlers_closure18, A.defaultRequestHandlers_closure19, A.defaultRequestHandlers_closure20, A.defaultRequestHandlers_closure21, A.defaultRequestHandlers_closure22, A.defaultRequestHandlers_closure23, A.defaultRequestHandlers_closure24, A.defaultRequestHandlers_closure25, A.defaultRequestHandlers_closure26, A.defaultRequestHandlers_closure27, A.defaultRequestHandlers_closure28, A.defaultRequestHandlers_closure29, A.defaultRequestHandlers_closure30, A.defaultRequestHandlers_closure31, A.defaultRequestHandlers_closure32, A.defaultRequestHandlers_closure33, A.defaultRequestHandlers_closure34, A.defaultRequestHandlers_closure35, A.defaultRequestHandlers_closure36, A.defaultRequestHandlers_closure37, A.ImageUrlConversionReaction_react_closure, A.ImageUrlConversionReaction_react_closure1, A.ImageUrlConversionReaction_react_closure2, A.LinkifyReaction__extractUpstreamWordAndLinkify_closure, A.LinkifyReaction__moveOffsetByWord_closure, A.LinkifyReaction__moveOffsetByWord_closure0, A.LinkifyReaction__moveOffsetByWord_closure1, A._EditorSelectionAndFocusPolicyState__onFocusChange_closure, A._DocumentMouseInteractorState__onSelectionChange_closure, A._DocumentMouseInteractorState_build_closure, A._DocumentMouseInteractorState_build_closure0, A._DocumentMouseInteractorState__buildCursorStyle_closure, A._DocumentMouseInteractorState__buildCursorStyle__closure, A._DocumentMouseInteractorState__buildGestureInput_closure0, A._DocumentMouseInteractorState__buildGestureInput_closure2, A.SuperEditorAndroidControlsScope_maybeRootOf_closure, A._AndroidDocumentTouchInteractorState_didChangeDependencies_closure, A._AndroidDocumentTouchInteractorState_didChangeMetrics_closure, A._AndroidDocumentTouchInteractorState__configureScrollController_closure, A._AndroidDocumentTouchInteractorState__onScrollActivityChange_closure, A._AndroidDocumentTouchInteractorState__onDocumentChange_closure, A._AndroidDocumentTouchInteractorState_build_closure0, A._AndroidDocumentTouchInteractorState_build_closure2, A.SuperEditorAndroidControlsOverlayManagerState__buildCollapsedHandle_closure, A.SuperEditorAndroidControlsOverlayManagerState__buildCollapsedHandle__closure0, A.SuperEditorAndroidControlsOverlayManagerState__buildCollapsedHandle__closure, A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles_closure, A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles__closure2, A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles__closure1, A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles_closure0, A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles__closure0, A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles__closure, A.SuperEditorAndroidControlsOverlayManagerState__buildToolbar_closure, A.SuperEditorAndroidControlsOverlayManagerState__buildMagnifierFocalPoint_closure, A.SuperEditorAndroidControlsOverlayManagerState__buildMagnifier_closure, A.SuperEditorAndroidControlsOverlayManagerState__buildDebugSelectionFocalPoint_closure, A.SuperEditorIosControlsScope_maybeRootOf_closure, A._IosDocumentTouchInteractorState_didChangeDependencies_closure, A._IosDocumentTouchInteractorState_didChangeMetrics_closure, A._IosDocumentTouchInteractorState__configureScrollController_closure, A._IosDocumentTouchInteractorState__onScrollActivityChange_closure, A._IosDocumentTouchInteractorState__onDocumentChange_closure, A._IosDocumentTouchInteractorState_build_closure0, A._IosDocumentTouchInteractorState_build_closure2, A._IosDocumentTouchInteractorState_build_closure4, A._IosDocumentTouchInteractorState__buildMagnifierFocalPoint_closure, A.SuperEditorIosMagnifierOverlayManagerState__buildMagnifier_closure, A._EditorFloatingCursorState__buildFloatingCursor_closure, A.DocumentImeInputClient_updateEditingValueWithDeltas_closure, A._DocumentSelectionOpenAndCloseImePolicyState_didUpdateWidget_closure, A._SoftwareKeyboardOpenerState_dispose_closure, A._KeyboardEditingToolbarState__buildToolbarOverlay__closure, A.SuperEditorImeInteractorState__createTextDeltasDocumentEditor_closure, A.SuperEditorImeInteractorState__reportVisualInformationToIme_closure, A._DocumentScrollableState_initState_closure, A._SingleColumnDocumentLayoutState__getNodeIdsBetween_closure, A.SingleColumnLayoutComposingRegionStyler__computeNodeSelection_closure, A.SingleColumnLayoutSelectionStyler__computeNodeSelection_closure, A._ListItemComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure, A.SplitParagraphCommand_execute_closure, A._ParagraphComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure, A.SuperEditorState_build_closure, A.SuperEditorState_build__closure, A.SuperEditorState_build__closure0, A.SuperEditorState_build__closure1, A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure, A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure2, A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure3, A.TaskComponentBuilder_createViewModel_closure, A._TaskComponentState_build_closure, A._TaskComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure, A.ComputeTextSpan_computeTextSpan_closure, A.ContentLayersElement__onBuildScheduled_closure, A.ContentLayersElement__isSubtreeDirty_closure, A.RenderContentLayers_attach_closure, A.RenderContentLayers_detach_closure, A.RenderContentLayers_performLayout_closure, A._extension_0_findAncestorContentLayers_closure, A._DocumentScaffoldState__buildDocumentLayout_closure, A._CupertinoScrollbarState_handleThumbPress_closure0, A.Scheduler_runAsSoonAsPossible_closure, A.Frames_onNextFrame_closure, A.Frames_scheduleBuildAfterBuild_closure, A._MaterialScrollbarState__trackVisibility_closure0, A._MaterialScrollbarState__thumbColor_closure0, A._MaterialScrollbarState__trackColor_closure0, A._MaterialScrollbarState__trackBorderColor_closure0, A._MaterialScrollbarState__thickness_closure0, A.RawScrollbarWithCustomPhysicsState__gestures_closure0, A.RawScrollbarWithCustomPhysicsState__gestures__closure, A.RawScrollbarWithCustomPhysicsState__gestures__closure0, A.RawScrollbarWithCustomPhysicsState__gestures__closure1, A.RawScrollbarWithCustomPhysicsState__gestures_closure2, A.RawScrollbarWithCustomPhysicsState_build_closure, A.RawScrollbarWithCustomPhysicsState_build_closure0, A.ScrollbarPainter_update_needPaint0, A.disabledMacIntents_closure, A.CharacterMovement__moveOffsetByWord_closure, A.CharacterMovement__moveOffsetByWord_closure0, A.CharacterMovement__moveOffsetByWord_closure1, A.CharacterMovement__moveOffsetByCharacter_closure, A._AndroidEditingOverlayControlsState_initState_closure, A._AndroidEditingOverlayControlsState_didUpdateWidget_closure, A._AndroidEditingOverlayControlsState__updateOffsetForCollapsedHandle_closure, A._AndroidEditingOverlayControlsState_build_closure, A._AndroidEditingOverlayControlsState__buildToolbar_closure, A.AndroidTextFieldTouchInteractorState__onScrollChange_closure, A.AndroidTextFieldTouchInteractorState__buildTapAndDragDetector_closure0, A.AndroidTextFieldTouchInteractorState__buildTapAndDragDetector_closure2, A.AndroidTextFieldTouchInteractorState__buildTapAndDragDetector_closure4, A.SuperAndroidTextFieldState_initState_closure, A.SuperAndroidTextFieldState_dispose_closure, A.SuperAndroidTextFieldState_didChangeMetrics_closure, A.SuperDesktopTextFieldState__onSelectionOrContentChange_closure, A.SuperDesktopTextFieldState_build_closure0, A._SuperTextFieldGestureInteractorState_build_closure4, A._SuperTextFieldGestureInteractorState_build_closure3, A._SuperTextFieldGestureInteractorState_build_closure5, A._SuperTextFieldGestureInteractorState_build_closure0, A._SuperTextFieldGestureInteractorState_build_closure2, A._SuperTextFieldImeInteractorState_initState_closure, A._SuperTextFieldImeInteractorState_didUpdateWidget_closure, A._SuperTextFieldImeInteractorState__reportVisualInformationToIme_closure, A.SuperTextFieldScrollviewState_didUpdateWidget_closure, A.SuperTextFieldScrollviewState__onSelectionOrContentChange_closure, A._IOSEditingControlsState_build_closure, A._IOSEditingControlsState__buildToolbar_closure, A.IOSTextFieldTouchInteractorState__onScrollChange_closure, A.IOSTextFieldTouchInteractorState__buildTapAndDragDetector_closure0, A.IOSTextFieldTouchInteractorState__buildTapAndDragDetector_closure2, A.IOSTextFieldTouchInteractorState__buildTrackerForToolbarFocus_closure, A.SuperIOSTextFieldState_initState_closure, A.SuperIOSTextFieldState_dispose_closure, A.SuperIOSTextFieldState_didChangeMetrics_closure, A.format_closure, A.MethodChannelUrlLauncher_launch_closure, A._MaterialScrollbarState__thumbColor_closure1, A._MaterialScrollbarState__trackColor_closure1, A._MaterialScrollbarState__trackBorderColor_closure1, A._MaterialScrollbarState__thickness_closure1, A._EventStreamSubscription_closure0, A._EventStreamSubscription_onData_closure0, A.HttpRequest_request_closure]); - _inheritMany(A.Closure0Args, [A.AppBootstrap_prepareEngineInitializer_closure, A.HtmlViewEmbedder__compositeWithParams_closure, A.HtmlViewEmbedder__applyMutators_closure, A.HtmlViewEmbedder__applyMutators_closure0, A.SkiaFontCollection__registerWithFontProvider_closure, A.SkiaFontCollection__registerWithFontProvider_closure0, A.SkiaFontCollection_loadAssetFonts_closure, A.SkiaFontCollection_loadAssetFonts_closure0, A.skiaDecodeImageFromPixels_closure, A.Frame_raster_closure, A.Frame_raster_closure0, A.CanvasKitRenderer_initialize_closure, A.CkTextStyle_skTextStyle_closure, A.FontFallbackManager_addMissingCodePoints_closure, A.FallbackFontDownloadQueue_startDownloads_closure, A.PersistedPicture__applyBitmapPaint_closure, A.HtmlRenderer_initialize_closure, A.SurfaceSceneBuilder_build_closure, A.SurfaceSceneBuilder_build_closure0, A.GradientLinear_createImageBitmap_closure, A.BrowserImageDecoder__cacheExpirationClock_closure, A.BrowserImageDecoder__getOrCreateWebDecoder_closure, A.initializeEngineServices_closure0, A.initializeEngineServices_initializeRendererCallback, A.FlutterEngineInitializer__staticInteropFactoryStub_closure0, A._cached_closure, A.KeyboardConverter__scheduleAsyncEvent_closure0, A.KeyboardConverter__startGuardingKey_closure, A.KeyboardConverter__startGuardingKey_closure0, A.KeyboardConverter__handleEvent_closure, A.KeyboardConverter__handleEvent_closure0, A.KeyboardConverter__handleEvent_closure1, A.EnginePlatformDispatcher_invokeOnKeyData_closure, A.invoke2_closure, A.PlatformViewManager_renderContent_closure, A._PointerAdapter__ensureSanitizer_closure, A.PointerDataConverter__ensureStateForPointer_closure, A.RawKeyboard$__closure1, A.RawKeyboard__handleHtmlEvent_closure, A.AccessibilityAnnouncements_announce_closure, A.RouteName_update_closure, A.AccessibilityFocusManager_changeFocus_closure, A.Scrollable_update_closure, A.EngineSemanticsOwner$__closure, A.EngineSemanticsOwner__now_closure, A.EngineSemanticsOwner__getGestureModeClock_closure, A.MobileSemanticsEnabler_tryEnableSemantics_closure, A.TextField__invokeIosWorkaround_closure, A.TextField_update_closure, A.HtmlFontCollection_loadAssetFonts_closure, A.HtmlFontCollection_loadAssetFonts_closure0, A.HtmlFontCollection_loadAssetFonts_closure1, A.SafariDesktopTextEditingStrategy_placeElement_closure, A.IOSTextEditingStrategy__schedulePlacement_closure, A.FirefoxTextEditingStrategy__postponeFocus_closure, A.TextEditingChannel_handleTextInput_closure, A.EngineFlutterWindow_closure, A.EngineFlutterWindow_handleNavigationMessage_closure, A.CastMap_putIfAbsent_closure, A.nullFuture_closure, A.Primitives_initTicker_closure, A._AsyncRun__scheduleImmediateJsOverride_internalCallback, A._AsyncRun__scheduleImmediateWithSetImmediate_internalCallback, A._TimerImpl_internalCallback, A._TimerImpl$periodic_closure, A._asyncStarHelper_closure, A._AsyncStarStreamController__resumeBody, A._AsyncStarStreamController__resumeBody_closure, A._AsyncStarStreamController_closure0, A._AsyncStarStreamController_closure1, A._AsyncStarStreamController_closure, A._AsyncStarStreamController__closure, A.Future_Future_closure, A.Future_Future$delayed_closure, A._Future__addListener_closure, A._Future__prependListeners_closure, A._Future__chainForeignFuture_closure1, A._Future__chainCoreFutureAsync_closure, A._Future__asyncCompleteWithValue_closure, A._Future__asyncCompleteError_closure, A._Future__propagateToListeners_handleWhenCompleteCallback, A._Future__propagateToListeners_handleValueCallback, A._Future__propagateToListeners_handleError, A._Future_timeout_closure, A.Stream_asyncMap_closure, A.Stream_fold_closure, A.Stream_fold__closure, A.Stream_forEach_closure, A.Stream_forEach__closure, A.Stream_length_closure0, A.Stream_isEmpty_closure, A.Stream_toList_closure0, A.Stream_first_closure, A._StreamController__subscribe_closure, A._StreamController__recordCancel_complete, A._AddStreamState_cancel_closure, A._BufferingStreamSubscription__sendError_sendError, A._BufferingStreamSubscription__sendDone_sendDone, A._PendingEvents_schedule_closure, A._MultiStream_listen_closure, A._cancelAndError_closure, A._cancelAndValue_closure, A._rootHandleError_closure, A._RootZone_bindCallbackGuarded_closure, A.Utf8Decoder__decoder_closure, A.Utf8Decoder__decoderNonfatal_closure, A._BigIntImpl_toDouble_roundUp, A._FileStream_listen_closure, A._FileStream__closeFile_done, A._File_readAsBytes_readUnsized_read, A._File_readAsBytes_readSized_read, A.ChannelBuffers_push_closure, A.ChannelBuffers_setListener_closure, A.KeyData__logicalToString_closure, A.bootstrapEngine_closure0, A.BrowserPlatformLocation_getOrCreateDomEventListener_closure, A.HashUrlStrategy_addPopStateListener_closure, A.AttributedSpans_copyAttributionRegion__closure1, A.AttributedSpans_copyAttributionRegion__closure2, A.AttributedSpans_copyAttributionRegion__closure, A.AttributedSpans_copyAttributionRegion__closure0, A.BoardItemState_onDropItem_closure, A.BoardItemState__startDrag_closure, A.BoardItemState__startDrag_closure0, A.BoardItemState_build_closure2, A.BoardItemState_build_closure1, A.BoardItemState_build_closure0, A.BoardListState_onDropList_closure, A.BoardListState__startDrag_closure, A.BoardListState_build_closure0, A.BoardListState_build_closure1, A.BoardListState_build_closure, A.BoardViewState_moveDown_closure, A.BoardViewState_moveUp_closure, A.BoardViewState_moveListRight_closure, A.BoardViewState_moveListRight__closure, A.BoardViewState_moveListRight_closure0, A.BoardViewState_moveRight_closure, A.BoardViewState_moveRight_closure0, A.BoardViewState_moveRight_closure1, A.BoardViewState_moveRight__closure, A.BoardViewState_moveRight_closure2, A.BoardViewState_moveListLeft_closure, A.BoardViewState_moveListLeft__closure, A.BoardViewState_moveListLeft_closure0, A.BoardViewState_moveLeft_closure, A.BoardViewState_moveLeft_closure0, A.BoardViewState_moveLeft_closure1, A.BoardViewState_moveLeft__closure, A.BoardViewState_moveLeft_closure2, A.BoardViewState_build__closure5, A.BoardViewState_build_closure1, A.BoardViewState_build__closure4, A.BoardViewState_build_closure2, A.BoardViewState_build__closure3, A.BoardViewState_build__closure2, A.BoardViewState_build__closure0, A.BoardViewState_build__closure1, A.BoardViewState_build__closure, A.BoardViewState_run_closure, A.Serializers_Serializers_closure, A.Serializers_Serializers_closure0, A.Serializers_Serializers_closure1, A.Serializers_Serializers_closure2, A.Serializers_Serializers_closure3, A.BaseBarRenderer_preprocessSeries__closure1, A.BaseBarRenderer_update__closure, A.BaseBarRenderer_update__closure1, A._ReversedSeriesIterator_closure, A.BaseChart_getSelectionModel_closure, A.BaseChart_configureSeries__closure, A.BaseChart_preprocessSeries__closure, A.GestureListener_defaultTapCancel_closure, A.MaterialPalette__orderedPalettes_closure, A.MaterialPalette__orderedPalettes_closure0, A.MaterialPalette__orderedPalettes_closure1, A.MaterialPalette__orderedPalettes_closure2, A.MaterialPalette__orderedPalettes_closure3, A.MaterialPalette__orderedPalettes_closure4, A.MaterialPalette__orderedPalettes_closure5, A.MaterialPalette__orderedPalettes_closure6, A.MaterialPalette__orderedPalettes_closure7, A.MaterialPalette__orderedPalettes_closure8, A.MaterialPalette__orderedPalettes_closure9, A.BaseChartState_requestRebuild_closure, A.BaseChartState__animationTick_closure, A.LinePainter__drawDashedLine_closure, A.ChartGestureDetector_makeWidget_closure, A.ChartGestureDetector_onTapDown_closure, A.CanonicalizedMap_putIfAbsent_closure, A._CupertinoDesktopTextSelectionToolbarButtonState__onEnter_closure, A._CupertinoDesktopTextSelectionToolbarButtonState__onExit_closure, A._CupertinoTextMagnifierState_initState_closure, A._CupertinoTextMagnifierState_initState__closure, A._CupertinoTextMagnifierState__determineMagnifierPositionAndFocalPoint_closure, A.CupertinoRouteTransitionMixin_buildPageTransitions_closure, A.CupertinoRouteTransitionMixin_buildPageTransitions_closure0, A._CupertinoScrollbarState_initState_closure, A._CupertinoSwitchState__handleDragEnd_closure, A._CupertinoSwitchState__onShowFocusHighlight_closure, A._RenderCupertinoSwitch_paint_closure, A._RenderCupertinoSwitch_paint_closure0, A._RenderCupertinoSwitch_paint_closure1, A._RenderCupertinoSwitch_paint_closure2, A._RenderCupertinoSwitch_paint_closure3, A._RenderCupertinoSwitch_paint_closure4, A._RenderCupertinoTextSelectionToolbarShape__addRRectToPath_closure, A._RenderCupertinoTextSelectionToolbarShape__addRRectToPath_closure0, A._CupertinoTextSelectionToolbarContentState__statusListener_closure, A._CupertinoTextSelectionToolbarButtonState__onTapDown_closure, A._CupertinoTextSelectionToolbarButtonState__onTapUp_closure, A._CupertinoTextSelectionToolbarButtonState__onTapCancel_closure, A.ToggleableStateMixin__handleTapDown_closure0, A.ToggleableStateMixin__handleTapEnd_closure0, A.ToggleableStateMixin__handleFocusHighlightChanged_closure0, A._testPlatform_closure, A._browserPlatform_closure, A.FlutterErrorDetails_summary_formatException, A.FlutterErrorDetails_summary_closure0, A.BindingBase_initServiceExtensions_closure, A.BindingBase_initServiceExtensions_closure1, A.BindingBase_lockEvents_closure, A.BindingBase_registerServiceExtension__closure, A.ChangeNotifier_notifyListeners_closure, A.LicenseEntryWithLineBreaks_paragraphs_addLine, A.LicenseEntryWithLineBreaks_paragraphs_getParagraph, A.LicenseRegistry_licenses_closure, A.GestureArenaManager_add_closure, A.GestureArenaManager__tryToResolveArena_closure, A.GestureBinding_dispatchEvent_closure, A.GestureBinding_dispatchEvent_closure0, A.ForcePressGestureRecognizer_handleEvent_closure, A.ForcePressGestureRecognizer_acceptGesture_closure, A.ForcePressGestureRecognizer_didStopTrackingLastPointer_closure, A.LongPressGestureRecognizer__checkLongPressStart_closure, A.LongPressGestureRecognizer__checkLongPressMoveUpdate_closure, A.LongPressGestureRecognizer__checkLongPressEnd_closure, A.DragGestureRecognizer__checkDown_closure, A.DragGestureRecognizer__checkStart_closure, A.DragGestureRecognizer__checkUpdate_closure, A.DragGestureRecognizer__checkEnd_closure, A.DragGestureRecognizer__checkEnd_closure0, A.DragGestureRecognizer__checkEnd_closure1, A.DragGestureRecognizer__checkEnd_closure2, A.MultiDragGestureRecognizer__startDrag_closure, A.PointerRouter_addRoute_closure, A.PrimaryPointerGestureRecognizer_addAllowedPointer_closure, A.ScaleGestureRecognizer__reconfigure_closure1, A.ScaleGestureRecognizer__reconfigure_closure2, A.ScaleGestureRecognizer__advanceStateMachine_closure, A.ScaleGestureRecognizer__dispatchOnStartCallbackIfNeeded_closure, A.TapGestureRecognizer_handleTapDown_closure, A.TapGestureRecognizer_handleTapDown_closure0, A.TapGestureRecognizer_handleTapUp_closure, A.TapGestureRecognizer_handleTapUp_closure0, A.TapGestureRecognizer_handleTapUp_closure1, A.BaseTapAndDragGestureRecognizer__handleDragUpdateThrottled_closure, A.BaseTapAndDragGestureRecognizer_addAllowedPointer_closure, A.BaseTapAndDragGestureRecognizer__checkTapDown_closure, A.BaseTapAndDragGestureRecognizer__checkTapUp_closure, A.BaseTapAndDragGestureRecognizer__checkDragStart_closure, A.BaseTapAndDragGestureRecognizer__checkDragUpdate_closure, A.BaseTapAndDragGestureRecognizer__checkDragEnd_closure, A.GestureArenaTeam_add_closure, A._PackagesViewState__packagesList__closure, A._PackageLicensePageState__initLicenses_closure, A._PackageLicensePageState__initLicenses_closure0, A._MasterDetailFlowState__nestedUI_closure1, A._MasterDetailFlowState__masterPageRoute__closure, A._ActionButton_build_closure, A.AppBar__getEffectiveCenterTitle_platformCenter, A._AppBarState__handleScrollNotification_closure, A.MaterialPointArcTween__initialize_sweepAngle, A._BottomSheetState__handleDragStart_closure, A._BottomSheetState__handleDragEnd_closure, A._BottomSheetState__handleDragHandleHover_closure, A._BottomSheetGestureDetector_build_closure, A._ButtonStyleState_handleStatesControllerChange_closure, A._ButtonStyleState_build__closure1, A._CalendarDatePickerState__handleModeChanged_closure, A._CalendarDatePickerState__handleMonthChanged_closure, A._CalendarDatePickerState__handleYearChanged_closure, A._CalendarDatePickerState__handleDayChanged_closure, A._CalendarDatePickerState_build_closure, A._MonthPickerState__handleMonthPageChanged_closure, A._MonthPickerState__handleGridFocusChange_closure, A._MonthPickerState__handleDirectionFocus_closure, A._DayState_build_closure1, A._YearPickerState__buildYearItem_closure1, A.DataTable_build_closure5, A.DataTable_build_closure6, A.DataTable_build_closure7, A.TableRowInkWell_getRectCallback_closure, A._SortArrowState__rebuild_closure, A._DatePickerDialogState__handleOk_closure, A._DatePickerDialogState__handleEntryModeToggle_closure, A._DatePickerDialogState__handleDateChanged_closure, A._DatePickerDialogState_build_calendarDatePicker, A._DatePickerDialogState_build_inputDatePicker, A.DrawerControllerState__animationChanged_closure, A._DropdownMenuState_build_closure, A.DropdownButtonFormField_closure_isHintOrDisabledHintAvailable, A.DropdownButtonFormField__closure_resolveInputBorder, A.DropdownButtonFormField__closure_effectiveBorderRadius, A.Feedback_wrapForTap_closure, A._getClipCallback_closure, A._getClipCallback_closure0, A._InkResponseState_activateOnIntent_closure, A._InkResponseState_handleStatesControllerChange_closure, A._InkResponseState_updateHighlight_handleInkRemoval, A._InkResponseState__createSplash_onRemoved, A._InkResponseState_handleFocusHighlightModeChange_closure, A._InputDatePickerFormFieldState_didUpdateWidget__closure, A._HelperErrorState__handleChange_closure, A._InputDecoratorState__handleChange_closure, A._TextMagnifierState__determineMagnifierPositionAndFocalPoint_closure, A._TextMagnifierState__determineMagnifierPositionAndFocalPoint__closure, A._TextMagnifierState__determineMagnifierPositionAndFocalPoint_closure0, A.MaterialStateMixin_addMaterialState_closure, A.MaterialStateMixin_removeMaterialState_closure, A._MergeableMaterialState__handleTick_closure, A.RadioListTile_build_closure, A.RefreshIndicatorState__handleScrollNotification_closure, A.RefreshIndicatorState__dismiss_closure, A.RefreshIndicatorState__dismiss_closure0, A.RefreshIndicatorState__show__closure, A.RefreshIndicatorState__show__closure0, A._FloatingActionButtonTransitionState__handlePreviousAnimationStatusChanged_closure, A.ScaffoldState__drawerOpenedCallback_closure, A.ScaffoldState__endDrawerOpenedCallback_closure, A.ScaffoldState__updateSnackBar_closure, A.ScaffoldState__updateMaterialBanner_closure, A.ScaffoldState__buildBottomSheet_removePersistentSheetHistoryEntryIfNeeded, A.ScaffoldState__buildBottomSheet_removeCurrentBottomSheet, A.ScaffoldState__buildBottomSheet_removeCurrentBottomSheet_closure, A.ScaffoldState__buildBottomSheet_closure, A.ScaffoldState__buildBottomSheet_removeEntryIfNeeded, A.ScaffoldState__buildBottomSheet_closure0, A.ScaffoldState__buildBottomSheet_closure1, A.ScaffoldState__buildBottomSheet__closure, A.ScaffoldState__buildBottomSheet_closure2, A.ScaffoldState_showBottomSheet_closure, A.ScaffoldState__moveFloatingActionButton_closure, A.ScaffoldState_showBodyScrim_closure, A._MaterialScrollbarState_initState_closure, A._MaterialScrollbarState_handleThumbPressStart_closure, A._MaterialScrollbarState_handleThumbPressEnd_closure, A._MaterialScrollbarState_handleHover_closure, A._MaterialScrollbarState_handleHover_closure0, A._MaterialScrollbarState_handleHoverExit_closure, A._SelectableTextState__onControllerChanged_closure, A._SelectableTextState__handleSelectionChanged_closure, A._SelectableTextState_build_closure, A._MaterialSwitchState__handleDragEnd_closure, A.SwitchListTile_build_closure, A.TabController__changeIndex_closure, A._TabBarState__handleTabControllerTick_closure, A._TabBarState_build_closure1, A._TabBarViewState__warpToAdjacentTab_closure, A._TabBarViewState__warpToNonAdjacentTab_closure, A._TabBarViewState__warpToNonAdjacentTab_closure0, A._TextFieldState__handleFocusChanged_closure, A._TextFieldState__handleSelectionChanged_closure, A._TextFieldState__handleHover_closure, A._TextFieldState_build_closure, A._TextFieldState_build_closure0, A._TextFieldState_build_closure1, A._TextFieldState_build_closure2, A._TextFieldState_build_closure3, A._TextFieldState_build_closure4, A._TextFieldState_build__closure, A._TextSelectionToolbarOverflowableState_build_closure, A._TextSelectionToolbarOverflowableState_build__closure, A.ThemeData_localize_closure, A._HourControl_build_closure1, A._HourControl_build_closure0, A._HourControl_build_closure, A._MinuteControl_build_closure1, A._MinuteControl_build_closure0, A._MinuteControl_build_closure, A._DayPeriodControl_build_closure, A._DayPeriodControl_build_closure0, A._DialState_initState_closure, A._DialState_initState__closure0, A._DialState_initState_closure0, A._DialState_initState__closure, A._DialState__updateThetaForPan_closure, A._DialState__selectHour_getAmPmTime, A._DialState__build24HourRing_closure, A._DialState__build24HourRing_closure0, A._DialState__build12HourRing_closure, A._DialState__buildMinutes_closure, A._TimePickerInputState__validateHour_closure, A._TimePickerInputState__validateMinute_closure, A._HourMinuteTextFieldState_initState_closure, A._HourMinuteTextFieldState_initState__closure, A._HourMinuteTextFieldState_build_closure, A._TimePickerDialogState__handleTimeChanged_closure, A._TimePickerDialogState__handleEntryModeChanged_closure, A._TimePickerDialogState__handleOk_closure, A._TimePickerState__vibrate_closure, A._TimePickerState__handleHourMinuteModeChanged_closure, A._TimePickerState__handleEntryModeToggle_closure, A._TimePickerState__handleTimeChanged_closure, A._TimePickerState__handleHourSelected_closure, A.ToggleButtons_build__closure, A.ToggleableStateMixin__handleTapDown_closure, A.ToggleableStateMixin__handleTapEnd_closure, A.ToggleableStateMixin__handleFocusHighlightChanged_closure, A.ToggleableStateMixin__handleHoverChanged_closure, A.TooltipState__handleStatusChanged_closure, A.TooltipState__handleStatusChanged_closure0, A.TooltipState__handleStatusChanged_closure1, A.TooltipState__handleStatusChanged_closure2, A.TooltipState__handleStatusChanged_closure3, A.TooltipState__handleStatusChanged_closure4, A.TooltipState__scheduleShowTooltip_show, A.TooltipState__scheduleShowTooltip_closure, A.TooltipState__buildTooltipOverlay_closure2, A.TooltipState__buildTooltipOverlay_closure3, A.TooltipState__buildTooltipOverlay_closure, A.TooltipState__buildTooltipOverlay_closure0, A.TooltipState__buildTooltipOverlay_closure1, A.ImageCache__trackLiveImage_closure, A.ImageCache__trackLiveImage__closure, A._LiveImage_closure, A.ImageProvider_resolveStreamForKey_closure, A.ImageProvider_resolveStreamForKey_closure0, A.MultiFrameImageStreamCompleter__handleAppFrame_closure, A.TextPainter__computePaintOffsetFraction_closure, A.TextPainter__computePaintOffsetFraction_closure1, A.TextPainter__computePaintOffsetFraction_closure0, A.TextPainter__computePaintOffsetFraction_closure2, A.TextPainter__computePaintOffsetFraction_closure3, A.TextPainter__computePaintOffsetFraction_closure4, A.TextPainter__computePaintOffsetFraction_closure5, A.TextPainter_getOffsetForCaret_closure, A.TextPainter_getOffsetForCaret_closure0, A.TextPainter_getOffsetForCaret_closure1, A.TextPainter_getFullHeightForCaret_closure, A.TextStyle_getTextStyle_closure, A.TextStyle_getTextStyle_closure0, A.RenderAnimatedSize_closure, A.RendererBinding_pipelineOwner_closure, A.RendererBinding_pipelineOwner_closure0, A.RenderBox__computeIntrinsicDimension_closure, A.RenderBox_getDryLayout_closure, A.RenderBox_getDistanceToActualBaseline_closure, A.RenderEditable__createShowOnScreenFor_closure, A.Layer_addCompositionCallback_closure, A.Layer_addCompositionCallback_closure0, A.MouseTracker_updateWithEvent_closure, A.MouseTracker_updateWithEvent__closure, A.MouseTracker_updateAllDevices_closure, A.PaintingContext_pushClipRect_closure, A.PaintingContext_pushClipRRect_closure, A.PaintingContext_pushClipPath_closure, A.RenderObject__reportException_closure, A.RenderObject_invokeLayoutCallback_closure, A.RenderObject_toStringDeep_closure, A.RenderParagraph__createShowOnScreenFor_closure, A.RenderSliverList_performLayout_advance, A.RenderSliverFloatingPersistentHeader__updateAnimation_closure, A._TaskEntry_run_closure, A.SchedulerBinding_scheduleWarmUpFrame_closure, A.SchedulerBinding_scheduleWarmUpFrame_closure0, A.SchedulerBinding_scheduleWarmUpFrame_closure1, A.CachingAssetBundle_loadString_closure, A.ServicesBinding__addLicenses_closure, A.RawKeyEvent_RawKeyEvent$fromMessage_dataFromWeb, A.RestorationBucket__rawChildren_closure, A.RestorationBucket__rawValues_closure, A.RestorationBucket__addChildData_closure, A.SystemChrome_setSystemUIOverlayStyle_closure, A.TextInput__loudlyHandleTextInputInvocation_closure, A.TextInput__scheduleHide_closure, A._ActionsState__handleActionChanged_closure, A._FocusableActionDetectorState__updateHighlightMode_closure, A._FocusableActionDetectorState__handleMouseEnter_closure, A._FocusableActionDetectorState__handleMouseExit_closure, A._FocusableActionDetectorState__handleFocusChange_closure, A._AnimatedCrossFadeState_initState__closure, A._AnimatedSwitcherState__newEntry__closure, A._WidgetsAppState_didChangeLocales_closure, A._StreamBuilderBaseState__subscribe__closure1, A._StreamBuilderBaseState__subscribe__closure, A._StreamBuilderBaseState__subscribe_closure0, A._StreamBuilderBaseState__subscribe__closure0, A._FutureBuilderState__subscribe__closure0, A._FutureBuilderState__subscribe__closure, A.AutofillGroupState_register_closure, A._AutomaticKeepAliveState__createCallback_closure, A._AutomaticKeepAliveState__createCallback__closure, A._AutomaticKeepAliveState__createCallback__closure0, A._AutomaticKeepAliveState__createCallback___closure, A.RichText__effectiveTextScalerFrom_closure, A.RichText__effectiveTextScalerFrom_closure0, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure2, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure4, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure3, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure5, A.WidgetsBinding_scheduleAttachRootWidget_closure, A.RootWidget_attach_closure, A.RootWidget_attach_closure0, A._DraggableScrollableSheetScrollController_createScrollPosition_closure, A._DraggableScrollableSheetScrollPosition_goBallistic_tick, A._DraggableScrollableSheetScrollPosition_goBallistic_closure, A.EditableTextState__onChangedClipboardStatus_closure, A.EditableTextState_buttonItemsForToolbarOptions_closure, A.EditableTextState_buttonItemsForToolbarOptions_closure0, A.EditableTextState_buttonItemsForToolbarOptions_closure1, A.EditableTextState_buttonItemsForToolbarOptions_closure2, A.EditableTextState_contextMenuButtonItems_closure, A.EditableTextState_contextMenuButtonItems_closure0, A.EditableTextState_contextMenuButtonItems_closure1, A.EditableTextState_contextMenuButtonItems_closure2, A.EditableTextState_contextMenuButtonItems_closure3, A.EditableTextState_contextMenuButtonItems_closure4, A.EditableTextState_contextMenuButtonItems_closure5, A.EditableTextState_contextMenuButtonItems_closure6, A.EditableTextState__onCursorTick_closure, A.EditableTextState__onCursorTick_closure0, A.EditableTextState__didChangeTextEditingValue_closure, A.EditableTextState__handleFocusChanged_closure, A.EditableTextState__updateSelectionRects_closure, A.EditableTextState__updateSelectionRects_closure1, A.EditableTextState__updateSelectionRects_closure0, A.EditableTextState_insertTextPlaceholder_closure, A.EditableTextState_removeTextPlaceholder_closure, A.EditableTextState_showAutocorrectionPromptRect_closure, A.EditableTextState__semanticsOnCopy_closure, A.EditableTextState__semanticsOnCut_closure, A.EditableTextState__semanticsOnPaste_closure, A.EditableTextState_build_closure, A.EditableTextState_build_closure1, A.EditableTextState_build_closure0, A.EditableTextState_build__closure, A._FocusState__handleFocusChanged_closure, A._FocusState__handleFocusChanged_closure0, A._FocusState__handleFocusChanged_closure1, A._FocusState__handleFocusChanged_closure2, A.FormState__forceRebuild_closure, A.FormState__validate_closure, A.FormFieldState_validate_closure, A.FormFieldState_didChange_closure, A.BuildOwner_buildScope_closure, A.ComponentElement_performRebuild_closure, A.ComponentElement_performRebuild_closure0, A.GestureDetector_build_closure, A.GestureDetector_build_closure1, A.GestureDetector_build_closure3, A.GestureDetector_build_closure5, A.GestureDetector_build_closure7, A.GestureDetector_build_closure9, A.GestureDetector_build_closure11, A.GestureDetector_build_closure13, A._DefaultSemanticsGestureDelegate__getTapHandler_closure, A._DefaultSemanticsGestureDelegate__getLongPressHandler_closure, A._HeroState_startFlight_closure, A._HeroState_endFlight_closure, A._HeroFlight__handleAnimationUpdate_delayedPerformAnimationUpdate, A._ImageState__handleImageFrame_closure, A._ImageState__updateSourceStream_closure, A._ImageState__updateSourceStream_closure0, A.AnimatedWidgetBaseState__handleAnimationChanged_closure, A._InteractiveViewerState__onTransformationControllerChange_closure, A._LayoutBuilderElement__layout_layoutCallback, A._LayoutBuilderElement__layout_layoutCallback_closure, A._LayoutBuilderElement__layout_layoutCallback_closure0, A._LocalizationsState_load__closure, A._MediaQueryFromViewState__updateData_closure, A.ModalBarrier_build_handleDismiss, A._RouteEntry_handlePush_closure, A._RouteEntry_dispose_closure0, A._RouteEntry_dispose__closure, A.NavigatorState__cancelActivePointers_closure, A._NavigatorPopHandlerState_build__closure, A._RenderOverflowBar_performLayout_nextChild, A._OverlayEntryWidgetState__markNeedsBuild_closure, A.OverlayState_insert_closure, A.OverlayState_insertAll_closure, A.OverlayState_rearrange_closure, A.OverlayState__markDirty_closure, A.OverlayState__didChangeEntryOpacity_closure, A._OverlayPortalState__getLocation_closure, A._OverlayPortalState_show_closure, A._OverlayPortalState_hide_closure, A._GlowController_pull_closure, A._PlatformViewLinkState__onPlatformViewCreated_closure, A.SliverReorderableListState_startItemDragReorder_closure, A.SliverReorderableListState_cancelReorder_closure, A.SliverReorderableListState__dragUpdate_closure, A.SliverReorderableListState__dragCancel_closure, A.SliverReorderableListState__dragEnd_closure, A.SliverReorderableListState__dragEnd_closure0, A.SliverReorderableListState__dropCompleted_closure, A.SliverReorderableListState__wrapWithSemantics_moveToStart, A.SliverReorderableListState__wrapWithSemantics_moveToEnd, A.SliverReorderableListState__wrapWithSemantics_moveBefore, A.SliverReorderableListState__wrapWithSemantics_moveAfter, A._ReorderableItemState_dragging_closure, A._ReorderableItemState_rebuild_closure, A._RootRestorationScopeState__loadRootBucketIfNecessary__closure, A.RestorationMixin_registerForRestoration_listener, A._RouterState_restoreState_closure, A._RouterState_restoreState_closure0, A._RouterState_didChangeDependencies_closure, A._RouterState__handleRouteInformationProviderNotification_closure, A._RouterState__rebuild_closure, A._RouterState__handleRouterDelegateNotification_closure, A.TransitionRoute__updateSecondaryAnimation_closure, A.TransitionRoute__updateSecondaryAnimation_closure0, A._ModalScopeState__forceRebuildPage_closure, A.ModalRoute_offstage_closure, A.ModalRoute_changedInternalState_closure, A.ScrollAwareImageProvider_resolveStreamForKey__closure, A._SelectionKeepAliveState_listensTo_closure, A.ScrollNotificationObserverState__notifyListeners_closure, A.ScrollableState_setCanDrag_closure, A.ScrollableState_setCanDrag_closure1, A.RawScrollbarState__maybeStartFadeoutTimer_closure, A.RawScrollbarState__gestures_closure, A.RawScrollbarState__gestures_closure1, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure0, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure1, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure2, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure3, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure4, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure5, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure6, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure7, A.ShortcutManager__indexShortcuts__closure, A.ShortcutManager_handleKeypress_closure, A.ShortcutManager_handleKeypress_closure0, A.SliverMultiBoxAdaptorElement_performRebuild_closure, A.SliverMultiBoxAdaptorElement_performRebuild_closure0, A.SliverMultiBoxAdaptorElement_createChild_closure, A.SliverMultiBoxAdaptorElement_removeChild_closure, A._SliverPersistentHeaderElement__build_closure, A.Text_build_closure, A.Text_build_closure1, A.Text_build_closure0, A._SelectionHandleOverlayState_build_closure, A._TextSelectionGestureDetectorState_build_closure, A._TextSelectionGestureDetectorState_build_closure1, A._TextSelectionGestureDetectorState_build_closure3, A._TextSelectionGestureDetectorState_build_closure5, A._TextSelectionGestureDetectorState_build_closure7, A._AnimatedState__handleChange_closure, A._throttle__closure, A._ValueListenableBuilderState__valueChanged_closure, A._BlockPickerState_changeColor_closure, A._BlockPickerState_build__closure, A.JsonObjectViewerState__getList_closure, A.JsonObjectViewerState__getList__closure, A.JsonObjectViewerState_getValueWidget_closure, A.JsonObjectViewerState_getValueWidget__closure0, A.JsonObjectViewerState_getValueWidget_closure0, A.JsonObjectViewerState_getValueWidget__closure, A._JsonArrayViewerState_getInkWell_closure, A._JsonArrayViewerState_getInkWell__closure, A._JsonArrayViewerState_getValueWidget_closure, A._JsonArrayViewerState_getValueWidget__closure0, A._JsonArrayViewerState_getValueWidget_closure0, A._JsonArrayViewerState_getValueWidget__closure, A._GlobalCupertinoLocalizationsDelegate_load_closure, A._MaterialLocalizationsDelegate_load_closure, A._WidgetsLocalizationsDelegate_load_closure, A.CustomSlidableAction_build_closure, A._SlidableDismissalState_handleResizeRequestChanged_closure0, A._ActionPaneState_handleRatioChanged_closure, A._SlidableState_handleActionPanelTypeChanged_closure, A.StyledToastWidgetState_initState_closure, A.StyledToastWidgetState_dismissToast_closure, A.StyledToastWidgetState_didChangeMetrics_closure, A.ToastFuture$create_closure, A.inject_closure, A.init_closure, A.Phase_startTagHtml__closure, A.InBodyPhase_startTagBody__closure, A.entitiesByFirstChar_closure, A.entitiesByFirstChar__closure, A.HtmlTokenizer_emitCurrentToken_closure, A.Rule_findRule_closure1, A._CommonRules_referenceLink_closure, A.MediaType_MediaType$parse_closure, A.BillingClientManager__connect_closure, A.InAppPurchaseStoreKitPlatform_registerPlatform_closure, A.InAppPurchaseStoreKitPlatform_registerPlatform_closure0, A.InAppPurchaseStoreKitPlatform_restorePurchases_closure, A.SKPaymentQueueWrapper_handleObserverCallbacks_closure, A.SKPaymentQueueWrapper_handleObserverCallbacks_closure0, A.SKPaymentQueueWrapper_handleObserverCallbacks_closure1, A.SKPaymentQueueWrapper_handleObserverCallbacks_closure2, A.SKPaymentQueueWrapper_handleObserverCallbacks_closure3, A.NumberFormat__formatFixed_computeFractionDigits, A._CountryPickerDialogState_build__closure1, A._CountryPickerDialogState_build__closure, A._IntlPhoneFieldState_initState_closure0, A._IntlPhoneFieldState__changeCountry____closure, A._IntlPhoneFieldState__changeCountry_closure0, A.ClientEntity_primaryContact_closure0, A.ClientEntity_getContact_closure0, A.InvoiceEntity__calculateTax_closure, A.CalculateInvoiceTotal_calculateTaxes__closure0, A.CalculateInvoiceTotal_calculateTaxes__closure2, A.CalculateInvoiceTotal_calculateTaxes__closure4, A.CalculateInvoiceTotal_calculateTaxes_closure1, A.CalculateInvoiceTotal_calculateTaxes_closure3, A.CalculateInvoiceTotal_calculateTaxes_closure5, A._$serializers_closure, A._$serializers_closure0, A._$serializers_closure1, A._$serializers_closure2, A._$serializers_closure3, A._$serializers_closure4, A._$serializers_closure5, A._$serializers_closure6, A._$serializers_closure7, A._$serializers_closure8, A._$serializers_closure9, A._$serializers_closure10, A._$serializers_closure11, A._$serializers_closure12, A._$serializers_closure13, A._$serializers_closure14, A._$serializers_closure15, A._$serializers_closure16, A._$serializers_closure17, A._$serializers_closure18, A._$serializers_closure19, A._$serializers_closure20, A._$serializers_closure21, A._$serializers_closure22, A._$serializers_closure23, A._$serializers_closure24, A._$serializers_closure25, A._$serializers_closure26, A._$serializers_closure27, A._$serializers_closure28, A._$serializers_closure29, A._$serializers_closure30, A._$serializers_closure31, A._$serializers_closure32, A._$serializers_closure33, A._$serializers_closure34, A._$serializers_closure35, A._$serializers_closure36, A._$serializers_closure37, A._$serializers_closure38, A._$serializers_closure39, A._$serializers_closure40, A._$serializers_closure41, A._$serializers_closure42, A._$serializers_closure43, A._$serializers_closure44, A._$serializers_closure45, A._$serializers_closure46, A._$serializers_closure47, A._$serializers_closure48, A._$serializers_closure49, A._$serializers_closure50, A._$serializers_closure51, A._$serializers_closure52, A._$serializers_closure53, A._$serializers_closure54, A._$serializers_closure55, A._$serializers_closure56, A._$serializers_closure57, A._$serializers_closure58, A._$serializers_closure59, A._$serializers_closure60, A._$serializers_closure61, A._$serializers_closure62, A._$serializers_closure63, A._$serializers_closure64, A._$serializers_closure65, A._$serializers_closure66, A._$serializers_closure67, A._$serializers_closure68, A._$serializers_closure69, A._$serializers_closure70, A._$serializers_closure71, A._$serializers_closure72, A._$serializers_closure73, A._$serializers_closure74, A._$serializers_closure75, A._$serializers_closure76, A._$serializers_closure77, A._$serializers_closure78, A._$serializers_closure79, A._$serializers_closure80, A._$serializers_closure81, A._$serializers_closure82, A._$serializers_closure83, A._$serializers_closure84, A._$serializers_closure85, A._$serializers_closure86, A._$serializers_closure87, A._$serializers_closure88, A._$serializers_closure89, A._$serializers_closure90, A._$serializers_closure91, A._$serializers_closure92, A._$serializers_closure93, A._$serializers_closure94, A._$serializers_closure95, A._$serializers_closure96, A._$serializers_closure97, A._$serializers_closure98, A._$serializers_closure99, A._$serializers_closure100, A._$serializers_closure101, A._$serializers_closure102, A._$serializers_closure103, A._$serializers_closure104, A._$serializers_closure105, A._$serializers_closure106, A._$serializers_closure107, A._$serializers_closure108, A._$serializers_closure109, A._$serializers_closure110, A._$serializers_closure111, A._$serializers_closure112, A._$serializers_closure113, A._$serializers_closure114, A._$serializers_closure115, A._$serializers_closure116, A._$serializers_closure117, A._$serializers_closure118, A._$serializers_closure119, A._$serializers_closure120, A._$serializers_closure121, A._$serializers_closure122, A._$serializers_closure123, A._$serializers_closure124, A._$serializers_closure125, A._$serializers_closure126, A._$serializers_closure127, A._$serializers_closure128, A._$serializers_closure129, A._$serializers_closure130, A._$serializers_closure131, A._$serializers_closure132, A._$serializers_closure133, A._$serializers_closure134, A._$serializers_closure135, A._$serializers_closure136, A._$serializers_closure137, A._$serializers_closure138, A._$serializers_closure139, A._$serializers_closure140, A._$serializers_closure141, A._$serializers_closure142, A._$serializers_closure143, A._$serializers_closure144, A._$serializers_closure145, A._$serializers_closure146, A._$serializers_closure147, A._$serializers_closure148, A._$serializers_closure149, A._$serializers_closure150, A._$serializers_closure151, A._$serializers_closure152, A._$serializers_closure153, A._$serializers_closure154, A._$serializers_closure155, A._$serializers_closure156, A._$serializers_closure157, A._$serializers_closure158, A._$serializers_closure159, A._$serializers_closure160, A._$serializers_closure161, A._$serializers_closure162, A._$serializers_closure163, A._$serializers_closure164, A._$serializers_closure165, A._$serializers_closure166, A._$serializers_closure167, A._$serializers_closure168, A._$serializers_closure169, A._$serializers_closure170, A._$serializers_closure171, A._$serializers_closure172, A._$serializers_closure173, A._$serializers_closure174, A._$serializers_closure175, A._$serializers_closure176, A._$serializers_closure177, A._$serializers_closure178, A._$serializers_closure179, A._$serializers_closure180, A._$serializers_closure181, A._$serializers_closure182, A._$serializers_closure183, A._$serializers_closure184, A._$serializers_closure185, A._$serializers_closure186, A._$serializers_closure187, A._$serializers_closure188, A._$serializers_closure189, A._$serializers_closure190, A._$serializers_closure191, A._$serializers_closure192, A._$serializers_closure193, A._$serializers_closure194, A._$serializers_closure195, A._$serializers_closure196, A._$serializers_closure197, A._$serializers_closure198, A._$serializers_closure199, A._$serializers_closure200, A._$serializers_closure201, A._$serializers_closure202, A._$serializers_closure203, A._$serializers_closure204, A._$serializers_closure205, A._$serializers_closure206, A._$serializers_closure207, A._$serializers_closure208, A._$serializers_closure209, A._$serializers_closure210, A._$serializers_closure211, A._$serializers_closure212, A._$serializers_closure213, A._$serializers_closure214, A.VendorEntity_primaryContact_closure0, A.VendorEntity_getContact_closure0, A.InvoiceNinjaAppState__authenticate_closure, A.viewEntitiesByType_closure, A.viewEntityById_closure, A.createEntityByType_closure, A.createEntity_closure, A.editEntity_closure, A.checkForChanges__closure, A._createPersistUI__closure, A.handleClientAction___closure, A.__MergClientPickerState_build__closure0, A.__MergClientPickerState_build_closure0, A.__MergClientPickerState_build_closure1, A.handleCreditAction_closure1, A.handleCreditAction_closure2, A._createViewDashboard__closure, A.handleDocumentAction_showDocument, A.handleDocumentAction_showDocument__closure, A.handleDocumentAction_downloadDocument, A.handleInvoiceAction_closure4, A.handleInvoiceAction_closure5, A.handleInvoiceAction___closure, A.handleProductAction___closure, A.handlePurchaseOrderAction_closure3, A.handlePurchaseOrderAction_closure4, A.handleQuoteAction_closure3, A.handleQuoteAction_closure4, A.handleRecurringInvoiceAction__closure0, A.handleRecurringInvoiceAction__closure1, A._viewReports__closure, A._viewSettings__closure, A._AppBottomBarState_build_closure0, A._AppBottomBarState_build__closure15, A._AppBottomBarState_build_closure1, A._AppBottomBarState_build__closure13, A._AppBottomBarState_build_closure6, A._AppBottomBarState_build_____closure0, A._AppBottomBarState_build__closure3, A._AppBottomBarState_build_closure2, A._AppBottomBarState_build__closure11, A._AppBottomBarState_build_closure3, A._AppBottomBarState_build__closure9, A._AppBottomBarState_build_closure4, A._AppBottomBarState_build__closure7, A._AppBottomBarState_build_closure5, A._AppBottomBarState_build__closure5, A._AppBottomBarState_build_closure__onColumnsPressed, A._AppBottomBarState_build__closure, A._AppBottomBarState_build__closure0, A._AppBottomBarState_build__closure1, A.AppBuilderState_rebuild_closure, A.AppHeader_build__value1, A.AppHeader_build__value2, A.BottomButtons_build_closure, A.BottomButtons_build_closure0, A._ChangeLayoutBannerState_build_closure, A._ChangeLayoutBannerState_build__closure0, A._ChangeLayoutBannerState_build_closure0, A.ConfirmEmail_build_closure, A.ConfirmEmailVM_fromStore_closure0, A.ConfirmEmailVM_fromStore_closure1, A.ConfirmEmailVM_fromStore_closure, A.CopyToClipboard_build_closure, A._DesktopSessionTimeoutState_initState__closure, A._DesktopSessionTimeoutState_build_closure, A._DesktopSessionTimeoutState_build___closure, A.MessageDialog_build_closure0, A.MessageDialog_build_closure1, A.ErrorDialog_build_closure, A.ErrorDialog_build_closure0, A.ErrorDialog_build_closure1, A._HealthCheckDialogState_runCheck_closure, A._HealthCheckDialogState_runCheck__closure, A._HealthCheckDialogState_clearCache_closure, A._HealthCheckDialogState_build_closure, A._HealthCheckDialogState_build_closure0, A._HealthCheckDialogState_build_closure1, A._HealthListTile_build_closure, A.MultiSelectListState_build__closure3, A.MultiSelectListState_build__closure2, A.MultiSelectListState_build___closure, A.MultiSelectListState_build__closure1, A.MultiSelectListState_build_closure6, A.MultiSelectListState_build__closure0, A.MultiSelectListState_build_closure7, A.MultiSelectListState_build__closure, A.MultiSelectListState_build_closure8, A.MultiSelectListState_build_closure9, A._DocumentGridState_build__closure4, A._DocumentGridState_build__closure3, A._DocumentGridState_build___closure0, A._DocumentGridState_build___closure, A.DocumentTile_build_closure, A.EditScaffold_build_closure, A.EditScaffold_build_closure0, A.EditScaffold_build_closure1, A.EditScaffold_build__closure0, A.EditScaffold_build_closure4, A.EditScaffold_build_closure5, A.EntityActionListTile_build_closure, A._EntityListTileState_build_closure0, A._EntityListTileState_build__closure0, A._EntityListTileState_build__closure, A._EntityListTileState_build_closure2, A._EntityListTileState_build_closure1, A._EntitiesListTileState_build__closure0, A._EntitiesListTileState_build__closure, A._EntitiesListTileState_build_closure, A._EntitiesListTileState_build_closure1, A._EntitiesListTileState_build_closure0, A._EntityDropdownState_build_closure, A._EntityDropdownState_build_closure0, A._EntityDropdownState_build_closure6, A._EntityDropdownState_build_closure7, A._EntityDropdownDialogState_build__headerRow, A._EntityDropdownDialogState_build__headerRow__closure0, A._EntityDropdownDialogState_build__headerRow_closure0, A._EntityDropdownDialogState_build__headerRow_closure1, A._EntityDropdownDialogState_build__createList, A.EntityAutocompleteListTile_build_closure, A.EntityHeader_build__value1, A.EntityHeader_build__value2, A.EntityTopFilter_build_closure0, A.EntityTopFilter_build_closure2, A.EntityTopFilter_build_closure1, A.EntityTopFilter_build_closure4, A.EntityTopFilter_build_closure3, A.EntityTopFilter_build_closure6, A.EntityTopFilterHeader_build_closure, A.EntityTopFilterHeader_build_closure1, A.EntityTopFilterHeader_build_closure0, A.EntityTopFilterHeader_build__closure1, A.EntityTopFilterHeader_build_closure4, A.BoolDropdownButton_build_closure2, A.BoolDropdownButton_build_closure4, A._FormColorPickerState__onChanged_closure, A._FormColorPickerState__selectColor_closure, A._FormColorPickerState__showPicker__closure0, A._FormColorPickerState__showPicker__closure1, A._FormColorPickerState_build_closure, A._CustomFieldState_build__closure, A._DatePickerState__onFoucsChanged_closure, A._DatePickerState_build_closure, A._DatePickerState_build_closure0, A._DatePickerState_build__closure, A._DecoratedFormFieldState_build_closure, A._DecoratedFormFieldState_build__closure, A._DurationPickerState__onFoucsChanged_closure, A._DurationPickerState_build__closure, A._GrowableFormFieldState__onFoucsChanged_closure, A.LearnMoreUrl_build_closure, A._PasswordFormFieldState_build_closure, A._PasswordFormFieldState_build__closure, A.SaveCancelButtons_build__closure0, A.SaveCancelButtons_build__closure, A._TimePickerState__onFoucsChanged_closure, A._TimePickerState_build_closure, A._TimePickerState_build__closure1, A.HistoryDrawer_build__closure, A.HistoryDrawer_build_closure0, A._HistoryListTileState_build_closure, A._HistoryListTileState_build_closure1, A._HistoryListTileState_build_closure0, A._InvoiceEmailViewState__onChanged_closure, A._InvoiceEmailViewState__loadTemplate_closure, A._InvoiceEmailViewState__loadTemplate__closure, A._InvoiceEmailViewState__buildTemplateDropdown__closure, A._InvoiceEmailViewState__buildEdit_closure, A._TaxRateDropdownState_didChangeDependencies_closure1, A._TaxRateDropdownState_build_closure2, A._LinkTextRelatedEntityState_build__closure, A._LinkTextRelatedEntityState_build__closure0, A._LinkTextRelatedEntityState_build_closure0, A._LinkTextRelatedEntityState_build_closure, A.LinkTextSpan_closure, A._ListFilterState_onFocusChanged_closure, A._ListFilterState_build_closure, A._ListFilterState_build_closure1, A._ListFilterState_build__closure5, A.ListScaffold_build_closure, A.ListScaffold_build__closure0, A.ListScaffold_build_closure1, A.ListScaffold_build_closure2, A.ListScaffold_build_closure3, A.ListScaffold_build__closure, A.ActivityListTile_build_closure, A.AppListTile_build_closure, A.FilterListTile_build__closure, A._LiveTextState_initState__closure, A._MenuDrawerState_build__companyListItem__closure0, A._MenuDrawerState_build__companyListItem__closure, A._MenuDrawerState_build__companyListItem_closure0, A._MenuDrawerState_build__companyListItem_closure1, A._MenuDrawerState_build_closure4, A._MenuDrawerState_build_closure5, A._MenuDrawerState_build_closure6, A._MenuDrawerState_build_closure7, A._MenuDrawerState_build_closure8, A._MenuDrawerState_build_closure9, A._MenuDrawerState_build_closure10, A._MenuDrawerState_build_closure11, A._MenuDrawerState_build_closure13, A._MenuDrawerState_build_closure12, A._MenuDrawerState_build_closure14, A._MenuDrawerState_build_closure15, A._DrawerTileState_build_closure, A._DrawerTileState_build_closure0, A._DrawerTileState_build_closure1, A._DrawerTileState_build_closure2, A._DrawerTileState_build__closure0, A._DrawerTileState_build__closure, A.SidebarFooter_build_closure, A.SidebarFooter_build__closure3, A.SidebarFooter_build__closure4, A.SidebarFooter_build_closure0, A.SidebarFooter_build_closure1, A.SidebarFooter_build_closure2, A.SidebarFooter_build_closure3, A.SidebarFooter_build__closure1, A.SidebarFooter_build__closure0, A.SidebarFooter_build__closure2, A.SidebarFooter_build_closure4, A.SidebarFooter_build_closure5, A.SidebarFooter_build_closure6, A.SidebarFooter_build_closure7, A.SidebarFooter_build_closure8, A.SidebarFooter_build_closure9, A.SidebarFooterCollapsed_build_closure1, A._showConnectStripe_closure, A._showAbout__closure, A._showAbout__closure0, A._showAbout__closure2, A._showAbout__closure1, A._showAbout__closure3, A._showAbout____closure, A._showAbout______closure, A._showAbout______closure0, A._showAbout______closure1, A._showAbout______closure2, A._showAbout____closure0, A._showAbout____closure1, A._showAbout____closure2, A._showAbout____closure3, A._showAbout____closure4, A._showAbout____closure5, A._showAbout____closure6, A._showAbout__closure4, A._showAbout__closure5, A._showAbout__closure6, A._showAbout__closure7, A._showAbout__closure8, A._showAbout__closure9, A._showAbout__closure10, A._showAbout__closure11, A._showAbout__closure12, A._ContactUsDialogState__sendMessage_closure, A._ContactUsDialogState__sendMessage__closure0, A._ContactUsDialogState__sendMessage__closure, A._ContactUsDialogState_build_closure, A._ContactUsDialogState_build_closure0, A._ContactUsDialogState_build__closure, A.MenuDrawerVM_fromStore__closure1, A._theState_closure, A._SelectRow_build_closure, A._DropDownMultiSelectState_initState__closure, A._DropDownMultiSelectState_build__closure, A._DropDownMultiSelectState_build___closure0, A._DropDownMultiSelectState_build___closure1, A.PortalLinks_build_closure, A.PortalLinks_build_closure0, A.SearchText_build_closure, A._AccountSmsVerificationState__sendCode_closure, A._AccountSmsVerificationState__sendCode__closure0, A._AccountSmsVerificationState__sendCode__closure, A._AccountSmsVerificationState__verifyCode_closure, A._AccountSmsVerificationState__verifyCode__closure0, A._AccountSmsVerificationState__verifyCode__closure, A._AccountSmsVerificationState_build_closure2, A._AccountSmsVerificationState_build_closure3, A._AccountSmsVerificationState_build_closure4, A._AccountSmsVerificationState_build_closure5, A._UserSmsVerificationState__sendCode_closure, A._UserSmsVerificationState__sendCode__closure0, A._UserSmsVerificationState__sendCode__closure, A._UserSmsVerificationState__verifyCode_closure, A._UserSmsVerificationState__verifyCode__closure0, A._UserSmsVerificationState__verifyCode__closure, A._UserSmsVerificationState_build_closure0, A._UserSmsVerificationState_build_closure1, A._UserSmsVerificationState_build_closure2, A._UserSmsVerificationState_build_closure3, A._SystemLogViewerState_build__closure, A._SystemLogViewerState_build___closure, A._SystemLogViewerState_build____closure, A.AppPaginatedDataTableState__handleDataSourceChanged_closure, A.AppPaginatedDataTableState_pageTo_closure, A.AppPaginatedDataTableState__getRows_closure, A.EntityDataTableSource_getRow_closure1, A.EntityDataTableSource_getRow_closure0, A.EntityDataTableSource_getRow_closure3, A.EntityDataTableSource_getRow__closure0, A.EntityDataTableSource_getRow__closure, A._EntityListState_build_closure6, A._EntityListState_build__closure0, A._EntityListState_build__closure4, A._EntityListState_build_closure7, A._EntityListState_build__closure12, A._UpgradeDialogState_initState_closure0, A._UpgradeDialogState_initStoreInfo_closure, A._UpgradeDialogState_initStoreInfo_closure0, A._UpgradeDialogState_initStoreInfo_closure1, A._UpgradeDialogState_initStoreInfo_closure2, A._UpgradeDialogState_build_closure, A._UpgradeDialogState_build_closure0, A._UpgradeDialogState_build_closure1, A._UpgradeDialogState__buildProductList__closure, A._UpgradeDialogState_showPendingUI_closure, A._UpgradeDialogState_deliverProduct_closure, A._UpgradeDialogState_handleError_closure, A._VariableGrid_build___closure, A.ViewScaffold_build_closure, A.ViewScaffold_build_closure0, A.ViewScaffold_build_closure1, A.ViewScaffold_build_closure2, A.ViewScaffold_build_closure3, A.ViewScaffold_build__closure, A._LoginState__submitSignUpForm_closure, A._LoginState__submitSignUpForm__closure1, A._LoginState__submitSignUpForm__closure0, A._LoginState__submitSignUpForm__closure, A._LoginState__submitLoginForm_closure, A._LoginState__submitLoginForm__closure0, A._LoginState__submitLoginForm__closure, A._LoginState_build_closure0, A._LoginState_build_closure, A._LoginState_build__closure7, A._LoginState_build_closure1, A._LoginState_build__closure6, A._LoginState_build__closure5, A._LoginState_build__closure4, A._LoginState_build__closure3, A._LoginState_build_closure10, A._LoginState_build_closure11, A._LoginState_build_closure12, A._LoginState_build__closure2, A._LoginState_build_closure13, A._LoginState_build__closure1, A._LoginState_build_closure14, A._LoginState_build__closure0, A._LoginState_build_closure15, A._LoginState_build__closure, A._LoginState_build_closure16, A._LoginState_build_closure17, A.BankAccountListItem_build_closure1, A.BankAccountListItem_build_closure0, A.BankAccountListVM_fromStore_closure1, A.BankAccountScreen_connectAccounts__closure, A.BankAccountScreen_connectAccounts__closure0, A.BankAccountScreen_connectAccounts__closure1, A.BankAccountScreen_connectAccounts__closure2, A.BankAccountScreen_connectAccounts__closure3, A.BankAccountScreen_build_closure15, A.BankAccountScreen_build_closure14, A.BankAccountScreen_build_closure, A.BankAccountScreen_build_closure0, A.BankAccountScreen_build_closure1, A.BankAccountScreen_build_closure2, A.BankAccountScreen_build_closure3, A.BankAccountScreen_build_closure4, A.BankAccountScreen_build_closure11, A._BankAccountEditState__onChanged_closure0, A.BankAccountEditVM_BankAccountEditVM$fromStore__closure, A._BankAccountViewState_build_closure, A.BankAccountViewVM_BankAccountViewVM$fromStore_closure, A.ClientListItem_build__closure2, A.ClientListItem_build__closure1, A.ClientListItem_build__closure5, A.ClientListItem_build__closure4, A.ClientListVM_fromStore_closure1, A._ClientPdfViewState_loadPDF_closure, A._ClientPdfViewState_loadPDF__closure1, A._ClientPdfViewState_loadPDF__closure, A._ClientPdfViewState_build__closure6, A._ClientPdfViewState_build__closure5, A._ClientPdfViewState_build_closure6, A._ClientPdfViewState_build_closure7, A._ClientPdfViewState_build__closure3, A._ClientPdfViewState_build_closure8, A._ClientPdfViewState_build__closure1, A._ClientPdfViewState_build_closure9, A._ClientPdfViewState_build__closure0, A._ClientPdfViewState_build__closure, A._ClientPdfViewState_build_closure12, A.ClientPresenter_getField_closure, A.ClientScreen_build_closure10, A.ClientScreen_build_closure9, A.ClientScreen_build_closure, A.ClientScreen_build_closure6, A._ClientEditState_build__closure, A.ClientEditBillingAddressState__onChanged_closure0, A.ClientEditBillingAddressState_build_closure0, A._ClientEditContactsState_build__closure, A._ClientEditContactsState_build_closure1, A.ContactEditDetailsState__onChanged_closure0, A.ContactEditDetailsState_build__closure0, A.ContactEditDetailsState_build_closure13, A.ContactEditDetailsState_build_closure14, A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure, A.ClientEditDetailsState__onChanged_closure0, A.ClientEditFooter_build_closure, A.ClientEditNotesState__onChanged_closure0, A.ClientEditSettingsState__onChanged_closure0, A.ClientEditShippingAddressState__onChanged_closure0, A.ClientEditShippingAddressState_build_closure0, A.ClientEditVM_ClientEditVM$fromStore_closure3, A.ClientEditVM_ClientEditVM$fromStore_closure2, A.ClientEditVM_ClientEditVM$fromStore__closure1, A._ClientViewState_build__closure, A._ClientViewState_build__closure0, A._ClientViewState_build__closure1, A._ClientViewState_build__closure2, A._ClientViewState_build__closure3, A._ClientViewState_build__closure4, A._ClientViewDetailsState_build__buildDetailsList, A._ClientViewDetailsState_build__buildDetailsList__closure1, A._ClientViewDetailsState_build__buildDetailsList___closure0, A._ClientViewDetailsState_build__buildDetailsList__closure2, A._ClientViewDetailsState_build__buildDetailsList___closure, A._ClientViewDetailsState_build__buildDetailsList_closure0, A._ClientViewDetailsState_build__buildDetailsList__closure0, A._ClientViewDetailsState_build__buildDetailsList_closure1, A._ClientViewDetailsState_build__buildDetailsList__closure, A._ClientViewDetailsState_build__buildDetailsList_closure2, A._ClientViewDetailsState_build__buildDetailsList_closure3, A.ClientViewDocuments_build_closure0, A._ClientViewFullwidthState_build__closure, A._ClientViewFullwidthState_build__closure0, A._ClientViewFullwidthState_build__closure1, A._ClientViewFullwidthState_build__closure3, A._ClientViewFullwidthState_build__closure4, A._ClientViewFullwidthState_build__closure5, A._ClientViewFullwidthState_build__closure6, A._ClientViewFullwidthState_build__closure7, A._ClientViewLedgerState_build__closure0, A._ClientViewLedgerState_build__closure, A.ClientOverview_build_closure1, A.ClientOverview_build_closure2, A.ClientOverview_build_closure3, A.ClientViewPaymentMethods_build__closure0, A.ClientViewPaymentMethods_build__closure1, A.ClientViewPaymentMethods_build__closure2, A._CompanyGatewayListState_build_closure1, A._CompanyGatewayListState_build__closure, A.CompanyGatewayListItem_build_closure0, A.CompanyGatewayScreen_build_closure11, A.CompanyGatewayScreen_build_closure10, A.CompanyGatewayScreen_build_closure1, A.CompanyGatewayScreen_build_closure3, A.CompanyGatewayScreen_build_closure9, A.CompanyGatewayScreenVM_fromStore__closure, A._CompanyGatewayEditState_build_closure1, A._CompanyGatewayEditState_build_closure2, A._CompanyGatewayEditState_build__closure, A.GatewayConfigSettings_build_closure, A._LimitEditorState__onTextChange_closure, A._LimitEditorState_build__closure0, A._LimitEditorState_build__closure, A._FeesEditorState__onChanged_closure0, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure1, A._CompanyGatewayViewState_build_closure1, A._CompanyGatewayViewState_build_closure, A._CompanyGatewayViewState_build_closure0, A._CompanyGatewayOverview_build_closure, A._CompanyGatewayOverview_build_closure0, A._CompanyGatewayOverview_build_closure1, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_____closure, A.CreditListItem_build__closure2, A.CreditListItem_build__closure1, A.CreditListItem_build__closure5, A.CreditListItem_build__closure4, A.CreditListVM_fromStore_closure1, A.CreditPresenter_getField_closure, A.CreditScreen_build_closure10, A.CreditScreen_build_closure9, A.CreditScreen_build_closure, A.CreditScreen_build_closure6, A._CreditEditState_build_closure, A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure0, A.CreditEditVM_CreditEditVM$fromStore__closure1, A._DashboardChartState__onSelectionChanged_closure1, A._DashboardChartState_build__closure, A._DashboardChartState_build___closure, A._DashboardDateRangePickerState_build__closure6, A._DashboardDateRangePickerState_build__closure5, A._DashboardDateRangePickerState_build__closure4, A._DashboardDateRangePickerState_build__closure3, A._DashboardDateRangePickerState_build__closure2, A._DashboardDateRangePickerState_build__closure1, A._DashboardDateRangePickerState_build__closure0, A._DashboardDateRangePickerState_build_closure9, A.DashboardPanels__header_closure__showSettings, A.DashboardPanels__header__closure5, A.DashboardPanels__header__closure6, A.DashboardPanels__header__closure7, A.DashboardPanels__header__closure8, A.DashboardPanels__runningTasks__closure2, A.DashboardPanels__runningTasks__closure1, A.DashboardPanels__runningTasks__closure0, A.DashboardPanels_build__closure, A.DashboardPanels_build__closure0, A.DashboardPanels_build__closure1, A.DashboardPanels_build__closure4, A.DashboardPanels_build__closure6, A.DashboardPanels_build__closure8, A.DashboardPanels_build__closure10, A.DashboardPanels_build__closure12, A.__OverviewPanelState_build_closure0, A.__DashboardSettingsState_build__closure9, A.__DashboardSettingsState_build__closure8, A.__DashboardSettingsState_build__closure7, A.__DashboardSettingsState_build_closure3, A.__DashboardSettingsState_build_closure4, A.__DashboardSettingsState_build__closure3, A.__DashboardSettingsState_build_closure5, A.__DashboardSettingsState_build__closure5, A.__DashboardSettingsState_build_closure7, A.__DashboardSettingsState_build__closure1, A.__DashboardSettingsState_build__closure, A._DashboardFieldState_build__closure2, A._DashboardFieldState_build__closure1, A._DashboardFieldState_build_closure2, A._DashboardFieldState_build_closure3, A._DashboardScreenState_build__closure1, A._DashboardScreenState_build_closure1, A._DashboardScreenState_build_closure2, A._DashboardScreenState_build__closure, A._CustomTabBarView_build__closure, A._CustomTabBarView_build_closure0, A._CustomTabBarView_build_closure1, A._CustomTabBarView_build_closure2, A.DashboardVM_fromStore_closure6, A.SidebarScaffold_build_closure, A._DashboardSidebar_build_closure, A.DesignListItem_build_closure1, A.DesignListItem_build_closure0, A.DesignListVM_fromStore_closure1, A.DesignScreen_build_closure10, A.DesignScreen_build_closure9, A.DesignScreen_build_closure, A.DesignScreen_build_closure6, A._DesignEditState__onChanged_closure0, A._DesignEditState__onHtmlChanged_closure, A._DesignEditState__onHtmlChanged__closure, A._DesignEditState__loadPreview_closure, A._DesignEditState__loadPreview__closure, A._DesignEditState__setDraftMode_closure, A._DesignSettingsState_build_closure4, A._DesignSettingsState_build_closure5, A._DesignSettingsState_build_closure6, A.__DesignImportDialogState_build_closure0, A.__DesignImportDialogState_build_closure1, A.DesignEditVM_DesignEditVM$fromStore__closure, A._DesignViewState_build_closure7, A.DesignViewVM_DesignViewVM$fromStore_closure, A.DocumentListItem_build__closure2, A.DocumentListItem_build__closure1, A.DocumentListItem_build__closure5, A.DocumentListItem_build__closure4, A.DocumentListBuilder_build__closure, A.DocumentListVM_fromStore_closure1, A.DocumentScreen_build_closure14, A.DocumentScreen_build_closure13, A.DocumentScreen_build_closure6, A._DocumentEditState__onChanged_closure0, A.DocumentEditVM_DocumentEditVM$fromStore__closure, A._ExpenseEditState_build_closure, A.ExpenseEditDetailsState__onChanged_closure0, A.ExpenseEditNotesState__onChanged_closure0, A.ExpenseEditNotesState_build_closure0, A.ExpenseEditSettingsState__onChanged_closure0, A.ExpenseEditSettingsState_build__closure10, A.ExpenseEditSettingsState_build__closure2, A.ExpenseEditSettingsState_build_closure9, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure5, A.ExpenseListItem_build__closure2, A.ExpenseListItem_build__closure1, A.ExpenseListItem_build__closure5, A.ExpenseListItem_build__closure4, A.ExpenseListVM_fromStore_closure1, A.ExpenseScreen_build_closure18, A.ExpenseScreen_build_closure17, A.ExpenseScreen_build_closure4, A.ExpenseScreen_build_closure5, A.ExpenseScreen_build_closure13, A._ExpenseViewState_build__closure, A._ExpenseViewState_build__closure0, A._ExpenseViewState_build__closure1, A._ExpenseViewState_build__closure2, A.ExpenseViewDocuments_build_closure0, A.ExpenseOverview_build__buildDetailsList, A._ExpenseCategoryEditState__onChanged_closure0, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore__closure, A.ExpenseCategoryListItem_build_closure1, A.ExpenseCategoryListItem_build_closure0, A.ExpenseCategoryListVM_fromStore_closure1, A.ExpenseCategoryScreen_build_closure10, A.ExpenseCategoryScreen_build_closure9, A.ExpenseCategoryScreen_build_closure, A.ExpenseCategoryScreen_build_closure6, A._ExpenseCategoryViewState_build_closure, A.ExpenseCategoryViewVM_ExpenseCategoryViewVM$fromStore_closure, A._GroupEditState__onChanged_closure0, A.GroupEditVM_GroupEditVM$fromStore__closure, A.GroupListItem_build_closure1, A.GroupListItem_build_closure0, A.GroupListVM_fromStore_closure1, A.GroupSettingsScreen_build_closure6, A.GroupSettingsScreen_build_closure5, A.GroupSettingsScreen_build_closure, A.GroupSettingsScreen_build_closure2, A._GroupViewState_build_closure2, A._GroupViewState_build_closure, A._GroupViewState_build_closure1, A.GroupViewVM_GroupViewVM$fromStore_closure, A._InvoiceEditState_build_closure, A.InvoiceEditContacts_build__closure0, A.InvoiceEditContacts_build__closure, A._ContactListTileState_build_closure2, A._ContactListTileState_build___closure, A.InvoiceEditDesktopState__onChanged_closure0, A.InvoiceEditDesktopState_build_closure5, A.InvoiceEditDesktopState_build_closure6, A.InvoiceEditDesktopState_build__closure11, A.InvoiceEditDesktopState_build_closure29, A.InvoiceEditDesktopState_build_closure33, A.__PdfPreviewState_loadPdf_closure, A.__PdfPreviewState__loadPdf_closure, A.__PdfPreviewState__loadPdf__closure0, A.__PdfPreviewState__loadPdf__closure, A.__PdfPreviewState_build_closure, A.__PdfPreviewState_build__closure0, A.__PdfPreviewState_build_closure0, A.__PdfPreviewState_build__closure, A.InvoiceEditDetailsState__onChanged_closure0, A.InvoiceEditDetailsState_build_closure32, A.InvoiceEditFooter_build_closure, A._InvoiceEditItemsState_build_closure0, A.ItemEditDetailsState__onTextChanged_closure, A.ItemEditDetailsState_build_closure, A.ItemEditDetailsState_build_closure0, A.ItemEditDetailsState_build__closure2, A.ItemEditDetailsState_build__closure1, A.ItemEditDetailsState_build__closure0, A.ItemEditDetailsState_build__closure, A._InvoiceEditItemsDesktopState__updateTable_closure, A._InvoiceEditItemsDesktopState__onChanged_closure, A._InvoiceEditItemsDesktopState_build_closure1, A._InvoiceEditItemsDesktopState_build__closure35, A._InvoiceEditItemsDesktopState_build_closure6, A._InvoiceEditItemsDesktopState_build__closure32, A._InvoiceEditItemsDesktopState_build__closure21, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure1, A.InvoiceEditNotesState__onChanged_closure0, A.InvoiceEditPDFState_didChangeDependencies_closure, A.InvoiceEditPDFState_didChangeDependencies__closure0, A.InvoiceEditPDFState_didChangeDependencies__closure, A.InvoiceEditVM_InvoiceEditVM$fromStore__closure2, A._InvoiceItemSelectorState__toggleEntity_closure, A._InvoiceItemSelectorState_build__productList, A._InvoiceItemSelectorState_build__productList__closure0, A._InvoiceItemSelectorState_build__taskList, A._InvoiceItemSelectorState_build__taskList__closure0, A._InvoiceItemSelectorState_build__expenseList, A._InvoiceItemSelectorState_build__expenseList__closure0, A._InvoiceItemSelectorState_build__closure0, A._InvoiceItemSelectorState_build_closure3, A._InvoiceItemSelectorState_build__closure, A._InvoiceItemSelectorState_build_closure4, A._InvoiceItemSelectorState_build_closure5, A.InvoiceTaxDetails_build_closure, A.InvoiceListItem_build__closure2, A.InvoiceListItem_build__closure1, A.InvoiceListItem_build__closure5, A.InvoiceListItem_build__closure4, A.InvoiceListVM_fromStore_closure1, A._InvoicePdfViewState_loadPdf_closure, A._InvoicePdfViewState_loadPdf__closure1, A._InvoicePdfViewState_loadPdf__closure, A._InvoicePdfViewState_build__closure0, A._InvoicePdfViewState_build__closure, A._InvoicePdfViewState_build_closure2, A._InvoicePdfViewState_build_closure3, A._InvoicePdfViewState_build_closure4, A.InvoicePresenter_getField_closure, A.InvoiceScreen_build_closure20, A.InvoiceScreen_build_closure19, A.InvoiceScreen_build_closure7, A.InvoiceScreen_build_closure15, A._InvoiceViewState_build__closure5, A._InvoiceViewState_build__closure, A._InvoiceViewState_build__closure0, A._InvoiceViewState_build__closure1, A._InvoiceViewState_build__closure2, A._InvoiceViewState_build__closure3, A._InvoiceViewState_build__closure4, A._InvitationListTile_build_closure0, A._InvitationListTile_build_closure2, A.InvoiceViewDocuments_build_closure1, A._InvoiceViewHistoryState_build__closure, A.InvoiceOverview_build___closure, A._PaymentEditState__onChanged_closure0, A._PaymentEditState_build__closure1, A._PaymentEditState_build_closure15, A._PaymentEditState_build_closure16, A._PaymentableEditorState_build_closure7, A.PaymentEditVM_PaymentEditVM$fromStore__closure, A.PaymentListItem_build__closure2, A.PaymentListItem_build__closure1, A.PaymentListItem_build__closure5, A.PaymentListItem_build__closure4, A.PaymentListVM_fromStore_closure1, A.PaymentScreen_build_closure21, A.PaymentScreen_build_closure20, A.PaymentScreen_build_closure7, A.PaymentScreen_build_closure8, A.PaymentScreen_build_closure16, A._PaymentRefundState__onChanged_closure, A._PaymentRefundState_build_onSavePressed_closure, A._PaymentRefundState_build_closure6, A._PaymentRefundState_build_closure7, A._PaymentableEditorState_build__closure2, A._PaymentableEditorState_build_closure12, A._PaymentViewState_build__closure2, A._PaymentViewState_build__closure, A._PaymentViewState_build__closure0, A._PaymentViewState_build__closure1, A._PaymentTermEditState__onChanged_closure0, A.PaymentTermEditVM_PaymentTermEditVM$fromStore__closure, A.PaymentTermListItem_build_closure1, A.PaymentTermListItem_build_closure0, A.PaymentTermListVM_fromStore_closure1, A.PaymentTermScreen_build_closure10, A.PaymentTermScreen_build_closure9, A.PaymentTermScreen_build_closure, A.PaymentTermScreen_build_closure6, A._PaymentTermViewState_build_closure, A.PaymentTermViewVM_PaymentTermViewVM$fromStore_closure, A._ProductEditState__onChanged_closure0, A.ProductEditVM_ProductEditVM$fromStore__closure, A.ProductListItem_build__closure2, A.ProductListItem_build__closure1, A.ProductListItem_build__closure5, A.ProductListItem_build__closure4, A.ProductListVM_fromStore_closure1, A.ProductScreen_build_closure11, A.ProductScreen_build_closure10, A.ProductScreen_build_closure, A.ProductScreen_build_closure0, A.ProductScreen_build_closure7, A._ProductViewState_build__closure, A._ProductViewState_build__closure0, A._ProductViewState_build__closure1, A.ProductViewDocuments_build_closure0, A._ProjectEditState__onChanged_closure0, A.ProjectEditVM_ProjectEditVM$fromStore__closure1, A.ProjectListItem_build__closure2, A.ProjectListItem_build__closure1, A.ProjectListItem_build__closure5, A.ProjectListItem_build__closure4, A.ProjectListVM_fromStore_closure1, A.ProjectScreen_build_closure10, A.ProjectScreen_build_closure9, A.ProjectScreen_build_closure, A.ProjectScreen_build_closure6, A._ProjectViewState_build__closure, A._ProjectViewState_build__closure0, A._ProjectViewState_build__closure1, A.ProjectViewDocuments_build_closure0, A._ProjectOverviewState_initState__closure, A._ProjectOverviewState_build__buildView, A._ProjectOverviewState_build_closure, A._PurchaseOrderEditState_build_closure, A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure0, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore__closure1, A.PurchaseOrderListItem_build__closure2, A.PurchaseOrderListItem_build__closure1, A.PurchaseOrderListItem_build__closure5, A.PurchaseOrderListItem_build__closure4, A.PurchaseOrderListVM_fromStore_closure1, A.PurchaseOrderPresenter_getField_closure, A.PurchaseOrderScreen_build_closure16, A.PurchaseOrderScreen_build_closure15, A.PurchaseOrderScreen_build_closure3, A.PurchaseOrderScreen_build_closure11, A._QuoteEditState_build_closure, A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure0, A.QuoteEditVM_QuoteEditVM$fromStore__closure1, A.QuoteListItem_build__closure2, A.QuoteListItem_build__closure1, A.QuoteListItem_build__closure5, A.QuoteListItem_build__closure4, A.QuoteListVM_fromStore_closure1, A.QuotePresenter_getField_closure, A.QuoteScreen_build_closure18, A.QuoteScreen_build_closure17, A.QuoteScreen_build_closure5, A.QuoteScreen_build_closure13, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure5, A.RecurringExpenseListItem_build__closure2, A.RecurringExpenseListItem_build__closure1, A.RecurringExpenseListItem_build__closure5, A.RecurringExpenseListItem_build__closure4, A.RecurringExpenseListVM_fromStore_closure1, A.RecurringExpenseScreen_build_closure17, A.RecurringExpenseScreen_build_closure16, A.RecurringExpenseScreen_build_closure4, A.RecurringExpenseScreen_build_closure12, A._RecurringInvoiceEditState_build_closure, A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure0, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure1, A.RecurringInvoiceListItem_build__closure2, A.RecurringInvoiceListItem_build__closure1, A.RecurringInvoiceListItem_build__closure5, A.RecurringInvoiceListItem_build__closure4, A.RecurringInvoiceListVM_fromStore_closure1, A.RecurringInvoiceScreen_build_closure17, A.RecurringInvoiceScreen_build_closure16, A.RecurringInvoiceScreen_build_closure4, A.RecurringInvoiceScreen_build_closure12, A.ReportsScreen_build__closure6, A.ReportsScreen_build__closure3, A.ReportsScreen_build_closure21, A.ReportsScreen_build__closure1, A.ReportsScreen_build_closure24, A.ReportsScreen_build__closure, A.ReportsScreen_build_closure26, A._ReportDataTableState_didChangeDependencies_closure, A.ReportResult_tableColumns_closure, A.ReportResult_tableFilters_closure2, A.ReportResult_tableFilters__closure3, A.ReportResult_tableFilters___closure, A.ReportResult_tableRow_closure, A.ReportResult_tableRow_closure0, A.ReportsScreenVM_fromStore__closure, A._ScheduleEditState__onChanged_closure, A._ScheduleEditState_build___closure6, A._ScheduleEditState_build__closure16, A.ScheduleEditVM_ScheduleEditVM$fromStore__closure, A.ScheduleListItem_build_closure1, A.ScheduleListItem_build_closure0, A.ScheduleListVM_fromStore_closure1, A.ScheduleScreen_build_closure10, A.ScheduleScreen_build_closure9, A.ScheduleScreen_build_closure, A.ScheduleScreen_build_closure6, A._ScheduleViewState_build_closure, A.ScheduleViewVM_ScheduleViewVM$fromStore_closure, A._AccountManagementState__onChanged_closure0, A._AccountOverview_build__getDataStats, A._AccountOverview_build_closure, A._AccountOverview_build_closure0, A._AccountOverview_build_closure6, A._AccountOverview_build_closure7, A._AccountOverview_build_closure8, A._AccountOverview_build_closure9, A._AccountOverview_build_closure10, A._AccountOverview_build_closure11, A._AccountOverview_build_closure12, A._AccountOverview_build_closure13, A.AccountManagementVM_fromStore__closure2, A.AccountManagementVM_fromStore_closure4, A._ClientPortalState__validateSubdomain_closure, A._ClientPortalState__validateSubdomain_closure0, A._ClientPortalState__validateSubdomain__closure, A._ClientPortalState__validateSubdomain__closure0, A._ClientPortalState__validateSubdomain___closure0, A._ClientPortalState__validateSubdomain___closure, A._ClientPortalState__onChanged_closure, A._ClientPortalState_build_closure3, A._ClientPortalState_build_closure4, A._ClientPortalState_build_closure10, A._ClientPortalState_build_closure12, A.ClientPortalVM_fromStore__closure, A._CompanyDetailsState__onSettingsChanged_closure0, A._CompanyDetailsState_build__closure6, A._CompanyDetailsState_build__closure7, A._CompanyDetailsState_build_closure10, A._CompanyDetailsState_build_closure17, A.CompanyDetailsVM_fromStore__closure4, A._CustomFormFieldState_build_closure0, A._CustomFormFieldState_build__closure, A.CustomFieldsVM_fromStore__closure, A._DeviceSettingsState_build__closure6, A._DeviceSettingsState_build__closure5, A._DeviceSettingsState_build_closure15, A._DeviceSettingsState_build_closure21, A._DeviceSettingsState_build_closure22, A.DeviceSettingsVM_fromStore_closure20, A._EmailSettingsState_build_closure0, A._EmailSettingsState_build_closure3, A._EmailSettingsState_build_closure22, A.EmailSettingsVM_fromStore__closure, A._ExpenseSettingsState_build_closure7, A.ExpenseSettingsVM_fromStore__closure, A._GeneratedNumbersState__onChanged_closure, A._EntityNumberSettingsState__onChanged_closure, A._EntityNumberSettingsState_build_closure, A.HelpPanel_build__closure, A.GeneratedNumbersVM_fromStore__closure, A._ImportExportState_build__closure9, A._ImportExportState_build__closure10, A._ImportExportState_build_closure1, A._ImportExportState_build__closure8, A._ImportExportState_build__closure7, A._ImportExportState_build__closure6, A._ImportExportState_build__closure5, A._ImportExportState_build__closure4, A._ImportExportState_build__closure3, A._ImportExportState_build__closure2, A._ImportExportState_build_closure12, A._ImportExportState_build__closure, A._ImportExportState_build___closure0, A._ImportExportState_build___closure, A._FileImportState_uploadJsonFile_closure, A._FileImportState_uploadJsonFile__closure0, A._FileImportState_uploadJsonFile__closure, A._FileImportState_uploadFile_closure, A._FileImportState_uploadFile__closure0, A._FileImportState_uploadFile__closure, A._FileImportState_build_closure1, A._FileImportState_build__closure1, A._FileImportState_build__closure0, A._FileImportState_build__closure, A._FileImportState_build_closure4, A.__FileMapperState_build__closure5, A.__FileMapperState_build__closure4, A.__FileMapperState_build__closure3, A.__FileMapperState_build_closure5, A.__FileMapperState_build_closure6, A.__FileMapperState_build__closure, A.__FileMapperState_build___closure0, A.__FileMapperState_build___closure, A._InvoiceDesignState__onChanged_closure0, A._InvoiceDesignState_build_closure0, A._InvoiceDesignState_build__closure28, A._InvoiceDesignState_build__closure27, A._InvoiceDesignState_build__closure25, A._InvoiceDesignState_build__closure24, A._InvoiceDesignState_build__closure22, A._InvoiceDesignState_build__closure21, A._InvoiceDesignState_build__closure19, A._InvoiceDesignState_build__closure18, A._InvoiceDesignState_build_closure10, A._PdfPreviewState__loadPdf_closure, A._PdfPreviewState__loadPdf_closure1, A.InvoiceDesignVM_fromStore__closure, A._LocalizationSettingsState_build_closure12, A._LocalizationSettingsState_build__closure4, A._LocalizationSettingsState_build_closure13, A._LocalizationSettingsState_build_closure15, A._AddCompanyDialogState_build_closure, A._AddCompanyDialogState_build_closure0, A.LocalizationSettingsVM_fromStore__closure, A._PaymentSettingsState_build_closure15, A.PaymentSettingsVM_fromStore__closure, A._ProductSettingsState__onChanged_closure0, A.ProductSettingsVM_fromStore__closure, A._SettingsListTileState_build__closure0, A._SettingsListTileState_build__closure, A._SettingsListTileState_build_closure, A.SettingsSearch_build_closure1, A.SettingsSearch_build_closure2, A.SettingsListVM_fromStore_closure2, A._SettingsWizardState__validateSubdomain_closure, A._SettingsWizardState__validateSubdomain__closure, A._SettingsWizardState__validateSubdomain__closure0, A._SettingsWizardState__validateSubdomain___closure0, A._SettingsWizardState__validateSubdomain___closure, A._SettingsWizardState__onSavePressed____closure0, A._SettingsWizardState__onSavePressed____closure, A._SettingsWizardState__onSavePressed___closure, A._SettingsWizardState__onSavePressed__closure1, A._SettingsWizardState_build__closure1, A._SettingsWizardState_build__closure0, A._SettingsWizardState_build_closure9, A._SettingsWizardState_build_closure10, A._TaskSettingsState_build_closure3, A.TaskSettingsVM_fromStore__closure, A._TaxSettingsState_build_closure6, A._TaxSettingsState_build__closure1, A._TaxSettingsState_build___closure1, A._TaxSettingsState_build___closure0, A.__EditSubregionDialogState_build_closure, A.TaxSettingsVM_fromStore__closure, A._TemplatesAndRemindersState__loadTemplate_closure, A._TemplatesAndRemindersState__onTextChanged_closure, A._TemplatesAndRemindersState__onTabChanged_closure, A._TemplatesAndRemindersState__renderTemplate_closure, A._TemplatesAndRemindersState__renderTemplate__closure, A._TemplatesAndRemindersState_build__closure4, A._TemplatesAndRemindersState_build_closure8, A._ReminderSettingsState__onTextChanged_closure, A.TemplatesAndRemindersVM_fromStore__closure, A.TemplatesAndRemindersVM_fromStore___closure, A.TemplatesAndRemindersVM_fromStore_____closure, A._UserDetailsState__onChanged_closure0, A._UserDetailsState_build_closure, A._UserDetailsState_build_closure0, A._UserDetailsState_build_closure1, A._UserDetailsState_build_closure2, A._UserDetailsState_build_closure3, A._UserDetailsState_build_closure7, A._EnableTwoFactorState_initState__closure, A._EnableTwoFactorState__onSavePressed_closure, A._EnableTwoFactorState__onSavePressed_closure0, A._EnableTwoFactorState__onSavePressed__closure0, A._EnableTwoFactorState__onSavePressed__closure, A._EnableTwoFactorState_build_closure2, A._EnableTwoFactorState_build_closure3, A._EnableTwoFactorState_build_closure4, A.UserDetailsVM_fromStore__closure7, A.WorkflowSettingsVM_fromStore__closure, A._SubscriptionEditState__onChanged_closure0, A._SubscriptionEditState_build__closure26, A._SubscriptionEditState_build__closure23, A._SubscriptionEditState_build__closure20, A._SubscriptionEditState_build__closure17, A._SubscriptionEditState_build__closure2, A._SubscriptionEditState_build__closure1, A._SubscriptionEditState_build_closure31, A._SubscriptionEditState_build__closure, A.SubscriptionEditVM_SubscriptionEditVM$fromStore__closure, A.SubscriptionListItem_build_closure1, A.SubscriptionListItem_build_closure0, A.SubscriptionListVM_fromStore_closure1, A.SubscriptionScreen_build_closure10, A.SubscriptionScreen_build_closure9, A.SubscriptionScreen_build_closure, A.SubscriptionScreen_build_closure6, A._SubscriptionViewState_build_closure1, A._SubscriptionViewState_build_closure0, A._SubscriptionViewState_build_closure, A.SubscriptionViewVM_SubscriptionViewVM$fromStore_closure, A._UpdateDialogState_build_closure, A._UpdateDialogState_build_closure0, A._UpdateDialogState_build_closure1, A._UpdateDialogState_build_closure2, A._UpdateDialogState_build_closure3, A._UpdateDialogState_build_closure4, A._UpdateDialogState_updateApp__closure, A._UpdateDialogState_updateApp___closure0, A._UpdateDialogState_updateApp___closure, A._TaskEditState_build_closure, A._TaskEditState_build__closure, A._BottomBar_build_closure, A._BottomBar_build_closure0, A._TaskEditDesktopState__onChanged_closure0, A._TaskEditDesktopState_build___closure6, A._TaskEditDesktopState_build___closure5, A._TaskEditDesktopState_build___closure4, A._TaskEditDesktopState_build___closure3, A._TaskEditDesktopState_build___closure2, A._TaskEditDesktopState_build__closure5, A._TaskEditDesktopState_build__closure6, A._TaskEditDesktopState_build____closure, A._TaskEditDetailsState__onChanged_closure0, A.TimeEditDetailsState_build__closure6, A.TimeEditDetailsState_build__closure5, A.TimeEditDetailsState_build__closure4, A.TimeEditDetailsState_build__closure3, A.TimeEditDetailsState_build__closure2, A.TimeEditDetailsState_build__closure0, A.TimeEditDetailsState_build_closure6, A.TimeEditDetailsState_build_closure7, A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure0, A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure2, A.TaskEditVM_TaskEditVM$fromStore_closure1, A.TaskEditVM_TaskEditVM$fromStore__closure0, A._KanbanTaskCardState_build_closure1, A._KanbanTaskCardState_build__closure3, A._KanbanTaskCardState_build_closure0, A._KanbanTaskCardState_build___closure, A._KanbanTaskCardState_build__closure, A._KanbanTaskCardState_build__closure0, A._KanbanTaskCardState_build_closure2, A._KanbanTaskCardState_build_closure3, A._KanbanTaskCardState_build_closure4, A._KanbanTaskCardState_build_closure5, A._KanbanTaskCardState_build_closure8, A._KanbanTaskCardState_build__closure1, A._KanbanStatusCardState__onSavePressed__closure, A._KanbanStatusCardState_build_closure1, A._KanbanStatusCardState_build__closure0, A._KanbanStatusCardState_build_closure2, A._KanbanStatusCardState_build__closure, A.KanbanViewState_build___closure, A.KanbanViewState_build__closure0, A.KanbanViewState_build___closure5, A.KanbanViewState_build__closure2, A.KanbanViewState_build___closure4, A.KanbanViewState_build___closure0, A.KanbanViewState_build____closure2, A.KanbanViewState_build____closure, A.KanbanViewState_build____closure0, A.KanbanViewState_build____closure1, A.TaskListItem_build_closure1, A.TaskListItem_build_closure, A.TaskListItem_build__closure2, A.TaskListItem_build__closure1, A.TaskListItem_build__closure5, A.TaskListItem_build__closure4, A.TaskListVM_fromStore_closure1, A.TaskScreen_build_closure21, A.TaskScreen_build_closure20, A.TaskScreen_build_closure3, A.TaskScreen_build_closure4, A.TaskScreen_build_closure5, A.TaskScreen_build_closure6, A.TaskScreen_build_closure7, A.TaskScreen_build_closure8, A.TaskScreen_build_closure16, A.TaskTimeListTile_build_closure0, A.TaskTimeListTile_build_closure, A._TaskViewState_build__closure, A._TaskViewState_build__closure0, A._TaskViewState_build__closure1, A.TaskViewDocuments_build_closure0, A._TaskOverviewState_initState__closure, A._TaskOverviewState_build__buildView, A._TaskOverviewState_build_closure, A._TaskStatusEditState__onChanged_closure0, A.TaskStatusEditVM_TaskStatusEditVM$fromStore__closure, A._TaskStatusListState_build_closure1, A.TaskStatusListItem_build_closure1, A.TaskStatusListItem_build_closure0, A.TaskStatusScreen_build_closure11, A.TaskStatusScreen_build_closure10, A.TaskStatusScreen_build_closure, A.TaskStatusScreen_build_closure0, A.TaskStatusScreen_build_closure7, A._TaskStatusViewState_build_closure, A.TaskStatusViewVM_TaskStatusViewVM$fromStore_closure, A._TaxRateEditState__onChanged_closure0, A.TaxRateEditVM_TaxRateEditVM$fromStore__closure, A.TaxRateListItem_build_closure1, A.TaxRateListItem_build_closure0, A.TaxRateListVM_fromStore_closure1, A.TaxRateSettingsScreen_build_closure6, A.TaxRateSettingsScreen_build_closure5, A.TaxRateSettingsScreen_build_closure, A.TaxRateSettingsScreen_build_closure2, A._TaxRateViewState_build_closure, A.TaxRateViewVM_TaxRateViewVM$fromStore_closure, A._TokenEditState__onChanged_closure0, A.TokenEditVM_TokenEditVM$fromStore__closure, A.TokenListItem_build_closure1, A.TokenListItem_build_closure0, A.TokenListVM_fromStore_closure1, A.TokenScreen_build_closure10, A.TokenScreen_build_closure9, A.TokenScreen_build_closure, A.TokenScreen_build_closure6, A._TokenViewState_build_closure, A._TokenListTile_build_closure, A.TokenViewVM_TokenViewVM$fromStore_closure, A._TransactionEditState__onChanged_closure, A.TransactionEditVM_TransactionEditVM$fromStore__closure1, A.TransactionListItem_build__closure2, A.TransactionListItem_build__closure1, A.TransactionListItem_build__closure5, A.TransactionListItem_build__closure4, A.TransactionListVM_fromStore_closure1, A.TransactionScreen_build_closure17, A.TransactionScreen_build_closure16, A.TransactionScreen_build_closure4, A.TransactionScreen_build_closure5, A.TransactionScreen_build_closure12, A._MatchDepositsState_build__closure12, A._MatchDepositsState_build__closure11, A._MatchDepositsState_build_closure3, A._MatchDepositsState_build__closure10, A._MatchDepositsState_build_closure4, A._MatchDepositsState_build__closure9, A._MatchDepositsState_build__closure8, A._MatchDepositsState_build_closure6, A._MatchDepositsState_build__closure7, A._MatchDepositsState_build_closure7, A._MatchDepositsState_build__closure6, A._MatchDepositsState_build__closure5, A._MatchDepositsState_build__closure4, A._MatchDepositsState_build__closure3, A._MatchDepositsState_build__closure2, A._MatchDepositsState_build__closure1, A._MatchDepositsState_build___closure0, A._MatchDepositsState_build__closure0, A._MatchDepositsState_build___closure, A._MatchDepositsState_build_closure16, A._MatchDepositsState_build_closure17, A._MatchWithdrawalsState_build__closure18, A._MatchWithdrawalsState_build__closure17, A._MatchWithdrawalsState_build_closure3, A._MatchWithdrawalsState_build__closure16, A._MatchWithdrawalsState_build_closure4, A._MatchWithdrawalsState_build__closure15, A._MatchWithdrawalsState_build__closure14, A._MatchWithdrawalsState_build__closure13, A._MatchWithdrawalsState_build__closure12, A._MatchWithdrawalsState_build__closure11, A._MatchWithdrawalsState_build__closure10, A._MatchWithdrawalsState_build___closure3, A._MatchWithdrawalsState_build__closure9, A._MatchWithdrawalsState_build_closure12, A._MatchWithdrawalsState_build__closure8, A._MatchWithdrawalsState_build_closure13, A._MatchWithdrawalsState_build__closure5, A._MatchWithdrawalsState_build___closure1, A._MatchWithdrawalsState_build__closure4, A._MatchWithdrawalsState_build_closure17, A._MatchWithdrawalsState_build__closure3, A._MatchWithdrawalsState_build_closure18, A._MatchWithdrawalsState_build__closure0, A._MatchWithdrawalsState_build___closure, A._MatchWithdrawalsState_build_closure21, A._MatchWithdrawalsState_build_closure22, A._TransactionRuleEditState__onChanged_closure, A._TransactionRuleEditState_build__closure3, A._TransactionRuleEditState_build__closure4, A._TransactionRuleEditState_build__closure5, A.__RuleCriteriaState_build__closure1, A.__RuleCriteriaState_build__closure0, A.__RuleCriteriaState_build__closure, A.__RuleCriteriaState_build_closure4, A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore__closure, A.TransactionRuleListItem_build_closure1, A.TransactionRuleListItem_build_closure0, A.TransactionRuleListVM_fromStore_closure1, A.TransactionRuleScreen_build_closure10, A.TransactionRuleScreen_build_closure9, A.TransactionRuleScreen_build_closure, A.TransactionRuleScreen_build_closure6, A._TransactionRuleViewState_build_closure, A.TransactionRuleViewVM_TransactionRuleViewVM$fromStore_closure, A._UserEditState__onChanged_closure0, A._UserEditState_build_closure6, A._UserEditState_build_closure8, A._UserEditState_build_closure10, A._UserEditState_build_closure12, A._UserEditState_build__closure, A._UserEditState_build__closure0, A._UserEditState_build__closure2, A._UserEditState_build__closure4, A.UserEditVM_UserEditVM$fromStore__closure, A.UserListItem_build_closure1, A.UserListItem_build_closure0, A.UserListBuilder_build__closure_showDialog, A.UserListBuilder_build___closure, A.UserListVM_fromStore_closure1, A.UserScreen_build_closure10, A.UserScreen_build_closure9, A.UserScreen_build_closure, A.UserScreen_build_closure6, A.UserView_build_closure, A.UserViewVM_UserViewVM$fromStore_closure, A.VendorEditAddressState__onChanged_closure0, A._VendorEditContactsState_build__closure, A._VendorEditContactsState_build_closure1, A.VendorContactEditDetailsState__onChanged_closure0, A.VendorContactEditDetailsState_build__closure0, A.VendorContactEditDetailsState_build_closure11, A.VendorContactEditDetailsState_build_closure12, A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure, A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure1, A.VendorEditDetailsState__onChanged_closure0, A.VendorEditFooter_build_closure, A.VendorEditNotesState__onChanged_closure0, A.VendorEditVM_VendorEditVM$fromStore__closure, A.VendorListItem_build__closure2, A.VendorListItem_build__closure1, A.VendorListItem_build__closure5, A.VendorListItem_build__closure4, A.VendorListVM_fromStore_closure1, A.VendorPresenter_getField_closure0, A.VendorScreen_build_closure10, A.VendorScreen_build_closure9, A.VendorScreen_build_closure, A.VendorScreen_build_closure6, A._VendorViewState_build__closure, A._VendorViewState_build__closure0, A._VendorViewState_build__closure1, A._VendorViewState_build__closure2, A._VendorViewDetailsState_build__buildDetailsList, A._VendorViewDetailsState_build__buildDetailsList__closure1, A._VendorViewDetailsState_build__buildDetailsList___closure0, A._VendorViewDetailsState_build__buildDetailsList__closure2, A._VendorViewDetailsState_build__buildDetailsList___closure, A._VendorViewDetailsState_build__buildDetailsList_closure0, A._VendorViewDetailsState_build__buildDetailsList__closure0, A._VendorViewDetailsState_build__buildDetailsList_closure1, A._VendorViewDetailsState_build__buildDetailsList__closure, A._VendorViewDetailsState_build__buildDetailsList_closure2, A.VendorViewDocuments_build_closure0, A._VendorViewFullwidthState_build__closure, A._VendorViewFullwidthState_build__closure0, A._VendorViewFullwidthState_build__closure2, A._VendorViewFullwidthState_build__closure3, A._WebhookEditState__onChanged_closure0, A._WebhookEditState_build___closure2, A._WebhookEditState_build___closure1, A._WebhookEditState_build__closure5, A._WebhookEditState_build___closure, A.WebhookEditVM_WebhookEditVM$fromStore__closure, A._WebhookViewState_build_closure, A.TargetListTile_build_closure, A.WebhookViewVM_WebhookViewVM$fromStore_closure, A.WebhookListItem_build_closure1, A.WebhookListItem_build_closure0, A.WebhookListVM_fromStore_closure1, A.WebhookScreen_build_closure10, A.WebhookScreen_build_closure9, A.WebhookScreen_build_closure, A.WebhookScreen_build_closure6, A.Debouncer_run_closure, A.SimpleDebouncer_run_closure, A.PersistDebouncer_run_closure, A.confirmCallback_closure__onPressed, A.confirmCallback__closure2, A.confirmCallback__closure3, A.passwordCallback_closure, A._PasswordConfirmationState_build_closure, A._PasswordConfirmationState_build__closure, A._PasswordConfirmationState_build_closure2, A._PasswordConfirmationState_build_closure3, A._FieldConfirmationState_build_closure1, A._FieldConfirmationState_build_closure2, A.cloneToDialog__closure, A.cloneToDialog__closure0, A.cloneToDialog__closure1, A.cloneToDialog__closure2, A.cloneToDialog__closure3, A.cloneToDialog__closure4, A.changeTaskStatusDialog___closure, A.changeTaskStatusDialog__closure0, A.addToInvoiceDialog___closure, A._RunTemplateDialogState_build_closure, A._RunTemplateDialogState_build_closure0, A._RunTemplateDialogState_build_closure1, A._RunTemplateDialogState_build__closure2, A._RunTemplateDialogState_build___closure0, A._RunTemplateDialogState_build___closure1, A._RunTemplateDialogState_build___closure, A._RunTemplateDialogState_build__closure0, A._RunTemplateDialogState_build__closure, A._ExampleEditorState_initState_closure, A._EditorToolbarState__onLinkPressed_closure0, A._EditorToolbarState__applyLink_closure, A._EditorToolbarState__buildUrlField_closure1, A._EditorToolbarState__buildUrlField__closure, A.Logger_Logger_closure, A.ListSyntax_parse_endItem, A.ParagraphSyntax__parseReflinkDefinition_closure, A.InlineParser__linkOrImage_closure1, A.InlineParser__processEmphasis_closure, A.InlineParser__processEmphasis_closure1, A.PublicClientApplication_loginPopup_closure, A._PinputState__handleHover_closure, A._PinputState__validator_closure, A._PinputState__buildPinput_closure, A._PinputState__buildPinput_closure0, A._PinputState__buildFields_onlyFields, A.PrintingPlugin_layoutPdf__closure, A.PdfPreviewAction_build_closure, A.PdfPreviewCustomState_didChangeDependencies__closure, A.PdfPreviewCustomState__createPreview__closure, A.PdfPreviewCustomState__createPreview___closure, A.PdfPreviewCustomState__zoomPreview_closure, A.PdfPreviewCustomState__zoomPreview__closure, A.PdfPreviewCustomState_build_closure, A.PdfPreviewState_initState_closure, A.PdfPreviewState_initState__closure, A.PdfPreviewState_didUpdateWidget_closure, A.PdfPreviewState_didChangeDependencies__closure, A.PdfPreviewRaster_raster_closure, A.PdfPreviewRaster__raster_closure, A.PdfPreviewRaster__raster_closure0, A.PdfPreviewRaster__raster_closure1, A.PdfPreviewRaster__raster_closure2, A.PdfPreviewRaster__raster_closure3, A.LoggingMiddleware_call_closure, A.RoundedLoadingButtonState_initState_closure, A.RoundedLoadingButtonState_initState__closure1, A.RoundedLoadingButtonState_initState_closure0, A.RoundedLoadingButtonState_initState__closure0, A.RoundedLoadingButtonState_initState_closure2, A.RoundedLoadingButtonState_initState__closure, A.BehaviorSubject__deferStream_closure, A.Subject_addStream_complete, A.StartWithStreamTransformer_bind_closure, A.StartWithErrorStreamTransformer_bind_closure, A._forwardMulti__closure, A._forward_closure, A._forward_closure0, A._forward__listenToUpstream_closure, A._forward__listenToUpstream_closure0, A._forward_closure1, A.Highlighter_closure, A.Highlighter__writeFileStart_closure, A.Highlighter__writeMultilineHighlights_closure, A.Highlighter__writeMultilineHighlights_closure0, A.Highlighter__writeMultilineHighlights_closure1, A.Highlighter__writeMultilineHighlights_closure2, A.Highlighter__writeMultilineHighlights__closure, A.Highlighter__writeMultilineHighlights__closure0, A.Highlighter__writeHighlightedText_closure, A.Highlighter__writeIndicator_closure, A.Highlighter__writeIndicator_closure0, A.Highlighter__writeIndicator_closure1, A.Highlighter__writeSidebar_closure, A._Highlight_closure, A.addToContextSet_closure, A.addToActiveReactiveModels_closure, A._MyStatefulWidgetState_initState__closure, A.InjectedImp_closure, A.IObservable_addObserver_closure, A.IObservable_addCleaner_closure, A.ReactiveModelImp_setStateNullable_closure, A.ReactiveModelImp_setStateNullable_closure1, A.ReactiveModelImp__handleAsyncState__closure, A.ReactiveModelImp__handleAsyncState_closure0, A.DocumentComposer_closure, A.InspectDocumentRange_getRangeBetween_closure, A.HeaderConversionReaction_onPrefixMatched_closure, A._CaretDocumentOverlayState__onSelectionChange_closure, A._DocumentMouseInteractorState__onPanUpdate_closure, A._DocumentMouseInteractorState__onDragEnd_closure, A._DocumentMouseInteractorState__buildGestureInput_closure, A._DocumentMouseInteractorState__buildGestureInput_closure1, A.SuperEditorAndroidControlsController_startCollapsedHandleAutoHideCountdown_closure, A._AndroidDocumentTouchInteractorState_initState_closure, A._AndroidDocumentTouchInteractorState_initState_closure0, A._AndroidDocumentTouchInteractorState_didChangeMetrics__closure, A._AndroidDocumentTouchInteractorState__onPanStart_closure, A._AndroidDocumentTouchInteractorState_build_closure, A._AndroidDocumentTouchInteractorState_build_closure1, A._IosDocumentTouchInteractorState_initState_closure, A._IosDocumentTouchInteractorState_initState_closure0, A._IosDocumentTouchInteractorState_didChangeDependencies__closure, A._IosDocumentTouchInteractorState__startDragScrolling_closure, A._IosDocumentTouchInteractorState_build_closure, A._IosDocumentTouchInteractorState_build_closure1, A._IosDocumentTouchInteractorState_build_closure3, A._ImeFocusPolicyState__onFocusChange_closure, A._DocumentSelectionOpenAndCloseImePolicyState__onSelectionChange_closure, A._KeyboardEditingToolbarState_initState_closure, A._KeyboardEditingToolbarState__onToolbarLayout_closure, A._KeyboardHeightBuilderState_didChangeMetrics_closure, A.SuperEditorImeInteractorState_build_closure, A.SuperEditorImeInteractorState_build_closure0, A._DocumentScrollableState_initState__closure, A._DocumentScrollableState_initState__closure0, A._DocumentScrollableState_didUpdateWidget_closure, A._DocumentScrollableState_didUpdateWidget_closure0, A._SingleColumnDocumentLayoutState__onViewModelChange_closure, A._PresenterComponentBuilderState__onViewModelChange_closure, A.SingleColumnLayoutPresenter__assemblePipeline_closure, A.SuperEditorState_initState_closure, A.SuperEditorState_didUpdateWidget_closure, A.SuperEditorState__createEditContext_closure, A.SuperEditorState__createEditContext_closure0, A.SuperEditorState_build__closure2, A.SuperEditorState_build__closure3, A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure0, A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure1, A.SuperEditorState__buildGestureInteractor_closure, A.SuperEditorState__buildGestureInteractor_closure0, A.SuperEditorState__buildGestureInteractor_closure1, A.ToggleTextAttributionsCommand_execute_closure, A.ContentLayersElement_buildLayers_closure, A._SelectionLeadersDocumentLayerState__onSelectionChange_closure, A._CupertinoScrollbarState_initState_closure0, A.Frames_setStateAsSoonAsPossible_closure, A.Frames_setStateAsSoonAsPossible__closure, A.Frames_scheduleBuildAfterBuild__closure, A._MaterialScrollbarState_initState_closure0, A._MaterialScrollbarState_handleThumbPressStart_closure0, A._MaterialScrollbarState_handleThumbPressEnd_closure0, A._MaterialScrollbarState_handleHover_closure1, A._MaterialScrollbarState_handleHover_closure2, A._MaterialScrollbarState_handleHoverExit_closure0, A.RawScrollbarWithCustomPhysicsState__maybeStartFadeoutTimer_closure, A.RawScrollbarWithCustomPhysicsState__gestures_closure, A.RawScrollbarWithCustomPhysicsState__gestures_closure1, A.RawScrollbarWithCustomPhysicsState_handleHover_closure, A.RawScrollbarWithCustomPhysicsState_handleHoverExit_closure, A._FocusWithCustomParentState__handleFocusChanged_closure, A._FocusWithCustomParentState__handleFocusChanged_closure0, A._FocusWithCustomParentState__handleFocusChanged_closure1, A._FocusWithCustomParentState__handleFocusChanged_closure2, A._MultiListenableBuilderState__onListenableChange_closure, A.TapSequenceGestureRecognizer_addAllowedPointer_closure, A.TapSequenceGestureRecognizer_addAllowedPointer_closure0, A.TapSequenceGestureRecognizer_addAllowedPointer_closure1, A.TapSequenceGestureRecognizer__checkUp_closure, A.TapSequenceGestureRecognizer__checkUp_closure0, A.TapSequenceGestureRecognizer__checkUp_closure1, A._AndroidToolbarFocalPointDocumentLayerState__onSelectionChange_closure, A.AndroidControlsDocumentLayerState__onSelectionChange_closure, A._AndroidEditingOverlayControlsState__rebuildOnNextFrame_closure, A._AndroidEditingOverlayControlsState__onCollapsedPanStart_closure, A._AndroidEditingOverlayControlsState__onBasePanStart_closure, A._AndroidEditingOverlayControlsState__onExtentPanStart_closure, A._AndroidEditingOverlayControlsState__onPanUpdate_closure, A._AndroidEditingOverlayControlsState__onHandleDragEnd_closure, A._AndroidEditingOverlayControlsState__updateOffsetForCollapsedHandle_closure0, A.AndroidTextFieldTouchInteractorState__onDoubleTapDown_closure, A.AndroidTextFieldTouchInteractorState__onTextPanStart_closure, A.AndroidTextFieldTouchInteractorState__onPanUpdate_closure, A.AndroidTextFieldTouchInteractorState__onHandleDragEnd_closure, A.AndroidTextFieldTouchInteractorState_build_closure, A.AndroidTextFieldTouchInteractorState__buildTapAndDragDetector_closure, A.AndroidTextFieldTouchInteractorState__buildTapAndDragDetector_closure1, A.AndroidTextFieldTouchInteractorState__buildTapAndDragDetector_closure3, A.SuperAndroidTextFieldState__updateSelectionAndImeConnectionOnFocusChange_closure, A.SuperAndroidTextFieldState__updateSelectionAndImeConnectionOnFocusChange_closure0, A._defaultAndroidToolbarBuilder_closure, A._defaultAndroidToolbarBuilder_closure0, A._defaultAndroidToolbarBuilder_closure1, A._defaultAndroidToolbarBuilder_closure2, A.SuperDesktopTextFieldState__createTextFieldContext_closure, A.SuperDesktopTextFieldState__updateViewportHeight_closure, A.SuperDesktopTextFieldState_build_closure, A._SuperTextFieldGestureInteractorState__onTapDown_closure, A._SuperTextFieldGestureInteractorState__onDoubleTapDown_closure, A._SuperTextFieldGestureInteractorState__onTripleTapDown_closure, A._SuperTextFieldGestureInteractorState__onPanUpdate_closure, A._SuperTextFieldGestureInteractorState__onPanEnd_closure, A._SuperTextFieldGestureInteractorState__onPanCancel_closure, A._SuperTextFieldGestureInteractorState__updateDragSelection_closure, A._SuperTextFieldGestureInteractorState__clearSelection_closure, A._SuperTextFieldGestureInteractorState_build_closure, A._SuperTextFieldGestureInteractorState_build_closure1, A._SuperTextFieldImeInteractorState__updateSelectionAndImeConnectionOnFocusChange_closure, A._SuperTextFieldImeInteractorState__updateSelectionAndImeConnectionOnFocusChange_closure0, A._IOSEditingControlsState__onBasePanStart_closure, A._IOSEditingControlsState__onExtentPanStart_closure, A._IOSEditingControlsState__onPanUpdate_closure, A._IOSEditingControlsState__onHandleDragEnd_closure, A.IOSTextFieldTouchInteractorState__onDoubleTapDown_closure, A.IOSTextFieldTouchInteractorState__onPanStart_closure, A.IOSTextFieldTouchInteractorState__onPanUpdate_closure, A.IOSTextFieldTouchInteractorState__onHandleDragEnd_closure, A.IOSTextFieldTouchInteractorState_build_closure0, A.IOSTextFieldTouchInteractorState_build_closure, A.IOSTextFieldTouchInteractorState__buildTapAndDragDetector_closure, A.IOSTextFieldTouchInteractorState__buildTapAndDragDetector_closure1, A.SuperIOSTextFieldState__updateSelectionAndImeConnectionOnFocusChange_closure, A.SuperIOSTextFieldState__updateSelectionAndImeConnectionOnFocusChange_closure0, A._defaultPopoverToolbarBuilder_closure, A._defaultPopoverToolbarBuilder_closure0, A._defaultPopoverToolbarBuilder_closure1, A._MaterialScrollbarState_initState_closure1, A._MaterialScrollbarState_handleThumbPressStart_closure1, A._MaterialScrollbarState_handleThumbPressEnd_closure1, A._MaterialScrollbarState_handleHover_closure3, A._MaterialScrollbarState_handleHover_closure4, A._MaterialScrollbarState_handleHoverExit_closure1, A.main_closure0, A.main_closure]); - _inheritMany(A._Enum, [A.BrowserEngine, A.OperatingSystem, A.MutatorType, A.CanvasKitVariant, A.IntlSegmenterGranularity, A.PersistedSurfaceState, A.DebugEngineInitializationState, A.Assertiveness, A._CheckableKind, A.PrimaryRole, A.Role, A.AccessibilityMode, A.GestureMode, A.SemanticsUpdatePhase, A.EnabledState, A.LineBreakType, A.FragmentFlow, A._ComparisonResult, A._FindBreakDirection, A.TextCapitalization, A.TransformKind, A.LineCharProperty, A.WordCharProperty, A.ClipOp, A.PathFillType, A.KeyEventType, A.StrokeCap, A.StrokeJoin, A.PaintingStyle, A.BlendMode, A.Clip, A.BlurStyle, A.FilterQuality, A.ImageByteFormat, A.PixelFormat, A.AppLifecycleState, A.AppExitResponse, A.DartPerformanceMode, A.PointerChange, A.PointerDeviceKind, A.PointerSignalKind, A.FontStyle, A.PlaceholderAlignment, A.TextAlign, A.TextBaseline, A.TextDecorationStyle, A.TextLeadingDistribution, A.TextDirection, A.TextAffinity, A.BoxHeightStyle, A.BoxWidthStyle, A.TileMode, A.Brightness, A.SpanMarkerType, A.BarGroupingType, A.AxisOrientation, A._PixelVerticalDirection, A.RangeBandType, A.StepSizeType, A.TickLabelAnchor, A.TickLabelJustification, A.CalendarField, A.BehaviorPosition, A.OutsideJustification, A.InsideJustification, A.LegendTapHandling, A.LegendDefaultMeasure, A.LinePointHighlighterFollowLineType, A.SelectionMode, A.SelectionTrigger, A.FillPatternType, A.SelectionModelType, A.LayoutPosition, A.TextDirection0, A.MaxWidthStrategy, A.GestureType, A._HorizontalJustification, A.MessageLevel, A._DragTargetStatus, A.FileType, A.AnimationStatus, A._AnimationDirection, A.AnimationBehavior, A._TrainHoppingMode, A._CupertinoTextSelectionToolbarItemsSlot, A.DiagnosticLevel, A.DiagnosticsTreeStyle, A._WordWrapParseMode, A._LicenseEntryWithLineBreaksParserState, A.TargetPlatform, A.GestureDisposition, A._ForceState, A._DragState, A.DragStartBehavior, A.GestureRecognizerState, A._ScaleState, A._DragState0, A._ActionLevel, A._LayoutMode, A._Focus, A.ThemeMode, A._SliverAppVariant, A._CornerId, A.ButtonTextTheme, A.ButtonBarLayoutBehavior, A._CheckboxType, A._CheckboxType0, A.DatePickerEntryMode, A.DatePickerMode, A.DrawerAlignment, A._FloatingActionButtonType, A._IconButtonVariant, A._HighlightType, A.FloatingLabelBehavior, A._DecorationSlot, A.ListTileStyle, A.ListTileControlAffinity, A.ListTileTitleAlignment, A._ListTileSlot, A.MaterialType, A.MaterialState, A._ActivityIndicatorType, A._RadioType, A._RadioType0, A._RefreshIndicatorMode, A.RefreshIndicatorTriggerMode, A._IndicatorType, A._ScaffoldSlot, A.SnackBarClosedReason, A._SwitchType, A._SwitchListTileType, A.TabBarIndicatorSize, A.TabAlignment, A._TextSelectionToolbarItemPosition, A.MaterialTapTargetSize, A.DayPeriod, A.TimeOfDayFormat, A.HourFormat, A.TimePickerEntryMode, A._HourMinuteMode, A._TimePickerAspect, A._HourDialType, A.ScriptCategory, A.RenderComparison, A.Axis0, A.VerticalDirection, A.AxisDirection, A.BorderStyle, A.BoxShape, A.BoxFit, A.ImageRepeat, A.TextOverflow, A.TextWidthBasis, A.SpringType, A.RenderAnimatedSizeState, A._IntrinsicDimension, A.FlexFit, A.MainAxisSize, A.MainAxisAlignment, A.CrossAxisAlignment, A.PlatformViewHitTestBehavior, A.HitTestBehavior, A.DecorationPosition, A.SelectionResult, A.SelectionEventType, A.TextGranularity, A.SelectionExtendDirection, A.SelectionStatus, A.TextSelectionHandleType, A.GrowthDirection, A.StackFit, A.TableCellVerticalAlignment, A.CacheExtentStyle, A.ScrollDirection, A.WrapAlignment, A.WrapCrossAlignment, A.SchedulerPhase, A.DebugSemanticsDumpOrder, A.Assertiveness0, A.KeyboardLockMode, A.KeyDataTransitMode, A.KeyboardSide, A.ModifierKey, A.SystemSoundType, A.MaxLengthEnforcement, A.SmartDashesType, A.SmartQuotesType, A.TextInputAction, A.TextCapitalization0, A.FloatingCursorDragState, A.SelectionChangedCause, A.UndoDirection, A.CrossFadeState, A.ConnectionState, A.OptionsViewOpenDirection, A.AutofillContextAction, A.ContextMenuButtonType, A.KeyEventResult, A.UnfocusDisposition, A.FocusHighlightMode, A.FocusHighlightStrategy, A.TraversalDirection, A.TraversalEdgeBehavior, A.AutovalidateMode, A._StateLifecycle, A._ElementLifecycle, A.HeroFlightDirection, A._GestureType, A.PanAxis, A.Orientation, A._MediaQueryAspect, A.NavigationMode, A._ToolbarSlot, A.RoutePopDisposition, A._RouteLifecycle, A._RouteRestorationType, A.OverflowBarAlignment, A._GlowState, A._StretchDirection, A._StretchState, A.RouteInformationReportingType, A.AndroidOverscrollIndicator, A.ScrollDecelerationRate, A.ScrollPositionAlignmentPolicy, A.ScrollViewKeyboardDismissBehavior, A.ScrollIncrementType, A.ScrollbarOrientation, A.SnapshotMode, A.ClipboardStatus, A.ActionPaneType, A.GestureDirection, A.StyledToastAnimation, A.SignInOption, A.Channel, A.Format, A.BlendMode0, A.IfdValueType, A.PngDisposeMode, A.PngBlendMode, A.PngFilterType, A.IccProfileCompression, A.FrameType, A.BillingResponse, A.ProductType, A.RecurrenceMode, A.PurchaseStateWrapper, A.PurchaseStatus, A._TransactionRestoreState, A.SKPaymentTransactionStateWrapper, A.SKSubscriptionPeriodUnit, A.SKProductDiscountPaymentMode, A.SKProductDiscountType, A.PluralCase, A.IconPosition, A._HealthCheckLevel, A.PortalLinkStyle, A.DashboardSections, A.ClientReportFields, A.ContactReportFields, A.CreditItemReportFields, A.CreditReportFields, A.DocumentReportFields, A.ExpenseReportFields, A.InvoiceItemReportFields, A.InvoiceReportFields, A.TaxRateReportFields0, A.PaymentReportFields, A.TaxRateReportFields, A.ProductReportFields, A.ProfitAndLossReportFields, A.PurchaseOrderItemReportFields, A.PurchaseOrderReportFields, A.QuoteItemReportFields, A.QuoteReportFields, A.RecurringExpenseReportFields, A.RecurringInvoiceReportFields, A.ReportColumnType, A.TaskItemReportFields, A.TaskReportFields, A.TransactionReportFields, A.VendorReportFields, A.UpdateState, A.FormatNumberType, A.OverflowViewLayoutBehavior, A.ArrowDirection, A.PinputAutovalidateMode, A.AndroidSmsAutofillMethod, A.PinAnimationType, A.HapticFeedbackType, A.QrCodeElement, A.FinderPatternPosition, A.QrEyeShape, A.QrDataModuleShape, A.QrValidationStatus, A.ButtonState, A._MissingCase, A.SignInWithAppleButtonStyle, A.IconAlignment, A.AppleIDAuthorizationScopes, A.AuthorizationErrorCode, A.StateStatus, A.SelectionChangeType, A.DocumentGestureMode, A.SelectionBound, A.DragMode, A.PrependedCharacterPolicy, A.ListItemType, A.SelectionType, A.TapHandlingInstruction, A.ExecutionInstruction, A.TextInputSource, A.HandleType, A._SelectionType, A.TextFieldKeyboardHandlerResult, A.HintBehavior, A._AutoScrollDirection, A.SuperTextFieldPlatformConfiguration, A.BlinkTimingMode, A.LaunchMode, A.PreferredLaunchMode]); + _inheritMany(A.Object, [A.AlarmClock, A.AppBootstrap, A.Closure, A._Enum, A._SaveStackTracking, A.ContextStateHandle, A.CkCanvas, A.CanvasKitCanvas, A.ManagedSkColorFilter, A.CkColorFilter, A.HtmlViewEmbedder, A.OverlayGroup, A.ViewClipChain, A.EmbeddedViewParams, A.Mutator, A.Iterable, A.EmbedderFrameContext, A.ViewListDiffResult, A.SkiaFontCollection, A.RegisteredFont, A.UnregisteredFont, A.FontDownloadResult, A.SkiaFallbackRegistry, A.ImageCodecException, A.CkImage, A.CkImageFilter, A.CkAnimatedImage, A.BrowserImageDecoder, A.Layer, A.PrerollContext, A.PaintContext, A.LayerScene, A.LayerSceneBuilder, A.LayerTree, A.Frame, A.CompositorContext, A.CkMaskFilter, A.CkNWayCanvas, A.NativeMemoryFinalizationRegistry, A.UniqueRef, A.CountedRef, A.CkPaint, A.CkPath, A.CkPicture, A.CkPictureRecorder, A.Rasterizer, A.CanvasKitRenderer, A.SimpleCkShader, A.SurfaceFrame, A.Surface, A.CkSurface, A.SurfaceFactory, A.CkParagraphStyle, A.CkTextStyle, A.CkStrutStyle, A.CkParagraph, A.CkLineMetrics, A.CkParagraphBuilder, A.Error, A.ClipboardMessageHandler, A.ClipboardAPICopyStrategy, A.ClipboardAPIPasteStrategy, A.ExecCommandCopyStrategy, A.ExecCommandPasteStrategy, A.FlutterConfiguration, A.Display, A.ScreenOrientation, A.HttpFetchResponseImpl, A.HttpFetchPayloadImpl, A.HttpFetchNoPayloadError, A.HttpFetchError, A.DomSubscription, A.DomPoint, A._DomListIterator, A._DomTouchListIterator, A.DomIteratorWrapper, A.FlutterViewEmbedder, A.EngineCanvas, A.SaveStackEntry, A.SaveClipEntry, A._SaveElementStackEntry, A.SaveElementStackTracking, A.FontFallbackManager, A._UnicodePropertyLookup, A.FallbackFontDownloadQueue, A.FontAsset, A.FontFamily, A.FontManifest, A.AssetFontsResult, A.FrameReference, A.CrossFrameCache, A._CrossFrameCacheItem, A.PersistedSurface, A.SvgBlendMode, A.SurfaceCanvas, A._DomClip, A.SvgFilterBuilder, A.SvgFilter, A.SurfacePaint, A.SurfacePaintData, A.Conic, A.QuadBounds, A.ConicBounds, A._ConicPair, A.CubicBounds, A.SurfacePath, A.PathIterator, A.PathRef, A.PathRefIterator, A.QuadRoots, A.SkQuadCoefficients, A.PathWinding, A.PaintRequest, A.RecordingCanvas, A.PaintCommand, A._PaintBounds, A.RenderStrategy, A._WebGlRenderer, A.HtmlRenderer, A.SurfaceScene, A.SurfaceSceneBuilder, A.NormalizedGradient, A.SharedCanvas, A.EngineGradient, A.EngineImageFilter, A.EngineHtmlColorFilter, A.ShaderBuilder, A.ShaderMethod, A.ShaderDeclaration, A._PersistedSurfaceMatch, A.PrerollSurfaceContext, A.HtmlCodec, A.SingleFrameInfo, A.HtmlImage, A.AnimatedImageFrameInfo, A.ImageFileFormat, A.KeyboardBinding, A.FlutterHtmlKeyboardEvent, A.KeyboardConverter, A.ContextMenu, A.MouseCursor, A.BrowserHistory, A.NotoFont, A.FallbackFontComponent, A.EnginePictureRecorder, A.EnginePicture, A.HighContrastSupport, A.PlatformDispatcher, A.ViewConfiguration0, A.PlatformConfiguration, A.PlatformViewManager, A.PlatformViewMessageHandler, A.SafariPointerEventWorkaround, A.PointerBinding, A.PointerSupportDetector, A._Listener, A._BaseAdapter, A._WheelEventListenerMixin, A._SanitizedDetails, A._ButtonSanitizer, A._PointerState, A.PointerDataConverter, A.Profiler, A.RawKeyboard, A.GlProgram, A.GlContext, A.OffScreenCanvas, A.AccessibilityAnnouncements, A.PrimaryRoleManager, A.RoleManager, A.AccessibilityFocusManager, A.EngineAccessibilityFeatures, A.EngineAccessibilityFeaturesBuilder, A.SemanticsUpdate, A.SemanticsNodeUpdate, A.SemanticsObject, A.EngineSemanticsOwner, A.SemanticsHelper, A.SemanticsEnabler, A._DefaultTextEditingStrategy_Object_CompositionAwareMixin, A.ListBase, A.MethodCall, A.JSONMessageCodec, A.JSONMethodCodec, A.StandardMessageCodec, A.StandardMethodCodec, A.WriteBuffer, A.ReadBuffer, A.SurfaceShadowData, A.CanvasParagraph, A.ParagraphSpan, A.ParagraphPlaceholder, A.StyleNode, A.CanvasParagraphBuilder, A.HtmlFontCollection, A.TextFragmenter, A.TextFragment, A._FragmentMetrics, A._FragmentPosition, A._FragmentBox, A.TextLayoutService, A.LineBuilder, A.Spanometer, A.RulerHost, A.TextPaintService, A.EngineLineMetrics, A.ParagraphLine, A.EngineParagraphStyle, A.EngineTextStyle, A.EngineStrutStyle, A.TextHeightStyle, A.TextDimensions, A.TextHeightRuler, A.UnicodeRange, A.UnicodePropertyLookup, A.BrowserAutofillHints, A.CompositionAwareMixin, A.EngineInputAction, A.EngineInputType, A.TextCapitalizationConfig, A.EngineAutofillForm, A.AutofillInfo, A.TextEditingDeltaState, A.EditingState, A.InputConfiguration, A.TextInputCommand, A.TextEditingChannel, A.HybridTextEditing, A.EditableTextStyle, A.EditableTextGeometry, A.LruCache, A.Matrix4, A.FastMatrix32, A.DimensionsProvider, A.EmbeddingStrategy, A.FlutterView, A.ViewPadding, A.JS_CONST, J.Interceptor, J.ArrayIterator, A._CopyingBytesBuilder, A._BytesBuilder, A.CastIterator, A.MapBase, A.SentinelValue, A.ListIterator, A.MappedIterator, A.WhereIterator, A.ExpandIterator, A.TakeIterator, A.SkipIterator, A.SkipWhileIterator, A.EmptyIterator, A.FollowedByIterator, A.WhereTypeIterator, A.FixedLengthListMixin, A.UnmodifiableListMixin, A.Symbol, A._Record, A.MapView, A.ConstantMap, A._KeysOrValuesOrElementsIterator, A.SetBase, A.JSInvocationMirror, A.TypeErrorDecoder, A.NullThrownFromJavaScriptException, A.ExceptionAndStackTrace, A._StackTrace, A._Required, A.LinkedHashMapCell, A.LinkedHashMapKeyIterator, A.JSSyntaxRegExp, A._MatchImplementation, A._AllMatchesIterator, A.StringMatch, A._StringAllMatchesIterator, A._Cell, A._InitializedCell, A.Rti, A._FunctionParameters, A._Type, A._StringStream, A.LocaleKeymap, A._TimerImpl, A._AsyncAwaitCompleter, A._AsyncStarStreamController, A._IterationMarker, A._SyncStarIterator, A.AsyncError, A.Stream, A._BufferingStreamSubscription, A._BroadcastStreamController, A.TimeoutException, A._Completer, A._FutureListener, A._Future, A._AsyncCallbackEntry, A.StreamTransformerBase, A._StreamController, A._SyncStreamControllerDispatch, A._AsyncStreamControllerDispatch, A._AddStreamState, A._DelayedEvent, A._DelayedDone, A._PendingEvents, A._DoneStreamSubscription, A._StreamIterator, A._EventSinkWrapper, A._HandlerEventSink, A._Zone, A._HashMapKeyIterator, A._HashSetIterator, A._LinkedHashSetCell, A._LinkedHashSetIterator, A._LinkedListIterator, A.LinkedListEntry, A._MapBaseValueIterator, A._UnmodifiableMapMixin, A._DoubleLinkedQueueEntry, A._DoubleLinkedQueueIterator, A._ListQueueIterator, A._UnmodifiableSetMixin, A._SplayTreeNode, A._SplayTree, A._SplayTreeIterator, A.StringConversionSink, A.Codec0, A.Converter, A.ByteConversionSink, A._Base64Encoder, A._Base64Decoder, A.ChunkedConversionSink, A._SimpleCallbackSink, A.HtmlEscapeMode, A._JsonStringifier, A._JsonPrettyPrintMixin, A._ClosableStringSink, A._StringConversionSinkAsStringSinkAdapter, A._Utf8Encoder, A._Utf8Decoder, A._BigIntImpl, A._WeakReferenceWrapper, A.DateTime, A.Duration, A.OutOfMemoryError, A.StackOverflowError, A._Exception, A.FormatException, A.IntegerDivisionByZeroException, A.Iterator, A.MapEntry, A.Null, A._StringStackTrace, A.Stopwatch, A.RuneIterator, A.StringBuffer, A._Uri, A.UriData, A._SimpleUri, A.Expando, A._FakeUserTag, A.ServiceExtensionResponse, A.TimelineTask, A._AsyncBlock, A._SyncBlock, A.CssStyleDeclarationBase, A.EventStreamProvider, A._EventStreamSubscription, A.ImmutableListMixin, A.FixedSizeListIterator, A._AcceptStructuredClone, A.OSError, A.FileSystemEntity, A.FileMode, A.FileSystemException, A._RandomAccessFile, A.JsObject, A.NullRejectionException, A._JSRandom, A._Random, A.Point, A._RectangleBase, A.Endian, A._ChannelCallbackRecord, A._StoredMessage, A._Channel, A.ChannelBuffers, A.OffsetBase, A.Rect, A.Radius, A.RRect, A._HashEnd, A.KeyData, A.Color, A.MaskFilter, A.ImageFilter, A.Shadow, A.ImmutableBuffer, A.FrameTiming, A.Locale, A.SemanticsActionEvent, A.PointerData, A.PointerDataPacket, A.SemanticsAction, A.SemanticsFlag, A.SemanticsUpdateBuilder, A.FontWeight, A.FontFeature, A.FontVariation, A.TextDecoration, A.TextHeightBehavior, A.TextBox, A.TextPosition, A.TextRange, A.ParagraphConstraints, A.CallbackHandle, A.GestureSettings, A.AssetManager, A.BrowserPlatformLocation, A.HashUrlStrategy, A.PlatformViewRegistry, A.GZipEncoder, A.InputStreamBase, A.OutputStreamBase, A.Deflate, A._DeflaterConfig, A._HuffmanTree, A._StaticTree, A.HuffmanTable, A.Inflate, A.AttributedSpans, A.SpanMarker, A.AttributionSpan, A.MultiAttributionSpan, A.IncompatibleOverlappingAttributionsException, A.AttributedText, A.AttributionVisitor, A.NamedAttribution, A.SpanRange, A._DiagnosticableTree_Object_Diagnosticable, A._State_Object_Diagnosticable, A.BoardViewController, A.CopyOnWriteList, A.CopyOnWriteMap, A.CopyOnWriteSet, A.BuiltList, A.ListBuilder, A.BuiltListMultimap, A.ListMultimapBuilder, A.BuiltMap, A.MapBuilder, A.BuiltSet, A.SetBuilder, A.BuiltSetMultimap, A.SetMultimapBuilder, A.EnumClass, A.IndentingBuiltValueToStringHelper, A.JsonObject, A.FullType, A.BigIntSerializer, A.BoolSerializer, A.BuiltJsonSerializers, A.BuiltJsonSerializersBuilder, A.BuiltListMultimapSerializer, A.BuiltListSerializer, A.BuiltMapSerializer, A.BuiltSetMultimapSerializer, A.BuiltSetSerializer, A.DateTimeSerializer, A.DoubleSerializer, A.DurationSerializer, A.Int32Serializer, A.Int64Serializer, A.IntSerializer, A.JsonObjectSerializer, A.NullSerializer, A.NumSerializer, A.RegExpSerializer, A.StringSerializer, A.Uint8ListSerializer, A.UriSerializer, A.StandardJsonPlugin, A.StringCharacterRange, A.Breaks, A.BackBreaks, A.BaseChart0, A.BaseSeriesRenderer, A.BaseBarRendererElement, A.BaseAnimatedBar, A.LayoutViewConfig, A.ConstCornerStrategy, A.ImmutableAxis, A.Tick, A.CollisionReport, A.BaseRenderSpec, A.BaseTickDrawStrategy, A.NoneDrawStrategy, A.LinearScale, A.LinearScaleDomainInfo, A.LinearScaleFunction, A.LinearScaleViewportSettings, A.NumericExtents, A.BaseTickProvider, A._TickStepInfo, A.OrdinalScaleDomainInfo, A.Scale, A.ScaleOutputExtent, A.RangeBandConfig, A.StepSizeConfig, A.Extents, A.SimpleOrdinalScale, A.AxisSpec, A.TextStyleSpec, A.LineStyleSpec, A.SimpleTickFormatterBase, A.AutoAdjustingDateTimeTickProvider, A.BaseTimeStepper, A._TimeStepIteratorImpl, A.DateTimeTickFormatter, A.TimeTickFormatterImpl, A.LifecycleListener, A.DomainHighlighter0, A.Legend, A.LegendState, A.LegendEntryBase, A.PerSeriesLegendEntryGenerator, A.LinePointHighlighter0, A.LayoutView, A.NullablePoint, A._PointRendererElement, A._AnimatedPoint, A.SelectNearest0, A.CanvasRect, A.CanvasBarStack, A.DatumDetails, A.ImmutableSeries, A.SelectionModel, A.SeriesDatum, A.TypedRegistry, A.IdentityConverter, A.LayoutConfig, A.MarginSpec, A.LayoutManagerImpl, A._MeasuredSizes, A.SizeList, A._DesiredViewSizes, A.VerticalMarginStrategy, A.HorizontalMarginStrategy, A.ViewMargin, A.ViewMeasuredSizes, A._LineRendererElement, A._AnimatedLine, A._AreaRendererElement, A._AnimatedArea, A._AnimatedElements, A._Range, A.Color0, A.LocalDateTimeFactory, A.GestureListener, A.Palette, A.ProxyGestureListener, A.MaterialStyle, A.StyleFactory, A.BaseSymbolRenderer, A.TextMeasurement, A.TypedKey, A.Series, A.ChartBehavior, A.BaseLegendContentBuilder, A.SimpleLegendEntryLayout, A.TabularLegendLayout, A.ChartCanvas, A._RenderObject_Object_DiagnosticableTreeMixin, A.Listenable, A.ChartGestureDetector, A.GraphicsFactory, A.LineStyle, A.SelectionModelConfig, A.SymbolRendererCanvas, A.TextElement, A.TextStyle0, A.MultiChildLayoutDelegate, A.CanonicalizedMap, A.DefaultEquality, A.IterableEquality, A.ListEquality, A._UnorderedEquality, A._MapEntry, A.MapEquality, A.DeepCollectionEquality, A.HeapPriorityQueue, A.XFileBase, A._Parser, A.Token, A.TokenizerBase, A.Message, A.Messages, A.PreprocessorOptions, A.TreeNode, A.Visitor, A.DesktopDropWeb, A.DesktopDrop, A.WebDropItem, A.DropDoneDetails, A.DropEventDetails, A.DropEvent, A.PlatformInterface, A.FilePickerResult, A.KDialogHandler, A.QarmaAndZenityHandler, A.PlatformFile, A.Int32, A.Int64, A.Simulation, A.AnimationWithParentMixin, A.ParametricCurve, A.AnimationLazyListenerMixin, A.AnimationEagerListenerMixin, A.AnimationLocalListenersMixin, A.AnimationLocalStatusListenersMixin, A.Animatable, A.TweenSequenceItem, A._Interval, A.ChangeNotifier, A.TextSelectionControls, A._IconThemeData_Object_Diagnosticable, A.LocalizationsDelegate, A.DefaultCupertinoLocalizations, A._CupertinoBackGestureController, A._Decoration_Object_Diagnosticable, A.BoxPainter, A._CupertinoTextThemeData_Object_Diagnosticable, A._TextThemeDefaultsBuilder, A.NoDefaultCupertinoThemeData, A._CupertinoThemeDefaults, A._CupertinoTextThemeDefaults, A.CupertinoThumbPainter, A.ToggleableStateMixin, A.DiagnosticsNode, A._FlutterErrorDetails_Object_Diagnosticable, A.BindingBase, A.TextTreeConfiguration, A._PrefixedStringBuilder, A._NoDefaultValue, A.TextTreeRenderer, A.DiagnosticPropertiesBuilder, A.Diagnosticable, A.DiagnosticableTreeMixin, A.Key, A._TypeLiteral, A.LicenseParagraph, A.LicenseEntry, A.PersistentHashMap, A._TrieNode, A.WriteBuffer0, A.ReadBuffer0, A.StackFrame, A.SynchronousFuture, A.GestureArenaMember, A.GestureArenaEntry, A._GestureArena, A.GestureArenaManager, A._Resampler, A.GestureBinding, A.Drag, A.DragDownDetails, A.DragStartDetails, A.DragUpdateDetails, A.DragEndDetails, A._PointerEvent_Object_Diagnosticable, A._PointerEventDescription, A._AbstractPointerEvent, A._CopyPointerAddedEvent, A._CopyPointerRemovedEvent, A._CopyPointerHoverEvent, A._CopyPointerEnterEvent, A._CopyPointerExitEvent, A._CopyPointerDownEvent, A._CopyPointerMoveEvent, A._CopyPointerUpEvent, A._CopyPointerScrollEvent, A._CopyPointerScrollInertiaCancelEvent, A._CopyPointerScaleEvent, A._CopyPointerPanZoomStartEvent, A._CopyPointerPanZoomUpdateEvent, A._CopyPointerPanZoomEndEvent, A._CopyPointerCancelEvent, A.ForcePressDetails, A.DeviceGestureSettings, A.HitTestEntry, A._TransformPart, A.HitTestResult, A.LongPressStartDetails, A.LongPressMoveUpdateDetails, A.LongPressEndDetails, A._Vector, A._Matrix, A.PolynomialFit, A.LeastSquaresSolver, A.MultiDragPointerState, A._CountdownZoned, A._TapTracker, A.PointerRouter, A.PointerSignalResolver, A.OffsetPair, A._PointerPanZoomData, A.ScaleStartDetails, A.ScaleUpdateDetails, A.ScaleEndDetails, A._LineBetweenPointers, A.TapDownDetails, A.TapUpDetails, A._TapDragDownDetails_Object_Diagnosticable, A._TapDragUpDetails_Object_Diagnosticable, A._TapDragStartDetails_Object_Diagnosticable, A._TapDragUpdateDetails_Object_Diagnosticable, A._TapDragEndDetails_Object_Diagnosticable, A._TapStatusTrackerMixin, A._CombiningGestureArenaEntry, A.GestureArenaTeam, A.Velocity, A.VelocityEstimate, A._PointAtTime, A.VelocityTracker, A._LicenseData, A._DetailArguments, A._MasterDetailFlowProxy, A._ActionIconThemeData_Object_Diagnosticable, A.ScrollBehavior, A.SingleChildLayoutDelegate, A.SliverPersistentHeaderDelegate, A._AppBarTheme_Object_Diagnosticable, A._Diagonal, A._BadgeThemeData_Object_Diagnosticable, A._MaterialBannerThemeData_Object_Diagnosticable, A._BottomAppBarTheme_Object_Diagnosticable, A._BottomNavigationBarThemeData_Object_Diagnosticable, A._BottomSheetThemeData_Object_Diagnosticable, A._ButtonBarThemeData_Object_Diagnosticable, A._ButtonStyle_Object_Diagnosticable, A._LerpSides, A._MouseCursor_Object_Diagnosticable, A._ButtonThemeData_Object_Diagnosticable, A.SliverGridDelegate, A._CardTheme_Object_Diagnosticable, A._CheckboxThemeData_Object_Diagnosticable, A._ChipThemeData_Object_Diagnosticable, A._ColorScheme_Object_Diagnosticable, A.DataColumn, A.DataRow, A.DataCell, A.TableColumnWidth, A._DataTableThemeData_Object_Diagnosticable, A._DatePickerThemeData_Object_Diagnosticable, A.Route, A._DialogTheme_Object_Diagnosticable, A._DividerThemeData_Object_Diagnosticable, A._DrawerThemeData_Object_Diagnosticable, A._DropdownRouteResult, A._MenuLimits, A._DropdownMenuThemeData_Object_Diagnosticable, A.MaterialStateProperty, A._ElevatedButtonThemeData_Object_Diagnosticable, A._ElevationOpacity, A.ExpansionPanel, A._ExpansionTileThemeData_Object_Diagnosticable, A._FilledButtonThemeData_Object_Diagnosticable, A._DefaultHeroTag, A._FloatingActionButtonThemeData_Object_Diagnosticable, A.FloatingActionButtonLocation, A.FabTopOffsetY, A.FabFloatOffsetY, A.FabDockedOffsetY, A.FabEndOffsetX, A.FloatingActionButtonAnimator, A._IconButtonThemeData_Object_Diagnosticable, A.InkFeature, A.InteractiveInkFeatureFactory, A.ShapeBorder, A.FloatingLabelAlignment, A._Decoration, A._RenderDecorationLayout, A.InputDecoration, A._InputDecorationTheme_Object_Diagnosticable, A._ListTileThemeData_Object_Diagnosticable, A.DefaultMaterialLocalizations, A._BorderSide_Object_Diagnosticable, A._TextStyle_Object_Diagnosticable, A._LerpProperties, A._MaterialStatePropertyWith, A.MaterialStatePropertyAll, A.MaterialStateMixin, A._MenuThemeData_Object_Diagnosticable, A._MenuButtonThemeData_Object_Diagnosticable, A._MenuStyle_Object_Diagnosticable, A._LerpSides1, A.MergeableMaterialItem, A._AnimationTuple, A._NavigationBarThemeData_Object_Diagnosticable, A._NavigationDrawerThemeData_Object_Diagnosticable, A._NavigationRailThemeData_Object_Diagnosticable, A._OutlinedButtonThemeData_Object_Diagnosticable, A.MaterialRouteTransitionMixin, A.PageTransitionsBuilder, A._PageTransitionsTheme_Object_Diagnosticable, A._ZoomTransitionBase, A._PopupMenuThemeData_Object_Diagnosticable, A._ProgressIndicatorThemeData_Object_Diagnosticable, A._RadioThemeData_Object_Diagnosticable, A.ScaffoldPrelayoutGeometry, A.ScaffoldGeometry, A.Constraints, A._Action_Object_Diagnosticable, A.ScaffoldFeatureController, A._ScrollbarThemeData_Object_Diagnosticable, A._SearchBarThemeData_Object_Diagnosticable, A._LerpSides0, A._SearchViewThemeData_Object_Diagnosticable, A._SegmentedButtonThemeData_Object_Diagnosticable, A.TextSelectionGestureDetectorBuilder, A._SliderThemeData_Object_Diagnosticable, A._SnackBarThemeData_Object_Diagnosticable, A._SwitchConfig, A.__SwitchConfigM2_Object__SwitchConfig, A._SwitchThemeData_Object_Diagnosticable, A.__SwitchConfigM3_Object__SwitchConfig, A._TabBarTheme_Object_Diagnosticable, A._TextButtonThemeData_Object_Diagnosticable, A._TextSelectionThemeData_Object_Diagnosticable, A._TextTheme_Object_Diagnosticable, A._ThemeData_Object_Diagnosticable, A._IdentityThemeDataCacheKey, A._FifoCache, A._VisualDensity_Object_Diagnosticable, A.TimeOfDay, A._TappableLabel, A._TimePickerThemeData_Object_Diagnosticable, A._ToggleButtonsThemeData_Object_Diagnosticable, A.ToggleableStateMixin0, A._TooltipThemeData_Object_Diagnosticable, A._Typography_Object_Diagnosticable, A.ImageProvider, A.AlignmentGeometry, A.TextAlignVertical, A.PaintingBinding, A.BorderRadiusGeometry, A.FittedSizes, A.ClipContext, A.HSLColor, A.ImageSizeInfo, A._BlendedDecorationImage, A._BlendedDecorationImagePainter, A.EdgeInsetsGeometry, A._ColorsAndStops, A.Gradient, A.ImageCache, A._CachedImageBase, A._PendingImage, A.ImageConfiguration, A._ImageStreamCompleter_Object_Diagnosticable, A.AssetBundleImageKey, A.NetworkImageLoadException, A.ImageInfo, A.ImageStreamListener, A._ImageChunkEvent_Object_Diagnosticable, A._ImageStream_Object_Diagnosticable, A.ImageStreamCompleterHandle, A.Accumulator, A.InlineSpanSemanticsInformation, A.NotchedShape, A._StrutStyle_Object_Diagnosticable, A.PlaceholderDimensions, A.TextBoundary, A._TextLayout, A._TextPainterLayoutCacheWithOffset, A._LineCaretMetrics, A._EmptyLineCaretMetrics, A.TextPainter, A._LinearTextScaler, A.SpringDescription, A._CriticalSolution, A._OverdampedSolution, A._UnderdampedSolution, A.Tolerance, A.RendererBinding, A._PipelineOwner_Object_DiagnosticableTreeMixin, A.ParentData, A._IntrinsicDimensionsCacheEntry, A.RenderBoxContainerDefaultsMixin, A.CustomPainterSemantics, A.DebugOverflowIndicatorMixin, A.TextSelectionPoint, A.VerticalCaretMovementRun, A._LayoutSizes, A.AnnotationEntry, A.AnnotationResult, A._Layer_Object_DiagnosticableTreeMixin, A.LayerHandle, A.LayerLink, A._MouseState, A.__MouseTrackerUpdateDetails_Object_Diagnosticable, A.RenderObjectWithChildMixin, A.ContainerParentDataMixin, A.ContainerRenderObjectMixin, A.RelayoutWhenSystemFontsChangeMixin, A._SemanticsFragment, A._SemanticsGeometry, A.SemanticsTag, A.RenderInlineChildrenContainerDefaults, A.__SelectableFragment_Object_Selectable, A._PlatformViewGestureMixin, A.RenderProxyBoxMixin, A.RenderAnimatedOpacityMixin, A.Selectable, A.SelectionRegistrant, A.SelectionEvent, A.SelectionGeometry, A._SelectionPoint_Object_Diagnosticable, A.SliverLayoutDimensions, A._SliverGeometry_Object_Diagnosticable, A.RenderSliverHelpers, A.SliverGridGeometry, A.SliverGridLayout, A.KeepAliveParentDataMixin, A.RenderSliverWithKeepAliveMixin, A.PersistentHeaderShowOnScreenConfiguration, A.RelativeRect, A.ViewConfiguration, A.RevealedOffset, A._RunMetrics, A._TaskEntry, A._FrameCallbackEntry, A.PerformanceModeRequestHandle, A.SchedulerBinding, A.Ticker, A.TickerFuture, A.TickerCanceled, A.SemanticsBinding, A.SemanticsHandle, A.ChildSemanticsConfigurationsResult, A.ChildSemanticsConfigurationsResultBuilder, A.CustomSemanticsAction, A.AttributedString, A._SemanticsData_Object_Diagnosticable, A._SemanticsNode_Object_DiagnosticableTreeMixin, A._BoxEdge, A._SemanticsSortGroup, A._TraversalSortNode, A.SemanticsConfiguration, A._SemanticsSortKey_Object_Diagnosticable, A.SemanticsEvent, A.AssetBundle, A._AssetManifestBin, A.AssetMetadata, A.AutofillConfiguration, A.TextInputConfiguration, A.AutofillScopeMixin, A.BinaryMessenger, A.ServicesBinding, A.BrowserContextMenu, A.ClipboardData, A._KeyEvent_Object_Diagnosticable, A.HardwareKeyboard, A.KeyMessage, A.KeyEventManager, A.KeyboardInsertedContent, A._KeyboardKey_Object_Diagnosticable, A.MethodCall0, A.PlatformException, A.MissingPluginException, A.StringCodec, A.JSONMessageCodec0, A.JSONMethodCodec0, A.StandardMessageCodec0, A.StandardMethodCodec0, A.MouseCursorManager, A.MouseCursorSession, A.BasicMessageChannel, A.MethodChannel, A.PlatformViewsRegistry, A.PlatformViewController, A._RawKeyEventData_Object_Diagnosticable, A._RawKeyEvent_Object_Diagnosticable, A.RawKeyboard0, A._ModifierSidePair, A.RestorationBucket, A.SuggestionSpan, A.SpellCheckResults, A.DefaultSpellCheckService, A.ApplicationSwitcherDescription, A.SystemUiOverlayStyle, A._TextEditingDelta_Object_Diagnosticable, A.TextInputFormatter, A._MutableTextRange, A._TextEditingValueAccumulator, A.TextInputType, A.RawFloatingCursorPoint, A.TextEditingValue, A.TextSelectionDelegate, A.TextInputClient, A.SelectionRect, A.DeltaTextInputClient, A.TextInputConnection, A.TextInput, A.TextInputControl, A.__PlatformTextInputControl_Object_TextInputControl, A.UndoManager, A.UndoManagerClient, A._Intent_Object_Diagnosticable, A._ActionDispatcher_Object_Diagnosticable, A._OverridableActionMixin, A._ChildEntry, A.AsyncSnapshot, A.Notification0, A.AutomaticKeepAliveClientMixin, A.WidgetsBindingObserver, A.WidgetsBinding, A.ContextMenuButtonItem, A.ContextMenuController, A.DisposableBuildContext, A._DraggableSheetExtent, A.ToolbarOptions, A._KeyFrame, A._ScribbleCacheKey, A._GlyphHeights, A._Autofocus, A.FocusAttachment, A._FocusNode_Object_DiagnosticableTreeMixin, A._FocusManager_Object_DiagnosticableTreeMixin, A._HighlightModeManager, A._FocusTraversalGroupInfo, A._FocusTraversalPolicy_Object_Diagnosticable, A._DirectionalPolicyDataEntry, A._DirectionalPolicyData, A.DirectionalFocusTraversalPolicyMixin, A.__ReadingOrderSortData_Object_Diagnosticable, A.__ReadingOrderDirectionalGroupData_Object_Diagnosticable, A._InactiveElements, A.BuildOwner, A.NotifiableElementMixin, A._NotificationNode, A.RootElementMixin, A.IndexedSlot, A.GestureRecognizerFactory, A.SemanticsGestureDelegate, A._HeroFlightManifest, A._HeroFlight, A.NavigatorObserver, A.IconData, A.CapturedThemes, A.RenderConstrainedLayoutBuilder, A._Pending, A.DefaultWidgetsLocalizations, A.MagnifierInfo, A.TextMagnifierConfiguration, A.MagnifierController, A.MediaQueryData, A.RouteSettings, A.RouteTransitionRecord, A.TransitionDelegate, A._NavigatorObservation, A._RestorationInformation, A.OverlayEntry, A._RenderTheaterMixin, A.OverlayPortalController, A._StorageEntryIdentifier, A.PageStorageBucket, A._FixedScrollMetrics_Object_ScrollMetrics, A.ScrollPhysics, A.MenuSerializableShortcut, A.PlatformMenuDelegate, A.PlatformViewCreationParams, A.RestorationMixin, A.RouteInformation, A.LocalHistoryEntry, A.LocalHistoryRoute, A.ScrollActivity, A.ScrollDragController, A._WrappedScrollBehavior, A.SliverChildDelegate, A.ScrollMetrics, A.ViewportNotificationMixin, A.ViewportElementMixin, A.SelectionContainerDelegate, A.ScrollableDetails, A.EdgeDraggingAutoScroller, A.KeySet, A._SingleActivator_Object_Diagnosticable, A.__ActivatorIntentPair_Object_Diagnosticable, A._ShortcutManager_Object_Diagnosticable, A._ShortcutRegistry_Object_ChangeNotifier, A._RenderSliverPersistentHeaderForWidgetsMixin, A.SlottedMultiChildRenderObjectWidgetMixin, A.SlottedContainerRenderObjectMixin, A._DefaultSnapshotPainter, A.SpellCheckConfiguration, A.TableRow, A._TableElementRow, A.__TableSlot_Object_Diagnosticable, A.TextSelectionOverlay, A.SelectionOverlay, A.TextSelectionHandleControls, A.TextSelectionToolbarAnchors, A.SingleTickerProviderStateMixin, A.TickerProviderStateMixin, A._ConstantValueListenable, A.UndoHistoryValue, A._UndoStack, A.GlobalCupertinoLocalizations, A.GlobalMaterialLocalizations, A.GlobalWidgetsLocalizations, A.SlidableAutoCloseNotification, A.SlidableAutoCloseBarrierNotification, A.EndGesture, A.SlidableController, A.ActionPaneData, A.StaggeredGridDelegate, A._TileOrigin, A.StyledToastPosition, A.ToastFuture, A.ToastManager, A.StaticOffsetAligner, A.FunctionalAligner, A.FollowerAlignment, A.ScreenFollowerBoundary, A.WidgetFollowerBoundary, A._LeaderLink_Object_ChangeNotifier, A.CustomLayerLinkHandle, A.GoogleSignInAuthentication, A.GoogleSignInAccount, A.GoogleSignIn, A.SignInInitParameters, A.GoogleSignInUserData, A.GoogleSignInTokenData, A.AttributeName, A._ParentNode, A._NonElementParentNode, A._ElementAndDocument, A.Node0, A.TreeVisitor, A.HtmlParser, A.Phase, A.ParseError, A.ReparseException, A.EncodingBytes, A.ContentAttrParser, A._EncodingRangeException, A.HtmlInputStream, A.Token0, A.TagAttribute, A.HtmlTokenizer, A.TreeBuilder, A.Pair, A.Node, A._StyleOption, A.Rule, A.BaseClient, A.BaseRequest, A.BaseResponse, A.ClientException, A.MultipartFile, A.MediaType, A.ChannelIterator, A.IfdContainer, A.ExifTag, A.IfdDirectory, A.IfdValue, A.Decoder, A.PngFrame, A.PngInfo, A.IccProfile, A.Palette0, A.ImageException, A.InputBuffer, A.ImageResizer, A.InAppPurchase, A.BillingClientManager, A.BillingClient, A.BillingResponseConverter, A.ProductTypeConverter, A.BillingResultWrapper, A.OneTimePurchaseOfferDetailsWrapper, A.ProductDetailsWrapper, A.ProductDetailsResponseWrapper, A.RecurrenceModeConverter, A.ProductWrapper, A.PurchaseWrapper, A.PurchasesResultWrapper, A.PurchaseStateConverter, A.SubscriptionOfferDetailsWrapper, A.PricingPhaseWrapper, A.InAppPurchasePlatformAddition, A.ProductDetails, A.PurchaseDetails, A.PurchaseParam, A.IAPError, A.InAppPurchaseException, A.ProductDetailsResponse, A.PurchaseVerificationData, A._TransactionObserver, A.SKTransactionStatusConverter, A.SKSubscriptionPeriodUnitConverter, A.SKProductDiscountPaymentModeConverter, A.SKProductDiscountTypeConverter, A.SKPaymentQueueWrapper, A.SKError, A.SKPaymentWrapper, A.SKPaymentTransactionWrapper, A.SkProductResponseWrapper, A.SKProductSubscriptionPeriodWrapper, A.SKProductDiscountWrapper, A.SKProductWrapper, A.SKPriceLocaleWrapper, A.SKRequestMaker, A.SKStorefrontWrapper, A.DateSymbols, A.NumberSymbols, A.DateBuilder, A.DateFormat, A._DateFormatField, A.NumberFormat, A.NumberFormatParseResult, A.NumberFormatParser, A.StringStack, A.UninitializedLocaleData, A.LocaleDataException, A.Country, A.PhoneNumber, A.InvoiceStatusColors, A.RecurringInvoiceStatusColors, A.CreditStatusColors, A.PurchaseOrderStatusColors, A.TransactionStatusColors, A.QuoteStatusColors, A.PaymentStatusColors, A.ExpenseStatusColors, A.TaskStatusColors, A.FileStorage, A.AccountEntity, A._$AccountEntitySerializer, A.AccountEntityBuilder, A.BankAccountListResponse, A.BankAccountItemResponse, A._BankAccountEntity_Object_BaseEntity, A._$BankAccountListResponseSerializer, A._$BankAccountItemResponseSerializer, A._$BankAccountEntitySerializer, A.BankAccountListResponseBuilder, A.BankAccountItemResponseBuilder, A.BankAccountEntityBuilder, A.ClientListResponse, A.ClientItemResponse, A._ClientEntity_Object_BaseEntity, A._ClientContactEntity_Object_BaseEntity, A._$ClientListResponseSerializer, A._$ClientItemResponseSerializer, A._$ClientEntitySerializer, A._$ClientContactEntitySerializer, A.ClientListResponseBuilder, A.ClientItemResponseBuilder, A.ClientEntityBuilder, A.ClientContactEntityBuilder, A.CompanyGatewayListResponse, A.CompanyGatewayItemResponse, A._CompanyGatewayEntity_Object_BaseEntity, A.FeesAndLimitsSettings, A._$CompanyGatewayListResponseSerializer, A._$CompanyGatewayItemResponseSerializer, A._$CompanyGatewayEntitySerializer, A._$FeesAndLimitsSettingsSerializer, A.CompanyGatewayListResponseBuilder, A.CompanyGatewayItemResponseBuilder, A.CompanyGatewayEntityBuilder, A.FeesAndLimitsSettingsBuilder, A._CompanyEntity_Object_BaseEntity, A._GatewayEntity_Object_SelectableEntity, A.GatewayOptionsEntity, A.UserCompanyEntity, A.UserSettingsEntity, A.ReportSettingsEntity, A.CompanyItemResponse, A.RegistrationFieldEntity, A.DashboardField, A._$CompanyEntitySerializer, A._$GatewayEntitySerializer, A._$GatewayOptionsEntitySerializer, A._$UserCompanyEntitySerializer, A._$UserSettingsEntitySerializer, A._$ReportSettingsEntitySerializer, A._$CompanyItemResponseSerializer, A._$RegistrationFieldEntitySerializer, A._$DashboardFieldSerializer, A.CompanyEntityBuilder, A.GatewayEntityBuilder, A.GatewayOptionsEntityBuilder, A.UserCompanyEntityBuilder, A.UserSettingsEntityBuilder, A.ReportSettingsEntityBuilder, A.CompanyItemResponseBuilder, A.RegistrationFieldEntityBuilder, A.DashboardFieldBuilder, A.CreditListResponse, A.CreditItemResponse, A._$CreditListResponseSerializer, A._$CreditItemResponseSerializer, A.CreditListResponseBuilder, A.CreditItemResponseBuilder, A.DashboardSettings, A._$DateRangeSerializer, A._$DateRangeComparisonSerializer, A.DesignListResponse, A.DesignItemResponse, A.DesignPreviewRequest, A._DesignEntity_Object_BaseEntity, A._$DesignListResponseSerializer, A._$DesignItemResponseSerializer, A._$DesignPreviewRequestSerializer, A._$DesignEntitySerializer, A.DesignListResponseBuilder, A.DesignItemResponseBuilder, A.DesignPreviewRequestBuilder, A.DesignEntityBuilder, A.DocumentListResponse, A.DocumentItemResponse, A._DocumentEntity_Object_BaseEntity, A._$DocumentListResponseSerializer, A._$DocumentItemResponseSerializer, A._$DocumentEntitySerializer, A.DocumentListResponseBuilder, A.DocumentItemResponseBuilder, A.DocumentEntityBuilder, A.EntityStatus, A.EntityStats, A.SelectableEntity, A.BaseEntity, A.HasActivities, A.BelongsToClient, A.BelongsToVendor, A.LoginResponse, A.ActivityEntity, A.LedgerEntity, A._$EntityTypeSerializer, A._$EntityStateSerializer, A._$EmailTemplateSerializer, A._$LoginResponseSerializer, A._$ActivityEntitySerializer, A._$LedgerEntitySerializer, A.LoginResponseBuilder, A.ActivityEntityBuilder, A.LedgerEntityBuilder, A.ExpenseCategoryListResponse, A.ExpenseCategoryItemResponse, A._ExpenseCategoryEntity_Object_BaseEntity, A._$ExpenseCategoryListResponseSerializer, A._$ExpenseCategoryItemResponseSerializer, A._$ExpenseCategoryEntitySerializer, A.ExpenseCategoryListResponseBuilder, A.ExpenseCategoryItemResponseBuilder, A.ExpenseCategoryEntityBuilder, A.ExpenseListResponse, A.ExpenseItemResponse, A._ExpenseEntity_Object_BaseEntity, A.ExpenseScheduleEntity, A._ExpenseStatusEntity_Object_EntityStatus, A._$ExpenseListResponseSerializer, A._$ExpenseItemResponseSerializer, A._$ExpenseEntitySerializer, A._$ExpenseScheduleEntitySerializer, A._$ExpenseStatusEntitySerializer, A.ExpenseListResponseBuilder, A.ExpenseItemResponseBuilder, A.ExpenseEntityBuilder, A.ExpenseScheduleEntityBuilder, A.ExpenseStatusEntityBuilder, A.GatewayTokenListResponse, A.GatewayTokenItemResponse, A._GatewayTokenEntity_Object_BaseEntity, A.GatewayTokenMetaEntity, A._$GatewayTokenListResponseSerializer, A._$GatewayTokenItemResponseSerializer, A._$GatewayTokenEntitySerializer, A._$GatewayTokenMetaEntitySerializer, A.GatewayTokenListResponseBuilder, A.GatewayTokenItemResponseBuilder, A.GatewayTokenEntityBuilder, A.GatewayTokenMetaEntityBuilder, A.GroupListResponse, A.GroupItemResponse, A._GroupEntity_Object_BaseEntity, A._$GroupListResponseSerializer, A._$GroupItemResponseSerializer, A._$GroupEntitySerializer, A.GroupListResponseBuilder, A.GroupItemResponseBuilder, A.GroupEntityBuilder, A.HealthCheckResponse, A.HealthCheckPHPResponse, A._$HealthCheckResponseSerializer, A._$HealthCheckPHPResponseSerializer, A.HealthCheckResponseBuilder, A.HealthCheckPHPResponseBuilder, A.PreImportResponse, A.PreImportResponseEntityDetails, A.ImportRequest, A.ImportRequestMapping, A._$PreImportResponseSerializer, A._$PreImportResponseEntityDetailsSerializer, A._$ImportRequestSerializer, A._$ImportRequestMappingSerializer, A.PreImportResponseBuilder, A.PreImportResponseEntityDetailsBuilder, A.ImportRequestBuilder, A.ImportRequestMappingBuilder, A.InvoiceListResponse, A.InvoiceItemResponse, A._InvoiceEntity_Object_BaseEntity, A.InvoiceItemEntity, A._InvitationEntity_Object_BaseEntity, A.InvoiceScheduleEntity, A.InvoiceHistoryEntity, A._$InvoiceListResponseSerializer, A._$InvoiceItemResponseSerializer, A._$InvoiceEntitySerializer, A._$InvoiceItemEntitySerializer, A._$InvitationEntitySerializer, A._$InvoiceScheduleEntitySerializer, A._$InvoiceHistoryEntitySerializer, A.InvoiceListResponseBuilder, A.InvoiceItemResponseBuilder, A.InvoiceEntityBuilder, A.InvoiceItemEntityBuilder, A.InvitationEntityBuilder, A.InvoiceScheduleEntityBuilder, A.InvoiceHistoryEntityBuilder, A.CalculateInvoiceTotal, A.PaymentListResponse, A.PaymentItemResponse, A._PaymentEntity_Object_BaseEntity, A._PaymentableEntity_Object_SelectableEntity, A._$PaymentListResponseSerializer, A._$PaymentItemResponseSerializer, A._$PaymentEntitySerializer, A._$PaymentableEntitySerializer, A.PaymentListResponseBuilder, A.PaymentItemResponseBuilder, A.PaymentEntityBuilder, A.PaymentableEntityBuilder, A.PaymentTermListResponse, A.PaymentTermItemResponse, A._PaymentTermEntity_Object_BaseEntity, A._$PaymentTermListResponseSerializer, A._$PaymentTermItemResponseSerializer, A._$PaymentTermEntitySerializer, A.PaymentTermListResponseBuilder, A.PaymentTermItemResponseBuilder, A.PaymentTermEntityBuilder, A.ProductListResponse, A.ProductItemResponse, A._ProductEntity_Object_BaseEntity, A._$ProductListResponseSerializer, A._$ProductItemResponseSerializer, A._$ProductEntitySerializer, A.ProductListResponseBuilder, A.ProductItemResponseBuilder, A.ProductEntityBuilder, A.ProjectListResponse, A.ProjectItemResponse, A._ProjectEntity_Object_BaseEntity, A._$ProjectListResponseSerializer, A._$ProjectItemResponseSerializer, A._$ProjectEntitySerializer, A.ProjectListResponseBuilder, A.ProjectItemResponseBuilder, A.ProjectEntityBuilder, A.ScheduleListResponse, A.ScheduleItemResponse, A._ScheduleEntity_Object_BaseEntity, A.ScheduleParameters, A._$ScheduleListResponseSerializer, A._$ScheduleItemResponseSerializer, A._$ScheduleEntitySerializer, A._$ScheduleParametersSerializer, A.ScheduleListResponseBuilder, A.ScheduleItemResponseBuilder, A.ScheduleEntityBuilder, A.ScheduleParametersBuilder, A.SettingsEntity, A.PdfPreviewRequest, A._$SettingsEntitySerializer, A._$PdfPreviewRequestSerializer, A.SettingsEntityBuilder, A.PdfPreviewRequestBuilder, A.ColorTheme, A.CountryListResponse, A.CountryItemResponse, A._CountryEntity_Object_SelectableEntity, A._$CountryListResponseSerializer, A._$CountryItemResponseSerializer, A._$CountryEntitySerializer, A.CountryListResponseBuilder, A.CountryItemResponseBuilder, A.CountryEntityBuilder, A.CurrencyListResponse, A.CurrencyItemResponse, A._CurrencyEntity_Object_SelectableEntity, A._$CurrencyListResponseSerializer, A._$CurrencyItemResponseSerializer, A._$CurrencyEntitySerializer, A.CurrencyListResponseBuilder, A.CurrencyItemResponseBuilder, A.CurrencyEntityBuilder, A.DateFormatListResponse, A.DateFormatItemResponse, A._DateFormatEntity_Object_SelectableEntity, A._$DateFormatListResponseSerializer, A._$DateFormatItemResponseSerializer, A._$DateFormatEntitySerializer, A.DateFormatListResponseBuilder, A.DateFormatItemResponseBuilder, A.DateFormatEntityBuilder, A.DatetimeFormatListResponse, A.DatetimeFormatItemResponse, A.DatetimeFormatEntity, A._$DatetimeFormatListResponseSerializer, A._$DatetimeFormatItemResponseSerializer, A._$DatetimeFormatEntitySerializer, A.DatetimeFormatListResponseBuilder, A.DatetimeFormatItemResponseBuilder, A.DatetimeFormatEntityBuilder, A._DocumentStatusEntity_Object_EntityStatus, A.DocumentStatusEntityBuilder, A._FontEntity_Object_SelectableEntity, A.IndustryListResponse, A.IndustryItemResponse, A._IndustryEntity_Object_SelectableEntity, A._$IndustryListResponseSerializer, A._$IndustryItemResponseSerializer, A._$IndustryEntitySerializer, A.IndustryListResponseBuilder, A.IndustryItemResponseBuilder, A.IndustryEntityBuilder, A._InvoiceStatusEntity_Object_EntityStatus, A._$InvoiceStatusEntitySerializer, A.InvoiceStatusEntityBuilder, A.LanguageListResponse, A.LanguageItemResponse, A._LanguageEntity_Object_SelectableEntity, A._$LanguageListResponseSerializer, A._$LanguageItemResponseSerializer, A._$LanguageEntitySerializer, A.LanguageListResponseBuilder, A.LanguageItemResponseBuilder, A.LanguageEntityBuilder, A._PaymentStatusEntity_Object_EntityStatus, A.PaymentStatusEntityBuilder, A.PaymentTypeListResponse, A.PaymentTypeItemResponse, A._PaymentTypeEntity_Object_SelectableEntity, A._$PaymentTypeListResponseSerializer, A._$PaymentTypeItemResponseSerializer, A._$PaymentTypeEntitySerializer, A.PaymentTypeListResponseBuilder, A.PaymentTypeItemResponseBuilder, A.PaymentTypeEntityBuilder, A.SizeListResponse, A.SizeItemResponse, A._SizeEntity_Object_SelectableEntity, A._$SizeListResponseSerializer, A._$SizeItemResponseSerializer, A._$SizeEntitySerializer, A.SizeListResponseBuilder, A.SizeItemResponseBuilder, A.SizeEntityBuilder, A.StaticDataItemResponse, A.StaticDataEntity, A.TemplateEntity, A._$StaticDataItemResponseSerializer, A._$StaticDataEntitySerializer, A._$TemplateEntitySerializer, A.StaticDataItemResponseBuilder, A.StaticDataEntityBuilder, A.TemplateEntityBuilder, A.TimezoneListResponse, A.TimezoneItemResponse, A._TimezoneEntity_Object_SelectableEntity, A._$TimezoneListResponseSerializer, A._$TimezoneItemResponseSerializer, A._$TimezoneEntitySerializer, A.TimezoneListResponseBuilder, A.TimezoneItemResponseBuilder, A.TimezoneEntityBuilder, A.SubscriptionListResponse, A.SubscriptionItemResponse, A._SubscriptionEntity_Object_BaseEntity, A.WebhookConfigurationEntity, A._$SubscriptionListResponseSerializer, A._$SubscriptionItemResponseSerializer, A._$SubscriptionEntitySerializer, A._$WebhookConfigurationEntitySerializer, A.SubscriptionListResponseBuilder, A.SubscriptionItemResponseBuilder, A.SubscriptionEntityBuilder, A.WebhookConfigurationEntityBuilder, A.SystemLogEntity, A._$SystemLogEntitySerializer, A.SystemLogEntityBuilder, A.TaskListResponse, A.TaskItemResponse, A.TaskTime, A._TaskEntity_Object_BaseEntity, A._$TaskListResponseSerializer, A._$TaskItemResponseSerializer, A._$TaskEntitySerializer, A.TaskListResponseBuilder, A.TaskItemResponseBuilder, A.TaskTimeBuilder, A.TaskEntityBuilder, A.TaskStatusListResponse, A.TaskStatusItemResponse, A._TaskStatusEntity_Object_BaseEntity, A._$TaskStatusListResponseSerializer, A._$TaskStatusItemResponseSerializer, A._$TaskStatusEntitySerializer, A.TaskStatusListResponseBuilder, A.TaskStatusItemResponseBuilder, A.TaskStatusEntityBuilder, A.TaxDataEntity, A.TaxConfigEntity, A.TaxConfigRegionEntity, A.TaxConfigSubregionEntity, A._$TaxDataEntitySerializer, A._$TaxConfigEntitySerializer, A._$TaxConfigRegionEntitySerializer, A._$TaxConfigSubregionEntitySerializer, A.TaxDataEntityBuilder, A.TaxConfigEntityBuilder, A.TaxConfigRegionEntityBuilder, A.TaxConfigSubregionEntityBuilder, A.TaxRateListResponse, A.TaxRateItemResponse, A._TaxRateEntity_Object_BaseEntity, A._$TaxRateListResponseSerializer, A._$TaxRateItemResponseSerializer, A._$TaxRateEntitySerializer, A.TaxRateListResponseBuilder, A.TaxRateItemResponseBuilder, A.TaxRateEntityBuilder, A.TokenListResponse, A.TokenItemResponse, A._TokenEntity_Object_BaseEntity, A._$TokenListResponseSerializer, A._$TokenItemResponseSerializer, A._$TokenEntitySerializer, A.TokenListResponseBuilder, A.TokenItemResponseBuilder, A.TokenEntityBuilder, A.TransactionListResponse, A.TransactionItemResponse, A._TransactionEntity_Object_BaseEntity, A._TransactionStatusEntity_Object_EntityStatus, A._$TransactionListResponseSerializer, A._$TransactionItemResponseSerializer, A._$TransactionEntitySerializer, A._$TransactionStatusEntitySerializer, A.TransactionListResponseBuilder, A.TransactionItemResponseBuilder, A.TransactionEntityBuilder, A.TransactionStatusEntityBuilder, A.TransactionRuleListResponse, A.TransactionRuleItemResponse, A._TransactionRuleEntity_Object_BaseEntity, A.TransactionRuleCriteriaEntity, A._$TransactionRuleListResponseSerializer, A._$TransactionRuleItemResponseSerializer, A._$TransactionRuleEntitySerializer, A._$TransactionRuleCriteriaEntitySerializer, A.TransactionRuleListResponseBuilder, A.TransactionRuleItemResponseBuilder, A.TransactionRuleEntityBuilder, A.TransactionRuleCriteriaEntityBuilder, A.UserListResponse, A.UserItemResponse, A.UserTwoFactorResponse, A.UserTwoFactorData, A.UserCompanyItemResponse, A._UserEntity_Object_BaseEntity, A._$UserListResponseSerializer, A._$UserItemResponseSerializer, A._$UserTwoFactorResponseSerializer, A._$UserTwoFactorDataSerializer, A._$UserCompanyItemResponseSerializer, A._$UserEntitySerializer, A.UserListResponseBuilder, A.UserItemResponseBuilder, A.UserTwoFactorResponseBuilder, A.UserTwoFactorDataBuilder, A.UserCompanyItemResponseBuilder, A.UserEntityBuilder, A.VendorListResponse, A.VendorItemResponse, A._VendorEntity_Object_BaseEntity, A._VendorContactEntity_Object_BaseEntity, A._$VendorListResponseSerializer, A._$VendorItemResponseSerializer, A._$VendorEntitySerializer, A._$VendorContactEntitySerializer, A.VendorListResponseBuilder, A.VendorItemResponseBuilder, A.VendorEntityBuilder, A.VendorContactEntityBuilder, A.WebhookListResponse, A.WebhookItemResponse, A._WebhookEntity_Object_BaseEntity, A._$WebhookListResponseSerializer, A._$WebhookItemResponseSerializer, A._$WebhookEntitySerializer, A.WebhookListResponseBuilder, A.WebhookItemResponseBuilder, A.WebhookEntityBuilder, A.AuthRepository, A.BankAccountRepository, A.ClientRepository, A.CompanyGatewayRepository, A.CreditRepository, A.DesignRepository, A.DocumentRepository, A.ExpenseCategoryRepository, A.ExpenseRepository, A.GroupRepository, A.InvoiceRepository, A.PaymentRepository, A.PaymentTermRepository, A.PersistenceRepository, A.ProductRepository, A.ProjectRepository, A.PurchaseOrderRepository, A.QuoteRepository, A.RecurringExpenseRepository, A.RecurringInvoiceRepository, A.ScheduleRepository, A.SettingsRepository, A.SubscriptionRepository, A.TaskRepository, A.TaskStatusRepository, A.TaxRateRepository, A.TokenRepository, A.TransactionRepository, A.TransactionRuleRepository, A.UserRepository, A.VendorRepository, A.WebhookRepository, A.WebClient, A.PersistData, A.ClearPersistedData, A.SwitchListTableLayout, A.PopLastHistory, A.UpdateLastHistory, A.DismissNativeWarning, A.DismissNativeWarningPermanently, A.DismissGatewayWarningPermanently, A.DismissTaskExtensionBanner, A.ViewMainScreen, A.StartLoading, A.StopLoading, A.StartSaving, A.StopSaving, A.LoadStaticSuccess, A.ToggleEditorLayout, A.ToggleViewerLayout, A.TogglePreviewSidebar, A.UpdateUserPreferences, A.LoadAccountSuccess, A.ResendConfirmation, A.ResendConfirmationFailure, A.ResendConfirmationSuccess, A.RefreshData, A.RefreshDataSuccess, A.RefreshDataFailure, A.PreviewEntity, A.ClearPreviewStack, A.PopPreviewStack, A.PopFilterStack, A.ClearData, A.ClearLastError, A.DiscardChanges, A.ClearEntityFilter, A.ClearEntitySelection, A.FilterByEntity, A.FilterCompany, A.AppState, A.Credentials, A.SelectionState, A._$AppStateSerializer, A.AppStateBuilder, A.LoadStateRequest, A.LoadStateSuccess, A.OAuthLoginRequest, A.UserLoadUrl, A.UserLoginRequest, A.UserLoginSuccess, A.UserLoginFailure, A.RecoverPasswordRequest, A.RecoverPasswordSuccess, A.RecoverPasswordFailure, A.UserLogout, A.UserLogoutAll, A.UserLogoutAllSuccess, A.UserLogoutAllFailure, A.UserSignUpRequest, A.OAuthSignUpRequest, A.UserVerifiedPassword, A.UserUnverifiedPassword, A.AuthState, A._$AuthStateSerializer, A.AuthStateBuilder, A.ViewBankAccountList, A.ViewBankAccount, A.EditBankAccount, A.UpdateBankAccount, A.LoadBankAccountRequest, A.LoadBankAccountFailure, A.LoadBankAccountSuccess, A.LoadBankAccountsRequest, A.LoadBankAccountsFailure, A.LoadBankAccountsSuccess, A.SaveBankAccountRequest, A.SaveBankAccountSuccess, A.AddBankAccountSuccess, A.SaveBankAccountFailure, A.ArchiveBankAccountsRequest, A.ArchiveBankAccountsSuccess, A.ArchiveBankAccountsFailure, A.DeleteBankAccountsRequest, A.DeleteBankAccountsSuccess, A.DeleteBankAccountsFailure, A.RestoreBankAccountsRequest, A.RestoreBankAccountsSuccess, A.RestoreBankAccountsFailure, A.FilterBankAccounts, A.SortBankAccounts, A.FilterBankAccountsByState, A.FilterBankAccountsByCustom1, A.FilterBankAccountsByCustom2, A.FilterBankAccountsByCustom3, A.FilterBankAccountsByCustom4, A.StartBankAccountMultiselect, A.AddToBankAccountMultiselect, A.RemoveFromBankAccountMultiselect, A.ClearBankAccountMultiselect, A.BankAccountState, A._BankAccountUIState_Object_EntityUIState, A._$BankAccountStateSerializer, A._$BankAccountUIStateSerializer, A.BankAccountStateBuilder, A.BankAccountUIStateBuilder, A.ViewClientList, A.ViewClient, A.EditClient, A.EditContact, A.ShowPdfClient, A.UpdateClient, A.LoadClient, A.LoadClients, A.LoadClientRequest, A.LoadClientFailure, A.LoadClientSuccess, A.LoadClientsRequest, A.LoadClientsFailure, A.LoadClientsSuccess, A.AddContact, A.UpdateContact, A.DeleteContact, A.SaveClientRequest, A.SaveClientSuccess, A.AddClientSuccess, A.SaveClientFailure, A.ArchiveClientsRequest, A.ArchiveClientsSuccess, A.ArchiveClientsFailure, A.MergeClientsRequest, A.MergeClientsSuccess, A.MergeClientsFailure, A.DeleteClientsRequest, A.DeleteClientsSuccess, A.DeleteClientsFailure, A.PurgeClientRequest, A.PurgeClientSuccess, A.PurgeClientFailure, A.RestoreClientsRequest, A.RestoreClientSuccess, A.RestoreClientFailure, A.FilterClients, A.SortClients, A.FilterClientsByState, A.FilterClientsByCustom1, A.FilterClientsByCustom2, A.FilterClientsByCustom3, A.FilterClientsByCustom4, A.StartClientMultiselect, A.AddToClientMultiselect, A.RemoveFromClientMultiselect, A.ClearClientMultiselect, A.SaveClientDocumentRequest, A.SaveClientDocumentFailure, A.UpdateClientTab, A.ClientState, A._ClientUIState_Object_EntityUIState, A._$ClientStateSerializer, A._$ClientUIStateSerializer, A.ClientStateBuilder, A.ClientUIStateBuilder, A.SelectCompany, A.LoadCompanySuccess, A.UpdateCompany, A.SaveCompanyRequest, A.SaveCompanySuccess, A.SaveCompanyFailure, A.SaveEInvoiceCertificateRequest, A.SaveEInvoiceCertificateSuccess, A.SaveEInvoiceCertificateFailure, A.AddCompany, A.AddCompanySuccess, A.DeleteCompanyRequest, A.DeleteCompanySuccess, A.DeleteCompanyFailure, A.PurgeDataRequest, A.PurgeDataSuccess, A.PurgeDataFailure, A.UpdateCompanyLanguage, A.SaveCompanyDocumentRequest, A.SaveCompanyDocumentFailure, A.SetDefaultCompanyRequest, A.SetDefaultCompanySuccess, A.SetDefaultCompanyFailure, A.UserCompanyState, A._$UserCompanyStateSerializer, A.UserCompanyStateBuilder, A.ViewCompanyGatewayList, A.ViewCompanyGateway, A.EditCompanyGateway, A.UpdateCompanyGateway, A.LoadCompanyGateway, A.LoadCompanyGatewayRequest, A.LoadCompanyGatewayFailure, A.LoadCompanyGatewaySuccess, A.LoadCompanyGatewaysRequest, A.LoadCompanyGatewaysFailure, A.LoadCompanyGatewaysSuccess, A.SaveCompanyGatewayRequest, A.SaveCompanyGatewaySuccess, A.AddCompanyGatewaySuccess, A.SaveCompanyGatewayFailure, A.ArchiveCompanyGatewayRequest, A.ArchiveCompanyGatewaySuccess, A.ArchiveCompanyGatewayFailure, A.DeleteCompanyGatewayRequest, A.DeleteCompanyGatewaySuccess, A.DeleteCompanyGatewayFailure, A.DisconnectCompanyGatewayRequest, A.DisconnectCompanyGatewaySuccess, A.DisconnectCompanyGatewayFailure, A.RestoreCompanyGatewayRequest, A.RestoreCompanyGatewaySuccess, A.RestoreCompanyGatewayFailure, A.FilterCompanyGatewaysByState, A.FilterCompanyGatewaysByCustom1, A.FilterCompanyGatewaysByCustom2, A.FilterCompanyGatewaysByCustom3, A.FilterCompanyGatewaysByCustom4, A.StartCompanyGatewayMultiselect, A.AddToCompanyGatewayMultiselect, A.RemoveFromCompanyGatewayMultiselect, A.ClearCompanyGatewayMultiselect, A.CompanyGatewayState, A._CompanyGatewayUIState_Object_EntityUIState, A._$CompanyGatewayStateSerializer, A._$CompanyGatewayUIStateSerializer, A.CompanyGatewayStateBuilder, A.CompanyGatewayUIStateBuilder, A.ViewCreditList, A.ViewCredit, A.EditCredit, A.ShowEmailCredit, A.ShowPdfCredit, A.EditCreditItem, A.UpdateCredit, A.UpdateCreditClient, A.LoadCredit, A.LoadCredits, A.LoadCreditRequest, A.LoadCreditFailure, A.LoadCreditSuccess, A.LoadCreditsRequest, A.LoadCreditsFailure, A.LoadCreditsSuccess, A.AddCreditContact, A.RemoveCreditContact, A.AddCreditItem, A.MoveCreditItem, A.AddCreditItems, A.UpdateCreditItem, A.DeleteCreditItem, A.SaveCreditRequest, A.SaveCreditSuccess, A.AddCreditSuccess, A.SaveCreditFailure, A.EmailCreditRequest, A.EmailCreditSuccess, A.EmailCreditFailure, A.MarkSentCreditRequest, A.MarkSentCreditSuccess, A.MarkSentCreditFailure, A.BulkEmailCreditsRequest, A.BulkEmailCreditsSuccess, A.BulkEmailCreditsFailure, A.MarkCreditsPaidRequest, A.MarkCreditsPaidSuccess, A.MarkCreditsPaidFailure, A.ArchiveCreditsRequest, A.ArchiveCreditsSuccess, A.ArchiveCreditsFailure, A.DeleteCreditsRequest, A.DeleteCreditsSuccess, A.DeleteCreditsFailure, A.DownloadCreditsRequest, A.DownloadCreditsSuccess, A.DownloadCreditsFailure, A.RestoreCreditsRequest, A.RestoreCreditsSuccess, A.RestoreCreditsFailure, A.FilterCredits, A.SortCredits, A.FilterCreditsByState, A.FilterCreditsByCustom1, A.FilterCreditsByCustom2, A.FilterCreditsByCustom3, A.FilterCreditsByCustom4, A.SaveCreditDocumentRequest, A.SaveCreditDocumentFailure, A.StartCreditMultiselect, A.AddToCreditMultiselect, A.RemoveFromCreditMultiselect, A.ClearCreditMultiselect, A.UpdateCreditTab, A.CreditState, A._CreditUIState_Object_EntityUIState, A._$CreditStateSerializer, A._$CreditUIStateSerializer, A.CreditStateBuilder, A.CreditUIStateBuilder, A.ViewDashboard, A.UpdateDashboardSettings, A.UpdateDashboardFields, A.UpdateDashboardFieldSettingss, A.UpdateDashboardSelection, A.UpdateDashboardSidebar, A.ChartDataGroup, A.ChartMoneyData, A.DashboardUIState, A.DashboardUISettings, A._$DashboardUIStateSerializer, A._$DashboardUISettingsSerializer, A.DashboardUIStateBuilder, A.DashboardUISettingsBuilder, A.ViewDesignList, A.ViewDesign, A.EditDesign, A.UpdateDesign, A.LoadDesignRequest, A.LoadDesignFailure, A.LoadDesignSuccess, A.LoadDesignsRequest, A.LoadDesignsFailure, A.LoadDesignsSuccess, A.SaveDesignRequest, A.SaveDesignSuccess, A.AddDesignSuccess, A.SaveDesignFailure, A.ArchiveDesignsRequest, A.ArchiveDesignsSuccess, A.ArchiveDesignsFailure, A.DeleteDesignsRequest, A.DeleteDesignsSuccess, A.DeleteDesignsFailure, A.RestoreDesignsRequest, A.RestoreDesignsSuccess, A.RestoreDesignsFailure, A.FilterDesigns, A.SortDesigns, A.FilterDesignsByState, A.FilterDesignsByCustom1, A.FilterDesignsByCustom2, A.FilterDesignsByCustom3, A.FilterDesignsByCustom4, A.StartDesignMultiselect, A.AddToDesignMultiselect, A.RemoveFromDesignMultiselect, A.ClearDesignMultiselect, A.DesignState, A._DesignUIState_Object_EntityUIState, A._$DesignStateSerializer, A._$DesignUIStateSerializer, A.DesignStateBuilder, A.DesignUIStateBuilder, A.ViewDocumentList, A.ViewDocument, A.EditDocument, A.UpdateDocument, A.LoadDocumentData, A.LoadDocumentRequest, A.LoadDocumentFailure, A.LoadDocumentSuccess, A.LoadDocumentsSuccess, A.SaveDocumentRequest, A.SaveDocumentSuccess, A.SaveDocumentFailure, A.DownloadDocumentsRequest, A.DownloadDocumentsSuccess, A.DownloadDocumentsFailure, A.ArchiveDocumentRequest, A.ArchiveDocumentSuccess, A.ArchiveDocumentFailure, A.DeleteDocumentRequest, A.DeleteDocumentSuccess, A.DeleteDocumentFailure, A.RestoreDocumentRequest, A.RestoreDocumentSuccess, A.RestoreDocumentFailure, A.FilterDocuments, A.FilterDocumentsByStatus, A.SortDocuments, A.FilterDocumentsByCustom1, A.FilterDocumentsByCustom2, A.FilterDocumentsByCustom3, A.FilterDocumentsByCustom4, A.StartDocumentMultiselect, A.AddToDocumentMultiselect, A.RemoveFromDocumentMultiselect, A.ClearDocumentMultiselect, A.DocumentState, A._DocumentUIState_Object_EntityUIState, A._$DocumentStateSerializer, A._$DocumentUIStateSerializer, A.DocumentStateBuilder, A.DocumentUIStateBuilder, A.ViewExpenseList, A.ViewExpense, A.EditExpense, A.UpdateExpense, A.LoadExpense, A.LoadExpenses, A.LoadExpenseRequest, A.LoadExpenseFailure, A.LoadExpenseSuccess, A.LoadExpensesRequest, A.LoadExpensesFailure, A.LoadExpensesSuccess, A.SaveExpenseRequest, A.SaveExpenseSuccess, A.AddExpenseSuccess, A.SaveExpenseFailure, A.ArchiveExpenseRequest, A.ArchiveExpenseSuccess, A.ArchiveExpenseFailure, A.DeleteExpenseRequest, A.DeleteExpenseSuccess, A.DeleteExpenseFailure, A.RestoreExpenseRequest, A.RestoreExpenseSuccess, A.RestoreExpenseFailure, A.FilterExpenses, A.SortExpenses, A.FilterExpensesByState, A.FilterExpensesByStatus, A.FilterExpensesByCustom1, A.FilterExpensesByCustom2, A.FilterExpensesByCustom3, A.FilterExpensesByCustom4, A.StartExpenseMultiselect, A.AddToExpenseMultiselect, A.RemoveFromExpenseMultiselect, A.ClearExpenseMultiselect, A.SaveExpenseDocumentRequest, A.SaveExpenseDocumentFailure, A.UpdateExpenseTab, A.ExpenseState, A._ExpenseUIState_Object_EntityUIState, A._$ExpenseStateSerializer, A._$ExpenseUIStateSerializer, A.ExpenseStateBuilder, A.ExpenseUIStateBuilder, A.ViewExpenseCategoryList, A.ViewExpenseCategory, A.EditExpenseCategory, A.UpdateExpenseCategory, A.LoadExpenseCategoryRequest, A.LoadExpenseCategoryFailure, A.LoadExpenseCategorySuccess, A.LoadExpenseCategoriesRequest, A.LoadExpenseCategoriesFailure, A.LoadExpenseCategoriesSuccess, A.SaveExpenseCategoryRequest, A.SaveExpenseCategorySuccess, A.AddExpenseCategorySuccess, A.SaveExpenseCategoryFailure, A.ArchiveExpenseCategoriesRequest, A.ArchiveExpenseCategoriesSuccess, A.ArchiveExpenseCategoriesFailure, A.DeleteExpenseCategoriesRequest, A.DeleteExpenseCategoriesSuccess, A.DeleteExpenseCategoriesFailure, A.RestoreExpenseCategoriesRequest, A.RestoreExpenseCategoriesSuccess, A.RestoreExpenseCategoriesFailure, A.FilterExpenseCategories, A.SortExpenseCategories, A.FilterExpenseCategoriesByState, A.FilterExpenseCategoriesByCustom1, A.FilterExpenseCategoriesByCustom2, A.FilterExpenseCategoriesByCustom3, A.FilterExpenseCategoriesByCustom4, A.StartExpenseCategoryMultiselect, A.AddToExpenseCategoryMultiselect, A.RemoveFromExpenseCategoryMultiselect, A.ClearExpenseCategoryMultiselect, A.ExpenseCategoryState, A._ExpenseCategoryUIState_Object_EntityUIState, A._$ExpenseCategoryStateSerializer, A._$ExpenseCategoryUIStateSerializer, A.ExpenseCategoryStateBuilder, A.ExpenseCategoryUIStateBuilder, A.ViewGroupList, A.ViewGroup, A.EditGroup, A.UpdateGroup, A.LoadGroup, A.LoadGroupRequest, A.LoadGroupFailure, A.LoadGroupSuccess, A.LoadGroupsRequest, A.LoadGroupsFailure, A.LoadGroupsSuccess, A.SaveGroupRequest, A.SaveGroupSuccess, A.AddGroupSuccess, A.SaveGroupFailure, A.ArchiveGroupRequest, A.ArchiveGroupSuccess, A.ArchiveGroupFailure, A.DeleteGroupRequest, A.DeleteGroupSuccess, A.DeleteGroupFailure, A.RestoreGroupRequest, A.RestoreGroupSuccess, A.RestoreGroupFailure, A.FilterGroups, A.SortGroups, A.FilterGroupsByState, A.StartGroupMultiselect, A.AddToGroupMultiselect, A.RemoveFromGroupMultiselect, A.ClearGroupMultiselect, A.SaveGroupDocumentRequest, A.SaveGroupDocumentFailure, A.GroupState, A._GroupUIState_Object_EntityUIState, A._$GroupStateSerializer, A._$GroupUIStateSerializer, A.GroupStateBuilder, A.GroupUIStateBuilder, A.ViewInvoiceList, A.ViewInvoice, A.EditInvoice, A.ShowEmailInvoice, A.ShowPdfInvoice, A.EditInvoiceItem, A.UpdateInvoice, A.UpdateInvoiceClient, A.LoadInvoice, A.LoadInvoices, A.LoadInvoiceRequest, A.LoadInvoiceFailure, A.LoadInvoiceSuccess, A.LoadInvoicesRequest, A.LoadInvoicesFailure, A.LoadInvoicesSuccess, A.AddInvoiceContact, A.RemoveInvoiceContact, A.AddInvoiceItem, A.MoveInvoiceItem, A.AddInvoiceItems, A.UpdateInvoiceItem, A.DeleteInvoiceItem, A.SaveInvoiceRequest, A.SaveInvoiceSuccess, A.AddInvoiceSuccess, A.SaveInvoiceFailure, A.EmailInvoiceRequest, A.EmailInvoiceSuccess, A.EmailInvoiceFailure, A.MarkInvoicesSentRequest, A.MarkInvoicesSentSuccess, A.MarkInvoicesSentFailure, A.BulkEmailInvoicesRequest, A.BulkEmailInvoicesSuccess, A.BulkEmailInvoicesFailure, A.MarkInvoicesPaidRequest, A.MarkInvoicesPaidSuccess, A.MarkInvoicesPaidFailure, A.AutoBillInvoicesRequest, A.AutoBillInvoicesSuccess, A.AutoBillInvoicesFailure, A.CancelInvoicesRequest, A.CancelInvoicesSuccess, A.CancelInvoicesFailure, A.ArchiveInvoicesRequest, A.ArchiveInvoicesSuccess, A.ArchiveInvoicesFailure, A.DeleteInvoicesRequest, A.DeleteInvoicesSuccess, A.DeleteInvoicesFailure, A.DownloadInvoicesRequest, A.DownloadInvoicesSuccess, A.DownloadInvoicesFailure, A.RestoreInvoicesRequest, A.RestoreInvoicesSuccess, A.RestoreInvoicesFailure, A.FilterInvoices, A.SortInvoices, A.FilterInvoicesByState, A.FilterInvoicesByStatus, A.FilterInvoicesByCustom1, A.FilterInvoicesByCustom2, A.FilterInvoicesByCustom3, A.FilterInvoicesByCustom4, A.StartInvoiceMultiselect, A.AddToInvoiceMultiselect, A.RemoveFromInvoiceMultiselect, A.ClearInvoiceMultiselect, A.SaveInvoiceDocumentRequest, A.SaveInvoiceDocumentFailure, A.UpdateInvoiceTab, A.InvoiceState, A._InvoiceUIState_Object_EntityUIState, A._$InvoiceStateSerializer, A._$InvoiceUIStateSerializer, A.InvoiceStateBuilder, A.InvoiceUIStateBuilder, A.ViewPaymentList, A.ViewPayment, A.EditPayment, A.ViewRefundPayment, A.UpdatePayment, A.LoadPayment, A.LoadPayments, A.LoadPaymentRequest, A.LoadPaymentFailure, A.LoadPaymentSuccess, A.LoadPaymentsRequest, A.LoadPaymentsFailure, A.LoadPaymentsSuccess, A.SavePaymentRequest, A.SavePaymentSuccess, A.AddPaymentSuccess, A.SavePaymentFailure, A.RefundPaymentRequest, A.RefundPaymentSuccess, A.RefundPaymentFailure, A.ArchivePaymentsRequest, A.ArchivePaymentsSuccess, A.ArchivePaymentsFailure, A.DeletePaymentsRequest, A.DeletePaymentsSuccess, A.DeletePaymentsFailure, A.RestorePaymentsRequest, A.RestorePaymentsSuccess, A.RestorePaymentsFailure, A.EmailPaymentRequest, A.EmailPaymentSuccess, A.FilterPayments, A.SortPayments, A.FilterPaymentsByState, A.FilterPaymentsByStatus, A.FilterPaymentsByCustom1, A.FilterPaymentsByCustom2, A.FilterPaymentsByCustom3, A.FilterPaymentsByCustom4, A.StartPaymentMultiselect, A.AddToPaymentMultiselect, A.RemoveFromPaymentMultiselect, A.ClearPaymentMultiselect, A.PaymentState, A._PaymentUIState_Object_EntityUIState, A._$PaymentStateSerializer, A._$PaymentUIStateSerializer, A.PaymentStateBuilder, A.PaymentUIStateBuilder, A.ViewPaymentTermList, A.ViewPaymentTerm, A.EditPaymentTerm, A.UpdatePaymentTerm, A.LoadPaymentTermRequest, A.LoadPaymentTermFailure, A.LoadPaymentTermSuccess, A.LoadPaymentTermsRequest, A.LoadPaymentTermsFailure, A.LoadPaymentTermsSuccess, A.SavePaymentTermRequest, A.SavePaymentTermSuccess, A.AddPaymentTermSuccess, A.SavePaymentTermFailure, A.ArchivePaymentTermsRequest, A.ArchivePaymentTermsSuccess, A.ArchivePaymentTermsFailure, A.DeletePaymentTermsRequest, A.DeletePaymentTermsSuccess, A.DeletePaymentTermsFailure, A.RestorePaymentTermsRequest, A.RestorePaymentTermsSuccess, A.RestorePaymentTermsFailure, A.FilterPaymentTerms, A.SortPaymentTerms, A.FilterPaymentTermsByState, A.FilterPaymentTermsByCustom1, A.FilterPaymentTermsByCustom2, A.FilterPaymentTermsByCustom3, A.FilterPaymentTermsByCustom4, A.StartPaymentTermMultiselect, A.AddToPaymentTermMultiselect, A.RemoveFromPaymentTermMultiselect, A.ClearPaymentTermMultiselect, A.PaymentTermState, A._PaymentTermUIState_Object_EntityUIState, A._$PaymentTermStateSerializer, A._$PaymentTermUIStateSerializer, A.PaymentTermStateBuilder, A.PaymentTermUIStateBuilder, A.ViewProductList, A.ViewProduct, A.EditProduct, A.UpdateProduct, A.LoadProductRequest, A.LoadProduct, A.LoadProductSuccess, A.LoadProductFailure, A.LoadProducts, A.LoadProductsRequest, A.LoadProductsFailure, A.LoadProductsSuccess, A.SaveProductRequest, A.SaveProductSuccess, A.AddProductSuccess, A.SaveProductFailure, A.ArchiveProductsRequest, A.ArchiveProductsSuccess, A.ArchiveProductsFailure, A.DeleteProductsRequest, A.DeleteProductsSuccess, A.DeleteProductsFailure, A.RestoreProductsRequest, A.RestoreProductsSuccess, A.RestoreProductsFailure, A.SetTaxCategoryProductsRequest, A.SetTaxCategoryProductsSuccess, A.SetTaxCategoryProductsFailure, A.FilterProducts, A.SortProducts, A.FilterProductsByState, A.FilterProductsByCustom1, A.FilterProductsByCustom2, A.FilterProductsByCustom3, A.FilterProductsByCustom4, A.StartProductMultiselect, A.AddToProductMultiselect, A.RemoveFromProductMultiselect, A.ClearProductMultiselect, A.SaveProductDocumentRequest, A.SaveProductDocumentFailure, A.UpdateProductTab, A.ProductState, A._ProductUIState_Object_EntityUIState, A._$ProductStateSerializer, A._$ProductUIStateSerializer, A.ProductStateBuilder, A.ProductUIStateBuilder, A.ViewProjectList, A.ViewProject, A.EditProject, A.UpdateProject, A.LoadProject, A.LoadProjects, A.LoadProjectRequest, A.LoadProjectFailure, A.LoadProjectSuccess, A.LoadProjectsRequest, A.LoadProjectsFailure, A.LoadProjectsSuccess, A.SaveProjectRequest, A.SaveProjectSuccess, A.AddProjectSuccess, A.SaveProjectFailure, A.ArchiveProjectRequest, A.ArchiveProjectSuccess, A.ArchiveProjectFailure, A.DeleteProjectRequest, A.DeleteProjectSuccess, A.DeleteProjectFailure, A.RestoreProjectRequest, A.RestoreProjectSuccess, A.RestoreProjectFailure, A.FilterProjects, A.SortProjects, A.FilterProjectsByState, A.FilterProjectsByCustom1, A.FilterProjectsByCustom2, A.FilterProjectsByCustom3, A.FilterProjectsByCustom4, A.StartProjectMultiselect, A.AddToProjectMultiselect, A.RemoveFromProjectMultiselect, A.ClearProjectMultiselect, A.SaveProjectDocumentRequest, A.SaveProjectDocumentFailure, A.UpdateProjectTab, A.ProjectState, A._ProjectUIState_Object_EntityUIState, A._$ProjectStateSerializer, A._$ProjectUIStateSerializer, A.ProjectStateBuilder, A.ProjectUIStateBuilder, A.ViewPurchaseOrderList, A.ViewPurchaseOrder, A.EditPurchaseOrder, A.ShowEmailPurchaseOrder, A.ShowPdfPurchaseOrder, A.EditPurchaseOrderItem, A.UpdatePurchaseOrder, A.UpdatePurchaseOrderVendor, A.LoadPurchaseOrder, A.LoadPurchaseOrders, A.LoadPurchaseOrderRequest, A.LoadPurchaseOrderFailure, A.LoadPurchaseOrderSuccess, A.LoadPurchaseOrdersRequest, A.LoadPurchaseOrdersFailure, A.LoadPurchaseOrdersSuccess, A.SavePurchaseOrderDocumentRequest, A.SavePurchaseOrderDocumentFailure, A.SavePurchaseOrderRequest, A.SavePurchaseOrderSuccess, A.AddPurchaseOrderSuccess, A.SavePurchaseOrderFailure, A.BulkEmailPurchaseOrdersRequest, A.BulkEmailPurchaseOrdersSuccess, A.BulkEmailPurchaseOrdersFailure, A.ArchivePurchaseOrdersRequest, A.ArchivePurchaseOrdersSuccess, A.ArchivePurchaseOrdersFailure, A.DeletePurchaseOrdersRequest, A.DeletePurchaseOrdersSuccess, A.DeletePurchaseOrdersFailure, A.DownloadPurchaseOrdersRequest, A.DownloadPurchaseOrdersSuccess, A.DownloadPurchaseOrdersFailure, A.AcceptPurchaseOrdersRequest, A.AcceptPurchaseOrderSuccess, A.AcceptPurchaseOrderFailure, A.CancelPurchaseOrdersRequest, A.CancelPurchaseOrderSuccess, A.CancelPurchaseOrderFailure, A.RestorePurchaseOrdersRequest, A.RestorePurchaseOrdersSuccess, A.RestorePurchaseOrdersFailure, A.EmailPurchaseOrderRequest, A.EmailPurchaseOrderSuccess, A.EmailPurchaseOrderFailure, A.MarkPurchaseOrdersSentRequest, A.MarkPurchaseOrderSentSuccess, A.MarkPurchaseOrderSentFailure, A.ConvertPurchaseOrdersToExpensesRequest, A.ConvertPurchaseOrdersToExpensesSuccess, A.ConvertPurchaseOrdersToExpensesFailure, A.AddPurchaseOrdersToInventoryRequest, A.AddPurchaseOrdersToInventorySuccess, A.AddPurchaseOrdersToInventoryFailure, A.ApprovePurchaseOrderSuccess, A.ApprovePurchaseOrderFailure, A.AddPurchaseOrderContact, A.RemovePurchaseOrderContact, A.AddPurchaseOrderItem, A.MovePurchaseOrderItem, A.AddPurchaseOrderItems, A.UpdatePurchaseOrderItem, A.DeletePurchaseOrderItem, A.FilterPurchaseOrders, A.SortPurchaseOrders, A.FilterPurchaseOrdersByState, A.FilterPurchaseOrdersByStatus, A.FilterPurchaseOrdersByCustom1, A.FilterPurchaseOrdersByCustom2, A.FilterPurchaseOrdersByCustom3, A.FilterPurchaseOrdersByCustom4, A.StartPurchaseOrderMultiselect, A.AddToPurchaseOrderMultiselect, A.RemoveFromPurchaseOrderMultiselect, A.ClearPurchaseOrderMultiselect, A.UpdatePurchaseOrderTab, A.PurchaseOrderState, A._PurchaseOrderUIState_Object_EntityUIState, A._$PurchaseOrderStateSerializer, A._$PurchaseOrderUIStateSerializer, A.PurchaseOrderStateBuilder, A.PurchaseOrderUIStateBuilder, A.ViewQuoteList, A.ViewQuote, A.EditQuote, A.ShowEmailQuote, A.ShowPdfQuote, A.EditQuoteItem, A.UpdateQuote, A.UpdateQuoteClient, A.LoadQuote, A.LoadQuotes, A.LoadQuoteRequest, A.LoadQuoteFailure, A.LoadQuoteSuccess, A.LoadQuotesRequest, A.LoadQuotesFailure, A.LoadQuotesSuccess, A.AddQuoteContact, A.RemoveQuoteContact, A.AddQuoteItem, A.MoveQuoteItem, A.AddQuoteItems, A.UpdateQuoteItem, A.DeleteQuoteItem, A.SaveQuoteRequest, A.SaveQuoteSuccess, A.AddQuoteSuccess, A.SaveQuoteFailure, A.EmailQuoteRequest, A.EmailQuoteSuccess, A.EmailQuoteFailure, A.MarkSentQuotesRequest, A.MarkSentQuoteSuccess, A.MarkSentQuoteFailure, A.BulkEmailQuotesRequest, A.BulkEmailQuotesSuccess, A.BulkEmailQuotesFailure, A.ArchiveQuotesRequest, A.ArchiveQuotesSuccess, A.ArchiveQuotesFailure, A.DeleteQuotesRequest, A.DeleteQuotesSuccess, A.DeleteQuotesFailure, A.DownloadQuotesRequest, A.DownloadQuotesSuccess, A.DownloadQuotesFailure, A.RestoreQuotesRequest, A.RestoreQuotesSuccess, A.RestoreQuotesFailure, A.FilterQuotes, A.SortQuotes, A.FilterQuotesByState, A.FilterQuotesByStatus, A.FilterQuotesByCustom1, A.FilterQuotesByCustom2, A.FilterQuotesByCustom3, A.FilterQuotesByCustom4, A.ConvertQuotesToInvoices, A.ConvertQuotesToInvoicesSuccess, A.ConvertQuotesToInvoicesFailure, A.ConvertQuotesToProjects, A.ConvertQuotesToProjectsSuccess, A.ConvertQuotesToProjectsFailure, A.ApproveQuotes, A.ApproveQuoteSuccess, A.ApproveQuoteFailure, A.SaveQuoteDocumentRequest, A.SaveQuoteDocumentFailure, A.StartQuoteMultiselect, A.AddToQuoteMultiselect, A.RemoveFromQuoteMultiselect, A.ClearQuoteMultiselect, A.UpdateQuoteTab, A.QuoteState, A._QuoteUIState_Object_EntityUIState, A._$QuoteStateSerializer, A._$QuoteUIStateSerializer, A.QuoteStateBuilder, A.QuoteUIStateBuilder, A.ViewRecurringExpenseList, A.ViewRecurringExpense, A.EditRecurringExpense, A.UpdateRecurringExpense, A.LoadRecurringExpense, A.LoadRecurringExpenses, A.LoadRecurringExpenseRequest, A.LoadRecurringExpenseFailure, A.LoadRecurringExpenseSuccess, A.LoadRecurringExpensesRequest, A.LoadRecurringExpensesFailure, A.LoadRecurringExpensesSuccess, A.SaveRecurringExpenseRequest, A.SaveRecurringExpenseSuccess, A.AddRecurringExpenseSuccess, A.SaveRecurringExpenseFailure, A.ArchiveRecurringExpensesRequest, A.ArchiveRecurringExpensesSuccess, A.ArchiveRecurringExpensesFailure, A.DeleteRecurringExpensesRequest, A.DeleteRecurringExpensesSuccess, A.DeleteRecurringExpensesFailure, A.RestoreRecurringExpensesRequest, A.RestoreRecurringExpensesSuccess, A.RestoreRecurringExpensesFailure, A.FilterRecurringExpenses, A.SortRecurringExpenses, A.FilterRecurringExpensesByState, A.FilterRecurringExpensesByStatus, A.FilterRecurringExpensesByCustom1, A.FilterRecurringExpensesByCustom2, A.FilterRecurringExpensesByCustom3, A.FilterRecurringExpensesByCustom4, A.StartRecurringExpenseMultiselect, A.AddToRecurringExpenseMultiselect, A.RemoveFromRecurringExpenseMultiselect, A.ClearRecurringExpenseMultiselect, A.UpdateRecurringExpenseTab, A.StartRecurringExpensesRequest, A.StartRecurringExpensesSuccess, A.StartRecurringExpensesFailure, A.StopRecurringExpensesRequest, A.StopRecurringExpensesSuccess, A.StopRecurringExpensesFailure, A.SaveRecurringExpenseDocumentRequest, A.SaveRecurringExpenseDocumentFailure, A.RecurringExpenseState, A._RecurringExpenseUIState_Object_EntityUIState, A._$RecurringExpenseStateSerializer, A._$RecurringExpenseUIStateSerializer, A.RecurringExpenseStateBuilder, A.RecurringExpenseUIStateBuilder, A.ViewRecurringInvoiceList, A.ViewRecurringInvoice, A.EditRecurringInvoice, A.ShowPdfRecurringInvoice, A.EditRecurringInvoiceItem, A.UpdateRecurringInvoice, A.UpdateRecurringInvoiceClient, A.LoadRecurringInvoice, A.LoadRecurringInvoices, A.LoadRecurringInvoiceRequest, A.LoadRecurringInvoiceFailure, A.LoadRecurringInvoiceSuccess, A.LoadRecurringInvoicesRequest, A.LoadRecurringInvoicesFailure, A.LoadRecurringInvoicesSuccess, A.AddRecurringInvoiceContact, A.RemoveRecurringInvoiceContact, A.SaveRecurringInvoiceRequest, A.SaveRecurringInvoiceSuccess, A.AddRecurringInvoiceSuccess, A.AddRecurringInvoiceItem, A.MoveRecurringInvoiceItem, A.AddRecurringInvoiceItems, A.UpdateRecurringInvoiceItem, A.DeleteRecurringInvoiceItem, A.SaveRecurringInvoiceFailure, A.ArchiveRecurringInvoicesRequest, A.ArchiveRecurringInvoicesSuccess, A.ArchiveRecurringInvoicesFailure, A.SendNowRecurringInvoicesRequest, A.SendNowRecurringInvoicesSuccess, A.SendNowRecurringInvoicesFailure, A.UpdatePricesRecurringInvoicesRequest, A.UpdatePricesRecurringInvoicesSuccess, A.UpdatePricesRecurringInvoicesFailure, A.IncreasePricesRecurringInvoicesRequest, A.IncreasePricesRecurringInvoicesSuccess, A.IncreasePricesRecurringInvoicesFailure, A.DeleteRecurringInvoicesRequest, A.DeleteRecurringInvoicesSuccess, A.DeleteRecurringInvoicesFailure, A.RestoreRecurringInvoicesRequest, A.RestoreRecurringInvoicesSuccess, A.RestoreRecurringInvoicesFailure, A.FilterRecurringInvoices, A.SortRecurringInvoices, A.FilterRecurringInvoicesByState, A.FilterRecurringInvoicesByStatus, A.FilterRecurringInvoicesByCustom1, A.FilterRecurringInvoicesByCustom2, A.FilterRecurringInvoicesByCustom3, A.FilterRecurringInvoicesByCustom4, A.SaveRecurringInvoiceDocumentRequest, A.SaveRecurringInvoiceDocumentFailure, A.StartRecurringInvoicesRequest, A.StartRecurringInvoicesSuccess, A.StartRecurringInvoicesFailure, A.StopRecurringInvoicesRequest, A.StopRecurringInvoicesSuccess, A.StopRecurringInvoicesFailure, A.StartRecurringInvoiceMultiselect, A.AddToRecurringInvoiceMultiselect, A.RemoveFromRecurringInvoiceMultiselect, A.ClearRecurringInvoiceMultiselect, A.UpdateRecurringInvoiceTab, A.RecurringInvoiceState, A._RecurringInvoiceUIState_Object_EntityUIState, A._$RecurringInvoiceStateSerializer, A._$RecurringInvoiceUIStateSerializer, A.RecurringInvoiceStateBuilder, A.RecurringInvoiceUIStateBuilder, A.ViewReports, A.UpdateReportSettings, A.ReportsUIState, A._$ReportsUIStateSerializer, A.ReportsUIStateBuilder, A.ViewScheduleList, A.ViewSchedule, A.EditSchedule, A.UpdateSchedule, A.LoadScheduleRequest, A.LoadScheduleFailure, A.LoadScheduleSuccess, A.LoadSchedulesRequest, A.LoadSchedulesFailure, A.LoadSchedulesSuccess, A.SaveScheduleRequest, A.SaveScheduleSuccess, A.AddScheduleSuccess, A.SaveScheduleFailure, A.ArchiveSchedulesRequest, A.ArchiveSchedulesSuccess, A.ArchiveSchedulesFailure, A.DeleteSchedulesRequest, A.DeleteSchedulesSuccess, A.DeleteSchedulesFailure, A.RestoreSchedulesRequest, A.RestoreSchedulesSuccess, A.RestoreSchedulesFailure, A.FilterSchedules, A.SortSchedules, A.FilterSchedulesByState, A.FilterSchedulesByCustom1, A.FilterSchedulesByCustom2, A.FilterSchedulesByCustom3, A.FilterSchedulesByCustom4, A.StartScheduleMultiselect, A.AddToScheduleMultiselect, A.RemoveFromScheduleMultiselect, A.ClearScheduleMultiselect, A.ScheduleState, A._ScheduleUIState_Object_EntityUIState, A._$ScheduleStateSerializer, A._$ScheduleUIStateSerializer, A.ScheduleStateBuilder, A.ScheduleUIStateBuilder, A.ViewSettings, A.ClearSettingsFilter, A.ResetSettings, A.UpdateSettings, A.UpdateSettingsTab, A.UpdatedSetting, A.UpdatedSettingUI, A.UpdateSettingsTemplate, A.UpdateUserSettings, A.UploadLogoRequest, A.UploadLogoFailure, A.SaveUserSettingsRequest, A.SaveUserSettingsSuccess, A.SaveUserSettingsFailure, A.SaveAuthUserRequest, A.SaveAuthUserSuccess, A.SaveAuthUserFailure, A.ConnecOAuthUserRequest, A.ConnectOAuthUserSuccess, A.ConnecOAuthUserFailure, A.DisconnecOAuthUserRequest, A.DisconnectOAuthUserSuccess, A.DisconnecOAuthUserFailure, A.DisconnectOAuthMailerRequest, A.DisconnectOAuthMailerSuccess, A.DisconnectOAuthMailerFailure, A.DisableTwoFactorRequest, A.DisableTwoFactorSuccess, A.DisableTwoFactorFailure, A.ConnecGmailUserSuccess, A.ConnecGmailUserFailure, A.FilterSettings, A.ToggleShowNewSettings, A.ToggleShowPdfPreview, A.SettingsUIState, A._$SettingsUIStateSerializer, A.SettingsUIStateBuilder, A.StaticState, A._$StaticStateSerializer, A.StaticStateBuilder, A.ViewSubscriptionList, A.ViewSubscription, A.EditSubscription, A.UpdateSubscription, A.LoadSubscriptionRequest, A.LoadSubscriptionFailure, A.LoadSubscriptionSuccess, A.LoadSubscriptionsRequest, A.LoadSubscriptionsFailure, A.LoadSubscriptionsSuccess, A.SaveSubscriptionRequest, A.SaveSubscriptionSuccess, A.AddSubscriptionSuccess, A.SaveSubscriptionFailure, A.ArchiveSubscriptionsRequest, A.ArchiveSubscriptionsSuccess, A.ArchiveSubscriptionsFailure, A.DeleteSubscriptionsRequest, A.DeleteSubscriptionsSuccess, A.DeleteSubscriptionsFailure, A.RestoreSubscriptionsRequest, A.RestoreSubscriptionsSuccess, A.RestoreSubscriptionsFailure, A.FilterSubscriptions, A.SortSubscriptions, A.FilterSubscriptionsByState, A.FilterSubscriptionsByCustom1, A.FilterSubscriptionsByCustom2, A.FilterSubscriptionsByCustom3, A.FilterSubscriptionsByCustom4, A.StartSubscriptionMultiselect, A.AddToSubscriptionMultiselect, A.RemoveFromSubscriptionMultiselect, A.ClearSubscriptionMultiselect, A.SubscriptionState, A._SubscriptionUIState_Object_EntityUIState, A._$SubscriptionStateSerializer, A._$SubscriptionUIStateSerializer, A.SubscriptionStateBuilder, A.SubscriptionUIStateBuilder, A.ViewTaskList, A.ViewTask, A.EditTask, A.UpdateTask, A.LoadTask, A.LoadTasks, A.LoadTaskRequest, A.LoadTaskFailure, A.LoadTaskSuccess, A.EditTaskTime, A.AddTaskTime, A.UpdateTaskTime, A.DeleteTaskTime, A.LoadTasksRequest, A.LoadTasksFailure, A.LoadTasksSuccess, A.SaveTaskRequest, A.SaveTaskSuccess, A.AddTaskSuccess, A.SaveTaskFailure, A.ArchiveTaskRequest, A.ArchiveTaskSuccess, A.ArchiveTaskFailure, A.StartTasksRequest, A.StartTasksSuccess, A.StartTasksFailure, A.StopTasksRequest, A.StopTasksSuccess, A.StopTasksFailure, A.DeleteTaskRequest, A.DeleteTaskSuccess, A.DeleteTaskFailure, A.RestoreTaskRequest, A.RestoreTaskSuccess, A.RestoreTaskFailure, A.SortTasksRequest, A.SortTasksSuccess, A.SortTasksFailure, A.FilterTasks, A.SortTasks, A.FilterTasksByState, A.FilterTasksByStatus, A.FilterTasksByCustom1, A.FilterTasksByCustom2, A.FilterTasksByCustom3, A.FilterTasksByCustom4, A.UpdateKanban, A.StartTaskMultiselect, A.AddToTaskMultiselect, A.RemoveFromTaskMultiselect, A.ClearTaskMultiselect, A.SaveTaskDocumentRequest, A.SaveTaskDocumentFailure, A.UpdateTaskTab, A.TaskState, A._TaskUIState_Object_EntityUIState, A._$TaskStateSerializer, A._$TaskUIStateSerializer, A.TaskStateBuilder, A.TaskUIStateBuilder, A.ViewTaskStatusList, A.ViewTaskStatus, A.EditTaskStatus, A.UpdateTaskStatus, A.LoadTaskStatusRequest, A.LoadTaskStatusFailure, A.LoadTaskStatusSuccess, A.LoadTaskStatusesRequest, A.LoadTaskStatusesFailure, A.LoadTaskStatusesSuccess, A.SaveTaskStatusRequest, A.SaveTaskStatusSuccess, A.AddTaskStatusSuccess, A.SaveTaskStatusFailure, A.ArchiveTaskStatusesRequest, A.ArchiveTaskStatusesSuccess, A.ArchiveTaskStatusesFailure, A.DeleteTaskStatusesRequest, A.DeleteTaskStatusesSuccess, A.DeleteTaskStatusesFailure, A.RestoreTaskStatusesRequest, A.RestoreTaskStatusesSuccess, A.RestoreTaskStatusesFailure, A.FilterTaskStatuses, A.SortTaskStatuses, A.FilterTaskStatusesByState, A.FilterTaskStatusesByCustom1, A.FilterTaskStatusesByCustom2, A.FilterTaskStatusesByCustom3, A.FilterTaskStatusesByCustom4, A.StartTaskStatusMultiselect, A.AddToTaskStatusMultiselect, A.RemoveFromTaskStatusMultiselect, A.ClearTaskStatusMultiselect, A.TaskStatusState, A._TaskStatusUIState_Object_EntityUIState, A._$TaskStatusStateSerializer, A._$TaskStatusUIStateSerializer, A.TaskStatusStateBuilder, A.TaskStatusUIStateBuilder, A.ViewTaxRateList, A.ViewTaxRate, A.EditTaxRate, A.UpdateTaxRate, A.LoadTaxRateRequest, A.LoadTaxRateFailure, A.LoadTaxRateSuccess, A.LoadTaxRatesRequest, A.LoadTaxRatesFailure, A.LoadTaxRatesSuccess, A.SaveTaxRateRequest, A.SaveTaxRateSuccess, A.AddTaxRateSuccess, A.SaveTaxRateFailure, A.ArchiveTaxRateRequest, A.ArchiveTaxRatesSuccess, A.ArchiveTaxRateFailure, A.DeleteTaxRateRequest, A.DeleteTaxRatesSuccess, A.DeleteTaxRateFailure, A.RestoreTaxRateRequest, A.RestoreTaxRatesSuccess, A.RestoreTaxRateFailure, A.FilterTaxRates, A.SortTaxRates, A.FilterTaxRatesByState, A.StartTaxRateMultiselect, A.AddToTaxRateMultiselect, A.RemoveFromTaxRateMultiselect, A.ClearTaxRateMultiselect, A.TaxRateState, A._TaxRateUIState_Object_EntityUIState, A._$TaxRateStateSerializer, A._$TaxRateUIStateSerializer, A.TaxRateStateBuilder, A.TaxRateUIStateBuilder, A.ViewTokenList, A.ViewToken, A.EditToken, A.UpdateToken, A.LoadTokenRequest, A.LoadTokenFailure, A.LoadTokenSuccess, A.LoadTokensRequest, A.LoadTokensFailure, A.LoadTokensSuccess, A.SaveTokenRequest, A.SaveTokenSuccess, A.AddTokenSuccess, A.SaveTokenFailure, A.ArchiveTokensRequest, A.ArchiveTokensSuccess, A.ArchiveTokensFailure, A.DeleteTokensRequest, A.DeleteTokensSuccess, A.DeleteTokensFailure, A.RestoreTokensRequest, A.RestoreTokensSuccess, A.RestoreTokensFailure, A.FilterTokens, A.SortTokens, A.FilterTokensByState, A.FilterTokensByCustom1, A.FilterTokensByCustom2, A.FilterTokensByCustom3, A.FilterTokensByCustom4, A.StartTokenMultiselect, A.AddToTokenMultiselect, A.RemoveFromTokenMultiselect, A.ClearTokenMultiselect, A.TokenState, A._TokenUIState_Object_EntityUIState, A._$TokenStateSerializer, A._$TokenUIStateSerializer, A.TokenStateBuilder, A.TokenUIStateBuilder, A.ViewTransactionList, A.ViewTransaction, A.EditTransaction, A.UpdateTransaction, A.LoadTransactions, A.LoadTransactionRequest, A.LoadTransactionFailure, A.LoadTransactionSuccess, A.LoadTransactionsRequest, A.LoadTransactionsFailure, A.LoadTransactionsSuccess, A.SaveTransactionRequest, A.SaveTransactionSuccess, A.AddTransactionSuccess, A.SaveTransactionFailure, A.ArchiveTransactionsRequest, A.ArchiveTransactionsSuccess, A.ArchiveTransactionsFailure, A.DeleteTransactionsRequest, A.DeleteTransactionsSuccess, A.DeleteTransactionsFailure, A.RestoreTransactionsRequest, A.RestoreTransactionsSuccess, A.RestoreTransactionsFailure, A.ConvertTransactionToPaymentRequest, A.ConvertTransactionToPaymentSuccess, A.ConvertTransactionToPaymentFailure, A.LinkTransactionToPaymentRequest, A.LinkTransactionToPaymentSuccess, A.LinkTransactionToPaymentFailure, A.UnlinkTransactionsRequest, A.UnlinkTransactionsSuccess, A.UnlinkTransactionsFailure, A.LinkTransactionToExpenseRequest, A.LinkTransactionToExpenseSuccess, A.LinkTransactionToExpenseFailure, A.ConvertTransactionsToExpensesRequest, A.ConvertTransactionsToExpensesSuccess, A.ConvertTransactionsToExpensesFailure, A.ConvertTransactionsRequest, A.ConvertTransactionsSuccess, A.ConvertTransactionsFailure, A.FilterTransactions, A.SortTransactions, A.FilterTransactionsByState, A.FilterTransactionsByStatus, A.FilterTransactionsByCustom1, A.FilterTransactionsByCustom2, A.FilterTransactionsByCustom3, A.FilterTransactionsByCustom4, A.StartTransactionMultiselect, A.AddToTransactionMultiselect, A.RemoveFromTransactionMultiselect, A.ClearTransactionMultiselect, A.TransactionState, A._TransactionUIState_Object_EntityUIState, A._$TransactionStateSerializer, A._$TransactionUIStateSerializer, A.TransactionStateBuilder, A.TransactionUIStateBuilder, A.ViewTransactionRuleList, A.ViewTransactionRule, A.EditTransactionRule, A.UpdateTransactionRule, A.LoadTransactionRuleRequest, A.LoadTransactionRuleFailure, A.LoadTransactionRuleSuccess, A.LoadTransactionRulesRequest, A.LoadTransactionRulesFailure, A.LoadTransactionRulesSuccess, A.SaveTransactionRuleRequest, A.SaveTransactionRuleSuccess, A.AddTransactionRuleSuccess, A.SaveTransactionRuleFailure, A.ArchiveTransactionRulesRequest, A.ArchiveTransactionRulesSuccess, A.ArchiveTransactionRulesFailure, A.DeleteTransactionRulesRequest, A.DeleteTransactionRulesSuccess, A.DeleteTransactionRulesFailure, A.RestoreTransactionRulesRequest, A.RestoreTransactionRulesSuccess, A.RestoreTransactionRulesFailure, A.FilterTransactionRules, A.SortTransactionRules, A.FilterTransactionRulesByState, A.FilterTransactionRulesByCustom1, A.FilterTransactionRulesByCustom2, A.FilterTransactionRulesByCustom3, A.FilterTransactionRulesByCustom4, A.StartTransactionRuleMultiselect, A.AddToTransactionRuleMultiselect, A.RemoveFromTransactionRuleMultiselect, A.ClearTransactionRuleMultiselect, A.TransactionRuleState, A._TransactionRuleUIState_Object_EntityUIState, A._$TransactionRuleStateSerializer, A._$TransactionRuleUIStateSerializer, A.TransactionRuleStateBuilder, A.TransactionRuleUIStateBuilder, A.EntityUIState, A.ListUIState, A._$ListUIStateSerializer, A.ListUIStateBuilder, A.PrefState, A.PrefStateSortField, A.CompanyPrefState, A.HistoryRecord, A._$PrefStateSerializer, A._$PrefStateSortFieldSerializer, A._$CompanyPrefStateSerializer, A._$AppLayoutSerializer, A._$ModuleLayoutSerializer, A._$AppSidebarModeSerializer, A._$HistoryRecordSerializer, A.PrefStateBuilder, A.PrefStateSortFieldBuilder, A.CompanyPrefStateBuilder, A.HistoryRecordBuilder, A.UpdateCurrentRoute, A.UIState, A._$UIStateSerializer, A.UIStateBuilder, A.ViewUserList, A.ViewUser, A.EditUser, A.UpdateUser, A.LoadUserRequest, A.LoadUserFailure, A.LoadUserSuccess, A.LoadUsersRequest, A.LoadUsersFailure, A.LoadUsersSuccess, A.SaveUserRequest, A.SaveUserSuccess, A.AddUserSuccess, A.SaveUserFailure, A.ArchiveUserRequest, A.ArchiveUserSuccess, A.ArchiveUserFailure, A.DeleteUserRequest, A.DeleteUserSuccess, A.DeleteUserFailure, A.RestoreUserRequest, A.RestoreUserSuccess, A.RestoreUserFailure, A.RemoveUserRequest, A.RemoveUserSuccess, A.RemoveUserFailure, A.ResendInviteRequest, A.ResendInviteSuccess, A.ResendInviteFailure, A.FilterUsers, A.SortUsers, A.FilterUsersByState, A.FilterUsersByCustom1, A.FilterUsersByCustom2, A.FilterUsersByCustom3, A.FilterUsersByCustom4, A.StartUserMultiselect, A.AddToUserMultiselect, A.RemoveFromUserMultiselect, A.ClearUserMultiselect, A.UserState, A._UserUIState_Object_EntityUIState, A._$UserStateSerializer, A._$UserUIStateSerializer, A.UserStateBuilder, A.UserUIStateBuilder, A.ViewVendorList, A.ViewVendor, A.EditVendor, A.UpdateVendor, A.LoadVendor, A.LoadVendors, A.LoadVendorRequest, A.LoadVendorFailure, A.LoadVendorSuccess, A.LoadVendorsRequest, A.LoadVendorsFailure, A.LoadVendorsSuccess, A.SaveVendorRequest, A.SaveVendorSuccess, A.AddVendorSuccess, A.SaveVendorFailure, A.ArchiveVendorRequest, A.ArchiveVendorSuccess, A.ArchiveVendorFailure, A.DeleteVendorRequest, A.DeleteVendorSuccess, A.DeleteVendorFailure, A.RestoreVendorRequest, A.RestoreVendorSuccess, A.RestoreVendorFailure, A.EditVendorContact, A.AddVendorContact, A.UpdateVendorContact, A.DeleteVendorContact, A.FilterVendors, A.SortVendors, A.FilterVendorsByState, A.FilterVendorsByCustom1, A.FilterVendorsByCustom2, A.FilterVendorsByCustom3, A.FilterVendorsByCustom4, A.StartVendorMultiselect, A.AddToVendorMultiselect, A.RemoveFromVendorMultiselect, A.ClearVendorMultiselect, A.SaveVendorDocumentRequest, A.SaveVendorDocumentFailure, A.UpdateVendorTab, A.VendorState, A._VendorUIState_Object_EntityUIState, A._$VendorStateSerializer, A._$VendorUIStateSerializer, A.VendorStateBuilder, A.VendorUIStateBuilder, A.ViewWebhookList, A.ViewWebhook, A.EditWebhook, A.UpdateWebhook, A.LoadWebhookRequest, A.LoadWebhookFailure, A.LoadWebhookSuccess, A.LoadWebhooksRequest, A.LoadWebhooksFailure, A.LoadWebhooksSuccess, A.SaveWebhookRequest, A.SaveWebhookSuccess, A.AddWebhookSuccess, A.SaveWebhookFailure, A.ArchiveWebhooksRequest, A.ArchiveWebhooksSuccess, A.ArchiveWebhooksFailure, A.DeleteWebhooksRequest, A.DeleteWebhooksSuccess, A.DeleteWebhooksFailure, A.RestoreWebhooksRequest, A.RestoreWebhooksSuccess, A.RestoreWebhooksFailure, A.FilterWebhooks, A.SortWebhooks, A.FilterWebhooksByState, A.FilterWebhooksByCustom1, A.FilterWebhooksByCustom2, A.FilterWebhooksByCustom3, A.FilterWebhooksByCustom4, A.StartWebhookMultiselect, A.AddToWebhookMultiselect, A.RemoveFromWebhookMultiselect, A.ClearWebhookMultiselect, A.WebhookState, A._WebhookUIState_Object_EntityUIState, A._$WebhookStateSerializer, A._$WebhookUIStateSerializer, A.WebhookStateBuilder, A.WebhookUIStateBuilder, A.ConfirmEmailVM, A.__AutocompleteEntity_Object_SelectableEntity, A.AppDrawerVM, A.MenuDrawerVM, A._TheState, A.EntityPresenter, A.ExamplePaymentQueueDelegate, A.LoginVM, A.BankAccountListVM, A.BankAccountScreenVM, A.BankAccountEditVM, A.BankAccountViewVM, A.ClientListVM, A.ClientPdfVM, A.ClientScreenVM, A.ClientEditContactsVM, A.ClientEditVM, A.ClientViewVM, A.CompanyGatewayListVM, A.CompanyGatewayScreenVM, A.CompanyGatewayEditVM, A.CompanyGatewayViewVM, A.EmailEntityVM, A.EntityListVM, A.EntityPdfVM, A.CreditScreenVM, A.EntityEditDetailsVM, A.EntityEditItemsVM, A.EntityEditNotesVM, A.EntityEditPDFVM, A.AbstractInvoiceEditVM, A.AbstractInvoiceViewVM, A.DashboardVM, A.DesignListVM, A.DesignScreenVM, A.DesignEditVM, A.DesignViewVM, A.DocumentListVM, A.DocumentScreenVM, A.DocumentEditVM, A.DocumentViewVM, A.AbstractExpenseEditVM, A.ExpenseListVM, A.ExpenseScreenVM, A.AbstractExpenseViewVM, A.ExpenseCategoryEditVM, A.ExpenseCategoryListVM, A.ExpenseCategoryScreenVM, A.ExpenseCategoryViewVM, A.GroupEditVM, A.GroupListVM, A.GroupScreenVM, A.GroupViewVM, A.EntityEditContactsVM, A.InvoiceScreenVM, A.PaymentEditVM, A.PaymentListVM, A.PaymentScreenVM, A.PaymentRefundVM, A.PaymentViewVM, A.PaymentTermEditVM, A.PaymentTermListVM, A.PaymentTermScreenVM, A.PaymentTermViewVM, A.ProductEditVM, A.ProductListVM, A.ProductScreenVM, A.ProductViewVM, A.ProjectEditVM, A.ProjectListVM, A.ProjectScreenVM, A.ProjectViewVM, A.PurchaseOrderScreenVM, A.QuoteScreenVM, A.RecurringExpenseListVM, A.RecurringExpenseScreenVM, A.RecurringInvoiceListVM, A.RecurringInvoiceScreenVM, A.ReportResult, A.ReportElement, A.ReportsScreenVM, A.GroupTotals, A.ScheduleEditVM, A.ScheduleListVM, A.ScheduleScreenVM, A.ScheduleViewVM, A.AccountManagementVM, A.ClientPortalVM, A.CompanyDetailsVM, A.CreditCardsAndBanksVM, A.CustomFieldsVM, A.DataVisualizationsVM, A.DeviceSettingsVM, A.EmailSettingsVM, A.ExpenseSettingsVM, A.GeneratedNumbersVM, A.ImportExportVM, A.InvoiceDesignVM, A.LocalizationSettingsVM, A.PaymentSettingsVM, A.ProductSettingsVM, A.SettingsListVM, A.SettingsScreenVM, A.TaskSettingsVM, A.TaxSettingsVM, A.TemplatesAndRemindersVM, A.UserDetailsVM, A.WorkflowSettingsVM, A.SubscriptionEditVM, A.SubscriptionListVM, A.SubscriptionScreenVM, A.SubscriptionViewVM, A.TaskEditDetailsVM, A.TaskEditTimesVM, A.TaskEditVM, A.KanbanVM, A.TaskListVM, A.TaskScreenVM, A.TaskViewVM, A.TaskStatusEditVM, A.TaskStatusListVM, A.TaskStatusScreenVM, A.TaskStatusViewVM, A.TaxRateEditVM, A.TaxRateListVM, A.TaxRateScreenVM, A.TaxRateViewVM, A.TokenEditVM, A.TokenListVM, A.TokenScreenVM, A.TokenViewVM, A.TransactionEditVM, A.TransactionListVM, A.TransactionScreenVM, A.TransactionViewVM, A.TransactionRuleEditVM, A.TransactionRuleListVM, A.TransactionRuleScreenVM, A.TransactionRuleViewVM, A.UserEditVM, A.UserListVM, A.UserScreenVM, A.UserViewVM, A.VendorEditContactsVM, A.VendorEditVM, A.VendorListVM, A.VendorScreenVM, A.VendorViewVM, A.WebhookEditVM, A.WebhookViewVM, A.WebhookListVM, A.WebhookScreenVM, A.Debouncer, A.SimpleDebouncer, A.PersistDebouncer, A.LocaleCodeAware, A.LocalizationsProvider, A._MarkdownToDocument, A._InlineMarkdownToDocument, A.BlockSyntax, A.SuperEditorDemoTextItem, A._AttributedTextEditingController_Object_ChangeNotifier, A.LinkifyElement, A.Linkifier, A.LinkifyOptions, A.LocalAuthentication, A.AuthMessages, A.AuthenticationOptions, A.Level, A.LogRecord, A.Logger, A.Element1, A.Text1, A.UnparsedContent, A.BlockParser, A.ListItem, A.Document0, A.LinkReference, A.ExtensionSet, A.InlineParser, A.InlineSyntax, A.SimpleDelimiter, A.DelimiterRun, A.InlineLink, A.AuthenticationResult, A.Configuration, A.BrowserAuthOptions0, A.PublicClientApplication, A.CommonAuthorizationUrlRequest, A.MsalJsException, A.CupertinoPopoverToolbarAligner, A._MenuPageInfo, A.LeaderMenuFocalPoint, A.Context, A.Style, A.ParsedPath, A.PathException, A.MissingPlatformDirectoryException, A.PdfPageFormat, A.PdfRasterBase, A.WebDelegate, A.PinTheme, A._PinputUtilsMixin, A.Platform, A.Mutex, A.PdfPreviewActionBounds, A.PdfPreviewPageData, A.PdfPreviewRaster, A.PrintJob, A.PrintJobs, A.PrintingInfo, A._QrBitBuffer_Object_ListMixin, A.QrByte, A.InputTooLongException, A.QrPolynomial, A.QrCode, A.QrImage, A.QrRsBlock, A.PaintCache, A._PaintMetrics, A.QrEyeStyle, A.QrDataModuleStyle, A.QrValidationResult, A.MiddlewareClass, A.Store, A.TypedReducer, A.TypedMiddleware, A.RoundedLoadingButtonController, A._Wrapper, A.ForwardingSink, A._Empty, A.ErrorAndStackTrace, A._MultiControllerSink, A.EnvironmentVariables, A.HubAdapter, A.NoOpClient, A.NoOpHub, A.ISentrySpan, A.PlatformChecker, A.Breadcrumb, A.SdkVersion, A.SentryId, A.SentryLevel, A.SpanId, A.SentryOptions, A.SentrySpanContext, A.NoOpTransport, A.SentryFlutterWeb, A.SharedPreferences, A.PreferencesFilter, A.GetAllParameters, A.AuthorizationCredentialAppleID, A.AppleIDAuthorizationRequest, A.SignInWithAppleNotSupportedException, A.SignInWithAppleAuthorizationException, A.SignInWithAppleCredentialsException, A.WebAuthenticationOptions, A.SourceFile, A.SourceLocationMixin, A.SourceSpanMixin, A.Highlighter, A._Highlight, A._Line, A.SourceLocation, A.SourceSpanException, A._Rebuild, A._ReactiveModel_Object_IObservable, A.IObservable, A.SnapState, A.SnapError, A.StringScanner, A.DocumentChangeLog, A.NodeInsertedEvent, A.NodeRemovedEvent, A.NodeChangeEvent, A.DocumentPosition, A.DocumentNode, A._DocumentComposer_Object_ChangeNotifier, A._ComposerPreferences_Object_ChangeNotifier, A.ClearSelectionRequest, A.ChangeSelectionRequest, A.ChangeSelectionCommand, A.SelectionChangeEvent, A.ComposingRegionChangeEvent, A.DocumentSelectionChange, A.ChangeComposingRegionRequest, A.ChangeComposingRegionCommand, A.ClearComposingRegionRequest, A.ChangeInteractionModeRequest, A.ChangeInteractionModeCommand, A.DebugPaintConfig, A.DocumentLayoutEditable, A.DocumentComponent, A.ProxyDocumentComponent, A.MovementModifier, A.DocumentRange, A.SuperEditorContext, A.Editor, A._DocumentEditorCommandExecutor, A.EditCommand, A.EditContext, A.EditorCommandQueue, A.DocumentEdit, A.MutableDocument, A.Stylesheet, A.StyleRule, A.BlockSelector, A._LastBlockMatcher, A.CascadingPadding, A.SelectionStyles, A.ColorAttribution, A.LinkAttribution, A.BlockquoteComponentBuilder, A.SingleColumnLayoutComponentViewModel, A.DeleteUpstreamAtBeginningOfBlockNodeCommand, A.CommonEditorOperations, A.PasteEditorRequest, A.PasteEditorCommand, A.DeleteUpstreamCharacterRequest, A.DeleteUpstreamCharacterCommand, A.UpdateComposerTextStylesReaction, A.SuperEditorDebugVisualsConfig, A.ParagraphPrefixConversionReaction, A.ImageUrlConversionReaction, A.LinkifyReaction, A.SuperEditorAndroidControlsController, A.SuperEditorAndroidToolbarFocalPointDocumentLayerBuilder, A.SuperEditorAndroidHandlesDocumentLayerBuilder, A.SuperEditorIosControlsController, A.TextDeltasDocumentEditor, A.TextInputConnectionDecorator, A.DocumentImeSerializer, A._DeltaTextInputClientDecorator_Object_DeltaTextInputClient, A.KeyboardEditingToolbarOperations, A.SuperEditorImePolicies, A.SuperEditorImeConfiguration, A._AutoScrollController_Object_ChangeNotifier, A.HorizontalRuleComponentBuilder, A.ImageComponentBuilder, A.SingleColumnDocumentComponentContext, A.SingleColumnLayoutPresenter, A.SingleColumnLayoutPresenterChangeListener, A.SingleColumnLayoutStylePhase, A.SingleColumnLayoutViewModel, A._DocumentNodeSelection, A.SingleColumnLayoutComponentStyles, A.DocumentNodeSelection, A.ListItemComponentBuilder, A.IndentListItemRequest, A.IndentListItemCommand, A.UnIndentListItemRequest, A.UnIndentListItemCommand, A.ConvertListItemToParagraphRequest, A.ConvertListItemToParagraphCommand, A.ConvertParagraphToListItemRequest, A.ConvertParagraphToListItemCommand, A.ChangeListItemTypeRequest, A.ChangeListItemTypeCommand, A.SplitListItemRequest, A.SplitListItemCommand, A.Intention, A.InsertNodeAtIndexRequest, A.InsertNodeBeforeNodeRequest, A.InsertNodeAfterNodeRequest, A.ReplaceNodeRequest, A.ReplaceNodeWithEmptyParagraphWithCaretRequest, A.ReplaceNodeWithEmptyParagraphWithCaretCommand, A.DeleteContentRequest, A.DeleteContentCommand, A.DeleteUpstreamAtBeginningOfNodeRequest, A.DeleteNodeRequest, A.DeleteNodeCommand, A.ParagraphComponentBuilder, A.ChangeParagraphBlockTypeRequest, A.ChangeParagraphBlockTypeCommand, A.CombineParagraphsRequest, A.CombineParagraphsCommand, A.SplitParagraphRequest, A.SplitParagraphCommand, A.DeleteUpstreamAtBeginningOfParagraphCommand, A.UpstreamDownstreamNodePosition, A.UpstreamDownstreamNodeSelection, A._SelectionLeadersDocumentLayerBuilder, A.SuperEditorSelectionPolicies, A.DefaultCaretOverlayBuilder, A._ContentTapDelegate_Object_ChangeNotifier, A.TaskComponentBuilder, A.ChangeTaskCompletionRequest, A.ChangeTaskCompletionCommand, A.ConvertTaskToParagraphCommand, A.SplitExistingTaskRequest, A.SplitExistingTaskCommand, A.TextComponentViewModel, A.ToggleTextAttributionsRequest, A.ToggleTextAttributionsCommand, A.InsertTextRequest, A.InsertTextCommand, A.ConvertTextNodeToParagraphRequest, A.InsertAttributedTextCommand, A.InsertCharacterAtCaretRequest, A.UnknownComponentBuilder, A.Logger0, A.AutoScroller, A.ProxyTextComposable, A._IndexedSlot, A.AxisOffset, A.DocumentScroller, A.DocumentSelectionLayout, A.SelectionLayerLinks, A.OverlayGroupPriority, A.UrlLauncher, A._TapTracker0, A._CountdownZoned0, A.AndroidDocumentLongPressSelectionStrategy, A.FloatingCursorController0, A.FloatingCursorListener, A.IosLongPressSelectionStrategy, A._MagnifierAndToolbarController_Object_ChangeNotifier, A.DragHandleAutoScroller, A._PopoverController_Object_ChangeNotifier, A.PopoverGeometry, A.ToolbarConfig, A._AndroidEditingOverlayController_Object_ChangeNotifier, A._EstimatedLineHeight, A.TextFieldScroller, A._TextScrollController_Object_ChangeNotifier, A._IOSEditingOverlayController_Object_ChangeNotifier, A._FloatingCursorController_Object_ChangeNotifier, A.SuperTextFieldContext, A.CaretStyle, A._BlinkController_Object_ChangeNotifier, A.ProseTextBlock, A.RenderParagraphProseTextLayout, A.SelectionHighlightStyle, A.TextLayoutUnderline, A.UnderlineStyle, A._PaintableUnderline, A.ArMessages, A.CaMessages, A.CsMessages, A.DaMessages, A.DeMessages, A.EnMessages, A.EnShortMessages, A.EsMessages, A.EsShortMessages, A.FaMessages, A.FrMessages, A.FrShortMessages, A.HuMessages, A.HuShortMessages, A.ItMessages, A.ItShortMessages, A.JaMessages, A.NbNoShortMessages, A.NbNoMessages, A.NlMessages, A.NlShortMessages, A.PlMessages, A.PtBrMessages, A.PtBrShortMessages, A.RoMessages, A.RoShortMessages, A.RuMessages, A.RuShortMessages, A.SvMessages, A.SvShortMessages, A.ThMessages, A.ThShortMessages, A.ZhMessages, A.WebViewConfiguration, A.InAppWebViewConfiguration, A.LaunchOptions, A.Uuid, A.Matrix3, A.Matrix40, A.Quad, A.Quaternion, A.Vector3, A.Vector4, A.Version, A.VsScrollbarStyle, A.EventStreamProvider0, A._EventStreamSubscription0, A.WindowListener]); + _inheritMany(A.Closure, [A.Closure0Args, A.AppBootstrap_prepareEngineInitializer_closure0, A.AppBootstrap__prepareAppRunner_closure, A.CkCanvas_saveLayerWithFilter_closure, A._canvasKitJsUrls_closure, A._downloadCanvasKitJs_loadEventHandler, A._downloadCanvasKitJs_errorEventHandler, A.HtmlViewEmbedder_getOverlayCanvases_closure, A.HtmlViewEmbedder_submitFrame_closure, A.HtmlViewEmbedder__updateOverlays_closure, A.HtmlViewEmbedder__updateOverlays_closure0, A.HtmlViewEmbedder__updateOverlays_closure1, A.diffViewList_lookForwards, A.diffViewList_lookBackwards, A.SkiaFontCollection_registerDownloadedFonts_makeRegisterFont, A.readChunked_closure, A.ImageFilterEngineLayer_preroll_closure, A._finalizationRegistry_closure, A.CkPaint_imageFilter_closure, A.Closure2Args, A._getEffectiveFontFamilies_closure, A.ClipboardMessageHandler_setDataMethodCall_closure, A.ClipboardMessageHandler_setDataMethodCall_closure0, A.ClipboardMessageHandler_getDataMethodCall_closure, A.ClipboardMessageHandler_getDataMethodCall_closure0, A.ClipboardMessageHandler_getDataMethodCall__closure, A.ClipboardMessageHandler_hasStringsMethodCall_closure, A.ClipboardMessageHandler_hasStringsMethodCall_closure0, A.ClipboardMessageHandler_hasStringsMethodCall__closure, A.DomConsoleExtension_get_warn_closure, A.DomNavigatorExtension_get_languages_closure, A._ttPolicy_closure, A.sendFontChangeMessage_closure, A.sendFontChangeMessage__closure, A.FontFallbackManager$__closure, A.FontFallbackManager$__closure0, A.FontFallbackManager$__closure1, A.FontFallbackManager$__closure2, A.FontFallbackManager$__closure3, A.FontFallbackManager$__closure4, A.FontFallbackManager_findFontsForMissingCodePoints_closure, A.FontFallbackManager__selectFont_closure, A.fetchFontManifest_closure, A.fetchFontManifest_closure0, A.fetchFontManifest_closure1, A.fetchFontManifest__closure, A.HtmlRenderer_decodeImageFromPixels_executeCallback, A.HtmlRenderer_decodeImageFromPixels_executeCallback_closure, A.NormalizedGradient_NormalizedGradient_closure, A.HtmlCodec_getNextFrame_closure, A.HtmlCodec_getNextFrame_closure0, A.HtmlCodec__decodeUsingOnLoad_closure, A.HtmlCodec__decodeUsingOnLoad_closure0, A.initializeEngineServices__closure, A.FlutterEngineInitializer__staticInteropFactoryStub_closure, A.FlutterAppRunner__staticInteropFactoryStub_closure, A.futureToPromise__closure, A.futureToPromise__closure0, A._kLogicalKeyToModifierGetter_closure, A._kLogicalKeyToModifierGetter_closure0, A._kLogicalKeyToModifierGetter_closure1, A._kLogicalKeyToModifierGetter_closure2, A._kLogicalKeyToModifierGetter_closure3, A._kLogicalKeyToModifierGetter_closure4, A._kLogicalKeyToModifierGetter_closure5, A._kLogicalKeyToModifierGetter_closure6, A.KeyboardBinding$__closure, A.KeyboardBinding$__closure0, A.KeyboardBinding__addEventListener_loggedHandler, A.KeyboardBinding__onKeyData_closure, A.KeyboardConverter__scheduleAsyncEvent_closure, A.KeyboardConverter_handleEvent_closure, A.preventDefaultListener_closure, A.MultiEntriesBrowserHistory_onPopState_closure, A.SingleEntryBrowserHistory_onPopState_closure, A.SingleEntryBrowserHistory_onPopState_closure0, A.FallbackFontComponent__activeFonts_closure, A.EnginePlatformDispatcher__zonedPlatformMessageResponseCallback_closure, A.EnginePlatformDispatcher__sendPlatformMessage_closure, A.EnginePlatformDispatcher__sendPlatformMessage_closure0, A.EnginePlatformDispatcher__sendPlatformMessage_closure1, A.EnginePlatformDispatcher__sendPlatformMessage_closure2, A.EnginePlatformDispatcher__addLocaleChangedListener_closure, A.EnginePlatformDispatcher__addBrightnessMediaQueryListener_closure, A.EnginePlatformDispatcher_replyToPlatformMessage_closure, A.SafariPointerEventWorkaround_workAroundMissingPointerEvents_closure, A._BaseAdapter_addEventListener_loggedHandler, A._PointerAdapter__addPointerEventListener_closure, A._PointerAdapter_setup_closure, A._PointerAdapter_setup_closure0, A._PointerAdapter_setup_closure1, A._PointerAdapter_setup_closure2, A._PointerAdapter_setup_closure3, A._PointerAdapter_setup_closure4, A._TouchAdapter__addTouchEventListener_closure, A._TouchAdapter_setup_closure, A._TouchAdapter_setup_closure0, A._TouchAdapter_setup_closure1, A._TouchAdapter_setup_closure2, A._MouseAdapter__addMouseEventListener_closure, A._MouseAdapter_setup_closure, A._MouseAdapter_setup_closure0, A._MouseAdapter_setup_closure1, A._MouseAdapter_setup_closure2, A._MouseAdapter_setup_closure3, A.RawKeyboard$__closure, A.RawKeyboard$__closure0, A.RawKeyboard__handleHtmlEvent_closure0, A.AccessibilityFocusManager_manage_closure, A.AccessibilityFocusManager_manage_closure0, A.Incrementable_closure, A.Incrementable_closure0, A.Scrollable_update_closure0, A.Scrollable_update_closure1, A.SemanticsObject_visitDepthFirst_closure, A.EngineSemanticsOwner__finalizeTree_closure, A.DesktopSemanticsEnabler_prepareAccessibilityPlaceholder_closure, A.MobileSemanticsEnabler_prepareAccessibilityPlaceholder_closure, A.Tappable_update_closure, A.TextField__initializeForBlink_closure, A.TextField__initializeForBlink_closure0, A.TextField__initializeForWebkit_closure, A.TextField__initializeForWebkit_closure0, A.TextField__invokeIosWorkaround_closure0, A.CanvasParagraph_computeLineMetrics_closure, A.EngineAutofillForm_addInputEventListeners_addSubscriptionForKey, A.EngineAutofillForm_addInputEventListeners_addSubscriptionForKey_closure, A.DefaultTextEditingStrategy_addEventHandlers_closure, A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure, A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure0, A.DefaultTextEditingStrategy_preventDefaultForMouseEvents_closure1, A.IOSTextEditingStrategy_addEventHandlers_closure, A.IOSTextEditingStrategy_addEventHandlers_closure0, A.IOSTextEditingStrategy__addTapListener_closure, A.AndroidTextEditingStrategy_addEventHandlers_closure, A.FirefoxTextEditingStrategy_addEventHandlers_closure, A.FirefoxTextEditingStrategy_addEventHandlers_closure0, A.HybridTextEditing__startEditing_closure, A.EditableTextGeometry_EditableTextGeometry$fromFrameworkMessage_closure, A.bytesToHexString_closure, A.CustomElementDimensionsProvider__closure, A.CustomElementEmbeddingStrategy_initialize_closure, A.FullPageEmbeddingStrategy_initialize_closure, A._CastListBase_removeWhere_closure, A._CastListBase_retainWhere_closure, A.CastSet_removeWhere_closure, A.CastMap_entries_closure, A.Instantiation, A.TearOffClosure, A.JsLinkedHashMap_values_closure, A.JsLinkedHashMap_containsValue_closure, A.initHooks_closure, A.initHooks_closure1, A._StringStream__goalToEventCode_closure, A._AsyncRun__initializeScheduleImmediate_internalCallback, A._AsyncRun__initializeScheduleImmediate_closure, A._awaitOnObject_closure, A._asyncStarHelper_closure0, A._SyncBroadcastStreamController__sendData_closure, A._SyncBroadcastStreamController__sendError_closure, A._SyncBroadcastStreamController__sendDone_closure, A.Future_wait_closure, A.FutureExtensions_onError_closure, A._Future__chainForeignFuture_closure, A._Future__propagateToListeners_handleWhenCompleteCallback_closure, A._Future_timeout_closure0, A.Stream_Stream$fromFuture_closure, A.Stream_asyncMap_closure_add, A.Stream_asyncMap__closure, A.Stream_fold_closure0, A.Stream_fold__closure0, A.Stream_forEach_closure0, A.Stream_forEach__closure0, A.Stream_length_closure, A.Stream_isEmpty_closure0, A.Stream_toList_closure, A.Stream_first_closure0, A._StreamHandlerTransformer_closure, A._RootZone_bindUnaryCallbackGuarded_closure, A._HashMap_values_closure, A._CustomHashMap_closure, A._LinkedCustomHashMap_closure, A.MapBase_entries_closure, A.SplayTreeMap_closure, A.SplayTreeSet_closure, A._JsonMap_values_closure, A._BigIntImpl_hashCode_finish, A._BigIntImpl_toDouble_readBits, A.DateTime_parse_parseIntOrZero, A.DateTime_parse_parseMilliAndMicroseconds, A._Uri__splitQueryStringAll_parsePair, A._createTables_setChars, A._createTables_setRange, A.CanvasElement_toBlob_closure, A._ChildrenElementList__filter_closure, A._EventStreamSubscription_closure, A._EventStreamSubscription_onData_closure, A.FilteredElementList__iterable_closure, A.FilteredElementList__iterable_closure0, A.FilteredElementList_removeRange_closure0, A._FileStream__readBlock_closure, A._FileStream__start_onReady, A._FileStream__start_onOpenFile, A._File_open_closure, A._File_length_closure, A._File_readAsBytes_readUnsized, A._File_readAsBytes_readUnsized_read_closure, A._File_readAsBytes_readSized_read_closure, A._File_readAsBytes_closure, A._File_readAsBytes__closure, A._RandomAccessFile_close_closure, A._RandomAccessFile_read_closure, A._RandomAccessFile_readInto_closure, A._RandomAccessFile_setPosition_closure, A._RandomAccessFile_length_closure, A._convertToJS_closure, A._convertToJS_closure0, A._wrapToDart_closure, A._wrapToDart_closure0, A._wrapToDart_closure1, A.jsify__convert, A.promiseToFuture_closure, A.promiseToFuture_closure0, A.dartify_convert, A.KeyData__quotedCharCode_closure, A.bootstrapEngine_closure, A.HashUrlStrategy_addPopStateListener_wrappedFn, A.HashUrlStrategy__waitForPopState_closure, A.AttributedSpans__getStartingMarkerAtOrBefore_closure, A.AttributedSpans__getStartingMarkerAtOrBefore_closure0, A.AttributedSpans__getEndingMarkerAtOrAfter_closure, A.AttributedSpans__getEndingMarkerAtOrAfter_closure0, A.AttributedSpans_addAttribution_closure, A.AttributedSpans_addAttribution_closure0, A.AttributedSpans_addAttribution_closure1, A.AttributedSpans_addAttribution_closure2, A.AttributedSpans_removeAttribution_closure, A.AttributedSpans_removeAttribution_closure0, A.AttributedSpans_removeAttribution_closure1, A.AttributedSpans_removeAttribution_closure2, A.AttributedSpans_removeAttribution_closure3, A.AttributedSpans_removeAttribution_closure4, A.AttributedSpans__isContinuousAttribution_closure, A.AttributedSpans__getNearestMarkerAtOrBefore_closure, A.AttributedSpans__getNearestMarkerAtOrBefore_closure0, A.AttributedSpans__getMarkerAt_closure, A.AttributedSpans__getMarkerAt_closure0, A.AttributedSpans__getMarkerAt_closure1, A.AttributedSpans__insertMarker_closure, A.AttributedSpans__mergeBackToBackAttributions_closure, A.AttributedSpans__mergeBackToBackAttributions_closure0, A.AttributedSpans__mergeBackToBackAttributions_closure1, A.AttributedSpans_copyAttributionRegion_closure, A.AttributedSpans_copyAttributionRegion_closure0, A.AttributedSpans_copyAttributionRegion_closure2, A.AttributedSpans_copyAttributionRegion_closure3, A.AttributedSpans_copyAttributionRegion_closure4, A.AttributedSpans_copyAttributionRegion_closure5, A.AttributedSpans_pushAttributionsBack_closure, A.AttributedSpans_contractAttributions_closure, A.AttributedSpans_contractAttributions_closure0, A.AttributedSpans_contractAttributions_closure1, A.AttributedSpans_contractAttributions_closure2, A.AttributedSpans_contractAttributions_closure3, A.BoardItemState_build_closure, A.BoardItemState_build_closure3, A.BoardListState_build_closure2, A.BoardViewState_build_closure, A.BoardViewState_build_closure3, A.BoardViewState_build_closure5, A.BoardViewState_build_closure4, A.BoardViewState_build_closure6, A.BuiltListMultimap_BuiltListMultimap_closure, A.BuiltListMultimap_hashCode_closure, A.BuiltListMultimap_forEach__closure, A.ListMultimapBuilder_replace_closure, A.BuiltMap_BuiltMap_closure, A.BuiltMap_BuiltMap$from_closure, A.BuiltMap_hashCode_closure, A.BuiltSet_hashCode_closure, A.BuiltSetMultimap_hashCode_closure, A.BuiltSetMultimap_forEach__closure, A.SetMultimapBuilder_replace_closure, A.newBuiltValueToStringHelper_closure, A.BuiltListMultimapSerializer_serialize_closure, A.BuiltListMultimapSerializer_deserialize_closure, A.BuiltListSerializer_serialize_closure, A.BuiltListSerializer_deserialize_closure, A.BuiltSetMultimapSerializer_serialize_closure, A.BuiltSetMultimapSerializer_deserialize_closure, A.BuiltSetSerializer_serialize_closure, A.BuiltSetSerializer_deserialize_closure, A.StandardJsonPlugin__toList_closure, A.StandardJsonPlugin__toListUsingDiscriminator_closure, A.BaseBarRenderer_preprocessSeries_closure, A.BaseBarRenderer_preprocessSeries__closure0, A.BaseBarRenderer_preprocessSeries__closure2, A.BaseBarRenderer_preprocessSeries_closure0, A.BaseBarRenderer_update_closure, A.BaseBarRenderer_update__closure0, A.BaseBarRenderer_paint__closure0, A.BaseBarRenderer_paint__closure, A.BaseBarRenderer_getNearestDatumDetailPerSeries_closure, A.BaseBarRenderer__getSegmentsForDomainValue_closure0, A.BaseBarRenderer__getVerticalDetailsForDomainValue_closure, A.BaseBarRenderer__getVerticalDetailsForDomainValue_closure0, A.Axis__updateAxisTicks_closure, A.Axis__updateAxisTicks_closure0, A.Axis_paint_closure, A.BaseTickDrawStrategy_splitLabel_closure, A.BaseTickDrawStrategy_getLabelWidth_closure, A.NoneDrawStrategy_decorateTicks_closure, A.SimpleTickFormatterBase_format_closure, A.NumericTickFormatter__getFormatter_closure, A.CartesianChart_makeSeries_closure, A.BaseCartesianRenderer_configureDomainAxes_closure, A.BaseCartesianRenderer_configureMeasureAxes_closure, A.BaseChart_init_closure, A.BaseChart_pointWithinRenderer_closure, A.BaseChart_getNearestDatumDetailPerSeries_closure, A.BaseChart_draw_closure, A.BaseChart_drawInternal_closure, A.BaseChart_configureSeries_closure, A.BaseChart_preprocessSeries_closure, A.BaseChart_preprocessSeries_closure0, A.BaseChart_paint_closure, A.BaseChart_fireOnDraw_closure, A.BaseChart_fireOnPreprocess_closure, A.BaseChart_fireOnPostprocess_closure, A.BaseChart_fireOnAxisConfigured_closure, A.BaseChart_fireOnPostrender_closure, A.BaseChart_fireOnAnimationComplete_closure, A.DomainHighlighter__updateColorFunctions_closure, A.DomainHighlighter__updateColorFunctions__closure, A.PerSeriesLegendEntryGenerator_getLegendEntries_closure, A.PerSeriesLegendEntryGenerator_getLegendEntries_closure0, A.PerSeriesLegendEntryGenerator__updateFromSelection_closure, A.PerSeriesLegendEntryGenerator__updateFromSelection_closure0, A.PerSeriesLegendEntryGenerator__updateFromSeriesList_getMeasureTotal, A.SeriesLegend_onData_closure0, A.SeriesLegend_onData_closure, A.SeriesLegend_preProcessSeriesList_closure, A.SeriesLegend_showSeries_closure, A.SelectNearest__onSelect_closure0, A.SelectNearest__extractSeriesFromNearestSelection_closure, A.MutableSeries_closure, A.MutableSelectionModel_updateSelection_closure, A.MutableSelectionModel_updateSelection_closure0, A.BaseSeriesRenderer_assignMissingColors_closure, A.BaseSeriesRenderer_assignMissingColors__closure3, A.BaseSeriesRenderer_assignMissingColors_closure0, A.BaseSeriesRenderer_assignMissingColors__closure2, A.BaseSeriesRenderer_assignMissingColors_closure1, A.BaseSeriesRenderer_assignMissingColors_closure2, A.BaseSeriesRenderer_assignMissingColors__closure0, A.BaseSeriesRenderer_assignMissingColors__closure1, A.BaseSeriesRenderer_assignMissingColors_closure3, A.BaseSeriesRenderer_assignMissingColors__closure, A.BaseSeriesRenderer_assignMissingColors_closure4, A.LayoutManagerImpl_drawableLayoutAreaBounds_closure, A.LayoutManagerImpl_layout_closure, A.LayoutManagerImpl__viewsForPositions_closure, A.VerticalMarginStrategy_measure_closure, A.LeftMarginLayoutStrategy_layout_closure, A.RightMarginLayoutStrategy_layout_closure, A.HorizontalMarginStrategy_measure_closure, A.TopMarginLayoutStrategy_layout_closure, A.BottomMarginLayoutStrategy_layout_closure, A.LineRenderer_configureSeries_closure, A.LineRenderer_configureSeries__closure, A.LineRenderer_preprocessSeries_closure, A.LineRenderer_preprocessSeries_closure0, A.LineRenderer_preprocessSeries__closure, A.LineRenderer__mergeIntoSeriesMap_closure, A.LineRenderer__mergeIntoSeriesMap__closure, A.LineRenderer_update_closure, A.LineRenderer_update__closure, A.LineRenderer_update___closure, A.LineRenderer__createBoundsSegment_closure, A.LineRenderer__createBoundsSegment_closure0, A.LineRenderer_paint__closure7, A.LineRenderer_paint__closure, A.LineRenderer_paint__closure0, A.LineRenderer_paint__closure1, A.LineRenderer_paint__closure2, A.LineRenderer_paint__closure3, A.LineRenderer_paint__closure4, A.LineRenderer_paint__closure5, A.LineRenderer_paint__closure6, A.PointRenderer_paint__closure1, A.PointRenderer_paint__closure, A.PointRenderer_paint__closure0, A.PointRenderer_paint___closure, A.PointRenderer_paint___closure0, A.PointRenderer_paint___closure1, A.PointRenderer_paint___closure2, A.GestureListener_defaultTapTest_closure, A.MaterialPalette__orderedPalettes_closure10, A.Performance_time_closure, A.Performance_timeEnd_closure, A.ProxyGestureListener_onLongPress_closure, A.ProxyGestureListener_onTap_closure, A.ProxyGestureListener_onDragStart_closure, A.ProxyGestureListener_onDragUpdate_closure, A.ProxyGestureListener_onDragEnd_closure, A.ProxyGestureListener__cancel_closure, A.ProxyGestureListener__populateActiveListeners_closure, A.Series_Series_closure0, A.Series_Series_closure1, A.Series_Series_closure2, A.Series_Series_closure, A.BaseChart__updateBehaviors_closure, A.BaseChart__updateBehaviors_closure0, A.BaseChart__notACustomBehavior_closure, A.BaseChart__updateSelectionModel_closure, A.BaseChart__updateSelectionModel_closure0, A.BaseChart_getDesiredGestures_closure, A.BaseChart_getDesiredGestures_closure0, A.BaseLegendContentBuilder_build_closure, A.SimpleLegendEntryLayout_makeTapUpCallback_closure, A.TabularLegendLayout_build_closure, A.TabularLegendLayout__buildTableFromRows_closure, A.TabularLegendLayout__buildTableFromRows_closure1, A._FlutterSeriesLegend_build_closure, A.ChartContainerRenderObject_requestAnimation_startAnimationController, A.ChartContainerRenderObject_requestRebuild_doRebuild, A.getChartContainerRenderObject_closure, A.CanonicalizedMap_entries_closure, A.CanonicalizedMap_keys_closure, A.CanonicalizedMap_values_closure, A.DesktopDropWeb__registerEvents_closure, A.DesktopDropWeb__registerEvents__closure, A.DesktopDropWeb__registerEvents_closure0, A.DesktopDropWeb__registerEvents_closure1, A.DesktopDropWeb__registerEvents_closure2, A.DesktopDrop_init_closure, A.DesktopDrop__handleMethodChannel_closure, A.DesktopDrop__handleMethodChannel_closure0, A.DesktopDrop__handleMethodChannel_closure1, A.DesktopDrop__handleMethodChannel_closure2, A.DesktopDrop__handleMethodChannel_closure3, A.DesktopDrop__handleMethodChannel_closure4, A.FilePickerWeb_pickFiles_changeEventListener, A.FilePickerWeb_pickFiles_changeEventListener_addPickedFile, A.FilePickerWeb_pickFiles_changeEventListener_closure, A.FilePickerWeb_pickFiles_changeEventListener_closure0, A.FilePickerWeb_pickFiles_cancelledEventListener, A.FilePickerWeb_pickFiles_cancelledEventListener_closure, A.FilePickerMacOS_resultStringToFilePaths_closure, A.FilePickerMacOS_resultStringToFilePaths_closure0, A.FilePickerMacOS_resultStringToFilePaths_closure1, A.FilePickerMacOS_resultStringToFilePaths__closure, A.KDialogHandler_fileTypeToFileFilter_closure, A.KDialogHandler_resultStringToFilePaths_closure, A.QarmaAndZenityHandler_resultStringToFilePaths_closure, A.filePathsToPlatformFiles_closure, A.filePathsToPlatformFiles_closure0, A._CupertinoButtonState__animate_closure, A._CupertinoBackGestureController_dragEnd_closure, A._CupertinoEdgeShadowDecoration_lerp_closure, A._CupertinoEdgeShadowDecoration_lerp_closure0, A._CupertinoScrollbarState_handleThumbPress_closure, A._CupertinoTextSelectionToolbarContentState_build_closure, A._RenderCupertinoTextSelectionToolbarItems_performLayout_closure, A._RenderCupertinoTextSelectionToolbarItems_performLayout_closure0, A._RenderCupertinoTextSelectionToolbarItems_paint_closure, A._RenderCupertinoTextSelectionToolbarItems_redepthChildren_closure, A._RenderCupertinoTextSelectionToolbarItems_visitChildrenForSemantics_closure, A._RenderCupertinoTextSelectionToolbarItems_debugDescribeChildren_closure, A.CupertinoThemeData_resolveFrom_convertColor, A.NoDefaultCupertinoThemeData_resolveFrom_convertColor, A._CupertinoThemeDefaults_resolveFrom_convertColor, A.FlutterErrorDetails_summary_closure, A.FlutterErrorDetails_debugFillProperties_closure, A.FlutterError_FlutterError_closure, A.FlutterError_defaultStackFilter_closure, A.FlutterError_defaultStackFilter_closure0, A.FlutterError_toString_closure, A.debugPrintStack_closure, A.BindingBase_initServiceExtensions_closure0, A.BindingBase_initServiceExtensions_closure2, A.BindingBase_registerBoolServiceExtension_closure, A.BindingBase_registerNumericServiceExtension_closure, A.BindingBase_registerStringServiceExtension_closure, A._PrefixedStringBuilder__wordWrapLine_noWrap, A.TextTreeRenderer__debugRender_visitor, A.TextTreeRenderer__debugRender_closure, A.StackFrame_fromStackString_closure, A.SynchronousFuture_whenComplete_closure, A._GestureArena_toString_closure, A.PointerEventConverter_expand_closure, A.PointerEventConverter_expand_closure0, A.PolynomialFit_toString_closure, A.MultiDragGestureRecognizer_acceptGesture_closure, A.ScaleGestureRecognizer__reconfigure_closure, A.ScaleGestureRecognizer_acceptGesture_closure, A.showLicensePage_closure, A._PackagesViewState_licenses_closure0, A._PackagesViewState_build___closure, A._PackagesViewState__initDefaultDetailPage_closure, A._PackagesViewState__packagesList___closure, A._MasterDetailFlowState__nestedUI_closure0, A._MasterDetailFlowState__masterPageRoute_closure, A._MasterDetailFlowState__detailPageRoute_closure, A._MasterDetailFlowState__detailPageRoute__closure, A._MasterDetailFlowState__lateralUI_closure0, A._MasterDetailScaffoldState_openDetailPage_closure, A._MasterDetailScaffoldState_setInitialDetailPage_closure, A._MasterDetailScaffoldState_build_closure, A.BackButtonIcon_build_closure, A.BackButtonIcon_build_closure0, A.BackButtonIcon_build_closure1, A.DrawerButtonIcon_build_closure, A.DrawerButtonIcon_build_closure0, A.DrawerButtonIcon_build_closure1, A.EndDrawerButtonIcon_build_closure, A.EndDrawerButtonIcon_build_closure0, A.EndDrawerButtonIcon_build_closure1, A.AdaptiveTextSelectionToolbar_getAdaptiveButtons_closure, A.AdaptiveTextSelectionToolbar_getAdaptiveButtons_closure0, A.AdaptiveTextSelectionToolbar_getAdaptiveButtons_closure1, A._MaterialAppState__materialBuilder_closure, A._MaterialAppState__buildWidgetApp_closure, A.MaterialRectArcTween__initialize_closure, A._DragHandle_build_closure, A._DragHandle_build_closure0, A._BottomSheetGestureDetector_build_closure0, A._ButtonStyleState_build_effectiveValue, A._ButtonStyleState_build_resolve, A._ButtonStyleState_build_resolve_closure, A._ButtonStyleState_build_closure, A._ButtonStyleState_build_closure0, A._ButtonStyleState_build_closure1, A._ButtonStyleState_build_closure2, A._ButtonStyleState_build_closure3, A._ButtonStyleState_build_closure4, A._ButtonStyleState_build_closure5, A._ButtonStyleState_build_closure6, A._ButtonStyleState_build_closure7, A._ButtonStyleState_build_closure8, A._ButtonStyleState_build_closure9, A._ButtonStyleState_build_closure10, A._ButtonStyleState_build_closure11, A._ButtonStyleState_build_closure12, A._ButtonStyleState_build_closure20, A._ButtonStyleState_build__closure0, A._ButtonStyleState_build_closure21, A._ButtonStyleState_build__closure, A._ButtonStyleState_build_closure13, A._ButtonStyleState_build_closure14, A._ButtonStyleState_build_closure15, A._ButtonStyleState_build_closure16, A._ButtonStyleState_build_closure17, A._ButtonStyleState_build_closure18, A._ButtonStyleState_build_closure19, A._DayState_build_effectiveValue, A._DayState_build_resolve, A._DayState_build_resolve_closure, A._DayState_build_closure, A._DayState_build_closure0, A._DayState_build_closure2, A._DayState_build__closure, A._YearPickerState__buildYearItem_effectiveValue, A._YearPickerState__buildYearItem_resolve, A._YearPickerState__buildYearItem_resolve_closure, A._YearPickerState__buildYearItem_closure, A._YearPickerState__buildYearItem_closure0, A._YearPickerState__buildYearItem_closure2, A._YearPickerState__buildYearItem__closure, A._CheckboxState__widgetFillColor_closure, A._CheckboxState_build_closure, A._CheckboxDefaultsM2_side_closure, A._CheckboxDefaultsM2_fillColor_closure, A._CheckboxDefaultsM2_overlayColor_closure, A._CheckboxDefaultsM3_side_closure, A._CheckboxDefaultsM3_fillColor_closure, A._CheckboxDefaultsM3_checkColor_closure, A._CheckboxDefaultsM3_overlayColor_closure, A.DataTable_build_closure3, A.DataTable_build_closure, A.DataTable_build_closure0, A.DataTable_build_closure1, A.DataTable_build_closure2, A.DataTable_build_closure4, A.showDatePicker_closure, A._DatePickerDefaultsM2_dayForegroundColor_closure, A._DatePickerDefaultsM2_dayBackgroundColor_closure, A._DatePickerDefaultsM2_dayOverlayColor_closure, A._DatePickerDefaultsM2_todayForegroundColor_closure, A._DatePickerDefaultsM2_rangeSelectionOverlayColor_closure, A._DatePickerDefaultsM3_dayForegroundColor_closure, A._DatePickerDefaultsM3_dayBackgroundColor_closure, A._DatePickerDefaultsM3_dayOverlayColor_closure, A._DatePickerDefaultsM3_todayForegroundColor_closure, A._DatePickerDefaultsM3_yearForegroundColor_closure, A._DatePickerDefaultsM3_yearBackgroundColor_closure, A._DatePickerDefaultsM3_yearOverlayColor_closure, A._DatePickerDefaultsM3_rangeSelectionOverlayColor_closure, A.DialogRoute_closure, A._DropdownRoutePageState_build_closure, A._DropdownButtonState_initState_closure, A._DropdownButtonState_initState_closure0, A._DropdownButtonState__updateSelectedIndex_closure, A._DropdownButtonState__handleTap_closure, A._DropdownButtonState__handleTap_closure0, A._DropdownButtonState_build_closure, A.DropdownButtonFormField_closure, A.DropdownButtonFormField__closure, A.DropdownButtonFormField__closure0, A._ElevatedButtonDefaultsM3_backgroundColor_closure, A._ElevatedButtonDefaultsM3_foregroundColor_closure, A._ElevatedButtonDefaultsM3_overlayColor_closure, A._ElevatedButtonDefaultsM3_elevation_closure, A._ElevatedButtonDefaultsM3_mouseCursor_closure, A._ExpansionPanelListState_build_closure, A._IconButtonM3_themeStyleOf_isIconThemeDefault, A._IconButtonDefaultsM3_foregroundColor_closure, A._IconButtonDefaultsM3_overlayColor_closure, A._IconButtonDefaultsM3_mouseCursor_closure, A._FilledIconButtonDefaultsM3_backgroundColor_closure, A._FilledIconButtonDefaultsM3_foregroundColor_closure, A._FilledIconButtonDefaultsM3_overlayColor_closure, A._FilledIconButtonDefaultsM3_mouseCursor_closure, A._FilledTonalIconButtonDefaultsM3_backgroundColor_closure, A._FilledTonalIconButtonDefaultsM3_foregroundColor_closure, A._FilledTonalIconButtonDefaultsM3_overlayColor_closure, A._FilledTonalIconButtonDefaultsM3_mouseCursor_closure, A._OutlinedIconButtonDefaultsM3_backgroundColor_closure, A._OutlinedIconButtonDefaultsM3_foregroundColor_closure, A._OutlinedIconButtonDefaultsM3_overlayColor_closure, A._OutlinedIconButtonDefaultsM3_side_closure, A._OutlinedIconButtonDefaultsM3_mouseCursor_closure, A._InkResponseState_highlightsExist_closure, A._InkResponseState_build_getHighlightColorForType, A._InputDatePickerFormFieldState_didUpdateWidget_closure, A._RenderDecoration_paint_doPaint, A._InputDecoratorDefaultsM2_hintStyle_closure, A._InputDecoratorDefaultsM2_labelStyle_closure, A._InputDecoratorDefaultsM2_floatingLabelStyle_closure, A._InputDecoratorDefaultsM2_helperStyle_closure, A._InputDecoratorDefaultsM2_errorStyle_closure, A._InputDecoratorDefaultsM2_fillColor_closure, A._InputDecoratorDefaultsM2_iconColor_closure, A._InputDecoratorDefaultsM2_prefixIconColor_closure, A._InputDecoratorDefaultsM2_suffixIconColor_closure, A._InputDecoratorDefaultsM3_hintStyle_closure, A._InputDecoratorDefaultsM3_fillColor_closure, A._InputDecoratorDefaultsM3_activeIndicatorBorder_closure, A._InputDecoratorDefaultsM3_outlineBorder_closure, A._InputDecoratorDefaultsM3_prefixIconColor_closure, A._InputDecoratorDefaultsM3_suffixIconColor_closure, A._InputDecoratorDefaultsM3_labelStyle_closure, A._InputDecoratorDefaultsM3_floatingLabelStyle_closure, A._InputDecoratorDefaultsM3_helperStyle_closure, A._InputDecoratorDefaultsM3_errorStyle_closure, A.ListTile_build_resolveColor, A._RenderListTile_paint_doPaint, A.ListTileTheme_merge_closure, A.TextMagnifier_adaptiveMagnifierConfiguration_closure, A._MaterialState_build_closure, A._MaterialInteriorState_forEachTween_closure, A._MaterialInteriorState_forEachTween_closure0, A._MaterialInteriorState_forEachTween_closure1, A._MaterialInteriorState_forEachTween_closure2, A.MaterialStateMixin_updateMaterialState_closure, A._MergeableMaterialState_didUpdateWidget_closure, A._MergeableMaterialState_didUpdateWidget_closure0, A._OutlinedButtonDefaultsM3_foregroundColor_closure, A._OutlinedButtonDefaultsM3_overlayColor_closure, A._OutlinedButtonDefaultsM3_side_closure, A._OutlinedButtonDefaultsM3_mouseCursor_closure, A._ZoomPageTransition_build_closure, A._ZoomPageTransition_build_closure0, A._ZoomPageTransition_build_closure1, A._ZoomPageTransition_build_closure2, A.PageTransitionsTheme__all_closure, A._PopupMenu_build_closure, A._PopupMenuRoute_buildPage_closure, A.PopupMenuButtonState_showButtonMenu_closure, A._PopupMenuDefaultsM3_labelTextStyle_closure, A._RadioState__widgetFillColor_closure, A._RadioState_build_closure, A._RadioDefaultsM2_fillColor_closure, A._RadioDefaultsM2_overlayColor_closure, A._RadioDefaultsM3_fillColor_closure, A._RadioDefaultsM3_overlayColor_closure, A.RefreshIndicatorState__show_closure, A.ScaffoldMessengerState_hideCurrentSnackBar_closure, A._MaterialScrollbarState__trackVisibility_closure, A._MaterialScrollbarState__thumbColor_closure, A._MaterialScrollbarState__trackColor_closure, A._MaterialScrollbarState__trackBorderColor_closure, A._MaterialScrollbarState__thickness_closure, A._MaterialSwitchState__widgetThumbColor_closure, A._MaterialSwitchState__widgetTrackColor_closure, A._MaterialSwitchState_build_closure, A._SwitchPainter_paint_thumbSizeAnimation, A._SwitchDefaultsM2_thumbColor_closure, A._SwitchDefaultsM2_trackColor_closure, A._SwitchDefaultsM2_mouseCursor_closure, A._SwitchDefaultsM2_overlayColor_closure, A._SwitchDefaultsM3_thumbColor_closure, A._SwitchDefaultsM3_trackColor_closure, A._SwitchDefaultsM3_trackOutlineColor_closure, A._SwitchDefaultsM3_overlayColor_closure, A._SwitchConfigM3_iconColor_closure, A._TabStyle__resolveWithLabelColor_closure, A._TabBarState_initState_closure, A._TabBarState_build_closure, A._TabBarState_build_closure0, A._TabsPrimaryDefaultsM3_overlayColor_closure, A._TextButtonDefaultsM3_foregroundColor_closure, A._TextButtonDefaultsM3_overlayColor_closure, A._TextButtonDefaultsM3_mouseCursor_closure, A._TextFieldState_build_closure7, A._TextFieldState_build_closure8, A._m2StateInputStyle_closure, A._m3StateInputStyle_closure, A.TextFormField_closure, A.TextFormField_closure_onChangedHandler, A._RenderTextSelectionToolbarItemsLayout__layoutChildren_closure, A._RenderTextSelectionToolbarItemsLayout__placeChildren_closure, A._RenderTextSelectionToolbarItemsLayout_paint_closure, A._RenderTextSelectionToolbarItemsLayout_visitChildrenForSemantics_closure, A._AnimatedThemeState_forEachTween_closure, A.ThemeData__lerpThemeExtensions_closure0, A.TimeOfDay_toString_addLeadingZeroIfNeeded, A._HourControl_build_hoursFromSelected, A._DialPainter_paint_paintInnerOuterLabels, A._DialPainter_paint_paintInnerOuterLabels_closure, A._DialPainter_paint_paintInnerOuterLabels_closure0, A._DialState__animateTo_animateToValue, A.showTimePicker_closure, A._TimePickerDefaultsM2_dayPeriodColor_closure, A._TimePickerDefaultsM2_dayPeriodTextColor_closure, A._TimePickerDefaultsM2_dialTextColor_closure, A._TimePickerDefaultsM2_hourMinuteColor_closure, A._TimePickerDefaultsM2_hourMinuteTextColor_closure, A._TimePickerDefaultsM2__hourMinuteInputColor_closure, A._TimePickerDefaultsM3_dayPeriodColor_closure, A._TimePickerDefaultsM3_dayPeriodTextColor_closure, A._TimePickerDefaultsM3_dialTextColor_closure, A._TimePickerDefaultsM3_helpTextStyle_closure, A._TimePickerDefaultsM3_hourMinuteColor_closure, A._TimePickerDefaultsM3_hourMinuteTextColor_closure, A._TimePickerDefaultsM3__hourMinuteTextColor_closure, A._TimePickerDefaultsM3_hourMinuteTextStyle_closure, A.ToggleButtons_build_closure, A.NetworkImage__loadAsync_closure0, A.NetworkImage__loadAsync_closure1, A._CompoundBorder_scale_closure, A._CompoundBorder_preferPaintInterior_closure, A._CompoundBorder_toString_closure, A.ClipContext_clipPathAndPaint_closure, A.ClipContext_clipRRectAndPaint_closure, A.ClipContext_clipRectAndPaint_closure, A.paintImage_closure0, A._sample_closure, A._interpolateColorsAndStops_closure, A.LinearGradient_scale_closure, A._CachedImageBase_dispose_closure, A.ImageProvider_resolve_closure0, A.ImageProvider__createErrorHandlerAndKey_closure, A.AssetImage_obtainKey_closure, A.ImageStreamCompleter_reportError_closure, A.ImageStreamCompleter_reportImageChunkEvent_closure, A.InlineSpan_getSpanForPosition_closure, A.InlineSpan_codeUnitAt_closure, A._ShapeDecorationPainter__precache_closure, A._ShapeDecorationPainter__precache_closure0, A._ShapeDecorationPainter__precache_closure1, A.TextPainter_inlinePlaceholderBoxes_closure, A.TextPainter_getBoxesForSelection_closure, A.TextPainter_computeLineMetrics_closure, A.TextSpan_debugDescribeChildren_closure, A.TextStyle_fontFamilyFallback_closure, A.FrictionSimulation_closure, A.RendererBinding_pipelineOwner_closure1, A.RendererBinding__scheduleMouseTrackerUpdate_closure, A.BoxConstraints_toString_describe, A.RenderEditable_getBoxesForSelection_closure, A.RenderEditable_describeSemanticsConfiguration_closure, A.RenderEditable__canComputeDryLayoutForInlineWidgets_closure, A.RenderListBody_computeMinIntrinsicWidth_closure, A.RenderListBody_computeMinIntrinsicWidth_closure0, A.RenderListBody_computeMaxIntrinsicWidth_closure, A.RenderListBody_computeMaxIntrinsicWidth_closure0, A.RenderListBody_computeMinIntrinsicHeight_closure, A.RenderListBody_computeMinIntrinsicHeight_closure0, A.RenderListBody_computeMaxIntrinsicHeight_closure, A.RenderListBody_computeMaxIntrinsicHeight_closure0, A.MouseTracker__handleDeviceUpdate_closure, A.MouseTracker__handleDeviceUpdateMouseEvents_closure0, A.RenderObject__updateCompositingBits_closure, A.RenderObject_clearSemantics_closure, A.RenderObject__getSemanticsForParent_closure, A.RenderObject__getSemanticsForParent_closure0, A.RenderObject__getSemanticsForParent_closure1, A.RelayoutWhenSystemFontsChangeMixin__scheduleSystemFontsUpdate_closure, A.RenderParagraph_markNeedsLayout_closure, A.RenderParagraph_selectionColor_closure, A.RenderParagraph__canComputeDryLayoutForInlineWidgets_closure, A._factoriesTypeSet_closure, A._PlatformViewGestureRecognizer_closure, A.RenderSliverHelpers_hitTestBoxChild_closure, A.RenderSliverMultiBoxAdaptor__createOrObtainChild_closure, A.RenderSliverMultiBoxAdaptor_collectGarbage_closure, A.RenderSliverMultiBoxAdaptor_collectGarbage__closure, A.RenderSliverPersistentHeader_layoutChild_closure, A.RenderStack_computeMinIntrinsicWidth_closure, A.RenderStack_computeMaxIntrinsicWidth_closure, A.RenderStack_computeMinIntrinsicHeight_closure, A.RenderStack_computeMaxIntrinsicHeight_closure, A.RenderViewportBase_visitChildrenForSemantics_closure, A.RenderViewportBase_hitTestChildren_closure, A.SchedulerBinding_endOfFrame_closure, A.SchedulerBinding__handleDrawFrame_closure, A.TickerFuture_whenCompleteOrCancel_thunk, A.SemanticsNode_getSemanticsData_closure, A.SemanticsNode__childrenInTraversalOrder_closure, A.SemanticsNode_debugDescribeChildren_closure, A._SemanticsSortGroup_sortedWithinVerticalGroup_closure, A._SemanticsSortGroup_sortedWithinKnot_search, A._SemanticsSortGroup_sortedWithinKnot_closure0, A._SemanticsSortGroup_sortedWithinKnot_closure1, A._childrenInDefaultOrder_closure, A.SemanticsOwner_sendSemanticsUpdate_closure, A.SemanticsOwner__getSemanticsActionHandlerForId_closure, A.SemanticsConfiguration__addArgumentlessAction_closure, A.SemanticsConfiguration_onMoveCursorForwardByCharacter_closure, A.SemanticsConfiguration_onMoveCursorBackwardByCharacter_closure, A.SemanticsConfiguration_onMoveCursorForwardByWord_closure, A.SemanticsConfiguration_onMoveCursorBackwardByWord_closure, A.SemanticsConfiguration_onSetSelection_closure, A.SemanticsConfiguration_onSetText_closure, A.CachingAssetBundle_loadStructuredData_closure, A.PlatformAssetBundle_load_closure, A.AssetManifest_loadFromAssetBundle_closure, A._AssetManifestBin_getAssetVariants_closure, A._AutofillScopeTextInputConfiguration_toJson_closure, A.AutofillScopeMixin_attach_closure, A.ServicesBinding__initKeyboard_closure, A._DefaultBinaryMessenger_send_closure, A.BasicMessageChannel_setMessageHandler_closure, A.MethodChannel_setMethodCallHandler_closure, A.RestorationManager_handleRestorationUpdateFromEngine_closure, A.RestorationManager_scheduleSerializationFor_closure, A.RestorationBucket__visitChildren_closure, A.FilteringTextInputFormatter__processRegion_adjustIndex, A.TextEditingValue_replaced_adjustIndex, A.TextInput__handleTextInputInvocation_closure, A.TextInput__handleTextInputInvocation_closure0, A.TextInput__handleTextInputInvocation_closure1, A._PlatformTextInputControl_setSelectionRects_closure, A.HtmlElementViewImpl_get__createController_closure, A.HtmlElementViewImpl__createController_closure, A._getParent_closure, A.Actions__findDispatcher_closure, A.Actions_maybeFind_closure, A.Actions__maybeFindWithoutDependingOn_closure, A.Actions_invoke_closure, A.Actions_maybeInvoke_closure, A._FocusableActionDetectorState_initState_closure, A._FocusableActionDetectorState__mayTriggerCallback_shouldShowHoverHighlight, A._FocusableActionDetectorState__mayTriggerCallback_canRequestFocus, A._FocusableActionDetectorState__mayTriggerCallback_shouldShowFocusHighlight, A._FocusableActionDetectorState_didUpdateWidget_closure, A._AnimatedCrossFadeState_initState_closure, A._AnimatedSwitcherState__newEntry_closure, A._AnimatedSwitcherState__rebuildOutgoingWidgetsIfNeeded_closure, A._AnimatedSwitcherState_build_closure, A._WidgetsAppState__onGenerateRoute_closure, A._WidgetsAppState_build_closure, A._StreamBuilderBaseState__subscribe_closure, A._FutureBuilderState__subscribe_closure, A._RawAutocompleteState__updateOverlay_closure, A._RawAutocompleteState__updateOverlay_closure0, A._RawAutocompleteState__updateOverlay__closure, A.AutofillGroupState_autofillClients_closure, A._AutomaticKeepAliveState__addClient_closure, A._AutomaticKeepAliveState__getChildElement_closure, A._UbiquitousInheritedElement_notifyClients_closure, A._UbiquitousInheritedElement__recurseChildren_closure, A.ClipPath_shape_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure0, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure1, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure3, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure5, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initInstances_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure0, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_initInstances_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure0, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure1, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure2, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure4, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure6, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_drawFrame_closure, A.ContextMenuController_show_closure, A.DefaultSelectionStyle_merge_closure, A.DisplayFeatureSubScreen_avoidBounds_closure, A.DisplayFeatureSubScreen_avoidBounds_closure0, A._DraggableScrollableSheetState_build_closure, A.EditableTextState_cutSelection_closure, A.EditableTextState_pasteText_closure, A.EditableTextState_didChangeDependencies_closure, A.EditableTextState_didUpdateWidget_closure, A.EditableTextState__createSelectionOverlay_closure, A.EditableTextState__scheduleShowCaretOnScreen_closure, A.EditableTextState_didChangeMetrics_closure, A.EditableTextState__startCursorBlink_closure, A.EditableTextState__onCursorTick_closure1, A.EditableTextState_showSpellCheckSuggestionsToolbar_closure, A.EditableTextState__actions_closure, A.EditableTextState_build_closure3, A._ScribbleFocusableState_isInScribbleRect_closure, A.FocusNode_traversalDescendants_closure, A.FocusNode_debugDescribeChildren_closure, A._getAncestor_closure, A.FocusTraversalPolicy__findInitialFocus_closure, A.FocusTraversalPolicy__sortAllDescendants_visitGroups, A.FocusTraversalPolicy__sortAllDescendants_closure, A._ReadingOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_changedScope_closure, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure0, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure0, A.DirectionalFocusTraversalPolicyMixin__popPolicyDataIfNeeded_popOrInvalidate, A.DirectionalFocusTraversalPolicyMixin_inDirection_closure, A.DirectionalFocusTraversalPolicyMixin_inDirection_closure0, A.DirectionalFocusTraversalPolicyMixin_inDirection_closure1, A.DirectionalFocusTraversalPolicyMixin_inDirection_closure2, A._ReadingOrderSortData_commonDirectionalityOf_closure, A._ReadingOrderSortData_directionalAncestors_getDirectionalityAncestors, A._ReadingOrderDirectionalGroupData_rect_closure, A.ReadingOrderTraversalPolicy__pickNext_inBand_closure, A.FormState__fieldDidChange_closure, A._InactiveElements__unmount_closure, A.Element_renderObjectAttachingChild_closure, A.Element_describeMissingAncestor_closure, A.Element_describeElements_closure, A.Element_updateChildren_replaceWithNullIfForgotten, A.Element_updateSlotForChild_visit, A.Element__updateDepth_closure, A.Element_detachRenderObject_closure, A.Element_attachRenderObject_closure, A.Element_debugDescribeChildren_closure, A.ParentDataElement__applyParentData_applyParentDataToChild, A.MultiChildRenderObjectElement_children_closure, A.GestureDetector_build_closure0, A.GestureDetector_build_closure2, A.GestureDetector_build_closure4, A.GestureDetector_build_closure6, A.GestureDetector_build_closure8, A.GestureDetector_build_closure10, A.GestureDetector_build_closure12, A.GestureDetector_build_closure14, A._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure, A._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure0, A._DefaultSemanticsGestureDelegate__getHorizontalDragUpdateHandler_closure1, A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure, A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure0, A._DefaultSemanticsGestureDelegate__getVerticalDragUpdateHandler_closure1, A.Hero__allHeroesFor_visitor, A.HeroController_didStopUserGesture_isInvalidFlight, A.HeroController__maybeStartHeroTransition_closure, A.IconTheme_merge_closure, A._ImageState__replaceImage_closure, A.ImplicitlyAnimatedWidgetState_initState_closure, A.ImplicitlyAnimatedWidgetState_didUpdateWidget_closure, A.ImplicitlyAnimatedWidgetState__constructTweens_closure, A._AnimatedContainerState_forEachTween_closure, A._AnimatedContainerState_forEachTween_closure0, A._AnimatedContainerState_forEachTween_closure1, A._AnimatedContainerState_forEachTween_closure2, A._AnimatedContainerState_forEachTween_closure3, A._AnimatedContainerState_forEachTween_closure4, A._AnimatedContainerState_forEachTween_closure5, A._AnimatedContainerState_forEachTween_closure6, A._AnimatedPaddingState_forEachTween_closure, A._AnimatedPositionedState_forEachTween_closure, A._AnimatedPositionedState_forEachTween_closure0, A._AnimatedPositionedState_forEachTween_closure1, A._AnimatedPositionedState_forEachTween_closure2, A._AnimatedPositionedState_forEachTween_closure3, A._AnimatedPositionedState_forEachTween_closure4, A._AnimatedOpacityState_forEachTween_closure, A._AnimatedDefaultTextStyleState_forEachTween_closure, A._AnimatedPhysicalModelState_forEachTween_closure, A._AnimatedPhysicalModelState_forEachTween_closure0, A._AnimatedPhysicalModelState_forEachTween_closure1, A._AnimatedPhysicalModelState_forEachTween_closure2, A.InheritedTheme_capture_closure, A._loadAll_closure, A._loadAll_closure0, A._loadAll_closure1, A._LocalizationsState_load_closure, A._LocalizationsState_load_closure0, A.LookupBoundary_findAncestorStateOfType_closure, A.LookupBoundary_findRootAncestorStateOfType_closure, A.LookupBoundary_findAncestorRenderObjectOfType_closure, A.TextMagnifierConfiguration_magnifierBuilder_closure, A.MagnifierController_show_closure, A.MediaQueryData_removeDisplayFeatures_closure, A.MediaQuery_withNoTextScaling_closure, A.MediaQuery_withClampedTextScaling_closure, A.Route_didPush_closure, A.Route_didAdd_closure, A.Navigator_defaultGenerateInitialRoutes_closure, A._RouteEntry_dispose_closure, A._RouteEntry_isRoutePredicate_closure, A.NavigatorState__handleHistoryChanged_closure, A.NavigatorState_restoreState_closure, A.NavigatorState__forcedDisposeAllRouteEntries_closure, A.NavigatorState__afterNavigation_closure, A.NavigatorState_build_closure, A._NavigatorPopHandlerState_build_closure0, A._NavigatorPopHandlerState_build_closure, A.OverlayEntry_remove_closure, A._RenderTheater_computeMinIntrinsicWidth_closure, A._RenderTheater_computeMaxIntrinsicWidth_closure, A._RenderTheater_computeMinIntrinsicHeight_closure, A._RenderTheater_computeMaxIntrinsicHeight_closure, A._RenderTheater_debugDescribeChildren_closure, A._RenderDeferredLayoutBox__childrenInPaintOrder_closure, A._RenderDeferredLayoutBox_layout_closure, A.PageStorageBucket__allKeys_closure, A._PageViewState_build_closure, A._PlatformViewPlaceholderBox_performLayout_closure, A._extension_0_disposePostFrame_closure, A.SliverReorderableListState__dragStart_closure, A._ReorderableItemState_updateForGap_closure, A.ReorderableDragStartListener_build_closure, A._DragInfo_startDrag_closure, A._RootRestorationScopeState__loadRootBucketIfNecessary_closure, A._RouterState__processParsedRouteInformation_closure, A._RouterState__handleRoutePopped_closure, A.TransitionRoute__updateSecondaryAnimation_jumpOnAnimationEnd, A.TransitionRoute__setSecondaryAnimation_closure, A.LocalHistoryRoute_removeLocalHistoryEntry_closure, A._ModalScopeState_build_closure0, A._ModalScopeState_build__closure, A.ModalRoute_popDisposition_closure, A.ModalRoute__handlePopEntryChange_closure, A.ScrollAwareImageProvider_resolveStreamForKey_closure, A.ScrollBehavior_velocityTrackerBuilder_closure, A.ScrollBehavior_velocityTrackerBuilder_closure0, A.ScrollBehavior_velocityTrackerBuilder_closure1, A.ScrollNotificationObserverState_build_closure, A.ScrollNotificationObserverState_build_closure0, A.ScrollPosition_forcePixels_closure, A.ScrollView_build_closure0, A.Scrollable_ensureVisible_closure, A.ScrollableState_setCanDrag_closure0, A.ScrollableState_setCanDrag_closure2, A._ScrollableSelectionContainerDelegate__scheduleLayoutChange_closure, A.ScrollbarPainter_update_needPaint, A.RawScrollbarState__gestures_closure0, A.RawScrollbarState__gestures__closure, A.RawScrollbarState__gestures__closure0, A.RawScrollbarState__gestures__closure1, A.RawScrollbarState__gestures_closure2, A.RawScrollbarState_build_closure, A.RawScrollbarState_build_closure0, A.MultiSelectableSelectionContainerDelegate__scheduleSelectableUpdate_runScheduledTask, A.MultiSelectableSelectionContainerDelegate_getSelectionGeometry_closure, A.MultiSelectableSelectionContainerDelegate_getSelectionGeometry_closure0, A.MultiSelectableSelectionContainerDelegate__flushInactiveSelections_closure, A.MultiSelectableSelectionContainerDelegate__flushInactiveSelections_closure0, A.MultiSelectableSelectionContainerDelegate_handleSelectWord_closure, A.MultiSelectableSelectionContainerDelegate_handleSelectWord_closure0, A.LogicalKeySet__triggers_closure, A.SliverMultiBoxAdaptorElement_performRebuild_processElement, A.Table_closure, A.Table_closure0, A._TableElement_mount_closure, A._TableElement_mount__closure, A._TableElement_update_closure, A._TableElement_update_closure0, A._TableElement__updateRenderObjectChildren_closure, A._TableElement__updateRenderObjectChildren__closure, A._TableElement_visitChildren_closure, A.SelectionOverlay_showMagnifier_closure, A.SelectionOverlay_showToolbar_closure, A.SelectionOverlay_showSpellCheckSuggestionsToolbar_closure, A.SelectionOverlay_markNeedsBuild_closure, A.SelectionOverlay__buildToolbar_closure, A._SelectionHandleOverlayState_build_closure0, A._TextSelectionGestureDetectorState_build_closure0, A._TextSelectionGestureDetectorState_build_closure2, A._TextSelectionGestureDetectorState_build_closure4, A._TextSelectionGestureDetectorState_build_closure6, A._TextSelectionGestureDetectorState_build_closure8, A.UndoHistoryState_initState_closure, A._throttle_closure, A.Visibility_of_closure, A.WidgetSpan_extractFromInlineSpan_visitSubtree, A._BlockPickerState_build_closure, A._GlobalCupertinoLocalizationsDelegate_load_closure_loadFormats, A._StoreStreamListenerState__createStream_closure, A.SlidableAction_build_closure, A.SlidableAutoCloseBehaviorListener_build_closure, A.SlidableAutoCloseNotificationSender_build_closure, A._SlidableAutoCloseBarrierNotificationSenderState_dispose_closure, A._SlidableAutoCloseBarrierBehaviorListenerState_build_closure, A._SlidableDismissalState_handleResizeRequestChanged_closure, A._RenderFlexEntranceTransition_getTotalFlex_closure, A._RenderFlexEntranceTransition_performLayout_closure, A.showToastWidget_closure, A._StyledToastState_build_closure, A.ToastManager_dismissAll_closure, A.Registrar_send_closure, A.RenderFollower_paint_closure, A.RenderFollower_paint_closure1, A.LeaderLink_notifyListeners_closure, A.GoogleSignIn__ensureInitialized_closure, A.GoogleSignIn__waitFor_closure, A.GoogleSignIn__addMethodCall_closure, A.GoogleSignIn_signIn_isCanceled, A.GoogleSignIn_signIn_closure, A.MethodChannelGoogleSignIn_getTokens_closure, A.GoogleSignInPlugin_closure, A.GoogleSignInPlugin_initWithParams_closure, A.GoogleSignInPlugin_initWithParams_closure0, A.NodeList_retainWhere_closure, A.FilteredElementList_removeRange_closure, A.InTableTextPhase_flushCharacters_closure, A._CssClassSetImpl_add_closure, A.SelectorEvaluator_visitPseudoClassSelector_closure, A.SelectorEvaluator_visitPseudoClassSelector_closure0, A.SelectorEvaluator_visitPseudoClassSelector__closure, A.SelectorEvaluator_visitAttributeSelector_closure, A.HtmlTokenizer_consumeEntity_closure, A._escape_closure, A._escape_closure0, A._escape_closure1, A._escape_closure2, A._escape_closure3, A._escape__closure, A._escape_closure4, A._escape_closure5, A._escape_closure6, A._escape_closure7, A._escape_closure8, A._postProcess_closure, A.Rule_findRule_closure, A.Rule_findRule_closure0, A.Rule__buildFilterFn_closure, A._CommonRules_indentedCodeBlock_closure, A._CommonRules_fencedCodeBlock_closure, A._CommonRules_inlineLink_closure, A._CommonRules_referenceLink_closure0, A._CommonRules_code_closure, A._CommonRules_code__closure, A.get_closure, A.BaseRequest_closure0, A.BrowserClient_send_closure, A.BrowserClient_send_closure0, A.ByteStream_toBytes_closure, A.mapToQuery_closure0, A.onDone_closure, A.CaseInsensitiveMap$from_closure, A.MediaType_toString__closure, A.expectQuotedString_closure, A.BillingClient_queryProductDetails_closure, A._$ProductDetailsWrapperFromJson_closure, A._$ProductDetailsResponseWrapperFromJson_closure0, A._$PurchaseWrapperFromJson_closure, A._$PurchasesResultWrapperFromJson_closure0, A._$SubscriptionOfferDetailsWrapperFromJson_closure, A._$SubscriptionOfferDetailsWrapperFromJson_closure0, A.InAppPurchaseAndroidPlatform_isAvailable_closure, A.InAppPurchaseAndroidPlatform_queryProductDetails_closure, A.InAppPurchaseAndroidPlatform_queryProductDetails__closure0, A.InAppPurchaseAndroidPlatform_queryProductDetails_closure0, A.InAppPurchaseAndroidPlatform_queryProductDetails__closure, A.InAppPurchaseAndroidPlatform_queryProductDetails_closure1, A.InAppPurchaseAndroidPlatform_queryProductDetails_closure2, A.InAppPurchaseAndroidPlatform_queryProductDetails_closure3, A.InAppPurchaseAndroidPlatform_buyNonConsumable_closure, A.InAppPurchaseAndroidPlatform_completePurchase_closure, A.InAppPurchaseAndroidPlatform_restorePurchases_closure, A.InAppPurchaseAndroidPlatform_restorePurchases_closure0, A.InAppPurchaseAndroidPlatform_restorePurchases_closure1, A.InAppPurchaseAndroidPlatform_restorePurchases_closure2, A.InAppPurchaseAndroidPlatform_restorePurchases_closure3, A.InAppPurchaseAndroidPlatform_restorePurchases_closure4, A.InAppPurchaseAndroidPlatform_restorePurchases_closure5, A.InAppPurchaseAndroidPlatform__getPurchaseDetailsFromResult_closure, A.InAppPurchaseAndroidPlatform__getPurchaseDetailsFromResult_closure0, A.InAppPurchaseAndroidPlatformAddition_consumePurchase_closure, A.GooglePlayPurchaseDetails_fromPurchase_closure, A.InAppPurchaseStoreKitPlatform_queryProductDetails_closure, A._TransactionObserver__handleTransationUpdates_closure, A._TransactionObserver__handleTransationUpdates_closure0, A.SKPaymentQueueWrapper__getTransactionList_closure, A._$SkProductResponseWrapperFromJson_closure, A._$SkProductResponseWrapperFromJson_closure0, A._$SKProductWrapperFromJson_closure1, A.Intl__pluralRule_closure, A.DateFormat_dateTimeConstructor_closure, A.DateFormat__checkDateOnly_closure, A.DateFormat__initDigitMatcher_closure, A.DateFormat__initDigitMatcher_closure0, A._DateFormatPatternField_parseStandaloneDay_closure, A.NumberFormat_NumberFormat_closure, A.NumberFormat_NumberFormat$decimalPattern_closure, A._CountryPickerDialogState_build_closure, A.CountryExtensions_stringSearch_closure, A.CountryExtensions_stringSearch__closure, A._IntlPhoneFieldState_initState_closure, A._IntlPhoneFieldState__changeCountry_closure, A._IntlPhoneFieldState__changeCountry___closure, A._IntlPhoneFieldState_build_closure0, A._IntlPhoneFieldState_build_closure, A._IntlPhoneFieldState_build_closure1, A.ClientEntity_ClientEntity_closure, A.ClientEntity_primaryContact_closure, A.ClientEntity_emailContacts_closure, A.ClientEntity_hasEmailAddress_closure, A.ClientEntity_getContact_closure, A.CompanyGatewayEntity_updateConfig_closure, A.CompanyEntity_getCustomFieldValues_closure, A.CompanyEntity_coreCompany_closure, A.GatewayEntity_supportsTokenBilling_closure, A.GatewayEntity_matchesFilter_closure, A.GatewayEntity_matchesFilterValue_closure, A.UserCompanyEntity_UserCompanyEntity_closure, A.UserCompanyEntity__initializeBuilder_closure, A.DesignEntity_clone_closure, A.HasActivities_getActivities_closure, A.ExpenseEntity_clone_closure, A.InvoiceEntity_InvoiceEntity_closure, A.InvoiceEntity_InvoiceEntity_closure0, A.InvoiceEntity_moveLineItem_closure, A.InvoiceEntity_moveLineItem_closure0, A.InvoiceEntity_recreateInvitations_closure0, A.InvoiceEntity_recreateInvitations_closure, A.InvoiceEntity_recreateInvitations_closure2, A.InvoiceEntity_recreateInvitations_closure1, A.InvoiceEntity_clone_closure, A.InvoiceEntity_clone__closure, A.InvoiceEntity_clone__closure0, A.InvoiceEntity_clone___closure, A.InvoiceEntity_clone__closure1, A.InvoiceEntity_applyClient_closure, A.InvoiceEntity_balanceHistory_closure, A.InvoiceEntity_balanceHistory_closure0, A.InvoiceEntity_hasTasks_closure, A.InvoiceEntity_hasProducts_closure, A.InvoiceEntity_hasExpenses_closure, A.InvoiceEntity_applyTax_closure, A.InvoiceEntity_applyTax_closure0, A.InvoiceEntity_applyTax_closure1, A.InvoiceEntity_isViewed_closure, A.InvoiceEntity_getInvitationForClientContact_closure, A.InvoiceEntity_getInvitationForVendorContact_closure, A.InvoiceItemEntity_taxAmount_calculateTaxAmount, A.InvoiceItemEntity_applyTax_closure, A.InvoiceItemEntity_applyTax_closure0, A.InvoiceItemEntity_applyTax_closure1, A.CalculateInvoiceTotal_calculateTaxes_closure, A.CalculateInvoiceTotal_calculateTaxes__closure, A.CalculateInvoiceTotal_calculateTaxes__closure1, A.CalculateInvoiceTotal_calculateTaxes__closure3, A.CalculateInvoiceTotal_calculateTaxes_closure0, A.CalculateInvoiceTotal_calculateTaxes_closure2, A.CalculateInvoiceTotal_calculateTaxes_closure4, A.CalculateInvoiceTotal_getTaxable_closure, A.CalculateInvoiceTotal_calculateTotal_closure, A.CalculateInvoiceTotal_calculateSubtotal_closure, A.PaymentEntity_invoicePaymentables_closure, A.PaymentEntity_creditPaymentables_closure, A.PaymentEntity_invoiceId_closure, A.ProductEntity_clone_closure, A.ProjectEntity_clone_closure, A.SettingsEntity_setFieldsForSection_closure, A.SettingsEntity_setFieldsForSection_closure0, A.TaskTime_stop_closure, A.TaskEntity_clone_closure, A.TaskEntity_areTimesValid_closure, A.TaskEntity_getInvalidTimeIndices_closure, A.TaskEntity_isRunning_closure, A.TaskEntity_isBetween_closure, A.TaskEntity_getTaskTimes_closure, A.TaskEntity_addTaskTime_closure, A.TaskEntity_updateTaskTime_closure, A.TaskEntity_deleteTaskTime_closure, A.TaskEntity_calculateDuration_closure, A.TransactionEntity_TransactionEntity_closure, A.TransactionEntity_TransactionEntity_closure0, A.VendorEntity_VendorEntity_closure, A.VendorEntity_emailContacts_closure, A.VendorEntity_primaryContact_closure, A.VendorEntity_hasEmailAddress_closure, A.VendorEntity_getContact_closure, A.ClientRepository_saveData_closure, A.CreditRepository_saveData_closure, A.InvoiceRepository_saveData_closure, A.ProductRepository_saveData_closure, A.PurchaseOrderRepository_saveData_closure, A.QuoteRepository_saveData_closure, A.TransactionRepository_convertToExpense_closure, A._parseError__closure, A._initialState_closure, A._initialState_closure0, A._registerErrorHandlers_closure, A.InvoiceNinjaAppState_initState_closure, A.InvoiceNinjaAppState_generateRoute_closure, A.InvoiceNinjaAppState_generateRoute_closure0, A.InvoiceNinjaAppState_build_closure, A.InvoiceNinjaAppState_build__closure, A.InvoiceNinjaAppState_build__closure0, A.InvoiceNinjaAppState_build__closure1, A.InvoiceNinjaAppState_build__closure2, A.InvoiceNinjaAppState_build__closure3, A.InvoiceNinjaAppState_build__closure4, A.InvoiceNinjaAppState_build__closure5, A.InvoiceNinjaAppState_build__closure6, A.InvoiceNinjaAppState_build__closure7, A.InvoiceNinjaAppState_build__closure8, A.InvoiceNinjaAppState_build__closure9, A.InvoiceNinjaAppState_build__closure10, A.InvoiceNinjaAppState_build__closure11, A.InvoiceNinjaAppState_build__closure12, A.InvoiceNinjaAppState_build__closure13, A.InvoiceNinjaAppState_build__closure14, A.InvoiceNinjaAppState_build__closure15, A.InvoiceNinjaAppState_build__closure16, A.InvoiceNinjaAppState_build__closure17, A.InvoiceNinjaAppState_build__closure18, A.InvoiceNinjaAppState_build__closure19, A.InvoiceNinjaAppState_build__closure20, A.InvoiceNinjaAppState_build__closure21, A.InvoiceNinjaAppState_build__closure22, A.InvoiceNinjaAppState_build__closure23, A.InvoiceNinjaAppState_build__closure24, A.InvoiceNinjaAppState_build__closure25, A.InvoiceNinjaAppState_build__closure26, A.InvoiceNinjaAppState_build__closure27, A.InvoiceNinjaAppState_build__closure28, A.InvoiceNinjaAppState_build__closure29, A.InvoiceNinjaAppState_build__closure30, A.InvoiceNinjaAppState_build__closure31, A.InvoiceNinjaAppState_build__closure32, A.InvoiceNinjaAppState_build__closure33, A.InvoiceNinjaAppState_build__closure34, A.InvoiceNinjaAppState_build__closure35, A.InvoiceNinjaAppState_build__closure36, A.InvoiceNinjaAppState_build__closure37, A.InvoiceNinjaAppState_build__closure38, A.InvoiceNinjaAppState_build__closure39, A.InvoiceNinjaAppState_build__closure40, A.InvoiceNinjaAppState_build__closure41, A.InvoiceNinjaAppState_build__closure42, A.InvoiceNinjaAppState_build__closure43, A.InvoiceNinjaAppState_build__closure44, A.InvoiceNinjaAppState_build__closure45, A.InvoiceNinjaAppState_build__closure46, A.InvoiceNinjaAppState_build__closure47, A.InvoiceNinjaAppState_build__closure48, A.InvoiceNinjaAppState_build__closure49, A.InvoiceNinjaAppState_build__closure50, A.InvoiceNinjaAppState_build__closure51, A.InvoiceNinjaAppState_build__closure52, A.InvoiceNinjaAppState_build__closure53, A.InvoiceNinjaAppState_build__closure54, A.InvoiceNinjaAppState_build__closure55, A.InvoiceNinjaAppState_build__closure56, A.InvoiceNinjaAppState_build__closure57, A.InvoiceNinjaAppState_build__closure58, A.InvoiceNinjaAppState_build__closure59, A.InvoiceNinjaAppState_build__closure60, A.InvoiceNinjaAppState_build__closure61, A.InvoiceNinjaAppState_build__closure62, A.InvoiceNinjaAppState_build__closure63, A.InvoiceNinjaAppState_build__closure64, A.InvoiceNinjaAppState_build__closure65, A.InvoiceNinjaAppState_build__closure66, A.InvoiceNinjaAppState_build__closure67, A.InvoiceNinjaAppState_build__closure68, A.InvoiceNinjaAppState_build__closure69, A.InvoiceNinjaAppState_build__closure70, A.InvoiceNinjaAppState_build__closure71, A.InvoiceNinjaAppState_build__closure72, A.InvoiceNinjaAppState_build__closure73, A.InvoiceNinjaAppState_build__closure74, A.InvoiceNinjaAppState_build__closure75, A.InvoiceNinjaAppState_build__closure76, A.InvoiceNinjaAppState_build__closure77, A.InvoiceNinjaAppState_build__closure78, A.InvoiceNinjaAppState_build__closure79, A.InvoiceNinjaAppState_build__closure80, A.InvoiceNinjaAppState_build__closure81, A.InvoiceNinjaAppState_build__closure82, A.InvoiceNinjaAppState_build__closure83, A.InvoiceNinjaAppState_build__closure84, A.InvoiceNinjaAppState_build__closure85, A.InvoiceNinjaAppState_build__closure86, A.InvoiceNinjaAppState_build__closure87, A.InvoiceNinjaAppState_build__closure88, A.InvoiceNinjaAppState_build__closure89, A.InvoiceNinjaAppState_build__closure90, A.InvoiceNinjaAppState_build__closure91, A.InvoiceNinjaAppState_build__closure92, A.InvoiceNinjaAppState_build__closure93, A.InvoiceNinjaAppState_build__closure94, A.InvoiceNinjaAppState_build__closure95, A.InvoiceNinjaAppState_build__closure96, A.InvoiceNinjaAppState_build__closure97, A.InvoiceNinjaAppState_build__closure98, A.InvoiceNinjaAppState_build__closure99, A.InvoiceNinjaAppState_build__closure100, A.InvoiceNinjaAppState_build__closure101, A.InvoiceNinjaAppState_build__closure102, A.InvoiceNinjaAppState_build__closure103, A.InvoiceNinjaAppState_build__closure104, A.InvoiceNinjaAppState_build__closure105, A.InvoiceNinjaAppState_build__closure106, A.InvoiceNinjaAppState_build__closure107, A.InvoiceNinjaAppState_build__closure108, A.InvoiceNinjaAppState_build__closure109, A.InvoiceNinjaAppState_build__closure110, A.InvoiceNinjaAppState_build__closure111, A.InvoiceNinjaAppState_build__closure112, A.InvoiceNinjaAppState_build__closure113, A.InvoiceNinjaAppState_build__closure114, A.InvoiceNinjaAppState_build__closure115, A.InvoiceNinjaAppState_build__closure116, A.InvoiceNinjaAppState_build__closure117, A.InvoiceNinjaAppState_build__closure118, A.InvoiceNinjaAppState_build__closure119, A.InvoiceNinjaAppState_build__closure120, A.InvoiceNinjaAppState_build__closure121, A.InvoiceNinjaAppState_build__closure122, A.viewEntityById__closure, A.checkForChanges_closure, A._createLoadState_closure, A._createLoadState__closure, A._createLoadState__closure0, A._createLoadState__closure1, A._createLoadState__closure2, A._createLoadState__closure3, A._getRoutes_closure, A._getRoutes_closure0, A._createUserLoggedIn_closure, A._createPersistData_closure, A._createPersistUI_closure, A._createPersistPrefs_closure, A._createPersistPrefs__closure, A._createAccountLoaded_closure, A._createDataRefreshed_closure, A._createPersistStatic_closure, A._createDeleteState_closure, A._createDeleteState__closure, A._createViewMainScreen_closure, A._createViewMainScreen__closure, A._createClearData_closure, A._createClearData__closure, A.appReducer_closure, A.appReducer__closure, A.appReducer_closure0, A.appReducer_closure1, A.appReducer_closure2, A.AppState_AppState_closure, A.AppState_companies_closure, A.AppState_historyList_closure, A.AppState_getEntityMap_closure, A.AppState_getEntityMap_closure0, A._createUserLogout_closure, A._createUserLogout__closure, A._createUserLogoutAll_closure, A._createUserLogoutAll__closure, A._createUserLogoutAll__closure0, A._createLoginRequest_closure, A._createLoginRequest__closure, A._createLoginRequest__closure0, A._createSignUpRequest_closure, A._createSignUpRequest__closure, A._createSignUpRequest__closure0, A._createOAuthLoginRequest_closure, A._createOAuthLoginRequest__closure, A._createOAuthLoginRequest__closure0, A._createOAuthSignUpRequest_closure, A._createOAuthSignUpRequest__closure, A._createOAuthSignUpRequest__closure0, A._createRefreshRequest_closure, A._createRefreshRequest__closure, A._createRefreshRequest___closure, A._createRefreshRequest____closure, A._createRefreshRequest__closure0, A._createRecoverRequest_closure, A._createRecoverRequest__closure, A._createRecoverRequest__closure0, A._createCompany_closure, A._createCompany__closure, A._createCompany___closure, A._setDefaultCompany_closure, A._setDefaultCompany__closure, A._setDefaultCompany__closure0, A._deleteCompany_closure, A._deleteCompany__closure, A._deleteCompany__closure0, A._purgeData_closure, A._purgeData__closure, A._purgeData___closure, A._purgeData__closure0, A._resendConfirmation_closure, A._resendConfirmation__closure, A._resendConfirmation__closure0, A.userLoadUrlReducer_closure, A.userSignUpRequestReducer_closure, A.userLoginRequestReducer_closure, A.oauthLoginRequestReducer_closure, A.oauthSignUpRequestReducer_closure, A.userLoginSuccessReducer_closure, A.userVerifiedPasswordReducer_closure, A.userUnverifiedPasswordReducer_closure, A.handleBankAccountAction_closure, A.handleBankAccountAction_closure0, A._editBankAccount_closure, A._viewBankAccount_closure, A._viewBankAccountList_closure0, A._viewBankAccountList__closure, A._archiveBankAccount_closure, A._archiveBankAccount__closure, A._archiveBankAccount__closure0, A._archiveBankAccount__closure1, A._deleteBankAccount_closure, A._deleteBankAccount__closure, A._deleteBankAccount__closure0, A._deleteBankAccount__closure1, A._restoreBankAccount_closure, A._restoreBankAccount__closure, A._restoreBankAccount__closure0, A._restoreBankAccount__closure1, A._saveBankAccount_closure, A._saveBankAccount__closure, A._saveBankAccount__closure0, A._loadBankAccount_closure, A._loadBankAccount__closure, A._loadBankAccount__closure0, A._loadBankAccounts_closure, A._loadBankAccounts__closure, A._loadBankAccounts__closure0, A.bankAccountUIReducer_closure, A.editingReducer__closure45, A.bankAccountListReducer__closure, A._viewBankAccountList_closure, A._filterBankAccountsByCustom1_closure, A._filterBankAccountsByCustom1_closure0, A._filterBankAccountsByCustom2_closure, A._filterBankAccountsByCustom2_closure0, A._filterBankAccountsByState_closure, A._filterBankAccountsByState_closure0, A._filterBankAccounts_closure, A._sortBankAccounts_closure, A._startListMultiselect_closure21, A._addToListMultiselect_closure21, A._removeFromListMultiselect_closure21, A._clearListMultiselect_closure21, A._archiveBankAccountSuccess_closure, A._deleteBankAccountSuccess_closure, A._restoreBankAccountSuccess_closure, A._addBankAccount_closure, A._updateBankAccount_closure, A._setLoadedBankAccount_closure, A.memoizedDropdownBankAccountList_closure, A.dropdownBankAccountsSelector_closure, A.memoizedFilteredBankAccountList_closure, A.filteredBankAccountsSelector_closure, A.BankAccountState_loadBankAccounts_closure0, A.BankAccountState_loadBankAccounts_closure1, A.BankAccountState_loadBankAccounts_closure, A.handleClientAction_closure, A.handleClientAction_closure0, A.handleClientAction_closure1, A.handleClientAction_closure2, A.handleClientAction_closure3, A.handleClientAction_closure4, A.handleClientAction_closure5, A.__MergClientPickerState_build_closure, A._editClient_closure, A._viewClient_closure, A._viewClientList_closure0, A._viewClientList__closure, A._archiveClient_closure, A._archiveClient__closure, A._archiveClient__closure0, A._archiveClient__closure1, A._mergeClients_closure, A._mergeClients__closure, A._mergeClients__closure0, A._deleteClient_closure, A._deleteClient__closure, A._deleteClient__closure0, A._deleteClient__closure1, A._purgeClient_closure, A._purgeClient__closure, A._purgeClient__closure0, A._restoreClient_closure, A._restoreClient__closure, A._restoreClient__closure0, A._restoreClient__closure1, A._saveClient_closure, A._saveClient__closure, A._saveClient__closure0, A._loadClient_closure, A._loadClient__closure, A._loadClient__closure0, A._loadClients_closure, A._loadClients__closure, A._loadClients___closure, A._loadClients____closure, A._loadClients_____closure, A._loadClients__closure0, A._saveDocument_closure11, A._saveDocument__closure23, A._saveDocument___closure11, A._saveDocument____closure11, A._saveDocument__closure24, A._showPdfClient_closure, A.clientUIReducer_closure, A.editingReducer__closure59, A.editingReducer__closure58, A.editingReducer__closure57, A.editingReducer__closure56, A.clientListReducer__closure, A._viewClientList_closure, A._filterClientsByCustom1_closure, A._filterClientsByCustom1_closure0, A._filterClientsByCustom2_closure, A._filterClientsByCustom2_closure0, A._filterClientsByCustom3_closure, A._filterClientsByCustom3_closure0, A._filterClientsByCustom4_closure, A._filterClientsByCustom4_closure0, A._filterClientsByState_closure, A._filterClientsByState_closure0, A._filterClients_closure, A._sortClients_closure, A._startListMultiselect_closure26, A._addToListMultiselect_closure26, A._removeFromListMultiselect_closure26, A._clearListMultiselect_closure26, A._archiveClientSuccess_closure, A._deleteClientSuccess_closure, A._restoreClientSuccess_closure, A._addClient_closure, A._addClient__closure, A._updateClient_closure, A._updateClient__closure, A._setLoadedClient_closure, A._setLoadedClient__closure, A._mergeClientSuccess_closure, A._purgeClientSuccess_closure26, A.memoizedDropdownClientList_closure, A.dropdownClientsSelector_closure, A.memoizedFilteredClientList_closure, A.filteredClientsSelector_closure, A.filteredClientsSelector__closure, A.ClientState_loadClients_closure0, A.ClientState_loadClients_closure1, A.ClientState_loadClients_closure, A.companyReducer_closure, A.userCompanyEntityReducer__closure12, A.userCompanyEntityReducer__closure10, A.userCompanyEntityReducer___closure, A.userCompanyEntityReducer__closure11, A.userCompanyEntityReducer__closure9, A.userCompanyEntityReducer__closure8, A.userCompanyEntityReducer__closure7, A.userCompanyEntityReducer__closure6, A.userCompanyEntityReducer__closure5, A.userCompanyEntityReducer__closure4, A.userCompanyEntityReducer__closure3, A.userCompanyEntityReducer__closure2, A.userCompanyEntityReducer__closure1, A.userCompanyEntityReducer__closure, A.userCompanyEntityReducer__closure0, A.loadCompanySuccessReducer_closure, A.loadCompanySuccessReducer_closure0, A.saveCompanySuccessReducer_closure, A.saveCompanySuccessReducer_closure0, A.dropdownExpenseCategoriesSelector_closure1, A.memoizedHasMultipleCurrencies_closure, A.memoizedGetCurrencyIds_closure, A.filteredSelector_closure, A.filteredSelector_closure0, A.filteredSelector_closure1, A.filteredSelector_closure2, A.filteredSelector_closure3, A.filteredSelector_closure4, A.filteredSelector_closure5, A.filteredSelector_closure6, A.filteredSelector_closure7, A.filteredSelector_closure8, A.filteredSelector_closure9, A.filteredSelector_closure10, A.filteredSelector_closure11, A.filteredSelector_closure12, A.handleCompanyGatewayAction_closure, A.handleCompanyGatewayAction_closure0, A.handleCompanyGatewayAction_closure1, A._editCompanyGateway_closure, A._viewCompanyGateway_closure, A._viewCompanyGatewayList_closure, A._viewCompanyGatewayList__closure, A._archiveCompanyGateway_closure, A._archiveCompanyGateway__closure, A._archiveCompanyGateway__closure0, A._archiveCompanyGateway__closure1, A._deleteCompanyGateway_closure, A._deleteCompanyGateway__closure, A._deleteCompanyGateway__closure0, A._deleteCompanyGateway__closure1, A._restoreCompanyGateway_closure, A._restoreCompanyGateway__closure, A._restoreCompanyGateway__closure0, A._restoreCompanyGateway__closure1, A._disconnectCompanyGateway_closure, A._disconnectCompanyGateway__closure, A._disconnectCompanyGateway__closure0, A._saveCompanyGateway_closure, A._saveCompanyGateway__closure, A._saveCompanyGateway__closure0, A._loadCompanyGateway_closure, A._loadCompanyGateway__closure, A._loadCompanyGateway__closure0, A._loadCompanyGateways_closure, A._loadCompanyGateways__closure, A._loadCompanyGateways__closure0, A.companyGatewayUIReducer_closure, A.editingReducer__closure13, A.companyGatewayListReducer__closure, A._filterCompanyGatewaysByCustom1_closure, A._filterCompanyGatewaysByCustom1_closure0, A._filterCompanyGatewaysByCustom2_closure, A._filterCompanyGatewaysByCustom2_closure0, A._filterCompanyGatewaysByState_closure, A._filterCompanyGatewaysByState_closure0, A._filterCompanyGateways_closure, A._sortCompanyGateways_closure, A._startListMultiselect_closure7, A._addToListMultiselect_closure7, A._removeFromListMultiselect_closure7, A._clearListMultiselect_closure7, A._archiveCompanyGatewaySuccess_closure, A._deleteCompanyGatewaySuccess_closure, A._restoreCompanyGatewaySuccess_closure, A._addCompanyGateway_closure, A._addCompanyGateway__closure, A._updateCompanyGateway_closure, A._updateCompanyGateway__closure, A._setLoadedCompanyGateway_closure, A._setLoadedCompanyGateway__closure, A._setLoadedCompany_closure1, A._setLoadedCompany__closure1, A._setLoadedCompany__closure2, A._setLoadedCompany_closure2, A._setLoadedCompanyGateways_closure, A._setLoadedCompanyGateways__closure, A._setLoadedCompanyGateways__closure0, A._setLoadedCompanyGateways_closure0, A.memoizedFilteredCompanyGatewayList_closure, A.filteredCompanyGatewaysSelector_closure, A.filteredCompanyGatewaysSelector_closure0, A.filteredCompanyGatewaysSelector_closure1, A.clientStatsForCompanyGateway__closure, A.handleCreditAction_closure, A.handleCreditAction_closure0, A.handleCreditAction_closure3, A.handleCreditAction_closure4, A.handleCreditAction_closure5, A.handleCreditAction_closure6, A.handleCreditAction_closure7, A.handleCreditAction_closure8, A.handleCreditAction_closure9, A.handleCreditAction__closure, A.handleCreditAction_closure10, A.handleCreditAction_closure11, A.handleCreditAction_closure12, A.handleCreditAction_closure13, A._viewCredit_closure, A._viewCreditList_closure0, A._viewCreditList__closure, A._editCredit_closure, A._showEmailCredit_closure, A._showPdfCredit_closure, A._archiveCredit_closure, A._archiveCredit__closure, A._archiveCredit__closure0, A._archiveCredit__closure1, A._deleteCredit_closure, A._deleteCredit__closure, A._deleteCredit__closure0, A._deleteCredit__closure1, A._restoreCredit_closure, A._restoreCredit__closure, A._restoreCredit__closure0, A._restoreCredit__closure1, A._markSentCredit_closure, A._markSentCredit__closure, A._markSentCredit__closure0, A._markPaidCredit_closure, A._markPaidCredit__closure, A._markPaidCredit__closure0, A._emailCredit_closure, A._emailCredit__closure, A._emailCredit__closure0, A._saveCredit_closure, A._saveCredit__closure, A._saveCredit___closure, A._saveCredit__closure0, A._saveCredit__closure1, A._loadCredit_closure, A._loadCredit__closure, A._loadCredit__closure0, A._loadCredits_closure, A._loadCredits__closure, A._loadCredits___closure, A._loadCredits____closure, A._loadCredits_____closure, A._loadCredits__closure0, A._downloadCredits_closure, A._downloadCredits__closure, A._downloadCredits__closure0, A._bulkEmailCredits_closure, A._bulkEmailCredits__closure, A._bulkEmailCredits__closure0, A._saveDocument_closure0, A._saveDocument__closure1, A._saveDocument___closure0, A._saveDocument____closure0, A._saveDocument__closure2, A.creditUIReducer_closure, A.editingReducer__closure22, A.editingReducer__closure21, A.editingReducer__closure20, A.editingReducer__closure19, A.editingReducer__closure18, A.editingReducer___closure0, A.editingReducer__closure17, A.editingReducer__closure16, A._addCreditItem_closure, A._addCreditItems_closure, A._removeCreditItem_closure, A._updateCreditItem_closure, A.creditListReducer__closure, A._viewCreditList_closure, A._filterCreditsByCustom1_closure, A._filterCreditsByCustom1_closure0, A._filterCreditsByCustom2_closure, A._filterCreditsByCustom2_closure0, A._filterCreditsByCustom3_closure, A._filterCreditsByCustom3_closure0, A._filterCreditsByCustom4_closure, A._filterCreditsByCustom4_closure0, A._filterCreditsByState_closure, A._filterCreditsByState_closure0, A._filterCreditsByStatus_closure, A._filterCreditsByStatus_closure0, A._filterCredits_closure, A._sortCredits_closure, A._startListMultiselect_closure10, A._addToListMultiselect_closure10, A._removeFromListMultiselect_closure10, A._clearListMultiselect_closure10, A._purgeClientSuccess_closure9, A._purgeClientSuccess_closure10, A._purgeClientSuccess_closure8, A._purgeClientSuccess__closure6, A._markSentCreditSuccess_closure0, A._markSentCreditSuccess_closure1, A._markSentCreditSuccess_closure, A._archiveCreditSuccess_closure, A._deleteCreditSuccess_closure, A._restoreCreditSuccess_closure, A._addCredit_closure, A._addCredit__closure, A._updateCredit_closure, A._updateCredit__closure, A.creditContactSelector_closure, A.creditContactSelector_closure0, A.memoizedDropdownCreditList_closure, A.dropdownCreditSelector_closure, A.memoizedFilteredCreditList_closure, A.filteredCreditsSelector__closure0, A.filteredCreditsSelector_closure0, A.filteredCreditsSelector__closure, A.CreditState_loadCredits_closure0, A.CreditState_loadCredits_closure1, A.CreditState_loadCredits_closure, A._createViewDashboard_closure, A._createViewDashboard___closure, A.dashboardUIReducer_closure, A.selectedEntitiesReducer__closure0, A.selectedEntitiesReducer__closure, A.dashboardSettingsReducer_closure, A.dashboardSettingsReducer_closure0, A.dashboardSettingsReducer_closure1, A.dashboardSettingsReducer_closure2, A.dashboardSettingsReducer_closure3, A.memoizedChartInvoices_closure, A.memoizedChartOverviewInvoices_closure, A.memoizedPreviousChartInvoices_closure, A.memoizedChartQuotes_closure, A.memoizedPreviousChartQuotes_closure, A.memoizedChartPayments_closure, A.memoizedPreviousChartPayments_closure, A.memoizedChartTasks_closure, A.memoizedPreviousChartTasks_closure, A.chartTasks__closure, A.memoizedChartExpenses_closure, A.memoizedPreviousChartExpenses_closure, A.handleDesignAction_closure, A.handleDesignAction_closure0, A.handleDesignAction_closure1, A.handleDesignAction_closure2, A.handleDesignAction_closure3, A._editDesign_closure, A._viewDesign_closure, A._viewDesignList_closure0, A._viewDesignList__closure, A._archiveDesign_closure, A._archiveDesign__closure, A._archiveDesign__closure0, A._archiveDesign__closure1, A._deleteDesign_closure, A._deleteDesign__closure, A._deleteDesign__closure0, A._deleteDesign__closure1, A._restoreDesign_closure, A._restoreDesign__closure, A._restoreDesign__closure0, A._restoreDesign__closure1, A._saveDesign_closure, A._saveDesign__closure, A._saveDesign__closure0, A._loadDesign_closure, A._loadDesign__closure, A._loadDesign__closure0, A._loadDesigns_closure, A._loadDesigns__closure, A._loadDesigns__closure0, A.designUIReducer_closure, A.editingReducer__closure23, A.designListReducer__closure, A._viewDesignList_closure, A._filterDesignsByCustom1_closure, A._filterDesignsByCustom1_closure0, A._filterDesignsByCustom2_closure, A._filterDesignsByCustom2_closure0, A._filterDesignsByState_closure, A._filterDesignsByState_closure0, A._filterDesigns_closure, A._sortDesigns_closure, A._startListMultiselect_closure11, A._addToListMultiselect_closure11, A._removeFromListMultiselect_closure11, A._clearListMultiselect_closure11, A._archiveDesignSuccess_closure, A._deleteDesignSuccess_closure, A._restoreDesignSuccess_closure, A._addDesign_closure, A._updateDesign_closure, A._setLoadedDesign_closure, A.memoizedFilteredDesignList_closure, A.filteredDesignsSelector_closure, A.DesignState_cleanDesign_closure, A.DesignState_customDesigns_closure, A.DesignState_customDesigns_closure0, A.DesignState_loadDesigns_closure0, A.DesignState_loadDesigns_closure1, A.DesignState_loadDesigns_closure, A.handleDocumentAction_closure, A.handleDocumentAction_showDocument_closure, A.handleDocumentAction_showDocument__closure0, A.handleDocumentAction_closure0, A.handleDocumentAction_closure1, A.handleDocumentAction_closure2, A.handleDocumentAction___closure, A.handleDocumentAction___closure0, A.handleDocumentAction___closure1, A.handleDocumentAction___closure2, A.handleDocumentAction___closure3, A.handleDocumentAction___closure4, A.handleDocumentAction___closure5, A.handleDocumentAction___closure6, A.handleDocumentAction___closure7, A.handleDocumentAction___closure8, A.handleDocumentAction___closure9, A.handleDocumentAction___closure10, A.handleDocumentAction___closure11, A.handleDocumentAction___closure12, A.handleDocumentAction___closure13, A._editDocument_closure, A._viewDocument_closure, A._viewDocumentList_closure0, A._viewDocumentList__closure, A._saveDocument_closure13, A._saveDocument__closure27, A._saveDocument___closure13, A._saveDocument__closure28, A._archiveDocument_closure, A._archiveDocument__closure, A._archiveDocument__closure0, A._archiveDocument__closure1, A._downloadDocuments_closure, A._downloadDocuments__closure, A._downloadDocuments__closure0, A._deleteDocument_closure, A._deleteDocument__closure, A._deleteDocument__closure0, A._restoreDocument_closure, A._restoreDocument__closure, A._restoreDocument__closure0, A._restoreDocument__closure1, A._loadDocument_closure, A._loadDocument__closure, A._loadDocument__closure0, A._loadDocumentData_closure, A._loadDocumentData__closure, A._loadDocumentData___closure, A._loadDocumentData__closure0, A.documentUIReducer_closure, A.editingReducer__closure11, A.documentListReducer__closure, A._viewDocumentList_closure, A._filterDocumentsByCustom1_closure, A._filterDocumentsByCustom1_closure0, A._filterDocumentsByCustom2_closure, A._filterDocumentsByCustom2_closure0, A._filterDocumentsByState_closure, A._filterDocumentsByState_closure0, A._filterDocumentsByStatus_closure, A._filterDocumentsByStatus_closure0, A._filterDocuments_closure, A._sortDocuments_closure, A._startListMultiselect_closure5, A._addToListMultiselect_closure5, A._removeFromListMultiselect_closure5, A._clearListMultiselect_closure5, A._archiveDocumentSuccess_closure, A._deleteDocumentSuccess_closure, A._restoreDocumentSuccess_closure, A._addDocument_closure, A._addDocument__closure, A._addDocument__closure0, A._addDocument_closure0, A._updateDocument_closure, A._setLoadedDocument_closure, A._setLoadedDocuments_closure, A._setLoadedDocuments__closure, A._setLoadedDocuments__closure0, A._setLoadedDocuments_closure0, A._setLoadedCompany_closure9, A._setLoadedCompany__closure24, A._setLoadedCompany_closure10, A._setLoadedCompany__closure23, A._setLoadedCompany___closure11, A._setLoadedCompany_closure11, A._setLoadedCompany__closure22, A._setLoadedCompany___closure10, A._setLoadedCompany_closure12, A._setLoadedCompany__closure21, A._setLoadedCompany___closure9, A._setLoadedCompany_closure13, A._setLoadedCompany__closure20, A._setLoadedCompany___closure8, A._setLoadedCompany_closure14, A._setLoadedCompany__closure19, A._setLoadedCompany___closure7, A._setLoadedCompany_closure15, A._setLoadedCompany__closure18, A._setLoadedCompany___closure6, A._setLoadedCompany_closure16, A._setLoadedCompany__closure17, A._setLoadedCompany___closure5, A._setLoadedCompany_closure17, A._setLoadedCompany__closure16, A._setLoadedCompany___closure4, A._setLoadedCompany_closure18, A._setLoadedCompany__closure15, A._setLoadedCompany___closure3, A._setLoadedCompany_closure19, A._setLoadedCompany__closure14, A._setLoadedCompany___closure2, A._setLoadedCompany_closure20, A._setLoadedCompany__closure13, A._setLoadedCompany___closure1, A._setLoadedCompany_closure21, A._setLoadedCompany__closure12, A._setLoadedCompany___closure0, A._setLoadedCompany_closure22, A._setLoadedCompany__closure11, A._setLoadedCompany___closure, A._setLoadedCompany_closure23, A._setLoadedCompany__closure9, A._setLoadedCompany__closure10, A._setLoadedCompany_closure24, A.memoizedFilteredDocumentList_closure, A.filteredDocumentsSelector_closure, A.handleExpenseAction_closure, A.handleExpenseAction_closure0, A.handleExpenseAction_closure1, A.handleExpenseAction_closure2, A.handleExpenseAction_closure3, A.handleExpenseAction_closure4, A._editExpense_closure, A._viewExpense_closure, A._viewExpenseList_closure0, A._viewExpenseList__closure, A._archiveExpense_closure, A._archiveExpense__closure, A._archiveExpense__closure0, A._archiveExpense__closure1, A._deleteExpense_closure, A._deleteExpense__closure, A._deleteExpense__closure0, A._deleteExpense__closure1, A._restoreExpense_closure, A._restoreExpense__closure, A._restoreExpense__closure0, A._restoreExpense__closure1, A._saveExpense_closure, A._saveExpense__closure, A._saveExpense__closure0, A._loadExpense_closure, A._loadExpense__closure, A._loadExpense__closure0, A._loadExpenses_closure, A._loadExpenses__closure, A._loadExpenses___closure, A._loadExpenses____closure, A._loadExpenses_____closure, A._loadExpenses__closure0, A._saveDocument_closure9, A._saveDocument__closure19, A._saveDocument___closure9, A._saveDocument____closure9, A._saveDocument__closure20, A.expenseUIReducer_closure, A.editingReducer__closure10, A.expenseListReducer__closure, A._viewExpenseList_closure, A._filterExpensesByCustom1_closure, A._filterExpensesByCustom1_closure0, A._filterExpensesByCustom2_closure, A._filterExpensesByCustom2_closure0, A._filterExpensesByCustom3_closure, A._filterExpensesByCustom3_closure0, A._filterExpensesByCustom4_closure, A._filterExpensesByCustom4_closure0, A._filterExpensesByState_closure, A._filterExpensesByState_closure0, A._filterExpensesByStatus_closure, A._filterExpensesByStatus_closure0, A._filterExpenses_closure, A._sortExpenses_closure, A._startListMultiselect_closure4, A._addToListMultiselect_closure4, A._removeFromListMultiselect_closure4, A._clearListMultiselect_closure4, A._purgeClientSuccess_closure21, A._purgeClientSuccess_closure22, A._purgeClientSuccess_closure20, A._purgeClientSuccess__closure14, A._archiveExpenseSuccess_closure, A._deleteExpenseSuccess_closure, A._restoreExpenseSuccess_closure, A._addExpense_closure, A._updateExpense_closure, A._setLoadedExpense_closure, A.convertExpenseToInvoiceItem_closure, A.memoizedFilteredExpenseList_closure, A.filteredExpensesSelector_closure, A.clientExpenseList_closure, A.ExpenseState_loadExpenses_closure0, A.ExpenseState_loadExpenses_closure1, A.ExpenseState_loadExpenses_closure, A.handleExpenseCategoryAction_closure, A.handleExpenseCategoryAction_closure0, A.handleExpenseCategoryAction_closure1, A._editExpenseCategory_closure, A._viewExpenseCategory_closure, A._viewExpenseCategoryList_closure, A._viewExpenseCategoryList__closure, A._archiveExpenseCategory_closure, A._archiveExpenseCategory__closure, A._archiveExpenseCategory__closure0, A._archiveExpenseCategory__closure1, A._deleteExpenseCategory_closure, A._deleteExpenseCategory__closure, A._deleteExpenseCategory__closure0, A._deleteExpenseCategory__closure1, A._restoreExpenseCategory_closure, A._restoreExpenseCategory__closure, A._restoreExpenseCategory__closure0, A._restoreExpenseCategory__closure1, A._saveExpenseCategory_closure, A._saveExpenseCategory__closure, A._saveExpenseCategory__closure0, A._loadExpenseCategory_closure, A._loadExpenseCategory__closure, A._loadExpenseCategory__closure0, A._loadExpenseCategories_closure, A._loadExpenseCategories__closure, A._loadExpenseCategories__closure0, A.expenseCategoryUIReducer_closure, A.editingReducer__closure34, A.expenseCategoryListReducer__closure, A._filterExpenseCategoriesByCustom1_closure, A._filterExpenseCategoriesByCustom1_closure0, A._filterExpenseCategoriesByCustom2_closure, A._filterExpenseCategoriesByCustom2_closure0, A._filterExpenseCategoriesByState_closure, A._filterExpenseCategoriesByState_closure0, A._filterExpenseCategories_closure, A._sortExpenseCategories_closure, A._startListMultiselect_closure16, A._addToListMultiselect_closure16, A._removeFromListMultiselect_closure16, A._clearListMultiselect_closure16, A._archiveExpenseCategorySuccess_closure, A._deleteExpenseCategorySuccess_closure, A._restoreExpenseCategorySuccess_closure, A._addExpenseCategory_closure, A._updateExpenseCategory_closure, A._setLoadedExpenseCategory_closure, A.memoizedDropdownExpenseCategoryList_closure, A.dropdownExpenseCategoriesSelector_closure, A.memoizedFilteredExpenseCategoryList_closure, A.filteredExpenseCategoriesSelector_closure, A.ExpenseCategoryState_loadExpenseCategories_closure0, A.ExpenseCategoryState_loadExpenseCategories_closure1, A.ExpenseCategoryState_loadExpenseCategories_closure, A.handleGroupAction_closure, A.handleGroupAction_closure0, A._editGroup_closure, A._viewGroup_closure, A._viewGroupList_closure0, A._viewGroupList__closure, A._archiveGroup_closure, A._archiveGroup__closure, A._archiveGroup__closure0, A._archiveGroup__closure1, A._deleteGroup_closure, A._deleteGroup__closure, A._deleteGroup__closure0, A._deleteGroup__closure1, A._restoreGroup_closure, A._restoreGroup__closure, A._restoreGroup__closure0, A._restoreGroup__closure1, A._saveGroup_closure, A._saveGroup__closure, A._saveGroup__closure0, A._loadGroup_closure, A._loadGroup__closure, A._loadGroup__closure0, A._loadGroups_closure, A._loadGroups__closure, A._loadGroups___closure, A._loadGroups____closure, A._loadGroups_____closure, A._loadGroups__closure0, A._saveDocument_closure, A._saveDocument__closure, A._saveDocument___closure, A._saveDocument____closure, A._saveDocument__closure0, A.groupUIReducer_closure, A.editingReducer__closure12, A.groupListReducer__closure, A._viewGroupList_closure, A._filterGroupsByState_closure, A._filterGroupsByState_closure0, A._filterGroups_closure, A._sortGroups_closure, A._startListMultiselect_closure6, A._addToListMultiselect_closure6, A._removeFromListMultiselect_closure6, A._clearListMultiselect_closure6, A._archiveGroupSuccess_closure, A._deleteGroupSuccess_closure, A._restoreGroupSuccess_closure, A._addGroup_closure, A._updateGroup_closure, A._setLoadedGroup_closure, A._setLoadedGroups_closure, A._setLoadedGroups__closure, A._setLoadedGroups__closure0, A._setLoadedGroups_closure0, A._setLoadedCompany_closure, A._setLoadedCompany__closure, A._setLoadedCompany__closure0, A._setLoadedCompany_closure0, A.memoizedFilteredGroupList_closure, A.filteredGroupsSelector_closure, A.handleInvoiceAction_closure, A.handleInvoiceAction_closure0, A.handleInvoiceAction_closure1, A.handleInvoiceAction_closure2, A.handleInvoiceAction_closure3, A.handleInvoiceAction_closure6, A.handleInvoiceAction_closure7, A.handleInvoiceAction__closure1, A.handleInvoiceAction_closure8, A.handleInvoiceAction_closure9, A.handleInvoiceAction_closure10, A.handleInvoiceAction_closure11, A.handleInvoiceAction_closure12, A.handleInvoiceAction__closure, A.handleInvoiceAction__closure0, A.handleInvoiceAction_closure13, A.handleInvoiceAction_closure14, A.handleInvoiceAction_closure15, A.handleInvoiceAction_closure16, A.handleInvoiceAction_closure17, A.handleInvoiceAction_closure18, A.handleInvoiceAction_closure19, A._viewInvoiceList_closure0, A._viewInvoiceList__closure, A._viewInvoice_closure, A._editInvoice_closure, A._showEmailInvoice_closure, A._showPdfInvoice_closure, A._cancelInvoices_closure, A._cancelInvoices__closure, A._cancelInvoices__closure0, A._archiveInvoice_closure, A._archiveInvoice__closure, A._archiveInvoice__closure0, A._archiveInvoice__closure1, A._deleteInvoice_closure, A._deleteInvoice__closure, A._deleteInvoice__closure0, A._deleteInvoice__closure1, A._restoreInvoice_closure, A._restoreInvoice__closure, A._restoreInvoice__closure0, A._restoreInvoice__closure1, A._markInvoiceSent_closure, A._markInvoiceSent__closure, A._markInvoiceSent__closure0, A._autoBillInvoices_closure, A._autoBillInvoices__closure, A._autoBillInvoices__closure0, A._markInvoicePaid_closure, A._markInvoicePaid__closure, A._markInvoicePaid__closure0, A._downloadInvoices_closure, A._downloadInvoices__closure, A._downloadInvoices__closure0, A._emailInvoice_closure, A._emailInvoice__closure, A._emailInvoice__closure0, A._bulkEmailInvoices_closure, A._bulkEmailInvoices__closure, A._bulkEmailInvoices__closure0, A._saveInvoice_closure, A._saveInvoice__closure, A._saveInvoice___closure, A._saveInvoice__closure0, A._saveInvoice__closure1, A._loadInvoice_closure, A._loadInvoice__closure, A._loadInvoice__closure0, A._loadInvoices_closure, A._loadInvoices__closure, A._loadInvoices___closure, A._loadInvoices____closure, A._loadInvoices_____closure, A._loadInvoices__closure0, A._saveDocument_closure10, A._saveDocument__closure21, A._saveDocument___closure10, A._saveDocument____closure10, A._saveDocument__closure22, A.invoiceUIReducer_closure, A.editingReducer__closure55, A.editingReducer__closure54, A.editingReducer__closure53, A.editingReducer__closure52, A.editingReducer__closure51, A.editingReducer___closure3, A.editingReducer__closure50, A.editingReducer__closure49, A._updateEditing_closure, A._addInvoiceItem_closure, A._addInvoiceItem_closure0, A._addInvoiceItems_closure, A._removeInvoiceItem_closure, A._updateInvoiceItem_closure, A.invoiceListReducer__closure, A._viewInvoiceList_closure, A._filterInvoicesByCustom1_closure, A._filterInvoicesByCustom1_closure0, A._filterInvoicesByCustom2_closure, A._filterInvoicesByCustom2_closure0, A._filterInvoicesByCustom3_closure, A._filterInvoicesByCustom3_closure0, A._filterInvoicesByCustom4_closure, A._filterInvoicesByCustom4_closure0, A._filterInvoicesByState_closure, A._filterInvoicesByState_closure0, A._filterInvoicesByStatus_closure, A._filterInvoicesByStatus_closure0, A._filterInvoices_closure, A._sortInvoices_closure, A._startListMultiselect_closure25, A._addToListMultiselect_closure25, A._removeFromListMultiselect_closure25, A._clearListMultiselect_closure25, A._purgeClientSuccess_closure24, A._purgeClientSuccess_closure25, A._purgeClientSuccess_closure23, A._purgeClientSuccess__closure16, A._markInvoicesSentSuccess_closure, A._markInvoicesPaidSuccess_closure, A._cancelInvoicesSuccess_closure, A._archiveInvoiceSuccess_closure, A._deleteInvoiceSuccess_closure, A._emailInvoiceSuccess_closure, A._restoreInvoiceSuccess_closure, A._addInvoice_closure, A._addInvoice__closure, A._updateInvoice_closure, A._updateInvoice__closure, A.invoiceContactSelector_closure, A.invoiceContactSelector_closure0, A.memoizedDropdownInvoiceList_closure, A.dropdownInvoiceSelector_closure, A.memoizedFilteredInvoiceList_closure, A.filteredInvoicesSelector__closure0, A.filteredInvoicesSelector_closure0, A.filteredInvoicesSelector__closure, A.InvoiceState_loadInvoices_closure0, A.InvoiceState_loadInvoices_closure1, A.InvoiceState_loadInvoices_closure, A.handlePaymentAction_closure, A.handlePaymentAction_closure0, A.handlePaymentAction__closure1, A.handlePaymentAction_closure1, A.handlePaymentAction__closure, A.handlePaymentAction__closure0, A.handlePaymentAction_closure2, A._editPayment_closure, A._editPayment__closure, A._viewRefundPayment_closure, A._viewRefundPayment__closure, A._viewPayment_closure, A._viewPaymentList_closure0, A._viewPaymentList__closure, A._archivePayment_closure, A._archivePayment__closure, A._archivePayment__closure0, A._archivePayment__closure1, A._deletePayment_closure, A._deletePayment__closure, A._deletePayment__closure0, A._deletePayment__closure1, A._restorePayment_closure, A._restorePayment__closure, A._restorePayment__closure0, A._restorePayment__closure1, A._savePayment_closure, A._savePayment__closure, A._savePayment__closure0, A._refundPayment_closure, A._refundPayment__closure, A._refundPayment__closure0, A._emailPayment_closure, A._emailPayment__closure, A._emailPayment__closure0, A._loadPayment_closure, A._loadPayment__closure, A._loadPayment__closure0, A._loadPayments_closure, A._loadPayments__closure, A._loadPayments__closure0, A.paymentUIReducer_closure, A.editingReducer__closure6, A.paymentListReducer__closure, A._viewPaymentList_closure, A._filterPaymentsByCustom1_closure, A._filterPaymentsByCustom1_closure0, A._filterPaymentsByCustom2_closure, A._filterPaymentsByCustom2_closure0, A._filterPaymentsByCustom3_closure, A._filterPaymentsByCustom3_closure0, A._filterPaymentsByCustom4_closure, A._filterPaymentsByCustom4_closure0, A._filterPaymentsByState_closure, A._filterPaymentsByState_closure0, A._filterPaymentsByStatus_closure, A._filterPaymentsByStatus_closure0, A._filterPayments_closure, A._sortPayments_closure, A._startListMultiselect_closure0, A._addToListMultiselect_closure0, A._removeFromListMultiselect_closure0, A._clearListMultiselect_closure0, A._purgeClientSuccess_closure3, A._purgeClientSuccess_closure4, A._purgeClientSuccess_closure2, A._purgeClientSuccess__closure2, A._archivePaymentSuccess_closure, A._deletePaymentSuccess_closure, A._restorePaymentSuccess_closure, A._addPayment_closure, A._updatePayment_closure, A._setLoadedPayment_closure, A.memoizedPaymentsByInvoice_closure, A.paymentsByInvoiceSelector_closure, A.paymentsByInvoiceSelector_closure0, A.paymentsByInvoiceSelector__closure, A.memoizedPaymentsByCredit_closure, A.paymentsByCreditSelector_closure, A.paymentsByCreditSelector_closure0, A.paymentsByCreditSelector__closure, A.memoizedFilteredPaymentList_closure, A.filteredPaymentsSelector_closure, A.filteredPaymentsSelector__closure, A.memoizedPaymentStatsForClient_closure, A.PaymentState_loadPayments_closure0, A.PaymentState_loadPayments_closure1, A.PaymentState_loadPayments_closure, A.handlePaymentTermAction_closure, A._editPaymentTerm_closure, A._viewPaymentTerm_closure, A._viewPaymentTermList_closure0, A._viewPaymentTermList__closure, A._archivePaymentTerm_closure, A._archivePaymentTerm__closure, A._archivePaymentTerm__closure0, A._archivePaymentTerm__closure1, A._deletePaymentTerm_closure, A._deletePaymentTerm__closure, A._deletePaymentTerm__closure0, A._deletePaymentTerm__closure1, A._restorePaymentTerm_closure, A._restorePaymentTerm__closure, A._restorePaymentTerm__closure0, A._restorePaymentTerm__closure1, A._savePaymentTerm_closure, A._savePaymentTerm__closure, A._savePaymentTerm__closure0, A._loadPaymentTerm_closure, A._loadPaymentTerm__closure, A._loadPaymentTerm__closure0, A._loadPaymentTerms_closure, A._loadPaymentTerms__closure, A._loadPaymentTerms__closure0, A.paymentTermUIReducer_closure, A.editingReducer__closure24, A.paymentTermListReducer__closure, A._viewPaymentTermList_closure, A._filterPaymentTermsByCustom1_closure, A._filterPaymentTermsByCustom1_closure0, A._filterPaymentTermsByCustom2_closure, A._filterPaymentTermsByCustom2_closure0, A._filterPaymentTermsByState_closure, A._filterPaymentTermsByState_closure0, A._filterPaymentTerms_closure, A._sortPaymentTerms_closure, A._startListMultiselect_closure12, A._addToListMultiselect_closure12, A._removeFromListMultiselect_closure12, A._clearListMultiselect_closure12, A._archivePaymentTermSuccess_closure, A._deletePaymentTermSuccess_closure, A._restorePaymentTermSuccess_closure, A._addPaymentTerm_closure, A._updatePaymentTerm_closure, A._setLoadedPaymentTerm_closure, A._setLoadedCompany_closure7, A._setLoadedCompany__closure7, A._setLoadedCompany__closure8, A._setLoadedCompany_closure8, A.dropdownPaymentTermsSelector_closure, A.memoizedFilteredPaymentTermList_closure, A.filteredPaymentTermsSelector_closure, A.PaymentTermState_loadPaymentTerms_closure0, A.PaymentTermState_loadPaymentTerms_closure1, A.PaymentTermState_loadPaymentTerms_closure, A.handleProductAction_closure, A.handleProductAction_closure0, A.handleProductAction__closure1, A.handleProductAction_closure1, A.handleProductAction__closure0, A.handleProductAction_closure2, A.handleProductAction__closure, A._editProduct_closure, A._viewProduct_closure, A._viewProductList_closure0, A._viewProductList__closure, A._archiveProduct_closure, A._archiveProduct__closure, A._archiveProduct__closure0, A._archiveProduct__closure1, A._setTaxCategoryProducts_closure, A._setTaxCategoryProducts__closure, A._setTaxCategoryProducts__closure0, A._deleteProduct_closure, A._deleteProduct__closure, A._deleteProduct__closure0, A._deleteProduct__closure1, A._restoreProduct_closure, A._restoreProduct__closure, A._restoreProduct__closure0, A._restoreProduct__closure1, A._saveProduct_closure, A._saveProduct__closure, A._saveProduct__closure0, A._loadProduct_closure, A._loadProduct__closure, A._loadProduct__closure0, A._loadProducts_closure, A._loadProducts__closure, A._loadProducts___closure, A._loadProducts____closure, A._loadProducts_____closure, A._loadProducts__closure0, A._saveDocument_closure12, A._saveDocument__closure25, A._saveDocument___closure12, A._saveDocument____closure12, A._saveDocument__closure26, A.productUIReducer_closure, A.editingReducer__closure60, A.productListReducer__closure, A._viewProductList_closure, A._filterProductsByState_closure, A._filterProductsByState_closure0, A._filterProductsByCustom1_closure, A._filterProductsByCustom1_closure0, A._filterProductsByCustom2_closure, A._filterProductsByCustom2_closure0, A._filterProductsByCustom3_closure, A._filterProductsByCustom3_closure0, A._filterProductsByCustom4_closure, A._filterProductsByCustom4_closure0, A._filterProducts_closure, A._sortProducts_closure, A._startListMultiselect_closure27, A._addToListMultiselect_closure27, A._removeFromListMultiselect_closure27, A._clearListMultiselect_closure27, A._archiveProductSuccess_closure, A._deleteProductSuccess_closure, A._restoreProductSuccess_closure, A._setTaxCategoryProductsSuccess_closure, A._addProduct_closure, A._updateProduct_closure, A._setLoadedProduct_closure, A.convertProductToInvoiceItem_closure, A.memoizedDropdownProductList_closure, A.dropdownProductsSelector_closure, A.memoizedProductList_closure, A.productList_closure, A.memoizedFilteredProductList_closure, A.filteredProductsSelector_closure, A.ProductState_loadProducts_closure0, A.ProductState_loadProducts_closure1, A.ProductState_loadProducts_closure, A.handleProjectAction_closure, A.handleProjectAction_closure0, A.handleProjectAction_closure1, A.handleProjectAction_closure2, A.handleProjectAction_closure3, A.handleProjectAction_closure4, A.handleProjectAction_closure5, A.handleProjectAction_closure6, A.handleProjectAction_closure7, A._editProject_closure, A._viewProject_closure, A._viewProjectList_closure0, A._viewProjectList__closure, A._archiveProject_closure, A._archiveProject__closure, A._archiveProject__closure0, A._archiveProject__closure1, A._deleteProject_closure, A._deleteProject__closure, A._deleteProject__closure0, A._deleteProject__closure1, A._restoreProject_closure, A._restoreProject__closure, A._restoreProject__closure0, A._restoreProject__closure1, A._saveProject_closure, A._saveProject__closure, A._saveProject__closure0, A._loadProject_closure, A._loadProject__closure, A._loadProject__closure0, A._loadProjects_closure, A._loadProjects__closure, A._loadProjects___closure, A._loadProjects____closure, A._loadProjects_____closure, A._loadProjects__closure0, A._saveDocument_closure6, A._saveDocument__closure13, A._saveDocument___closure6, A._saveDocument____closure6, A._saveDocument__closure14, A.projectUIReducer_closure, A.editingReducer__closure7, A.projectListReducer__closure, A._viewProjectList_closure, A._filterProjectsByCustom1_closure, A._filterProjectsByCustom1_closure0, A._filterProjectsByCustom2_closure, A._filterProjectsByCustom2_closure0, A._filterProjectsByCustom3_closure, A._filterProjectsByCustom3_closure0, A._filterProjectsByCustom4_closure, A._filterProjectsByCustom4_closure0, A._filterProjectsByState_closure, A._filterProjectsByState_closure0, A._filterProjects_closure, A._sortProjects_closure, A._startListMultiselect_closure1, A._addToListMultiselect_closure1, A._removeFromListMultiselect_closure1, A._clearListMultiselect_closure1, A._purgeClientSuccess_closure6, A._purgeClientSuccess_closure7, A._purgeClientSuccess_closure5, A._purgeClientSuccess__closure4, A._archiveProjectSuccess_closure, A._deleteProjectSuccess_closure, A._restoreProjectSuccess_closure, A._addProject_closure, A._updateProject_closure, A._setLoadedProject_closure, A.convertProjectToInvoiceItem_closure3, A.convertProjectToInvoiceItem_closure4, A.memoizedDropdownProjectList_closure, A.dropdownProjectsSelector_closure, A.memoizedFilteredProjectList_closure, A.filteredProjectsSelector_closure, A.ProjectState_loadProjects_closure0, A.ProjectState_loadProjects_closure1, A.ProjectState_loadProjects_closure, A.handlePurchaseOrderAction_closure, A.handlePurchaseOrderAction_closure0, A.handlePurchaseOrderAction_closure1, A.handlePurchaseOrderAction_closure2, A.handlePurchaseOrderAction_closure5, A.handlePurchaseOrderAction_closure6, A.handlePurchaseOrderAction_closure7, A.handlePurchaseOrderAction_closure8, A.handlePurchaseOrderAction_closure9, A.handlePurchaseOrderAction_closure10, A.handlePurchaseOrderAction_closure11, A.handlePurchaseOrderAction_closure12, A._viewPurchaseOrder_closure, A._viewPurchaseOrderList_closure0, A._viewPurchaseOrderList__closure, A._editPurchaseOrder_closure, A._showEmailPurchaseOrder_closure, A._showPdfPurchaseOrder_closure, A._archivePurchaseOrder_closure, A._archivePurchaseOrder__closure, A._archivePurchaseOrder__closure0, A._archivePurchaseOrder__closure1, A._deletePurchaseOrder_closure, A._deletePurchaseOrder__closure, A._deletePurchaseOrder__closure0, A._deletePurchaseOrder__closure1, A._restorePurchaseOrder_closure, A._restorePurchaseOrder__closure, A._restorePurchaseOrder__closure0, A._restorePurchaseOrder__closure1, A._approvePurchaseOrder_closure, A._approvePurchaseOrder__closure, A._approvePurchaseOrder__closure0, A._markSentPurchaseOrder_closure, A._markSentPurchaseOrder__closure, A._markSentPurchaseOrder__closure0, A._convertPurchaseOrdersToExpense_closure, A._convertPurchaseOrdersToExpense__closure, A._convertPurchaseOrdersToExpense__closure0, A._addPurchaseOrdersToInventory_closure, A._addPurchaseOrdersToInventory__closure, A._addPurchaseOrdersToInventory__closure0, A._acceptPurchaseOrders_closure, A._acceptPurchaseOrders__closure, A._acceptPurchaseOrders__closure0, A._cancelPurchaseOrders_closure, A._cancelPurchaseOrders__closure, A._cancelPurchaseOrders__closure0, A._emailPurchaseOrder_closure, A._emailPurchaseOrder__closure, A._emailPurchaseOrder__closure0, A._savePurchaseOrder_closure, A._savePurchaseOrder__closure, A._savePurchaseOrder___closure, A._savePurchaseOrder__closure0, A._savePurchaseOrder__closure1, A._loadPurchaseOrder_closure, A._loadPurchaseOrder__closure, A._loadPurchaseOrder__closure0, A._downloadPurchaseOrders_closure, A._downloadPurchaseOrders__closure, A._downloadPurchaseOrders__closure0, A._bulkEmailPurchaseOrders_closure, A._bulkEmailPurchaseOrders__closure, A._bulkEmailPurchaseOrders__closure0, A._loadPurchaseOrders_closure, A._loadPurchaseOrders__closure, A._loadPurchaseOrders___closure, A._loadPurchaseOrders____closure, A._loadPurchaseOrders_____closure, A._loadPurchaseOrders__closure0, A._saveDocument_closure3, A._saveDocument__closure7, A._saveDocument___closure3, A._saveDocument____closure3, A._saveDocument__closure8, A.purchaseOrderUIReducer_closure, A.editingReducer__closure44, A.editingReducer__closure43, A.editingReducer__closure42, A.editingReducer__closure41, A.editingReducer__closure40, A.editingReducer___closure2, A.editingReducer__closure39, A.editingReducer__closure38, A._addPurchaseOrderItem_closure, A._addPurchaseOrderItems_closure, A._removePurchaseOrderItem_closure, A._updatePurchaseOrderItem_closure, A.purchaseOrderListReducer__closure, A._viewPurchaseOrderList_closure, A._filterPurchaseOrdersByCustom1_closure, A._filterPurchaseOrdersByCustom1_closure0, A._filterPurchaseOrdersByCustom2_closure, A._filterPurchaseOrdersByCustom2_closure0, A._filterPurchaseOrdersByCustom3_closure, A._filterPurchaseOrdersByCustom3_closure0, A._filterPurchaseOrdersByCustom4_closure, A._filterPurchaseOrdersByCustom4_closure0, A._filterPurchaseOrdersByState_closure, A._filterPurchaseOrdersByState_closure0, A._filterPurchaseOrdersByStatus_closure, A._filterPurchaseOrdersByStatus_closure0, A._filterPurchaseOrders_closure, A._sortPurchaseOrders_closure, A._startListMultiselect_closure20, A._addToListMultiselect_closure20, A._removeFromListMultiselect_closure20, A._clearListMultiselect_closure20, A._markSentPurchaseOrderSuccess_closure0, A._markSentPurchaseOrderSuccess_closure1, A._markSentPurchaseOrderSuccess_closure, A._convertPurchaseOrdersToExpenses_closure0, A._convertPurchaseOrdersToExpenses_closure1, A._convertPurchaseOrdersToExpenses_closure, A._addPurchaseOrdersToInventorySuccess_closure0, A._addPurchaseOrdersToInventorySuccess_closure1, A._addPurchaseOrdersToInventorySuccess_closure, A._acceptPurchaseOrderSuccess_closure0, A._acceptPurchaseOrderSuccess_closure1, A._acceptPurchaseOrderSuccess_closure, A._cancelPurchaseOrderSuccess_closure0, A._cancelPurchaseOrderSuccess_closure1, A._cancelPurchaseOrderSuccess_closure, A._archivePurchaseOrderSuccess_closure, A._deletePurchaseOrderSuccess_closure, A._restorePurchaseOrderSuccess_closure, A._emailPurchaseOrderSuccess_closure, A._approvePurchaseOrderSuccess_closure0, A._approvePurchaseOrderSuccess_closure1, A._approvePurchaseOrderSuccess_closure, A._addPurchaseOrder_closure, A._addPurchaseOrder__closure, A._updatePurchaseOrder_closure, A._updatePurchaseOrder__closure, A.purchaseOrderContactSelector_closure, A.purchaseOrderContactSelector_closure0, A.memoizedDropdownPurchaseOrderList_closure, A.dropdownPurchaseOrdersSelector_closure, A.memoizedFilteredPurchaseOrderList_closure, A.filteredPurchaseOrdersSelector_closure, A.PurchaseOrderState_loadPurchaseOrders_closure0, A.PurchaseOrderState_loadPurchaseOrders_closure1, A.PurchaseOrderState_loadPurchaseOrders_closure, A.handleQuoteAction_closure, A.handleQuoteAction_closure0, A.handleQuoteAction_closure1, A.handleQuoteAction_closure2, A.handleQuoteAction_closure5, A.handleQuoteAction_closure6, A.handleQuoteAction_closure7, A.handleQuoteAction_closure8, A.handleQuoteAction_closure9, A.handleQuoteAction_closure10, A.handleQuoteAction_closure11, A.handleQuoteAction_closure12, A.handleQuoteAction_closure13, A.handleQuoteAction_closure14, A._viewQuote_closure, A._viewQuoteList_closure0, A._viewQuoteList__closure, A._editQuote_closure, A._showEmailQuote_closure, A._showPdfQuote_closure, A._archiveQuote_closure, A._archiveQuote__closure, A._archiveQuote__closure0, A._archiveQuote__closure1, A._deleteQuote_closure, A._deleteQuote__closure, A._deleteQuote__closure0, A._deleteQuote__closure1, A._restoreQuote_closure, A._restoreQuote__closure, A._restoreQuote__closure0, A._restoreQuote__closure1, A._convertQuotesToInvoices_closure, A._convertQuotesToInvoices__closure, A._convertQuotesToInvoices__closure0, A._convertQuotesToProjects_closure, A._convertQuotesToProjects__closure, A._convertQuotesToProjects__closure0, A._approveQuote_closure, A._approveQuote__closure, A._approveQuote__closure0, A._markSentQuote_closure, A._markSentQuote__closure, A._markSentQuote__closure0, A._emailQuote_closure, A._emailQuote__closure, A._emailQuote__closure0, A._saveQuote_closure, A._saveQuote__closure, A._saveQuote___closure, A._saveQuote__closure0, A._saveQuote__closure1, A._loadQuote_closure, A._loadQuote__closure, A._loadQuote__closure0, A._downloadQuotes_closure, A._downloadQuotes__closure, A._downloadQuotes__closure0, A._bulkEmailQuotes_closure, A._bulkEmailQuotes__closure, A._bulkEmailQuotes__closure0, A._loadQuotes_closure, A._loadQuotes__closure, A._loadQuotes___closure, A._loadQuotes____closure, A._loadQuotes_____closure, A._loadQuotes__closure0, A._saveDocument_closure5, A._saveDocument__closure11, A._saveDocument___closure5, A._saveDocument____closure5, A._saveDocument__closure12, A.quoteUIReducer_closure, A.editingReducer__closure5, A.editingReducer__closure4, A.editingReducer__closure3, A.editingReducer__closure2, A.editingReducer__closure1, A.editingReducer___closure, A.editingReducer__closure0, A.editingReducer__closure, A._addQuoteItem_closure, A._addQuoteItems_closure, A._removeQuoteItem_closure, A._updateQuoteItem_closure, A.quoteListReducer__closure, A._viewQuoteList_closure, A._filterQuotesByCustom1_closure, A._filterQuotesByCustom1_closure0, A._filterQuotesByCustom2_closure, A._filterQuotesByCustom2_closure0, A._filterQuotesByCustom3_closure, A._filterQuotesByCustom3_closure0, A._filterQuotesByCustom4_closure, A._filterQuotesByCustom4_closure0, A._filterQuotesByState_closure, A._filterQuotesByState_closure0, A._filterQuotesByStatus_closure, A._filterQuotesByStatus_closure0, A._filterQuotes_closure, A._sortQuotes_closure, A._startListMultiselect_closure, A._addToListMultiselect_closure, A._removeFromListMultiselect_closure, A._clearListMultiselect_closure, A._purgeClientSuccess_closure0, A._purgeClientSuccess_closure1, A._purgeClientSuccess_closure, A._purgeClientSuccess__closure0, A._markSentQuoteSuccess_closure0, A._markSentQuoteSuccess_closure1, A._markSentQuoteSuccess_closure, A._archiveQuoteSuccess_closure, A._deleteQuoteSuccess_closure, A._restoreQuoteSuccess_closure, A._emailQuoteSuccess_closure, A._convertQuotesToInvoicesSuccess_closure0, A._convertQuotesToInvoicesSuccess_closure1, A._convertQuotesToInvoicesSuccess_closure, A._convertQuotesToProjectsSuccess_closure0, A._convertQuotesToProjectsSuccess_closure1, A._convertQuotesToProjectsSuccess_closure, A._addQuote_closure, A._addQuote__closure, A._updateQuote_closure, A._updateQuote__closure, A.quoteContactSelector_closure, A.quoteContactSelector_closure0, A.memoizedDropdownQuoteList_closure, A.dropdownQuoteSelector_closure, A.memoizedFilteredQuoteList_closure, A.filteredQuotesSelector_closure, A.QuoteState_loadQuotes_closure0, A.QuoteState_loadQuotes_closure1, A.QuoteState_loadQuotes_closure, A.handleRecurringExpenseAction_closure, A.handleRecurringExpenseAction_closure0, A.handleRecurringExpenseAction_closure1, A._editRecurringExpense_closure, A._viewRecurringExpense_closure, A._viewRecurringExpenseList_closure0, A._viewRecurringExpenseList__closure, A._archiveRecurringExpense_closure, A._archiveRecurringExpense__closure, A._archiveRecurringExpense__closure0, A._archiveRecurringExpense__closure1, A._deleteRecurringExpense_closure, A._deleteRecurringExpense__closure, A._deleteRecurringExpense__closure0, A._deleteRecurringExpense__closure1, A._restoreRecurringExpense_closure, A._restoreRecurringExpense__closure, A._restoreRecurringExpense__closure0, A._restoreRecurringExpense__closure1, A._saveRecurringExpense_closure, A._saveRecurringExpense__closure, A._saveRecurringExpense__closure0, A._loadRecurringExpense_closure, A._loadRecurringExpense__closure, A._loadRecurringExpense__closure0, A._loadRecurringExpenses_closure, A._loadRecurringExpenses__closure, A._loadRecurringExpenses___closure, A._loadRecurringExpenses____closure, A._loadRecurringExpenses_____closure, A._loadRecurringExpenses__closure0, A._startRecurringExpense_closure, A._startRecurringExpense__closure, A._startRecurringExpense__closure0, A._stopRecurringExpense_closure, A._stopRecurringExpense__closure, A._stopRecurringExpense__closure0, A._saveDocument_closure2, A._saveDocument__closure5, A._saveDocument___closure2, A._saveDocument____closure2, A._saveDocument__closure6, A.recurringExpenseUIReducer_closure, A.editingReducer__closure37, A.recurringExpenseListReducer__closure, A._viewRecurringExpenseList_closure, A._filterRecurringExpensesByCustom1_closure, A._filterRecurringExpensesByCustom1_closure0, A._filterRecurringExpensesByCustom2_closure, A._filterRecurringExpensesByCustom2_closure0, A._filterRecurringExpensesByState_closure, A._filterRecurringExpensesByState_closure0, A._filterRecurringExpensesByStatus_closure, A._filterRecurringExpensesByStatus_closure0, A._filterRecurringExpenses_closure, A._sortRecurringExpenses_closure, A._startListMultiselect_closure19, A._addToListMultiselect_closure19, A._removeFromListMultiselect_closure19, A._clearListMultiselect_closure19, A._purgeClientSuccess_closure15, A._purgeClientSuccess_closure16, A._purgeClientSuccess_closure14, A._purgeClientSuccess__closure10, A._archiveRecurringExpenseSuccess_closure, A._deleteRecurringExpenseSuccess_closure, A._restoreRecurringExpenseSuccess_closure, A._addRecurringExpense_closure, A._addRecurringExpense__closure, A._updateRecurringExpense_closure, A._updateRecurringExpense__closure, A._startRecurringExpensesSuccess_closure, A._stopRecurringExpensesSuccess_closure, A._setLoadedRecurringExpense_closure, A._setLoadedRecurringExpense__closure, A.memoizedFilteredRecurringExpenseList_closure, A.filteredRecurringExpensesSelector_closure, A.RecurringExpenseState_loadRecurringExpenses_closure0, A.RecurringExpenseState_loadRecurringExpenses_closure1, A.RecurringExpenseState_loadRecurringExpenses_closure, A.handleRecurringInvoiceAction_closure, A.handleRecurringInvoiceAction_closure0, A.handleRecurringInvoiceAction_closure1, A.handleRecurringInvoiceAction__closure, A.handleRecurringInvoiceAction_closure2, A.handleRecurringInvoiceAction_closure3, A.handleRecurringInvoiceAction_closure4, A.handleRecurringInvoiceAction_closure5, A._editRecurringInvoice_closure, A._viewRecurringInvoice_closure, A._viewRecurringInvoiceList_closure, A._viewRecurringInvoiceList__closure, A._showPdfRecurringInvoice_closure, A._startRecurringInvoice_closure, A._startRecurringInvoice__closure, A._startRecurringInvoice__closure0, A._stopRecurringInvoice_closure, A._stopRecurringInvoice__closure, A._stopRecurringInvoice__closure0, A._updatePricesRecurringInvoice_closure, A._updatePricesRecurringInvoice__closure, A._updatePricesRecurringInvoice__closure0, A._increasePricesRecurringInvoice_closure, A._increasePricesRecurringInvoice__closure, A._increasePricesRecurringInvoice__closure0, A._sendNowRecurringInvoice_closure, A._sendNowRecurringInvoice__closure, A._sendNowRecurringInvoice__closure0, A._archiveRecurringInvoice_closure, A._archiveRecurringInvoice__closure, A._archiveRecurringInvoice__closure0, A._archiveRecurringInvoice__closure1, A._deleteRecurringInvoice_closure, A._deleteRecurringInvoice__closure, A._deleteRecurringInvoice__closure0, A._deleteRecurringInvoice__closure1, A._restoreRecurringInvoice_closure, A._restoreRecurringInvoice__closure, A._restoreRecurringInvoice__closure0, A._restoreRecurringInvoice__closure1, A._saveRecurringInvoice_closure, A._saveRecurringInvoice__closure, A._saveRecurringInvoice___closure, A._saveRecurringInvoice__closure0, A._saveRecurringInvoice__closure1, A._loadRecurringInvoice_closure, A._loadRecurringInvoice__closure, A._loadRecurringInvoice__closure0, A._loadRecurringInvoices_closure, A._loadRecurringInvoices__closure, A._loadRecurringInvoices___closure, A._loadRecurringInvoices____closure, A._loadRecurringInvoices_____closure, A._loadRecurringInvoices__closure0, A._saveDocument_closure1, A._saveDocument__closure3, A._saveDocument___closure1, A._saveDocument____closure1, A._saveDocument__closure4, A.recurringInvoiceUIReducer_closure, A.editingReducer__closure33, A.editingReducer__closure32, A.editingReducer__closure31, A.editingReducer__closure30, A.editingReducer__closure29, A.editingReducer___closure1, A.editingReducer__closure28, A.editingReducer__closure27, A._addRecurringInvoiceItem_closure, A._addRecurringInvoiceItems_closure, A._removeRecurringInvoiceItem_closure, A._updateRecurringInvoiceItem_closure, A.recurringInvoiceListReducer__closure, A._filterRecurringInvoicesByCustom1_closure, A._filterRecurringInvoicesByCustom1_closure0, A._filterRecurringInvoicesByCustom2_closure, A._filterRecurringInvoicesByCustom2_closure0, A._filterRecurringInvoicesByCustom3_closure, A._filterRecurringInvoicesByCustom3_closure0, A._filterRecurringInvoicesByCustom4_closure, A._filterRecurringInvoicesByCustom4_closure0, A._filterRecurringInvoicesByState_closure, A._filterRecurringInvoicesByState_closure0, A._filterRecurringInvoicesByStatus_closure, A._filterRecurringInvoicesByStatus_closure0, A._filterRecurringInvoices_closure, A._sortRecurringInvoices_closure, A._startListMultiselect_closure15, A._addToListMultiselect_closure15, A._removeFromListMultiselect_closure15, A._clearListMultiselect_closure15, A._purgeClientSuccess_closure12, A._purgeClientSuccess_closure13, A._purgeClientSuccess_closure11, A._purgeClientSuccess__closure8, A._archiveRecurringInvoiceSuccess_closure, A._deleteRecurringInvoiceSuccess_closure, A._emailRecurringInvoiceSuccess_closure, A._restoreRecurringInvoiceSuccess_closure, A._sendNowRecurringInvoiceSuccess_closure, A._startRecurringInvoicesSuccess_closure, A._stopRecurringInvoicesSuccess_closure, A._addRecurringInvoice_closure, A._addRecurringInvoice__closure, A._updateRecurringInvoice_closure, A._updateRecurringInvoice__closure, A.memoizedFilteredRecurringInvoiceList_closure, A.filteredRecurringInvoicesSelector_closure, A.RecurringInvoiceState_loadRecurringInvoices_closure0, A.RecurringInvoiceState_loadRecurringInvoices_closure1, A.RecurringInvoiceState_loadRecurringInvoices_closure, A._viewReports_closure, A._viewReports___closure, A.reportsUIReducer_closure, A.reportsUIReducer_closure0, A.reportsUIReducer_closure1, A.handleScheduleAction_closure, A._editSchedule_closure, A._viewSchedule_closure, A._viewScheduleList_closure0, A._viewScheduleList__closure, A._archiveSchedule_closure, A._archiveSchedule__closure, A._archiveSchedule__closure0, A._archiveSchedule__closure1, A._deleteSchedule_closure, A._deleteSchedule__closure, A._deleteSchedule__closure0, A._deleteSchedule__closure1, A._restoreSchedule_closure, A._restoreSchedule__closure, A._restoreSchedule__closure0, A._restoreSchedule__closure1, A._saveSchedule_closure, A._saveSchedule__closure, A._saveSchedule__closure0, A._loadSchedule_closure, A._loadSchedule__closure, A._loadSchedule__closure0, A._loadSchedules_closure, A._loadSchedules__closure, A._loadSchedules__closure0, A.scheduleUIReducer_closure, A.editingReducer__closure48, A.scheduleListReducer__closure, A._viewScheduleList_closure, A._filterSchedulesByCustom1_closure, A._filterSchedulesByCustom1_closure0, A._filterSchedulesByCustom2_closure, A._filterSchedulesByCustom2_closure0, A._filterSchedulesByState_closure, A._filterSchedulesByState_closure0, A._filterSchedules_closure, A._sortSchedules_closure, A._startListMultiselect_closure24, A._addToListMultiselect_closure24, A._removeFromListMultiselect_closure24, A._clearListMultiselect_closure24, A._archiveScheduleSuccess_closure, A._deleteScheduleSuccess_closure, A._restoreScheduleSuccess_closure, A._addSchedule_closure, A._updateSchedule_closure, A._setLoadedSchedule_closure, A.memoizedFilteredScheduleList_closure, A.filteredSchedulesSelector_closure, A.ScheduleState_loadSchedules_closure0, A.ScheduleState_loadSchedules_closure1, A.ScheduleState_loadSchedules_closure, A._viewSettings_closure, A._viewSettings___closure, A._saveCompany_closure, A._saveCompany__closure, A._saveCompany__closure0, A._saveEInvoiceCertificate_closure, A._saveEInvoiceCertificate__closure, A._saveEInvoiceCertificate__closure0, A._saveAuthUser_closure, A._saveAuthUser__closure, A._saveAuthUser__closure0, A._connectOAuthUser_closure0, A._connectOAuthUser__closure, A._connectOAuthUser__closure0, A._disconnectOAuthUser_closure0, A._disconnectOAuthUser__closure, A._disconnectOAuthUser__closure0, A._disconnectOAuthMailer_closure0, A._disconnectOAuthMailer__closure, A._disconnectOAuthMailer__closure0, A._connectGmailUser_closure0, A._connectGmailUser__closure, A._connectGmailUser__closure0, A._disableTwoFactor_closure, A._disableTwoFactor__closure, A._disableTwoFactor__closure0, A._saveSettings_closure, A._saveSettings__closure, A._saveSettings__closure0, A._uploadLogo_closure, A._uploadLogo__closure, A._uploadLogo__closure0, A._saveDocument_closure4, A._saveDocument__closure9, A._saveDocument___closure4, A._saveDocument____closure4, A._saveDocument__closure10, A.settingsUIReducer__closure20, A.settingsUIReducer__closure19, A.settingsUIReducer__closure16, A.settingsUIReducer__closure17, A.settingsUIReducer__closure18, A.settingsUIReducer__closure15, A.settingsUIReducer__closure14, A.settingsUIReducer__closure13, A.settingsUIReducer__closure12, A.settingsUIReducer__closure11, A.settingsUIReducer__closure10, A.settingsUIReducer__closure9, A.settingsUIReducer__closure8, A.settingsUIReducer__closure7, A.settingsUIReducer__closure6, A.settingsUIReducer__closure5, A.settingsUIReducer__closure4, A.settingsUIReducer__closure3, A.settingsUIReducer__closure2, A.settingsUIReducer__closure1, A.settingsUIReducer__closure0, A.settingsUIReducer__closure, A.staticLoadedReducer_closure, A.staticLoadedReducer__closure, A.staticLoadedReducer__closure0, A.staticLoadedReducer__closure1, A.staticLoadedReducer__closure2, A.staticLoadedReducer__closure3, A.staticLoadedReducer__closure4, A.staticLoadedReducer__closure5, A.staticLoadedReducer__closure6, A.staticLoadedReducer__closure7, A.staticLoadedReducer__closure8, A.staticLoadedReducer__closure9, A.staticLoadedReducer__closure10, A.staticLoadedReducer__closure11, A.staticLoadedReducer__closure12, A.staticLoadedReducer__closure13, A.staticLoadedReducer__closure14, A.staticLoadedReducer__closure15, A.staticLoadedReducer__closure16, A.memoizedCountryList_closure, A.memoizedCountryIso2Map_closure, A.countryIso2Map_closure, A.memoizedGroupList_closure, A.groupList_closure, A.memoizedLanguageList_closure, A.memoizedCurrencyList_closure, A.memoizedTimezoneList_closure, A.memoizedDateFormatList_closure, A.memoizedIndustryList_closure, A.memoizedSizeList_closure, A.gatewayList_closure, A.memoizedPaymentTypeList_closure, A.memoizedFontMap_closure, A.fontMap_closure, A.fontMap_closure0, A.handleSubscriptionAction_closure, A._editSubscription_closure, A._viewSubscription_closure, A._viewSubscriptionList_closure, A._viewSubscriptionList__closure, A._archiveSubscription_closure, A._archiveSubscription__closure, A._archiveSubscription__closure0, A._archiveSubscription__closure1, A._deleteSubscription_closure, A._deleteSubscription__closure, A._deleteSubscription__closure0, A._deleteSubscription__closure1, A._restoreSubscription_closure, A._restoreSubscription__closure, A._restoreSubscription__closure0, A._restoreSubscription__closure1, A._saveSubscription_closure, A._saveSubscription__closure, A._saveSubscription__closure0, A._loadSubscription_closure, A._loadSubscription__closure, A._loadSubscription__closure0, A._loadSubscriptions_closure, A._loadSubscriptions__closure, A._loadSubscriptions__closure0, A.subscriptionUIReducer_closure, A.editingReducer__closure36, A.subscriptionListReducer__closure, A._filterSubscriptionsByCustom1_closure, A._filterSubscriptionsByCustom1_closure0, A._filterSubscriptionsByCustom2_closure, A._filterSubscriptionsByCustom2_closure0, A._filterSubscriptionsByState_closure, A._filterSubscriptionsByState_closure0, A._filterSubscriptions_closure, A._sortSubscriptions_closure, A._startListMultiselect_closure18, A._addToListMultiselect_closure18, A._removeFromListMultiselect_closure18, A._clearListMultiselect_closure18, A._archiveSubscriptionSuccess_closure, A._deleteSubscriptionSuccess_closure, A._restoreSubscriptionSuccess_closure, A._addSubscription_closure, A._updateSubscription_closure, A._setLoadedSubscription_closure, A.memoizedFilteredSubscriptionList_closure, A.filteredSubscriptionsSelector_closure, A.SubscriptionState_loadSubscriptions_closure0, A.SubscriptionState_loadSubscriptions_closure1, A.SubscriptionState_loadSubscriptions_closure, A.handleTaskAction_closure, A.handleTaskAction_closure0, A.handleTaskAction_closure2, A.handleTaskAction_closure3, A.handleTaskAction_closure4, A.handleTaskAction_closure5, A._editTask_closure, A._viewTask_closure, A._viewTaskList_closure0, A._viewTaskList__closure, A._archiveTask_closure, A._archiveTask__closure, A._archiveTask__closure0, A._archiveTask__closure1, A._startTask_closure, A._startTask__closure, A._startTask__closure0, A._startTask__closure1, A._stopTask_closure, A._stopTask__closure, A._stopTask__closure0, A._stopTask__closure1, A._deleteTask_closure, A._deleteTask__closure, A._deleteTask__closure0, A._deleteTask__closure1, A._restoreTask_closure, A._restoreTask__closure, A._restoreTask__closure0, A._restoreTask__closure1, A._saveTask_closure, A._saveTask__closure, A._saveTask__closure0, A._loadTask_closure, A._loadTask__closure, A._loadTask__closure0, A._loadTasks_closure, A._loadTasks__closure, A._loadTasks___closure, A._loadTasks____closure, A._loadTasks_____closure, A._loadTasks__closure0, A._saveDocument_closure7, A._saveDocument__closure15, A._saveDocument___closure7, A._saveDocument____closure7, A._saveDocument__closure16, A._sortTasks_closure0, A._sortTasks__closure, A._sortTasks__closure0, A.taskUIReducer_closure, A.editingReducer__closure8, A.taskListReducer__closure, A._viewTaskList_closure, A._filterTasksByCustom1_closure, A._filterTasksByCustom1_closure0, A._filterTasksByCustom2_closure, A._filterTasksByCustom2_closure0, A._filterTasksByState_closure, A._filterTasksByState_closure0, A._filterTasksByStatus_closure, A._filterTasksByStatus_closure0, A._filterTasks_closure, A._sortTasks_closure, A._startListMultiselect_closure2, A._addToListMultiselect_closure2, A._removeFromListMultiselect_closure2, A._clearListMultiselect_closure2, A._purgeClientSuccess_closure18, A._purgeClientSuccess_closure19, A._purgeClientSuccess_closure17, A._purgeClientSuccess__closure12, A._sortTasksSuccess_closure, A._sortTasksSuccess__closure, A._archiveTaskSuccess_closure, A._startTaskSuccess_closure, A._stopTaskSuccess_closure, A._deleteTaskSuccess_closure, A._restoreTaskSuccess_closure, A._addTask_closure, A._updateTask_closure, A._setLoadedTask_closure, A.convertTaskToInvoiceItem_closure, A.convertTaskToInvoiceItem_closure0, A.convertTaskToInvoiceItem_closure2, A.memoizedTaskList_closure, A.taskList_closure, A.memoizedKanbanTaskList_closure, A.kanbanTasksSelector_closure, A.memoizedFilteredTaskList_closure, A.filteredTasksSelector_closure, A.TaskState_loadTasks_closure0, A.TaskState_loadTasks_closure1, A.TaskState_loadTasks_closure, A.handleTaskStatusAction_closure, A.handleTaskStatusAction_closure0, A._editTaskStatus_closure, A._viewTaskStatus_closure, A._viewTaskStatusList_closure0, A._viewTaskStatusList__closure, A._archiveTaskStatus_closure, A._archiveTaskStatus__closure, A._archiveTaskStatus__closure0, A._archiveTaskStatus__closure1, A._deleteTaskStatus_closure, A._deleteTaskStatus__closure, A._deleteTaskStatus__closure0, A._deleteTaskStatus__closure1, A._restoreTaskStatus_closure, A._restoreTaskStatus__closure, A._restoreTaskStatus__closure0, A._restoreTaskStatus__closure1, A._saveTaskStatus_closure, A._saveTaskStatus__closure, A._saveTaskStatus__closure0, A._loadTaskStatus_closure, A._loadTaskStatus__closure, A._loadTaskStatus__closure0, A._loadTaskStatuses_closure, A._loadTaskStatuses__closure, A._loadTaskStatuses__closure0, A.taskStatusUIReducer_closure, A.editingReducer__closure35, A.taskStatusListReducer__closure, A._viewTaskStatusList_closure, A._filterTaskStatusesByCustom1_closure, A._filterTaskStatusesByCustom1_closure0, A._filterTaskStatusesByCustom2_closure, A._filterTaskStatusesByCustom2_closure0, A._filterTaskStatusesByState_closure, A._filterTaskStatusesByState_closure0, A._filterTaskStatuses_closure, A._sortTaskStatuses_closure, A._startListMultiselect_closure17, A._addToListMultiselect_closure17, A._removeFromListMultiselect_closure17, A._clearListMultiselect_closure17, A._sortTaskStatusSuccess_closure, A._sortTaskStatusSuccess__closure, A._archiveTaskStatusSuccess_closure, A._deleteTaskStatusSuccess_closure, A._restoreTaskStatusSuccess_closure, A._addTaskStatus_closure, A._updateTaskStatus_closure, A._setLoadedTaskStatus_closure, A.sortedActiveTaskStatusIds_closure, A.memoizedDropdownTaskStatusList_closure, A.dropdownTaskStatusesSelector_closure, A.memoizedFilteredTaskStatusList_closure, A.filteredTaskStatusesSelector_closure, A.defaultTaskStatusId_closure, A.TaskStatusState_loadTaskStatuses_closure0, A.TaskStatusState_loadTaskStatuses_closure1, A.TaskStatusState_loadTaskStatuses_closure, A.handleTaxRateAction_closure, A._editTaxRate_closure, A._viewTaxRate_closure, A._viewTaxRateList_closure0, A._viewTaxRateList__closure, A._archiveTaxRate_closure, A._archiveTaxRate__closure, A._archiveTaxRate__closure0, A._archiveTaxRate__closure1, A._deleteTaxRate_closure, A._deleteTaxRate__closure, A._deleteTaxRate__closure0, A._deleteTaxRate__closure1, A._restoreTaxRate_closure, A._restoreTaxRate__closure, A._restoreTaxRate__closure0, A._restoreTaxRate__closure1, A._saveTaxRate_closure, A._saveTaxRate__closure, A._saveTaxRate__closure0, A._loadTaxRate_closure, A._loadTaxRate__closure, A._loadTaxRate__closure0, A._loadTaxRates_closure, A._loadTaxRates__closure, A._loadTaxRates__closure0, A.taxRateUIReducer_closure, A.editingReducer__closure14, A.taxRateListReducer__closure, A._viewTaxRateList_closure, A._filterTaxRatesByState_closure, A._filterTaxRatesByState_closure0, A._filterTaxRates_closure, A._sortTaxRates_closure, A._startListMultiselect_closure8, A._addToListMultiselect_closure8, A._removeFromListMultiselect_closure8, A._clearListMultiselect_closure8, A._archiveTaxRateSuccess_closure, A._deleteTaxRateSuccess_closure, A._restoreTaxRateSuccess_closure, A._addTaxRate_closure, A._updateTaxRate_closure, A._setLoadedTaxRate_closure, A._setLoadedTaxRates_closure, A._setLoadedTaxRates__closure, A._setLoadedTaxRates__closure0, A._setLoadedTaxRates_closure0, A._setLoadedCompany_closure3, A._setLoadedCompany__closure3, A._setLoadedCompany__closure4, A._setLoadedCompany_closure4, A.memoizedFilteredTaxRateList_closure, A.filteredTaxRatesSelector_closure, A.handleTokenAction_closure, A._editToken_closure, A._viewToken_closure, A._viewTokenList_closure0, A._viewTokenList__closure, A._archiveToken_closure, A._archiveToken__closure, A._archiveToken__closure0, A._archiveToken__closure1, A._deleteToken_closure, A._deleteToken__closure, A._deleteToken__closure0, A._deleteToken__closure1, A._restoreToken_closure, A._restoreToken__closure, A._restoreToken__closure0, A._restoreToken__closure1, A._saveToken_closure, A._saveToken__closure, A._saveToken__closure0, A._loadToken_closure, A._loadToken__closure, A._loadToken__closure0, A._loadTokens_closure, A._loadTokens__closure, A._loadTokens__closure0, A.tokenUIReducer_closure, A.editingReducer__closure25, A.tokenListReducer__closure, A._viewTokenList_closure, A._filterTokensByCustom1_closure, A._filterTokensByCustom1_closure0, A._filterTokensByCustom2_closure, A._filterTokensByCustom2_closure0, A._filterTokensByState_closure, A._filterTokensByState_closure0, A._filterTokens_closure, A._sortTokens_closure, A._startListMultiselect_closure13, A._addToListMultiselect_closure13, A._removeFromListMultiselect_closure13, A._clearListMultiselect_closure13, A._archiveTokenSuccess_closure, A._deleteTokenSuccess_closure, A._restoreTokenSuccess_closure, A._addToken_closure, A._updateToken_closure, A._setLoadedToken_closure, A.memoizedFilteredTokenList_closure, A.filteredTokensSelector_closure, A.TokenState_loadTokens_closure0, A.TokenState_loadTokens_closure1, A.TokenState_loadTokens_closure, A.handleTransactionAction_closure, A._editTransaction_closure, A._viewTransaction_closure, A._viewTransactionList_closure0, A._viewTransactionList__closure, A._archiveTransaction_closure, A._archiveTransaction__closure, A._archiveTransaction__closure0, A._archiveTransaction__closure1, A._deleteTransaction_closure, A._deleteTransaction__closure, A._deleteTransaction__closure0, A._deleteTransaction__closure1, A._restoreTransaction_closure, A._restoreTransaction__closure, A._restoreTransaction__closure0, A._restoreTransaction__closure1, A._convertTransactions_closure, A._convertTransactions__closure, A._convertTransactions__closure0, A._unlinkTransactions_closure, A._unlinkTransactions__closure, A._unlinkTransactions__closure0, A._convertToPayment_closure, A._convertToPayment__closure, A._convertToPayment__closure0, A._convertToExpense_closure, A._convertToExpense__closure, A._convertToExpense__closure0, A._linkToPayment_closure, A._linkToPayment__closure, A._linkToPayment__closure0, A._linkToExpense_closure, A._linkToExpense__closure, A._linkToExpense__closure0, A._saveTransaction_closure, A._saveTransaction__closure, A._saveTransaction__closure0, A._loadTransaction_closure, A._loadTransaction__closure, A._loadTransaction__closure0, A._loadTransactions_closure, A._loadTransactions__closure, A._loadTransactions__closure0, A.transactionUIReducer_closure, A.editingReducer__closure46, A.transactionListReducer__closure, A._viewTransactionList_closure, A._filterTransactionsByCustom1_closure, A._filterTransactionsByCustom1_closure0, A._filterTransactionsByCustom2_closure, A._filterTransactionsByCustom2_closure0, A._filterTransactionsByState_closure, A._filterTransactionsByState_closure0, A._filterTransactionsByStatus_closure, A._filterTransactionsByStatus_closure0, A._filterTransactions_closure, A._sortTransactions_closure, A._startListMultiselect_closure22, A._addToListMultiselect_closure22, A._removeFromListMultiselect_closure22, A._clearListMultiselect_closure22, A._archiveTransactionSuccess_closure, A._deleteTransactionSuccess_closure, A._restoreTransactionSuccess_closure, A._addTransaction_closure, A._updateTransaction_closure, A._convertTransactionToPayment_closure, A._linkTransactionToPayment_closure, A._linkTransactionToExpense_closure, A._setLoadedTransaction_closure, A.memoizedFilteredTransactionList_closure, A.filteredTransactionsSelector_closure, A.TransactionState_loadTransactions_closure0, A.TransactionState_loadTransactions_closure1, A.TransactionState_loadTransactions_closure, A.handleTransactionRuleAction_closure, A._editTransactionRule_closure, A._viewTransactionRule_closure, A._viewTransactionRuleList_closure0, A._viewTransactionRuleList__closure, A._archiveTransactionRule_closure, A._archiveTransactionRule__closure, A._archiveTransactionRule__closure0, A._archiveTransactionRule__closure1, A._deleteTransactionRule_closure, A._deleteTransactionRule__closure, A._deleteTransactionRule__closure0, A._deleteTransactionRule__closure1, A._restoreTransactionRule_closure, A._restoreTransactionRule__closure, A._restoreTransactionRule__closure0, A._restoreTransactionRule__closure1, A._saveTransactionRule_closure, A._saveTransactionRule__closure, A._saveTransactionRule__closure0, A._loadTransactionRule_closure, A._loadTransactionRule__closure, A._loadTransactionRule__closure0, A._loadTransactionRules_closure, A._loadTransactionRules__closure, A._loadTransactionRules__closure0, A.transactionRuleUIReducer_closure, A.editingReducer__closure47, A.transactionRuleListReducer__closure, A._viewTransactionRuleList_closure, A._filterTransactionRulesByCustom1_closure, A._filterTransactionRulesByCustom1_closure0, A._filterTransactionRulesByCustom2_closure, A._filterTransactionRulesByCustom2_closure0, A._filterTransactionRulesByState_closure, A._filterTransactionRulesByState_closure0, A._filterTransactionRules_closure, A._sortTransactionRules_closure, A._startListMultiselect_closure23, A._addToListMultiselect_closure23, A._removeFromListMultiselect_closure23, A._clearListMultiselect_closure23, A._archiveTransactionRuleSuccess_closure, A._deleteTransactionRuleSuccess_closure, A._restoreTransactionRuleSuccess_closure, A._addTransactionRule_closure, A._updateTransactionRule_closure, A._setLoadedTransactionRule_closure, A.memoizedFilteredTransactionRuleList_closure, A.filteredTransactionRulesSelector_closure, A.TransactionRuleState_loadTransactionRules_closure0, A.TransactionRuleState_loadTransactionRules_closure1, A.TransactionRuleState_loadTransactionRules_closure, A.prefReducer_closure, A._resortFields_closure, A._resortFields_closure0, A.sidebarEditorReducer__closure, A.sidebarEditorReducer__closure0, A.sidebarViewerReducer__closure, A.sidebarViewerReducer__closure0, A.companyPrefReducer_closure, A.historyReducer__closure0, A.historyReducer__closure, A.historyReducer___closure, A._addToHistory_closure, A._addToHistory_closure0, A._addToHistory_closure1, A.uiReducer_closure, A.previewStackReducer__closure, A.filterStackReducer__closure, A.UIState_mainRoute_closure, A.UIState_subRoute_closure, A.UIState_previousMainRoute_closure, A.UIState_previousSubRoute_closure, A.handleUserAction_closure, A.handleUserAction_closure0, A.handleUserAction_closure1, A.handleUserAction_closure2, A.handleUserAction_closure3, A.handleUserAction_closure4, A.handleUserAction_closure5, A.handleUserAction_closure6, A.handleUserAction_closure7, A.handleUserAction_closure8, A.handleUserAction_closure9, A.handleUserAction_closure11, A.handleUserAction_closure13, A.handleUserAction_closure15, A.handleUserAction_closure17, A.handleUserAction_closure16, A._editUser_closure, A._viewUser_closure, A._viewUserList_closure0, A._viewUserList__closure, A._archiveUser_closure, A._archiveUser__closure, A._archiveUser__closure0, A._archiveUser__closure1, A._deleteUser_closure, A._deleteUser__closure, A._deleteUser__closure0, A._deleteUser__closure1, A._restoreUser_closure, A._restoreUser__closure, A._restoreUser__closure0, A._restoreUser__closure1, A._removeUser_closure, A._removeUser__closure, A._removeUser__closure0, A._resendInvite_closure, A._resendInvite__closure, A._resendInvite__closure0, A._saveUser_closure, A._saveUser__closure, A._saveUser__closure0, A._loadUser_closure, A._loadUser__closure, A._loadUser__closure0, A._loadUsers_closure, A._loadUsers__closure, A._loadUsers__closure0, A.userUIReducer_closure, A.editingReducer__closure15, A.userListReducer__closure, A._viewUserList_closure, A._filterUsersByCustom1_closure, A._filterUsersByCustom1_closure0, A._filterUsersByCustom2_closure, A._filterUsersByCustom2_closure0, A._filterUsersByCustom3_closure, A._filterUsersByCustom3_closure0, A._filterUsersByCustom4_closure, A._filterUsersByCustom4_closure0, A._filterUsersByState_closure, A._filterUsersByState_closure0, A._filterUsers_closure, A._sortUsers_closure, A._startListMultiselect_closure9, A._addToListMultiselect_closure9, A._removeFromListMultiselect_closure9, A._clearListMultiselect_closure9, A._archiveUserSuccess_closure, A._deleteUserSuccess_closure, A._restoreUserSuccess_closure, A._removeUserSuccess_closure, A._addUser_closure, A._updateUser_closure, A._updateAuthUser_closure, A._connectOAuthUser_closure, A._disconnectOAuthUser_closure, A._disconnectOAuthMailer_closure, A._connectGmailUser_closure, A._setLoadedUser_closure, A._setLoadedUsers_closure, A._setLoadedUsers__closure, A._setLoadedUsers__closure0, A._setLoadedUsers_closure0, A._setLoadedCompany_closure5, A._setLoadedCompany__closure5, A._setLoadedCompany__closure6, A._setLoadedCompany_closure6, A.memoizedFilteredUserList_closure, A.filteredUsersSelector_closure, A.memoizedUserList_closure, A.userList_closure, A.memoizedGmailUserList_closure, A.gmailUserList_closure, A.memoizedMicrosoftUserList_closure, A.microsoftUserList_closure, A.handleVendorAction_closure, A.handleVendorAction_closure0, A._editVendor_closure, A._viewVendor_closure, A._viewVendorList_closure0, A._viewVendorList__closure, A._archiveVendor_closure, A._archiveVendor__closure, A._archiveVendor__closure0, A._archiveVendor__closure1, A._deleteVendor_closure, A._deleteVendor__closure, A._deleteVendor__closure0, A._deleteVendor__closure1, A._restoreVendor_closure, A._restoreVendor__closure, A._restoreVendor__closure0, A._restoreVendor__closure1, A._saveVendor_closure, A._saveVendor__closure, A._saveVendor__closure0, A._loadVendor_closure, A._loadVendor__closure, A._loadVendor__closure0, A._loadVendors_closure, A._loadVendors__closure, A._loadVendors___closure, A._loadVendors____closure, A._loadVendors_____closure, A._loadVendors__closure0, A._saveDocument_closure8, A._saveDocument__closure17, A._saveDocument___closure8, A._saveDocument____closure8, A._saveDocument__closure18, A.vendorUIReducer_closure, A.editingReducer__closure9, A._addContact_closure, A._removeContact_closure, A._updateContact_closure, A.vendorListReducer__closure, A._viewVendorList_closure, A._filterVendorsByCustom1_closure, A._filterVendorsByCustom1_closure0, A._filterVendorsByCustom2_closure, A._filterVendorsByCustom2_closure0, A._filterVendorsByCustom3_closure, A._filterVendorsByCustom3_closure0, A._filterVendorsByCustom4_closure, A._filterVendorsByCustom4_closure0, A._filterVendorsByState_closure, A._filterVendorsByState_closure0, A._filterVendors_closure, A._sortVendors_closure, A._startListMultiselect_closure3, A._addToListMultiselect_closure3, A._removeFromListMultiselect_closure3, A._clearListMultiselect_closure3, A._archiveVendorSuccess_closure, A._deleteVendorSuccess_closure, A._restoreVendorSuccess_closure, A._addVendor_closure, A._addVendor__closure, A._updateVendor_closure, A._updateVendor__closure, A._setLoadedVendor_closure, A._setLoadedVendor__closure, A.memoizedDropdownVendorList_closure, A.dropdownVendorsSelector_closure, A.memoizedFilteredVendorList_closure, A.filteredVendorsSelector_closure, A.memoizedCalculateVendorBalance_closure, A.calculateVendorBalance_closure, A.VendorState_loadVendors_closure0, A.VendorState_loadVendors_closure1, A.VendorState_loadVendors_closure, A.handleWebhookAction_closure, A._editWebhook_closure, A._viewWebhook_closure, A._viewWebhookList_closure0, A._viewWebhookList__closure, A._archiveWebhook_closure, A._archiveWebhook__closure, A._archiveWebhook__closure0, A._archiveWebhook__closure1, A._deleteWebhook_closure, A._deleteWebhook__closure, A._deleteWebhook__closure0, A._deleteWebhook__closure1, A._restoreWebhook_closure, A._restoreWebhook__closure, A._restoreWebhook__closure0, A._restoreWebhook__closure1, A._saveWebhook_closure, A._saveWebhook__closure, A._saveWebhook__closure0, A._loadWebhook_closure, A._loadWebhook__closure, A._loadWebhook__closure0, A._loadWebhooks_closure, A._loadWebhooks__closure, A._loadWebhooks__closure0, A.webhookUIReducer_closure, A.editingReducer__closure26, A.webhookListReducer__closure, A._viewWebhookList_closure, A._filterWebhooksByCustom1_closure, A._filterWebhooksByCustom1_closure0, A._filterWebhooksByCustom2_closure, A._filterWebhooksByCustom2_closure0, A._filterWebhooksByState_closure, A._filterWebhooksByState_closure0, A._filterWebhooks_closure, A._sortWebhooks_closure, A._startListMultiselect_closure14, A._addToListMultiselect_closure14, A._removeFromListMultiselect_closure14, A._clearListMultiselect_closure14, A._archiveWebhookSuccess_closure, A._deleteWebhookSuccess_closure, A._restoreWebhookSuccess_closure, A._addWebhook_closure, A._updateWebhook_closure, A._setLoadedWebhook_closure, A.memoizedFilteredWebhookList_closure, A.filteredWebhooksSelector_closure, A.WebhookState_loadWebhooks_closure0, A.WebhookState_loadWebhooks_closure1, A.WebhookState_loadWebhooks_closure, A.ActionMenuButton_build_closure, A.ActionMenuButton_build_closure0, A.ActionMenuButton_build_closure1, A._AppBottomBarState_build__closure14, A._AppBottomBarState_build___closure8, A._AppBottomBarState_build____closure1, A._AppBottomBarState_build_____closure2, A._AppBottomBarState_build__closure12, A._AppBottomBarState_build___closure6, A._AppBottomBarState_build____closure0, A._AppBottomBarState_build_____closure1, A._AppBottomBarState_build__closure2, A._AppBottomBarState_build___closure0, A._AppBottomBarState_build____closure, A._AppBottomBarState_build_____closure, A._AppBottomBarState_build__closure10, A._AppBottomBarState_build___closure4, A._AppBottomBarState_build__closure8, A._AppBottomBarState_build___closure3, A._AppBottomBarState_build__closure6, A._AppBottomBarState_build___closure2, A._AppBottomBarState_build__closure4, A._AppBottomBarState_build___closure1, A._AppBottomBarState_build___onColumnsPressed_closure, A._AppBottomBarState_build___onColumnsPressed__closure, A._AppBottomBarState_build___onColumnsPressed__closure0, A._AppBottomBarState_build___onColumnsPressed__closure1, A.CustomFieldSelector_build_closure0, A.CustomFieldSelector_build__closure, A.CustomFieldSelector_build___closure, A._ChangeLayoutBannerState_build__closure, A.ConfirmEmail_build___closure, A.ConfirmEmailVM_fromStore_closure2, A.ConfirmEmailVM_fromStore__closure, A._DesktopSessionTimeoutState_initState_closure, A._DesktopSessionTimeoutState_build__closure, A.MessageDialog_build_closure, A.ErrorDialog_build__closure, A._HealthCheckDialogState_runCheck_closure0, A._HealthCheckDialogState_runCheck_closure1, A._HealthCheckDialogState_clearCache_closure0, A._HealthCheckDialogState_clearCache__closure, A._HealthCheckDialogState_clearCache_closure1, A.multiselectDialog_closure, A.multiselectDialog__closure, A.MultiSelectListState_build_closure, A.MultiSelectListState_build_closure0, A.MultiSelectListState_build_closure2, A.MultiSelectListState_build_closure3, A.MultiSelectListState_build_closure4, A.DismissibleEntity_build_closure, A.DismissibleEntity_build_closure0, A.DismissibleEntity_build_closure1, A.DismissibleEntity_build_closure2, A.DismissibleEntity_build_closure3, A._DocumentGridState_build_closure, A._DocumentGridState_build__closure2, A._DocumentGridState_build__closure0, A._DocumentGridState_build__closure1, A._DocumentGridState_build__closure, A.DocumentTile_build_closure1, A.DocumentTile_build__closure, A.DocumentTile_build___closure, A.DocumentTile_build___closure0, A.DocumentTile_build_closure0, A.EditScaffold_build__closure3, A.EditScaffold_build_closure3, A.EditScaffold_build__closure2, A.EditScaffold_build__closure1, A.EditScaffold_build___closure, A.EditScaffold_build_closure6, A.EditScaffold_build_closure7, A.EditScaffold_build_closure8, A.EditScaffold_build__closure, A.EditScaffold_build_closure9, A.showEntityActionsDialog_closure, A.showEntityActionsDialog_closure0, A._EntityListTileState_build_closure3, A._EntityListTileState_build_closure4, A._EntitiesListTileState_build_closure2, A._EntitiesListTileState_build_closure3, A._EntityDropdownState__showOptions_closure, A._EntityDropdownState__showOptions__closure, A._EntityDropdownState__showOptions__closure1, A._EntityDropdownState_build__closure8, A._EntityDropdownState_build_closure4, A._EntityDropdownState_build__closure0, A._EntityDropdownState_build__closure1, A._EntityDropdownState_build__closure2, A._EntityDropdownState_build_closure1, A._EntityDropdownState_build_closure3, A._EntityDropdownState_build_closure__wrapUp, A._EntityDropdownState_build___wrapUp_closure, A._EntityDropdownState_build__closure3, A._EntityDropdownState_build__closure4, A._EntityDropdownState_build__closure5, A._EntityDropdownState_build_closure2, A._EntityDropdownState_build__closure7, A._EntityDropdownState_build__closure6, A._EntityDropdownState_build_closure5, A._EntityDropdownState_build___closure, A._EntityDropdownState_build____closure, A._EntityDropdownState_build____closure0, A._EntityDropdownDialogState_build__selectEntity, A._EntityDropdownDialogState_build__headerRow_closure, A._EntityDropdownDialogState_build__headerRow__closure, A._EntityDropdownDialogState_build__createList_closure, A._EntityDropdownDialogState_build__createList_closure0, A._EntityDropdownDialogState_build__createList__closure, A.EntityTopFilter_build_closure, A.EntityTopFilter_build__closure0, A.EntityTopFilter_build__closure, A.EntityTopFilter_build___closure, A.EntityTopFilter_build___closure0, A.EntityTopFilterHeader_build_closure2, A.EntityTopFilterHeader_build__closure0, A.EntityTopFilterHeader_build__closure, A.EntityTopFilterHeader_build___closure, A.AppDropdownButton_build_closure, A.AppToggleButtons_build__closure, A.AppToggleButtons_build__closure0, A.BoolDropdownButton_build_closure, A.BoolDropdownButton_build_closure0, A.BoolDropdownButton_build_closure1, A.BoolDropdownButton_build_closure3, A.ClientPicker_build_closure, A._FormColorPickerState_didChangeDependencies_closure, A._FormColorPickerState_didChangeDependencies_closure0, A._FormColorPickerState__showPicker_closure, A._FormColorPickerState__showPicker__closure, A._CustomFieldState_build_closure, A._CustomFieldState_build_closure1, A._CustomFieldState_build_closure2, A._DatePickerState_build_closure1, A._DecoratedFormFieldState_build_closure2, A._DecoratedFormFieldState_build_closure0, A._DecoratedFormFieldState_build_closure1, A.DesignPicker_build_closure1, A.DesignPicker_build_closure, A.DesignPicker_build_closure0, A._DurationPickerState_build_closure1, A._DurationPickerState_build_closure, A._DurationPickerState_build__closure0, A._DurationPickerState_build_closure0, A.DynamicSelector_build_closure0, A.DynamicSelector_build_closure, A.DynamicSelector_build_closure1, A.NotificationSettings_build_closure, A.NotificationSettings_build_closure0, A.NotificationSettings_build_closure1, A.NotificationSettings_build__closure, A._NotificationSelector_build_closure, A._PasswordFormFieldState_build_closure0, A.ProjectPicker_build_closure0, A.ProjectPicker_build__closure, A.SaveCancelButtons_build_closure, A.SaveCancelButtons_build_closure0, A._TimePickerState_build_closure0, A._TimePickerState_build__closure, A._TimePickerState_build__closure0, A.VendorPicker_build_closure0, A.VendorPicker_build__closure, A.HistoryDrawer_build_closure, A._HistoryListTileState_build__closure, A._InvoiceEmailViewState_dispose_closure, A._InvoiceEmailViewState__loadTemplate_closure0, A._InvoiceEmailViewState__buildTemplateDropdown_closure, A._InvoiceEmailViewState__buildTemplateDropdown__closure0, A._InvoiceEmailViewState__buildTemplateDropdown_closure0, A._InvoiceEmailViewState__buildTemplateDropdown_closure1, A._InvoiceEmailViewState__buildEdit__closure, A._InvoiceEmailViewState__buildEdit_closure0, A._InvoiceEmailViewState__buildEdit_closure1, A._InvoiceEmailViewState__buildEdit_closure2, A._InvoiceEmailViewState_build_closure, A._InvoiceEmailViewState_build_closure0, A._InvoiceEmailViewState_build_closure1, A._InvoiceEmailViewState_build_closure2, A._TaxRateDropdownState_didChangeDependencies_closure, A._TaxRateDropdownState_didChangeDependencies_closure0, A._TaxRateDropdownState_build_closure, A._TaxRateDropdownState_build_closure0, A._TaxRateDropdownState_build_closure1, A._TaxRateDropdownState_build_closure4, A._TaxRateDropdownState_build_closure3, A.TaxRateField_build_closure, A.TaxRateField_build_closure0, A._LinkTextRelatedEntityState_build_closure2, A._LinkTextRelatedEntityState_build_closure1, A._ListFilterState_build_closure0, A._ListFilterState_build_closure4, A._ListFilterState_build__closure2, A._ListFilterState_build__closure3, A._ListFilterState_build_closure3, A._ListFilterState_build_closure2, A._ListFilterState_build__closure4, A._ListFilterState_build_closure7, A._ListFilterState_build__closure, A._ListFilterState_build___closure0, A._ListFilterState_build__closure0, A._ListFilterState_build___closure, A._ListFilterState_build_closure6, A._ListFilterState_build_closure5, A._ListFilterState_build__closure1, A.ListScaffold_build_closure0, A.ListScaffold_build_closure5, A.ListScaffold_build_closure4, A._LiveTextState_initState_closure, A.MainScreen_build__closure, A._MenuDrawerState_build__companyLogo, A._MenuDrawerState_build__companyLogo_closure, A._MenuDrawerState_build__companyListItem, A._MenuDrawerState_build__companyListItem_closure, A._MenuDrawerState_build__companyListItem_closure2, A._MenuDrawerState_build__companyListItem_closure3, A._MenuDrawerState_build_closure, A._MenuDrawerState_build__closure5, A._MenuDrawerState_build_closure0, A._MenuDrawerState_build__closure4, A._MenuDrawerState_build_closure3, A._MenuDrawerState_build__closure3, A._MenuDrawerState_build_closure1, A._MenuDrawerState_build_closure2, A._MenuDrawerState_build__closure2, A._MenuDrawerState_build__closure1, A._MenuDrawerState_build__closure0, A._MenuDrawerState_build__closure, A._DrawerTileState_build_closure3, A._DrawerTileState_build_closure4, A.SidebarFooter_build__closure, A.SidebarFooterCollapsed_build_closure0, A.SidebarFooterCollapsed_build_closure, A._showContactUs_closure, A._showUpdate_closure, A._showAbout_closure, A._showAbout___closure1, A._showAbout___closure0, A._showAbout_____closure, A._showAbout___closure, A._ContactUsDialogState__sendMessage_closure0, A._ContactUsDialogState__sendMessage__closure1, A._ContactUsDialogState__sendMessage_closure1, A._ContactUsDialogState_build_closure1, A._ContactUsDialogState_build_closure2, A.MenuDrawerVM_fromStore_closure1, A.MenuDrawerVM_fromStore__closure, A.MenuDrawerVM_fromStore_closure, A.MenuDrawerVM_fromStore_closure0, A.MenuDrawerVM_fromStore__closure0, A.MenuDrawerVM_fromStore___closure, A.MenuDrawerVM_fromStore___closure0, A._DropDownMultiSelectState_initState_closure, A._DropDownMultiSelectState_build___closure2, A._DropDownMultiSelectState_build___closure3, A._DropDownMultiSelectState_build__closure1, A._DropDownMultiSelectState_build__closure2, A._DropDownMultiSelectState_build___closure, A._DropDownMultiSelectState_build__closure0, A._DropDownMultiSelectState_build____closure, A.AppPinput_build_closure, A.PortalLinks_build_closure1, A.PortalLinks_build_closure2, A.SearchText_build_closure0, A._AccountSmsVerificationState__sendCode_closure0, A._AccountSmsVerificationState__sendCode_closure1, A._AccountSmsVerificationState__verifyCode_closure0, A._AccountSmsVerificationState__verifyCode_closure1, A._AccountSmsVerificationState_build_closure, A._AccountSmsVerificationState_build_closure0, A._AccountSmsVerificationState_build_closure1, A._UserSmsVerificationState_initState_closure, A._UserSmsVerificationState__sendCode_closure0, A._UserSmsVerificationState__sendCode_closure1, A._UserSmsVerificationState__verifyCode_closure0, A._UserSmsVerificationState__verifyCode_closure1, A._UserSmsVerificationState_build_closure, A._SystemLogViewerState_build_closure, A._SystemLogViewerState_build_closure0, A._SystemLogViewerState_build_closure1, A.AppPaginatedDataTableState__getProgressIndicatorRowFor_closure, A.AppPaginatedDataTableState_build_closure, A.EntityDataTableSource_getRow_closure, A.EntityDataTableSource_getRow_closure4, A._EntityListState_initState_closure, A._EntityListState_build_closure, A._EntityListState_build__closure, A._EntityListState_build__closure3, A._EntityListState_build__closure8, A._EntityListState_build___closure, A._EntityListState_build___closure0, A._EntityListState_build__closure5, A._EntityListState_build__closure6, A._EntityListState_build__closure7, A._EntityListState_build_closure0, A._EntityListState_build_closure1, A._EntityListState_build__closure13, A._EntityListState_build_closure2, A._EntityListState_build__closure11, A._EntityListState_build__closure10, A._EntityListState_build___closure2, A._EntityListState_build_closure5, A._EntityListState_build__closure9, A._EntityListState_build_closure4, A._UpgradeDialogState_initState_closure, A._UpgradeDialogState_initState_closure1, A._UpgradeDialogState__buildProductList_closure, A._UpgradeDialogState__buildProductList_closure1, A._VariablesHelpState_build_closure, A._VariablesHelpState_build_closure0, A._VariablesHelpState_build_closure1, A._VariableGrid_build__closure, A.ViewScaffold_build_closure4, A._WebSessionTimeoutState_initState_closure, A.InitScreen_build_closure0, A._LoginState__submitSignUpForm_closure0, A._LoginState__submitSignUpForm_closure1, A._LoginState__submitSignUpForm_closure2, A._LoginState__submitLoginForm_closure0, A._LoginState__submitLoginForm___closure, A._LoginState__submitLoginForm_closure1, A._LoginState__submitLoginForm_closure2, A._LoginState_build_closure2, A._LoginState_build_closure3, A._LoginState_build_closure4, A._LoginState_build_closure5, A._LoginState_build_closure6, A._LoginState_build_closure7, A._LoginState_build_closure8, A._LoginState_build_closure9, A.LoginVM_fromStore__handleLogin, A.LoginVM_fromStore__handleLogin_closure, A.LoginVM_fromStore__formatApiUrl, A.LoginVM_fromStore_closure3, A.LoginVM_fromStore___closure2, A.LoginVM_fromStore_closure4, A.LoginVM_fromStore___closure1, A.LoginVM_fromStore_closure5, A.LoginVM_fromStore___closure0, A.LoginVM_fromStore__closure4, A.LoginVM_fromStore_closure6, A.LoginVM_fromStore___closure, A.LoginVM_fromStore__closure2, A.LoginVM_fromStore_closure7, A.LoginVM_fromStore__closure0, A.LoginVM_fromStore_closure8, A.LoginVM_fromStore__closure, A.LoginVM_fromStore_closure1, A.LoginVM_fromStore__closure7, A.LoginVM_fromStore_closure0, A.LoginVM_fromStore_closure, A.LoginVM_fromStore__closure8, A.LoginVM_fromStore_closure2, A.BankAccountListItem_build_closure, A.BankAccountListVM_fromStore__handleRefresh, A.BankAccountListVM_fromStore_closure, A.BankAccountListVM_fromStore_closure0, A.BankAccountScreen_connectAccounts_closure, A.BankAccountScreen__connectAccounts_closure, A.BankAccountScreen__connectAccounts_closure0, A.BankAccountScreen_build_closure12, A.BankAccountScreen_build_closure9, A.BankAccountScreen_build_closure5, A.BankAccountScreen_build_closure6, A.BankAccountScreen_build_closure7, A.BankAccountScreen_build_closure8, A.BankAccountScreenVM_fromStore_closure, A.BankAccountScreenVM_fromStore__closure, A.BankAccountScreenVM_fromStore__closure0, A._BankAccountEditState_didChangeDependencies_closure, A._BankAccountEditState_didChangeDependencies_closure0, A._BankAccountEditState_dispose_closure, A._BankAccountEditState__onChanged_closure, A._BankAccountEditState_build_closure3, A._BankAccountEditState_build_closure4, A._BankAccountEditState_build_closure0, A._BankAccountEditState_build_closure, A._BankAccountEditState_build__closure0, A._BankAccountEditState_build_closure2, A._BankAccountEditState_build__closure, A.BankAccountEditScreen_build_closure0, A.BankAccountEditVM_BankAccountEditVM$fromStore_closure, A.BankAccountEditVM_BankAccountEditVM$fromStore_closure1, A.BankAccountEditVM_BankAccountEditVM$fromStore_closure0, A.BankAccountEditVM_BankAccountEditVM$fromStore___closure, A.BankAccountEditVM_BankAccountEditVM$fromStore___closure0, A.BankAccountEditVM_BankAccountEditVM$fromStore____closure, A.BankAccountViewScreen_build_closure0, A.ClientListItem_build__closure, A.ClientListItem_build__closure3, A.ClientListVM_fromStore__handleRefresh, A.ClientListVM_fromStore_closure, A.ClientListVM_fromStore_closure0, A._ClientPdfViewState_loadPDF_closure0, A._ClientPdfViewState_loadPDF_closure1, A._ClientPdfViewState_loadPDF__closure0, A._ClientPdfViewState_build_closure1, A._ClientPdfViewState_build_closure, A._ClientPdfViewState_build_closure0, A._ClientPdfViewState_build_closure3, A._ClientPdfViewState_build_closure2, A._ClientPdfViewState_build_closure5, A._ClientPdfViewState_build_closure4, A._ClientPdfViewState_build__closure4, A._ClientPdfViewState_build__closure2, A._ClientPdfViewState_build_closure13, A.ClientPdfScreen_build_closure0, A.ClientPresenter_getField_closure0, A.ClientScreen_build_closure7, A.ClientScreen_build_closure4, A.ClientScreen_build_closure0, A.ClientScreen_build_closure1, A.ClientScreen_build_closure2, A.ClientScreen_build_closure3, A._ClientEditState_build_closure, A._ClientEditState_build_closure0, A.ClientEditBillingAddressState_didChangeDependencies_closure, A.ClientEditBillingAddressState_didChangeDependencies_closure0, A.ClientEditBillingAddressState_dispose_closure, A.ClientEditBillingAddressState__onChanged_closure, A.ClientEditBillingAddressState_build_closure, A.ClientEditBillingAddressState_build__closure0, A.ClientEditBillingAddressState_build__closure, A._ClientEditContactsState__showContactEditor_closure, A._ClientEditContactsState__showContactEditor__closure, A._ClientEditContactsState_build_closure, A._ClientEditContactsState_build_closure0, A.ContactEditDetailsState_didChangeDependencies_closure, A.ContactEditDetailsState_didChangeDependencies_closure0, A.ContactEditDetailsState_dispose_closure, A.ContactEditDetailsState__onChanged_closure, A.ContactEditDetailsState_build_closure0, A.ContactEditDetailsState_build_closure, A.ContactEditDetailsState_build_closure2, A.ContactEditDetailsState_build_closure1, A.ContactEditDetailsState_build_closure4, A.ContactEditDetailsState_build_closure3, A.ContactEditDetailsState_build_closure6, A.ContactEditDetailsState_build_closure5, A.ContactEditDetailsState_build_closure7, A.ContactEditDetailsState_build_closure8, A.ContactEditDetailsState_build_closure9, A.ContactEditDetailsState_build_closure10, A.ContactEditDetailsState_build_closure11, A.ContactEditDetailsState_build_closure12, A.ContactEditDetailsState_build___closure, A.ContactEditDetailsState_build__closure1, A.ContactEditDetailsState_build__closure, A.ClientEditContactsScreen_build_closure0, A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure0, A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure1, A.ClientEditDetailsState_didChangeDependencies_closure, A.ClientEditDetailsState_didChangeDependencies_closure0, A.ClientEditDetailsState_dispose_closure, A.ClientEditDetailsState__onChanged_closure, A.ClientEditDetailsState_build_closure, A.ClientEditDetailsState_build_closure0, A.ClientEditDetailsState_build__closure2, A.ClientEditDetailsState_build_closure1, A.ClientEditDetailsState_build__closure1, A.ClientEditDetailsState_build_closure3, A.ClientEditDetailsState_build__closure0, A.ClientEditDetailsState_build_closure2, A.ClientEditDetailsState_build_closure4, A.ClientEditDetailsState_build__closure, A.ClientEditNotesState_didChangeDependencies_closure, A.ClientEditNotesState_didChangeDependencies_closure0, A.ClientEditNotesState_dispose_closure, A.ClientEditNotesState__onChanged_closure, A.ClientEditNotesState_build_closure, A.ClientEditNotesState_build_closure0, A.ClientEditNotesState_build__closure0, A.ClientEditNotesState_build_closure1, A.ClientEditNotesState_build__closure, A.ClientEditSettingsState_didChangeDependencies_closure, A.ClientEditSettingsState_didChangeDependencies_closure0, A.ClientEditSettingsState_dispose_closure, A.ClientEditSettingsState__onChanged_closure, A.ClientEditSettingsState_build_closure, A.ClientEditSettingsState_build__closure3, A.ClientEditSettingsState_build_closure0, A.ClientEditSettingsState_build__closure2, A.ClientEditSettingsState_build_closure1, A.ClientEditSettingsState_build_closure2, A.ClientEditSettingsState_build__closure1, A.ClientEditSettingsState_build_closure3, A.ClientEditSettingsState_build_closure4, A.ClientEditSettingsState_build__closure0, A.ClientEditSettingsState_build_closure5, A.ClientEditSettingsState_build__closure, A.ClientEditShippingAddressState_didChangeDependencies_closure, A.ClientEditShippingAddressState_didChangeDependencies_closure0, A.ClientEditShippingAddressState_dispose_closure, A.ClientEditShippingAddressState__onChanged_closure, A.ClientEditShippingAddressState_build_closure, A.ClientEditShippingAddressState_build__closure0, A.ClientEditShippingAddressState_build__closure, A.ClientEditScreen_build_closure0, A.ClientEditVM_ClientEditVM$fromStore_closure, A.ClientEditVM_ClientEditVM$fromStore__closure, A.ClientEditVM_ClientEditVM$fromStore__closure0, A.ClientEditVM_ClientEditVM$fromStore_closure1, A.ClientEditVM_ClientEditVM$fromStore_closure0, A.ClientEditVM_ClientEditVM$fromStore___closure, A.ClientEditVM_ClientEditVM$fromStore___closure0, A.ClientEditVM_ClientEditVM$fromStore___closure1, A.ClientEditVM_ClientEditVM$fromStore____closure, A._ClientViewState_build_closure, A._ClientViewDetailsState_build__buildDetailsList_closure, A._ClientViewFullwidthState_build_closure, A._ClientViewFullwidthState_build__closure2, A._ClientViewLedgerState_build_closure, A.ClientOverview_build_closure, A.ClientOverview_build_closure0, A.ClientViewPaymentMethods_build__closure, A.ClientViewScreen_build_closure0, A.ClientViewVM_ClientViewVM$fromStore__handleRefresh, A.ClientViewVM_ClientViewVM$fromStore_closure, A.ClientViewVM_ClientViewVM$fromStore_closure0, A.ClientViewVM_ClientViewVM$fromStore__closure, A.ClientViewVM_ClientViewVM$fromStore__closure0, A.ClientViewVM_ClientViewVM$fromStore___closure, A._CompanyGatewayListState_build_closure, A.CompanyGatewayListItem_build_closure, A.CompanyGatewayListVM_fromStore__handleRefresh, A.CompanyGatewayListVM_fromStore_closure, A.CompanyGatewayListVM_fromStore_closure1, A.CompanyGatewayListVM_fromStore__closure, A.CompanyGatewayListVM_fromStore__closure0, A.CompanyGatewayScreen_build_closure, A.CompanyGatewayScreen_build__closure0, A.CompanyGatewayScreen_build__closure1, A.CompanyGatewayScreen_build_closure0, A.CompanyGatewayScreen_build__closure, A.CompanyGatewayScreen_build_closure2, A.CompanyGatewayScreen_build_closure4, A.CompanyGatewayScreen_build_closure5, A.CompanyGatewayScreen_build_closure6, A.CompanyGatewayScreen_build_closure7, A.CompanyGatewayScreenVM_fromStore_closure, A._CompanyGatewayEditState_didChangeDependencies_closure, A._CompanyGatewayEditState_build_closure, A._CompanyGatewayEditState_build_closure0, A._CompanyGatewayEditState_build__closure17, A._CompanyGatewayEditState_build_closure3, A._CompanyGatewayEditState_build__closure16, A._CompanyGatewayEditState_build_closure4, A._CompanyGatewayEditState_build__closure15, A._CompanyGatewayEditState_build_closure6, A._CompanyGatewayEditState_build__closure14, A._CompanyGatewayEditState_build_closure5, A._CompanyGatewayEditState_build_closure7, A._CompanyGatewayEditState_build__closure13, A._CompanyGatewayEditState_build___closure, A._CompanyGatewayEditState_build_closure8, A._CompanyGatewayEditState_build__closure12, A._CompanyGatewayEditState_build_closure9, A._CompanyGatewayEditState_build__closure11, A._CompanyGatewayEditState_build_closure10, A._CompanyGatewayEditState_build__closure10, A._CompanyGatewayEditState_build_closure11, A._CompanyGatewayEditState_build__closure9, A._CompanyGatewayEditState_build_closure12, A._CompanyGatewayEditState_build__closure8, A._CompanyGatewayEditState_build_closure13, A._CompanyGatewayEditState_build__closure7, A._CompanyGatewayEditState_build_closure14, A._CompanyGatewayEditState_build__closure6, A._CompanyGatewayEditState_build_closure15, A._CompanyGatewayEditState_build__closure5, A._CompanyGatewayEditState_build_closure16, A._CompanyGatewayEditState_build__closure4, A._CompanyGatewayEditState_build_closure17, A._CompanyGatewayEditState_build__closure3, A._CompanyGatewayEditState_build_closure18, A._CompanyGatewayEditState_build__closure2, A._CompanyGatewayEditState_build_closure19, A._CompanyGatewayEditState_build__closure1, A._CompanyGatewayEditState_build_closure20, A._CompanyGatewayEditState_build__closure0, A._CompanyGatewayEditState_build_closure21, A._CompanyGatewayEditState_build_closure22, A.GatewayConfigSettings_build_closure0, A.GatewayConfigSettings_build__closure, A._GatewayConfigFieldState__obscureText_closure, A._GatewayConfigFieldState_build_closure0, A._GatewayConfigFieldState_build_closure, A._GatewayConfigFieldState_build_closure1, A._GatewayConfigFieldState_build_closure2, A._GatewayConfigFieldState_build_closure3, A._LimitEditorState__onChanged_closure, A._LimitEditorState__onChanged_closure0, A._LimitEditorState_build_closure, A._LimitEditorState_build_closure0, A._FeesEditorState_dispose_closure, A._FeesEditorState_didChangeDependencies_closure, A._FeesEditorState_didChangeDependencies_closure0, A._FeesEditorState__onChanged_closure, A._FeesEditorState__onChanged__closure, A._FeesEditorState_build_closure, A._FeesEditorState_build__closure2, A._FeesEditorState_build___closure2, A._FeesEditorState_build_closure0, A._FeesEditorState_build__closure1, A._FeesEditorState_build___closure1, A._FeesEditorState_build_closure1, A._FeesEditorState_build__closure0, A._FeesEditorState_build___closure0, A._FeesEditorState_build_closure2, A._FeesEditorState_build__closure, A._FeesEditorState_build___closure, A.CompanyGatewayEditScreen_build_closure0, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure1, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure0, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure0, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore___closure0, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore____closure, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore_closure2, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure0, A._CompanyGatewayOverview_build_closure2, A.CompanyGatewayViewScreen_build_closure0, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__handleRefresh, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure0, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure2, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore____closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure0, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure1, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure1, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore___closure2, A.CreditEmailScreen_build_closure1, A.CreditEmailScreen_build_closure0, A.EmailCreditVM_EmailCreditVM$fromStore_closure, A.EmailCreditVM_EmailCreditVM$fromStore__closure, A.CreditListItem_build__closure, A.CreditListItem_build__closure3, A.CreditListVM_fromStore__handleRefresh, A.CreditListVM_fromStore_closure, A.CreditListVM_fromStore_closure0, A.CreditPdfScreen_build_closure0, A.CreditScreen_build_closure7, A.CreditScreen_build_closure4, A.CreditScreen_build_closure0, A.CreditScreen_build_closure1, A.CreditScreen_build_closure2, A.CreditScreen_build_closure3, A._CreditEditState_build_closure1, A._CreditEditState_build_closure2, A._CreditEditState_build__closure, A._CreditEditState_build___closure0, A._CreditEditState_build___closure1, A._CreditEditState_build___closure, A.CreditEditDetailsScreen_build_closure0, A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure, A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure0, A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure, A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore__closure0, A.CreditEditItemsScreen_build_closure0, A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure, A.CreditEditItemsVM_CreditEditItemsVM$fromStore__closure, A.CreditEditNotesScreen_build_closure0, A.CreditEditNotesVM_CreditEditNotesVM$fromStore_closure, A.CreditEditPDFScreen_build_closure0, A.CreditEditScreen_build_closure0, A.CreditEditVM_CreditEditVM$fromStore_closure, A.CreditEditVM_CreditEditVM$fromStore___closure0, A.CreditEditVM_CreditEditVM$fromStore___closure1, A.CreditEditVM_CreditEditVM$fromStore___closure2, A.CreditEditVM_CreditEditVM$fromStore____closure, A.CreditEditVM_CreditEditVM$fromStore_closure0, A.CreditEditVM_CreditEditVM$fromStore_closure1, A.CreditEditVM_CreditEditVM$fromStore_closure2, A.CreditEditVM_CreditEditVM$fromStore__closure, A.CreditEditVM_CreditEditVM$fromStore__closure0, A.CreditEditVM_CreditEditVM$fromStore___closure, A.CreditViewScreen_build_closure0, A.CreditViewVM_CreditViewVM$fromStore__handleRefresh, A.CreditViewVM_CreditViewVM$fromStore_closure, A.CreditViewVM_CreditViewVM$fromStore_closure0, A.CreditViewVM_CreditViewVM$fromStore_closure1, A.CreditViewVM_CreditViewVM$fromStore__closure, A.CreditViewVM_CreditViewVM$fromStore__closure0, A.CreditViewVM_CreditViewVM$fromStore___closure, A.CreditViewVM_CreditViewVM$fromStore_closure2, A._DashboardChartState__onSelectionChanged_closure, A._DashboardChartState__onSelectionChanged_closure0, A._DashboardChartState_build_closure, A._DashboardDateRangePickerState_build_closure, A._DashboardDateRangePickerState_build_closure0, A._DashboardDateRangePickerState_build_closure1, A._DashboardDateRangePickerState_build_closure2, A._DashboardDateRangePickerState_build_closure5, A._DashboardDateRangePickerState_build_closure6, A._DashboardDateRangePickerState_build__closure, A.DashboardPanels__showDateOptions_closure, A.DashboardPanels__header__closure, A.DashboardPanels__header__closure0, A.DashboardPanels__header__closure1, A.DashboardPanels__header___closure0, A.DashboardPanels__header___closure1, A.DashboardPanels__header__closure2, A.DashboardPanels__header___closure, A.DashboardPanels__header__closure3, A.DashboardPanels__header__closure4, A.DashboardPanels__header___showSettings_closure, A.DashboardPanels__runningTasks_closure, A.DashboardPanels_build_closure, A.DashboardPanels_build_closure0, A.DashboardPanels_build_closure1, A.DashboardPanels_build_closure2, A.DashboardPanels_build_closure3, A.DashboardPanels_build__closure2, A.__DashboardPanelState_build_closure, A.__OverviewPanelState_build_closure, A.__DashboardSettingsState_build_closure, A.__DashboardSettingsState_build_closure0, A.__DashboardSettingsState_build_closure1, A.__DashboardSettingsState_build_closure2, A.__DashboardSettingsState_build__closure6, A.__DashboardSettingsState_build__closure2, A.__DashboardSettingsState_build__closure4, A.__DashboardSettingsState_build__closure0, A.__DashboardSettingsState_build_closure9, A.__DashboardSettingsState_build_closure8, A._DashboardFieldState_build__closure3, A._DashboardFieldState_build_closure0, A._DashboardFieldState_build_closure1, A._DashboardFieldState_build__closure, A._DashboardFieldState_build__closure0, A._DashboardScreenState_initState_closure, A._DashboardScreenState_initState_closure0, A._DashboardScreenState_initState__closure, A._DashboardScreenState_build_closure, A._DashboardScreenState_build_closure0, A._DashboardScreenState_build__closure0, A._DashboardScreenState_build___closure, A._DashboardScreenState_build___closure0, A._DashboardScreenState_build___closure1, A._DashboardScreenState_build_closure3, A.DashboardVM_fromStore__handleRefresh, A.DashboardVM_fromStore_closure, A.DashboardVM_fromStore_closure0, A.DashboardVM_fromStore_closure4, A.DashboardVM_fromStore_closure5, A.DashboardVM_fromStore_closure2, A.DashboardVM_fromStore_closure3, A.DesignListItem_build_closure, A.DesignListVM_fromStore__handleRefresh, A.DesignListVM_fromStore_closure, A.DesignListVM_fromStore_closure0, A.DesignScreen_build_closure7, A.DesignScreen_build_closure4, A.DesignScreen_build_closure0, A.DesignScreen_build_closure1, A.DesignScreen_build_closure2, A.DesignScreen_build_closure3, A._DesignEditState_didChangeDependencies_closure, A._DesignEditState_didChangeDependencies_closure0, A._DesignEditState_dispose_closure, A._DesignEditState__onChanged_closure, A._DesignEditState__loadDesign_closure, A._DesignEditState__loadDesign_closure0, A._DesignEditState__loadPreview_closure0, A._DesignEditState_build_closure2, A._DesignEditState_build_closure, A._DesignEditState_build_closure0, A._DesignEditState_build_closure1, A._DesignSettingsState_build_closure, A._DesignSettingsState_build_closure0, A._DesignSettingsState_build_closure1, A._DesignSettingsState_build__closure2, A._DesignSettingsState_build_closure2, A._DesignSettingsState_build_closure3, A._DesignSettingsState_build__closure1, A._DesignSettingsState_build___closure, A._DesignSettingsState_build____closure, A._DesignSettingsState_build__closure, A._DesignSettingsState_build__closure0, A._PdfDesignPreviewState_build_closure, A.__DesignImportDialogState_build_closure, A.DesignEditScreen_build_closure0, A.DesignEditVM_DesignEditVM$fromStore_closure, A.DesignEditVM_DesignEditVM$fromStore_closure1, A.DesignEditVM_DesignEditVM$fromStore_closure0, A._DesignViewState_build_closure, A._DesignViewState_build_closure0, A._DesignViewState_build_closure1, A._DesignViewState_build_closure2, A._DesignViewState_build_closure3, A._DesignViewState_build_closure4, A._DesignViewState_build_closure5, A._DesignViewState_build_closure6, A.DesignViewScreen_build_closure0, A.DocumentListItem_build__closure, A.DocumentListItem_build__closure3, A.DocumentListBuilder_build__closure1, A.DocumentListVM_fromStore_closure0, A.DocumentScreen_build_closure, A.DocumentScreen_build_closure0, A.DocumentScreen_build_closure1, A.DocumentScreen_build_closure2, A.DocumentScreen_build_closure3, A.DocumentScreen_build_closure4, A.DocumentScreen_build_closure11, A.DocumentScreen_build_closure7, A.DocumentScreen_build_closure8, A.DocumentScreen_build_closure9, A.DocumentScreen_build_closure10, A._DocumentEditState_didChangeDependencies_closure, A._DocumentEditState_didChangeDependencies_closure0, A._DocumentEditState_dispose_closure, A._DocumentEditState__onChanged_closure, A._DocumentEditState_build_closure1, A._DocumentEditState_build_closure0, A._DocumentEditState_build_closure, A._DocumentEditState_build__closure, A._DocumentEditState_build__closure0, A.DocumentEditScreen_build_closure0, A.DocumentEditVM_DocumentEditVM$fromStore_closure1, A.DocumentEditVM_DocumentEditVM$fromStore_closure, A.DocumentEditVM_DocumentEditVM$fromStore_closure0, A.DocumentEditVM_DocumentEditVM$fromStore___closure, A.DocumentEditVM_DocumentEditVM$fromStore___closure0, A.DocumentEditVM_DocumentEditVM$fromStore____closure, A._DocumentViewState_build_closure, A.DocumentViewScreen_build_closure0, A._ExpenseEditState__onSavePressed_closure, A._ExpenseEditState_build_closure1, A._ExpenseEditState_build_closure2, A.ExpenseEditDetailsState_didChangeDependencies_closure, A.ExpenseEditDetailsState_didChangeDependencies_closure0, A.ExpenseEditDetailsState_dispose_closure, A.ExpenseEditDetailsState__onChanged_closure, A.ExpenseEditDetailsState_build_closure1, A.ExpenseEditDetailsState_build__closure18, A.ExpenseEditDetailsState_build_closure, A.ExpenseEditDetailsState_build__closure19, A.ExpenseEditDetailsState_build_closure3, A.ExpenseEditDetailsState_build__closure17, A.ExpenseEditDetailsState_build_closure2, A.ExpenseEditDetailsState_build_closure4, A.ExpenseEditDetailsState_build__closure16, A.ExpenseEditDetailsState_build_closure6, A.ExpenseEditDetailsState_build__closure14, A.ExpenseEditDetailsState_build__closure15, A.ExpenseEditDetailsState_build_closure7, A.ExpenseEditDetailsState_build__closure13, A.ExpenseEditDetailsState_build_closure8, A.ExpenseEditDetailsState_build__closure12, A.ExpenseEditDetailsState_build_closure9, A.ExpenseEditDetailsState_build__closure11, A.ExpenseEditDetailsState_build_closure10, A.ExpenseEditDetailsState_build__closure10, A.ExpenseEditDetailsState_build_closure11, A.ExpenseEditDetailsState_build__closure9, A.ExpenseEditDetailsState_build_closure12, A.ExpenseEditDetailsState_build__closure8, A.ExpenseEditDetailsState_build_closure13, A.ExpenseEditDetailsState_build__closure7, A.ExpenseEditDetailsState_build_closure14, A.ExpenseEditDetailsState_build__closure6, A.ExpenseEditDetailsState_build_closure15, A.ExpenseEditDetailsState_build__closure5, A.ExpenseEditDetailsState_build_closure16, A.ExpenseEditDetailsState_build__closure4, A.ExpenseEditDetailsState_build_closure17, A.ExpenseEditDetailsState_build__closure3, A.ExpenseEditDetailsState_build__closure2, A.ExpenseEditDetailsState_build_closure20, A.ExpenseEditDetailsState_build__closure1, A.ExpenseEditDetailsState_build_closure19, A.ExpenseEditDetailsState_build__closure0, A.ExpenseEditDetailsState_build_closure23, A.ExpenseEditDetailsState_build__closure, A.ExpenseEditDetailsState_build_closure22, A.ExpenseEditNotesState_didChangeDependencies_closure, A.ExpenseEditNotesState_didChangeDependencies_closure0, A.ExpenseEditNotesState_dispose_closure, A.ExpenseEditNotesState__onChanged_closure, A.ExpenseEditSettingsState_didChangeDependencies_closure, A.ExpenseEditSettingsState_didChangeDependencies_closure0, A.ExpenseEditSettingsState_dispose_closure, A.ExpenseEditSettingsState__onChanged_closure, A.ExpenseEditSettingsState__setCurrency_closure, A.ExpenseEditSettingsState__setCurrency_closure0, A.ExpenseEditSettingsState__calculateExchangeRate_closure, A.ExpenseEditSettingsState_build_closure, A.ExpenseEditSettingsState_build__closure11, A.ExpenseEditSettingsState_build_closure0, A.ExpenseEditSettingsState_build__closure7, A.ExpenseEditSettingsState_build__closure8, A.ExpenseEditSettingsState_build__closure9, A.ExpenseEditSettingsState_build_closure1, A.ExpenseEditSettingsState_build__closure6, A.ExpenseEditSettingsState_build__closure5, A.ExpenseEditSettingsState_build_closure3, A.ExpenseEditSettingsState_build__closure3, A.ExpenseEditSettingsState_build__closure4, A.ExpenseEditSettingsState_build_closure4, A.ExpenseEditSettingsState_build_closure7, A.ExpenseEditSettingsState_build_closure5, A.ExpenseEditSettingsState_build_closure6, A.ExpenseEditSettingsState_build_closure8, A.ExpenseEditSettingsState_build__closure1, A.ExpenseEditSettingsState_build_closure10, A.ExpenseEditSettingsState_build__closure0, A.ExpenseEditSettingsState_build_closure11, A.ExpenseEditSettingsState_build__closure, A.ExpenseEditScreen_build_closure0, A.ExpenseEditVM_ExpenseEditVM$fromStore_closure, A.ExpenseEditVM_ExpenseEditVM$fromStore_closure1, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure3, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure4, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure1, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure2, A.ExpenseEditVM_ExpenseEditVM$fromStore_closure0, A.ExpenseEditVM_ExpenseEditVM$fromStore___closure0, A.ExpenseEditVM_ExpenseEditVM$fromStore___closure1, A.ExpenseEditVM_ExpenseEditVM$fromStore____closure, A.ExpenseEditVM_ExpenseEditVM$fromStore_closure4, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure0, A.ExpenseEditVM_ExpenseEditVM$fromStore___closure, A.ExpenseListItem_build__closure, A.ExpenseListItem_build__closure3, A.ExpenseListVM_fromStore__handleRefresh, A.ExpenseListVM_fromStore_closure, A.ExpenseListVM_fromStore_closure0, A.ExpenseScreen_build_closure, A.ExpenseScreen_build_closure0, A.ExpenseScreen_build_closure1, A.ExpenseScreen_build_closure2, A.ExpenseScreen_build_closure3, A.ExpenseScreen_build_closure14, A.ExpenseScreen_build_closure10, A.ExpenseScreen_build_closure6, A.ExpenseScreen_build_closure7, A.ExpenseScreen_build_closure8, A.ExpenseScreen_build_closure9, A._ExpenseViewState_build_closure, A._ExpenseViewScheduleState_build_closure, A.ExpenseViewScreen_build_closure0, A.ExpenseViewVM_ExpenseViewVM$fromStore__handleRefresh, A.ExpenseViewVM_ExpenseViewVM$fromStore_closure, A.ExpenseViewVM_ExpenseViewVM$fromStore_closure0, A.ExpenseViewVM_ExpenseViewVM$fromStore__closure, A.ExpenseViewVM_ExpenseViewVM$fromStore__closure0, A.ExpenseViewVM_ExpenseViewVM$fromStore___closure, A._ExpenseCategoryEditState_didChangeDependencies_closure, A._ExpenseCategoryEditState_didChangeDependencies_closure0, A._ExpenseCategoryEditState_dispose_closure, A._ExpenseCategoryEditState__onChanged_closure, A._ExpenseCategoryEditState_build_closure0, A._ExpenseCategoryEditState_build_closure1, A._ExpenseCategoryEditState_build_closure, A._ExpenseCategoryEditState_build__closure, A._ExpenseCategoryEditState_build__closure0, A._ExpenseCategoryEditState_build__closure1, A._ExpenseCategoryEditState_build___closure, A.ExpenseCategoryEditScreen_build_closure0, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure1, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore_closure0, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore___closure0, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore____closure, A.ExpenseCategoryListItem_build_closure, A.ExpenseCategoryListVM_fromStore__handleRefresh, A.ExpenseCategoryListVM_fromStore_closure, A.ExpenseCategoryListVM_fromStore_closure0, A.ExpenseCategoryScreen_build_closure7, A.ExpenseCategoryScreen_build_closure4, A.ExpenseCategoryScreen_build_closure0, A.ExpenseCategoryScreen_build_closure1, A.ExpenseCategoryScreen_build_closure2, A.ExpenseCategoryScreen_build_closure3, A.ExpenseCategoryViewScreen_build_closure0, A._GroupEditState_didChangeDependencies_closure, A._GroupEditState_didChangeDependencies_closure0, A._GroupEditState_dispose_closure, A._GroupEditState__onChanged_closure, A._GroupEditState_build_closure0, A._GroupEditState_build_closure1, A._GroupEditState_build_closure, A._GroupEditState_build__closure, A._GroupEditState_build__closure0, A.GroupEditScreen_build_closure0, A.GroupEditVM_GroupEditVM$fromStore_closure, A.GroupEditVM_GroupEditVM$fromStore_closure1, A.GroupEditVM_GroupEditVM$fromStore_closure0, A.GroupEditVM_GroupEditVM$fromStore___closure, A.GroupEditVM_GroupEditVM$fromStore___closure0, A.GroupEditVM_GroupEditVM$fromStore____closure, A.GroupListItem_build_closure, A.GroupListVM_fromStore__handleRefresh, A.GroupListVM_fromStore_closure, A.GroupListVM_fromStore_closure0, A.GroupSettingsScreen_build_closure3, A.GroupSettingsScreen_build_closure0, A.GroupViewScreen_build_closure0, A.GroupViewVM_GroupViewVM$fromStore_closure0, A.GroupViewVM_GroupViewVM$fromStore__closure, A.GroupViewVM_GroupViewVM$fromStore__closure0, A.GroupViewVM_GroupViewVM$fromStore___closure, A._InvoiceEditState__onSavePressed_closure, A._InvoiceEditState_build_closure1, A._InvoiceEditState_build_closure2, A._InvoiceEditState_build__closure, A._InvoiceEditState_build___closure0, A._InvoiceEditState_build___closure1, A._InvoiceEditState_build___closure, A.InvoiceEditContacts_build_closure0, A.InvoiceEditContacts_build_closure2, A._ContactListTileState_build_closure, A._ContactListTileState_build_closure0, A._ContactListTileState_build_closure1, A._ContactListTileState_build__closure, A._ContactListTileState_build__closure0, A.InvoiceEditContactsScreen_build_closure0, A.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure, A.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure0, A.InvoiceEditContactsVM_InvoiceEditContactsVM$fromStore_closure1, A.InvoiceEditDesktopState_didChangeDependencies_closure, A.InvoiceEditDesktopState_didChangeDependencies_closure0, A.InvoiceEditDesktopState_dispose_closure, A.InvoiceEditDesktopState__onChanged_closure, A.InvoiceEditDesktopState_build_closure, A.InvoiceEditDesktopState_build_closure0, A.InvoiceEditDesktopState_build_closure1, A.InvoiceEditDesktopState_build_closure2, A.InvoiceEditDesktopState_build_closure3, A.InvoiceEditDesktopState_build_closure4, A.InvoiceEditDesktopState_build_closure8, A.InvoiceEditDesktopState_build__closure21, A.InvoiceEditDesktopState_build_closure7, A.InvoiceEditDesktopState_build__closure20, A.InvoiceEditDesktopState_build_closure11, A.InvoiceEditDesktopState_build__closure19, A.InvoiceEditDesktopState_build_closure10, A.InvoiceEditDesktopState_build_closure13, A.InvoiceEditDesktopState_build__closure18, A.InvoiceEditDesktopState_build_closure12, A.InvoiceEditDesktopState_build_closure15, A.InvoiceEditDesktopState_build__closure17, A.InvoiceEditDesktopState_build__closure16, A.InvoiceEditDesktopState_build_closure17, A.InvoiceEditDesktopState_build__closure15, A.InvoiceEditDesktopState_build_closure19, A.InvoiceEditDesktopState_build_closure20, A.InvoiceEditDesktopState_build__closure14, A.InvoiceEditDesktopState_build_closure21, A.InvoiceEditDesktopState_build__closure13, A.InvoiceEditDesktopState_build_closure23, A.InvoiceEditDesktopState_build__closure12, A.InvoiceEditDesktopState_build_closure22, A.InvoiceEditDesktopState_build_closure24, A.InvoiceEditDesktopState_build_closure25, A.InvoiceEditDesktopState_build__closure10, A.InvoiceEditDesktopState_build_closure26, A.InvoiceEditDesktopState_build__closure9, A.InvoiceEditDesktopState_build__closure0, A.InvoiceEditDesktopState_build___closure8, A.InvoiceEditDesktopState_build__closure1, A.InvoiceEditDesktopState_build___closure7, A.InvoiceEditDesktopState_build__closure2, A.InvoiceEditDesktopState_build___closure5, A.InvoiceEditDesktopState_build___closure6, A.InvoiceEditDesktopState_build__closure3, A.InvoiceEditDesktopState_build___closure4, A.InvoiceEditDesktopState_build__closure5, A.InvoiceEditDesktopState_build___closure2, A.InvoiceEditDesktopState_build___closure3, A.InvoiceEditDesktopState_build__closure6, A.InvoiceEditDesktopState_build___closure1, A.InvoiceEditDesktopState_build__closure7, A.InvoiceEditDesktopState_build___closure0, A.InvoiceEditDesktopState_build__closure8, A.InvoiceEditDesktopState_build___closure, A.InvoiceEditDesktopState_build_closure30, A.InvoiceEditDesktopState_build_closure31, A.InvoiceEditDesktopState_build_closure32, A.InvoiceEditDesktopState_build__closure, A.__PdfPreviewState__loadPdf_closure0, A.__PdfPreviewState__loadPdf_closure1, A.__PdfPreviewState_build_closure1, A.InvoiceEditDetailsState_didChangeDependencies_closure, A.InvoiceEditDetailsState_didChangeDependencies_closure0, A.InvoiceEditDetailsState_dispose_closure, A.InvoiceEditDetailsState__onChanged_closure, A.InvoiceEditDetailsState_build_closure, A.InvoiceEditDetailsState_build_closure0, A.InvoiceEditDetailsState_build_closure1, A.InvoiceEditDetailsState_build_closure2, A.InvoiceEditDetailsState_build_closure3, A.InvoiceEditDetailsState_build_closure4, A.InvoiceEditDetailsState_build__closure19, A.InvoiceEditDetailsState_build_closure6, A.InvoiceEditDetailsState_build__closure18, A.InvoiceEditDetailsState_build_closure5, A.InvoiceEditDetailsState_build__closure17, A.InvoiceEditDetailsState_build_closure9, A.InvoiceEditDetailsState_build__closure16, A.InvoiceEditDetailsState_build_closure8, A.InvoiceEditDetailsState_build_closure11, A.InvoiceEditDetailsState_build__closure15, A.InvoiceEditDetailsState_build_closure10, A.InvoiceEditDetailsState_build_closure13, A.InvoiceEditDetailsState_build__closure14, A.InvoiceEditDetailsState_build__closure13, A.InvoiceEditDetailsState_build_closure15, A.InvoiceEditDetailsState_build__closure12, A.InvoiceEditDetailsState_build_closure17, A.InvoiceEditDetailsState_build__closure11, A.InvoiceEditDetailsState_build_closure18, A.InvoiceEditDetailsState_build__closure10, A.InvoiceEditDetailsState_build_closure20, A.InvoiceEditDetailsState_build__closure9, A.InvoiceEditDetailsState_build_closure19, A.InvoiceEditDetailsState_build_closure21, A.InvoiceEditDetailsState_build_closure22, A.InvoiceEditDetailsState_build_closure23, A.InvoiceEditDetailsState_build_closure24, A.InvoiceEditDetailsState_build__closure8, A.InvoiceEditDetailsState_build_closure25, A.InvoiceEditDetailsState_build__closure6, A.InvoiceEditDetailsState_build__closure7, A.InvoiceEditDetailsState_build_closure26, A.InvoiceEditDetailsState_build__closure5, A.InvoiceEditDetailsState_build_closure28, A.InvoiceEditDetailsState_build__closure3, A.InvoiceEditDetailsState_build__closure4, A.InvoiceEditDetailsState_build_closure29, A.InvoiceEditDetailsState_build__closure2, A.InvoiceEditDetailsState_build_closure30, A.InvoiceEditDetailsState_build__closure1, A.InvoiceEditDetailsState_build_closure31, A.InvoiceEditDetailsState_build__closure0, A.InvoiceEditDetailsState_build__closure, A.InvoiceEditDetailsScreen_build_closure0, A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure, A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure0, A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure, A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore__closure0, A._InvoiceEditItemsState__showInvoiceItemEditor_closure, A._InvoiceEditItemsState_build_closure, A.ItemEditDetailsState_didChangeDependencies_closure, A.ItemEditDetailsState_dispose_closure, A.ItemEditDetailsState__onChanged_closure, A.ItemEditDetailsState__onChanged_closure0, A.ItemEditDetailsState_build__closure3, A.ItemEditDetailsState_build_closure2, A.ItemEditDetailsState_build_closure1, A.ItemEditDetailsState_build_closure3, A.ItemEditDetailsState_build_closure4, A.ItemEditDetailsState_build_closure5, A._InvoiceEditItemsDesktopState__updateColumns_closure, A._InvoiceEditItemsDesktopState__updateColumns_closure0, A._InvoiceEditItemsDesktopState__updateColumns_closure1, A._InvoiceEditItemsDesktopState__updateColumns_closure2, A._InvoiceEditItemsDesktopState__updateColumns_closure3, A._InvoiceEditItemsDesktopState__onFocusChange_closure, A._InvoiceEditItemsDesktopState_build_closure, A._InvoiceEditItemsDesktopState_build_closure0, A._InvoiceEditItemsDesktopState_build__closure33, A._InvoiceEditItemsDesktopState_build__closure34, A._InvoiceEditItemsDesktopState_build_closure4, A._InvoiceEditItemsDesktopState_build_closure5, A._InvoiceEditItemsDesktopState_build_closure7, A._InvoiceEditItemsDesktopState_build__closure5, A._InvoiceEditItemsDesktopState_build__closure3, A._InvoiceEditItemsDesktopState_build___closure13, A._InvoiceEditItemsDesktopState_build___closure14, A._InvoiceEditItemsDesktopState_build__closure0, A._InvoiceEditItemsDesktopState_build__closure2, A._InvoiceEditItemsDesktopState_build___closure15, A._InvoiceEditItemsDesktopState_build___closure16, A._InvoiceEditItemsDesktopState_build__closure1, A._InvoiceEditItemsDesktopState_build___closure18, A._InvoiceEditItemsDesktopState_build___closure17, A._InvoiceEditItemsDesktopState_build____closure1, A._InvoiceEditItemsDesktopState_build__closure4, A._InvoiceEditItemsDesktopState_build____closure, A._InvoiceEditItemsDesktopState_build____closure0, A._InvoiceEditItemsDesktopState_build__closure7, A._InvoiceEditItemsDesktopState_build__closure6, A._InvoiceEditItemsDesktopState_build___closure11, A._InvoiceEditItemsDesktopState_build__closure9, A._InvoiceEditItemsDesktopState_build__closure8, A._InvoiceEditItemsDesktopState_build___closure10, A._InvoiceEditItemsDesktopState_build__closure11, A._InvoiceEditItemsDesktopState_build__closure10, A._InvoiceEditItemsDesktopState_build___closure9, A._InvoiceEditItemsDesktopState_build__closure13, A._InvoiceEditItemsDesktopState_build__closure12, A._InvoiceEditItemsDesktopState_build___closure8, A._InvoiceEditItemsDesktopState_build__closure15, A._InvoiceEditItemsDesktopState_build__closure14, A._InvoiceEditItemsDesktopState_build___closure7, A._InvoiceEditItemsDesktopState_build__closure18, A._InvoiceEditItemsDesktopState_build__closure17, A._InvoiceEditItemsDesktopState_build___closure6, A._InvoiceEditItemsDesktopState_build__closure16, A._InvoiceEditItemsDesktopState_build__closure20, A._InvoiceEditItemsDesktopState_build__closure19, A._InvoiceEditItemsDesktopState_build___closure5, A._InvoiceEditItemsDesktopState_build___closure4, A._InvoiceEditItemsDesktopState_build__closure23, A._InvoiceEditItemsDesktopState_build__closure22, A._InvoiceEditItemsDesktopState_build___closure3, A._InvoiceEditItemsDesktopState_build__closure25, A._InvoiceEditItemsDesktopState_build__closure24, A._InvoiceEditItemsDesktopState_build___closure2, A._InvoiceEditItemsDesktopState_build__closure27, A._InvoiceEditItemsDesktopState_build__closure26, A._InvoiceEditItemsDesktopState_build___closure1, A._InvoiceEditItemsDesktopState_build__closure29, A._InvoiceEditItemsDesktopState_build__closure28, A._InvoiceEditItemsDesktopState_build___closure0, A._InvoiceEditItemsDesktopState_build__closure31, A._InvoiceEditItemsDesktopState_build__closure30, A._InvoiceEditItemsDesktopState_build___closure, A._InvoiceEditItemsDesktopState_build_closure8, A._InvoiceEditItemsDesktopState_build__closure, A._InvoiceEditItemsDesktopState_build_closure9, A.InvoiceEditItemsScreen_build_closure0, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore__closure0, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure0, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore__closure, A.InvoiceEditNotesState_didChangeDependencies_closure, A.InvoiceEditNotesState_didChangeDependencies_closure0, A.InvoiceEditNotesState_dispose_closure, A.InvoiceEditNotesState__onChanged_closure, A.InvoiceEditNotesScreen_build_closure0, A.InvoiceEditNotesVM_InvoiceEditNotesVM$fromStore_closure, A.InvoiceEditPDFState_didChangeDependencies_closure0, A.InvoiceEditPDFState_didChangeDependencies_closure1, A.InvoiceEditPDFState_build_closure, A.InvoiceEditPDFScreen_build_closure0, A.InvoiceEditScreen_build_closure0, A.InvoiceEditVM_InvoiceEditVM$fromStore_closure, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure1, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure2, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure3, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure4, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure5, A.InvoiceEditVM_InvoiceEditVM$fromStore____closure, A.InvoiceEditVM_InvoiceEditVM$fromStore_closure0, A.InvoiceEditVM_InvoiceEditVM$fromStore__closure1, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure0, A.InvoiceEditVM_InvoiceEditVM$fromStore_closure1, A.InvoiceEditVM_InvoiceEditVM$fromStore_closure2, A.InvoiceEditVM_InvoiceEditVM$fromStore__closure, A.InvoiceEditVM_InvoiceEditVM$fromStore__closure0, A.InvoiceEditVM_InvoiceEditVM$fromStore___closure, A._InvoiceItemSelectorState__onItemsSelected_closure, A._InvoiceItemSelectorState__updateClientId_closure, A._InvoiceItemSelectorState_build_closure, A._InvoiceItemSelectorState_build_closure0, A._InvoiceItemSelectorState_build_closure1, A._InvoiceItemSelectorState_build__productList__closure, A._InvoiceItemSelectorState_build__taskList__closure, A._InvoiceItemSelectorState_build__expenseList__closure, A._InvoiceItemSelectorState_build_closure2, A.InvoiceEmailScreen_build_closure1, A.InvoiceEmailScreen_build_closure0, A.EmailInvoiceVM_EmailInvoiceVM$fromStore_closure, A.EmailInvoiceVM_EmailInvoiceVM$fromStore__closure, A.InvoiceListItem_build__closure, A.InvoiceListItem_build__closure3, A.InvoiceListVM_fromStore__handleRefresh, A.InvoiceListVM_fromStore_closure, A.InvoiceListVM_fromStore_closure0, A._InvoicePdfViewState_loadPdf_closure0, A._InvoicePdfViewState_loadPdf_closure1, A._InvoicePdfViewState_loadPdf__closure0, A._InvoicePdfViewState_build_closure0, A._InvoicePdfViewState_build_closure, A._InvoicePdfViewState_build_closure1, A._InvoicePdfViewState_build_closure5, A.InvoicePdfScreen_build_closure0, A.InvoiceScreen_build_closure, A.InvoiceScreen_build_closure0, A.InvoiceScreen_build_closure1, A.InvoiceScreen_build_closure2, A.InvoiceScreen_build_closure3, A.InvoiceScreen_build_closure4, A.InvoiceScreen_build_closure5, A.InvoiceScreen_build_closure6, A.InvoiceScreen_build_closure16, A.InvoiceScreen_build_closure12, A.InvoiceScreen_build_closure8, A.InvoiceScreen_build_closure9, A.InvoiceScreen_build_closure10, A.InvoiceScreen_build_closure11, A._InvoiceViewState_build_closure, A.InvoiceViewContacts_build_closure, A._InvitationListTile_build_closure, A._InvitationListTile_build_closure1, A.InvoiceViewDocuments_build_closure0, A._InvoiceViewHistoryState_build_closure, A._InvoiceViewHistoryState_build_closure0, A.InvoiceOverview_build_closure, A.InvoiceOverview_build__closure0, A.InvoiceOverview_build__closure1, A.InvoiceOverview_build_closure0, A.InvoiceOverview_build_closure1, A.InvoiceOverview_build_closure2, A.InvoiceOverview_build__closure, A._InvoiceViewScheduleState_build_closure, A.InvoiceViewScreen_build_closure0, A.InvoiceViewVM_InvoiceViewVM$fromStore__handleRefresh, A.InvoiceViewVM_InvoiceViewVM$fromStore_closure, A.InvoiceViewVM_InvoiceViewVM$fromStore_closure0, A.InvoiceViewVM_InvoiceViewVM$fromStore_closure1, A.InvoiceViewVM_InvoiceViewVM$fromStore__closure, A.InvoiceViewVM_InvoiceViewVM$fromStore__closure0, A.InvoiceViewVM_InvoiceViewVM$fromStore___closure, A.InvoiceViewVM_InvoiceViewVM$fromStore_closure3, A._PaymentEditState_didChangeDependencies_closure, A._PaymentEditState_didChangeDependencies_closure0, A._PaymentEditState_dispose_closure, A._PaymentEditState__onChanged_closure, A._PaymentEditState_convertCurrency_closure, A._PaymentEditState_build_closure, A._PaymentEditState_build_closure0, A._PaymentEditState_build_closure1, A._PaymentEditState_build_closure2, A._PaymentEditState_build_closure4, A._PaymentEditState_build_closure3, A._PaymentEditState_build__closure5, A._PaymentEditState_build_closure5, A._PaymentEditState_build_closure6, A._PaymentEditState_build_closure8, A._PaymentEditState_build__closure4, A._PaymentEditState_build_closure9, A._PaymentEditState_build__closure3, A._PaymentEditState_build_closure10, A._PaymentEditState_build__closure2, A._PaymentEditState_build_closure11, A._PaymentEditState_build__closure0, A._PaymentEditState_build_closure12, A._PaymentEditState_build_closure14, A._PaymentEditState_build__closure, A._PaymentEditState_build_closure13, A._PaymentEditState_build_closure17, A._PaymentableEditorState_didChangeDependencies_closure, A._PaymentableEditorState_didChangeDependencies_closure0, A._PaymentableEditorState_dispose_closure0, A._PaymentableEditorState__onChanged_closure, A._PaymentableEditorState__onChanged_closure0, A._PaymentableEditorState__onChanged_closure1, A._PaymentableEditorState__onChanged_closure2, A._PaymentableEditorState__onChanged_closure3, A._PaymentableEditorState__onChanged_closure4, A._PaymentableEditorState__onChanged_closure5, A._PaymentableEditorState_build_closure, A._PaymentableEditorState_build_closure0, A._PaymentableEditorState_build_closure3, A._PaymentableEditorState_build_closure2, A._PaymentableEditorState_build_closure1, A._PaymentableEditorState_build_closure6, A._PaymentableEditorState_build_closure5, A._PaymentableEditorState_build_closure4, A._PaymentableEditorState_build__closure, A._PaymentableEditorState_build__closure0, A.PaymentEditFooter_build_closure, A.PaymentEditFooter_build_closure0, A.PaymentEditScreen_build_closure0, A.PaymentEditVM_PaymentEditVM$fromStore_closure, A.PaymentEditVM_PaymentEditVM$fromStore_closure1, A.PaymentEditVM_PaymentEditVM$fromStore_closure0, A.PaymentEditVM_PaymentEditVM$fromStore___closure, A.PaymentEditVM_PaymentEditVM$fromStore___closure0, A.PaymentEditVM_PaymentEditVM$fromStore___closure1, A.PaymentEditVM_PaymentEditVM$fromStore___closure2, A.PaymentEditVM_PaymentEditVM$fromStore___closure3, A.PaymentEditVM_PaymentEditVM$fromStore____closure, A.PaymentListItem_build__closure, A.PaymentListItem_build__closure3, A.PaymentListVM_fromStore__handleRefresh, A.PaymentListVM_fromStore_closure, A.PaymentListVM_fromStore_closure0, A.PaymentPresenter_getField_closure, A.PaymentPresenter_getField_closure0, A.PaymentPresenter_getField_closure1, A.PaymentScreen_build_closure, A.PaymentScreen_build_closure0, A.PaymentScreen_build_closure1, A.PaymentScreen_build_closure2, A.PaymentScreen_build_closure3, A.PaymentScreen_build_closure4, A.PaymentScreen_build_closure5, A.PaymentScreen_build_closure6, A.PaymentScreen_build_closure17, A.PaymentScreen_build_closure13, A.PaymentScreen_build_closure9, A.PaymentScreen_build_closure10, A.PaymentScreen_build_closure11, A.PaymentScreen_build_closure12, A._PaymentRefundState_didChangeDependencies_closure, A._PaymentRefundState_didChangeDependencies_closure0, A._PaymentRefundState_dispose_closure, A._PaymentRefundState__onChanged__closure, A._PaymentRefundState_build_closure, A._PaymentRefundState_build_closure1, A._PaymentRefundState_build__closure1, A._PaymentRefundState_build_closure2, A._PaymentRefundState_build__closure0, A._PaymentRefundState_build_closure3, A._PaymentRefundState_build__closure, A._PaymentRefundState_build_onSavePressed, A._PaymentRefundState_build_onSavePressed_closure0, A._PaymentRefundState_build_closure4, A._PaymentRefundState_build_closure5, A._PaymentableEditorState_didChangeDependencies_closure1, A._PaymentableEditorState_didChangeDependencies_closure2, A._PaymentableEditorState_dispose_closure, A._PaymentableEditorState__onChanged_closure6, A._PaymentableEditorState__onChanged_closure7, A._PaymentableEditorState__onChanged_closure8, A._PaymentableEditorState__onChanged_closure9, A._PaymentableEditorState_build_closure8, A._PaymentableEditorState_build_closure10, A._PaymentableEditorState_build_closure9, A._PaymentableEditorState_build_closure11, A._PaymentableEditorState_build__closure1, A.PaymentRefundScreen_build_closure0, A.PaymentRefundVM_PaymentRefundVM$fromStore_closure, A.PaymentRefundVM_PaymentRefundVM$fromStore_closure1, A.PaymentRefundVM_PaymentRefundVM$fromStore__closure, A.PaymentRefundVM_PaymentRefundVM$fromStore__closure0, A.PaymentRefundVM_PaymentRefundVM$fromStore___closure, A._PaymentViewState_build_closure, A.PaymentViewScreen_build_closure0, A.PaymentViewVM_PaymentViewVM$fromStore__handleRefresh, A.PaymentViewVM_PaymentViewVM$fromStore_closure, A._PaymentTermEditState_didChangeDependencies_closure, A._PaymentTermEditState_didChangeDependencies_closure0, A._PaymentTermEditState_dispose_closure, A._PaymentTermEditState__onChanged_closure, A._PaymentTermEditState_build_closure0, A._PaymentTermEditState_build_closure1, A._PaymentTermEditState_build_closure, A._PaymentTermEditState_build__closure0, A._PaymentTermEditState_build__closure, A.PaymentTermEditScreen_build_closure0, A.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure, A.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure1, A.PaymentTermEditVM_PaymentTermEditVM$fromStore_closure0, A.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure, A.PaymentTermEditVM_PaymentTermEditVM$fromStore___closure0, A.PaymentTermEditVM_PaymentTermEditVM$fromStore____closure, A.PaymentTermListItem_build_closure, A.PaymentTermListVM_fromStore__handleRefresh, A.PaymentTermListVM_fromStore_closure, A.PaymentTermListVM_fromStore_closure0, A.PaymentTermScreen_build_closure7, A.PaymentTermScreen_build_closure4, A.PaymentTermScreen_build_closure0, A.PaymentTermScreen_build_closure1, A.PaymentTermScreen_build_closure2, A.PaymentTermScreen_build_closure3, A.PaymentTermViewScreen_build_closure0, A._ProductEditState_didChangeDependencies_closure, A._ProductEditState_didChangeDependencies_closure0, A._ProductEditState_dispose_closure, A._ProductEditState__onChanged_closure, A._ProductEditState_build_closure6, A._ProductEditState_build_closure, A._ProductEditState_build_closure1, A._ProductEditState_build__closure3, A._ProductEditState_build_closure0, A._ProductEditState_build_closure2, A._ProductEditState_build__closure2, A._ProductEditState_build_closure3, A._ProductEditState_build__closure1, A._ProductEditState_build_closure4, A._ProductEditState_build__closure0, A._ProductEditState_build_closure5, A._ProductEditState_build__closure, A.ProductEditScreen_build_closure0, A.ProductEditVM_ProductEditVM$fromStore_closure, A.ProductEditVM_ProductEditVM$fromStore_closure1, A.ProductEditVM_ProductEditVM$fromStore_closure0, A.ProductEditVM_ProductEditVM$fromStore___closure, A.ProductEditVM_ProductEditVM$fromStore___closure0, A.ProductEditVM_ProductEditVM$fromStore____closure, A.ProductListItem_build__closure, A.ProductListItem_build__closure3, A.ProductListVM_fromStore__handleRefresh, A.ProductListVM_fromStore_closure, A.ProductListVM_fromStore_closure0, A.ProductScreen_build_closure8, A.ProductScreen_build_closure5, A.ProductScreen_build_closure1, A.ProductScreen_build_closure2, A.ProductScreen_build_closure3, A.ProductScreen_build_closure4, A._ProductViewState_build_closure, A.ProductViewScreen_build_closure0, A.ProductViewVM_ProductViewVM$fromStore__handleRefresh, A.ProductViewVM_ProductViewVM$fromStore_closure, A.ProductViewVM_ProductViewVM$fromStore_closure0, A.ProductViewVM_ProductViewVM$fromStore__closure, A.ProductViewVM_ProductViewVM$fromStore__closure0, A.ProductViewVM_ProductViewVM$fromStore___closure, A._ProjectEditState_didChangeDependencies_closure, A._ProjectEditState_didChangeDependencies_closure0, A._ProjectEditState_dispose_closure, A._ProjectEditState__onChanged_closure, A._ProjectEditState_build_closure0, A._ProjectEditState_build_closure, A._ProjectEditState_build__closure, A._ProjectEditState_build__closure2, A._ProjectEditState_build__closure1, A._ProjectEditState_build___closure1, A._ProjectEditState_build__closure0, A._ProjectEditState_build__closure4, A._ProjectEditState_build___closure, A._ProjectEditState_build___closure0, A.ProjectEditScreen_build_closure0, A.ProjectEditVM_ProjectEditVM$fromStore_closure, A.ProjectEditVM_ProjectEditVM$fromStore_closure1, A.ProjectEditVM_ProjectEditVM$fromStore__closure, A.ProjectEditVM_ProjectEditVM$fromStore__closure0, A.ProjectEditVM_ProjectEditVM$fromStore_closure0, A.ProjectEditVM_ProjectEditVM$fromStore___closure, A.ProjectEditVM_ProjectEditVM$fromStore___closure0, A.ProjectEditVM_ProjectEditVM$fromStore____closure, A.ProjectListItem_build__closure, A.ProjectListItem_build__closure3, A.ProjectListVM_fromStore__handleRefresh, A.ProjectListVM_fromStore_closure, A.ProjectListVM_fromStore_closure0, A.ProjectScreen_build_closure7, A.ProjectScreen_build_closure4, A.ProjectScreen_build_closure0, A.ProjectScreen_build_closure1, A.ProjectScreen_build_closure2, A.ProjectScreen_build_closure3, A._ProjectViewState_build_closure, A._ProjectOverviewState_initState_closure, A.ProjectViewScreen_build_closure0, A.ProjectViewVM_ProjectViewVM$fromStore__handleRefresh, A.ProjectViewVM_ProjectViewVM$fromStore_closure, A.ProjectViewVM_ProjectViewVM$fromStore_closure0, A.ProjectViewVM_ProjectViewVM$fromStore__closure, A.ProjectViewVM_ProjectViewVM$fromStore__closure0, A.ProjectViewVM_ProjectViewVM$fromStore___closure, A._PurchaseOrderEditState_build_closure1, A._PurchaseOrderEditState_build_closure2, A._PurchaseOrderEditState_build__closure, A._PurchaseOrderEditState_build___closure0, A._PurchaseOrderEditState_build___closure1, A._PurchaseOrderEditState_build___closure, A.PurchaseOrderEditDetailsScreen_build_closure0, A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure, A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure0, A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore__closure, A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore__closure0, A.PurchaseOrderEditItemsScreen_build_closure0, A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure, A.PurchaseOrderEditNotesScreen_build_closure0, A.PurchaseOrderEditNotesVM_PurchaseOrderEditNotesVM$fromStore_closure, A.PurchaseOrderEditPDFScreen_build_closure0, A.PurchaseOrderEditScreen_build_closure0, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure0, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure1, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure2, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore____closure, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure0, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure1, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore_closure2, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore__closure, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore__closure0, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore___closure, A.PurchaseOrderEmailScreen_build_closure1, A.PurchaseOrderEmailScreen_build_closure0, A.EmailPurchaseOrderVM_EmailPurchaseOrderVM$fromStore_closure, A.EmailPurchaseOrderVM_EmailPurchaseOrderVM$fromStore__closure, A.PurchaseOrderListItem_build__closure, A.PurchaseOrderListItem_build__closure3, A.PurchaseOrderListVM_fromStore__handleRefresh, A.PurchaseOrderListVM_fromStore_closure, A.PurchaseOrderListVM_fromStore_closure0, A.PurchaseOrderPdfScreen_build_closure0, A.PurchaseOrderScreen_build_closure, A.PurchaseOrderScreen_build_closure0, A.PurchaseOrderScreen_build_closure1, A.PurchaseOrderScreen_build_closure2, A.PurchaseOrderScreen_build_closure12, A.PurchaseOrderScreen_build_closure8, A.PurchaseOrderScreen_build_closure4, A.PurchaseOrderScreen_build_closure5, A.PurchaseOrderScreen_build_closure6, A.PurchaseOrderScreen_build_closure7, A.PurchaseOrderViewScreen_build_closure0, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__handleRefresh, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure0, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure1, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore__closure0, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore___closure, A.PurchaseOrderViewVM_PurchaseOrderViewVM$fromStore_closure2, A._QuoteEditState_build_closure1, A._QuoteEditState_build_closure2, A._QuoteEditState_build__closure, A._QuoteEditState_build___closure0, A._QuoteEditState_build___closure1, A._QuoteEditState_build___closure, A.QuoteEditDetailsScreen_build_closure0, A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure, A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure0, A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure, A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore__closure0, A.QuoteEditItemsScreen_build_closure0, A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure, A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore__closure, A.QuoteEditNotesScreen_build_closure0, A.QuoteEditNotesVM_QuoteEditNotesVM$fromStore_closure, A.QuoteEditPDFScreen_build_closure0, A.QuoteEditScreen_build_closure0, A.QuoteEditVM_QuoteEditVM$fromStore_closure, A.QuoteEditVM_QuoteEditVM$fromStore___closure0, A.QuoteEditVM_QuoteEditVM$fromStore___closure1, A.QuoteEditVM_QuoteEditVM$fromStore___closure2, A.QuoteEditVM_QuoteEditVM$fromStore____closure, A.QuoteEditVM_QuoteEditVM$fromStore_closure0, A.QuoteEditVM_QuoteEditVM$fromStore_closure1, A.QuoteEditVM_QuoteEditVM$fromStore_closure2, A.QuoteEditVM_QuoteEditVM$fromStore__closure, A.QuoteEditVM_QuoteEditVM$fromStore__closure0, A.QuoteEditVM_QuoteEditVM$fromStore___closure, A.QuoteEmailScreen_build_closure1, A.QuoteEmailScreen_build_closure0, A.EmailQuoteVM_EmailQuoteVM$fromStore_closure, A.EmailQuoteVM_EmailQuoteVM$fromStore__closure, A.QuoteListItem_build__closure, A.QuoteListItem_build__closure3, A.QuoteListVM_fromStore__handleRefresh, A.QuoteListVM_fromStore_closure, A.QuoteListVM_fromStore_closure0, A.QuotePdfScreen_build_closure0, A.QuoteScreen_build_closure, A.QuoteScreen_build_closure0, A.QuoteScreen_build_closure1, A.QuoteScreen_build_closure2, A.QuoteScreen_build_closure3, A.QuoteScreen_build_closure4, A.QuoteScreen_build_closure14, A.QuoteScreen_build_closure10, A.QuoteScreen_build_closure6, A.QuoteScreen_build_closure7, A.QuoteScreen_build_closure8, A.QuoteScreen_build_closure9, A.QuoteViewScreen_build_closure0, A.QuoteViewVM_QuoteViewVM$fromStore__handleRefresh, A.QuoteViewVM_QuoteViewVM$fromStore_closure, A.QuoteViewVM_QuoteViewVM$fromStore_closure0, A.QuoteViewVM_QuoteViewVM$fromStore_closure1, A.QuoteViewVM_QuoteViewVM$fromStore__closure, A.QuoteViewVM_QuoteViewVM$fromStore__closure0, A.QuoteViewVM_QuoteViewVM$fromStore___closure, A.QuoteViewVM_QuoteViewVM$fromStore_closure2, A.RecurringExpenseEditScreen_build_closure0, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure3, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure4, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure1, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure2, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure1, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure0, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure0, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure1, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore____closure, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure4, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure0, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore___closure, A.RecurringExpenseListItem_build__closure, A.RecurringExpenseListItem_build__closure3, A.RecurringExpenseListVM_fromStore__handleRefresh, A.RecurringExpenseListVM_fromStore_closure, A.RecurringExpenseListVM_fromStore_closure0, A.RecurringExpenseScreen_build_closure, A.RecurringExpenseScreen_build_closure0, A.RecurringExpenseScreen_build_closure1, A.RecurringExpenseScreen_build_closure2, A.RecurringExpenseScreen_build_closure3, A.RecurringExpenseScreen_build_closure13, A.RecurringExpenseScreen_build_closure9, A.RecurringExpenseScreen_build_closure5, A.RecurringExpenseScreen_build_closure6, A.RecurringExpenseScreen_build_closure7, A.RecurringExpenseScreen_build_closure8, A.RecurringExpenseViewScreen_build_closure0, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__handleRefresh, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore_closure0, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore__closure0, A.RecurringExpenseViewVM_RecurringExpenseViewVM$fromStore___closure, A._RecurringInvoiceEditState_build_closure1, A._RecurringInvoiceEditState_build_closure2, A._RecurringInvoiceEditState_build__closure, A._RecurringInvoiceEditState_build___closure0, A._RecurringInvoiceEditState_build___closure1, A._RecurringInvoiceEditState_build___closure, A.RecurringInvoiceEditDetailsScreen_build_closure0, A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure, A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure0, A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure, A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore__closure0, A.RecurringInvoiceEditItemsScreen_build_closure0, A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure, A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore__closure, A.RecurringInvoiceEditNotesScreen_build_closure0, A.RecurringInvoiceEditNotesVM_RecurringInvoiceEditNotesVM$fromStore_closure, A.RecurringInvoiceEditPDFScreen_build_closure0, A.RecurringInvoiceEditScreen_build_closure0, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure0, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure1, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure2, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore____closure, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure0, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure1, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore_closure2, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure0, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore___closure, A.RecurringInvoiceListItem_build__closure, A.RecurringInvoiceListItem_build__closure3, A.RecurringInvoiceListVM_fromStore__handleRefresh, A.RecurringInvoiceListVM_fromStore_closure, A.RecurringInvoiceListVM_fromStore_closure0, A.RecurringInvoicePdfScreen_build_closure0, A.RecurringInvoiceScreen_build_closure, A.RecurringInvoiceScreen_build_closure0, A.RecurringInvoiceScreen_build_closure1, A.RecurringInvoiceScreen_build_closure2, A.RecurringInvoiceScreen_build_closure3, A.RecurringInvoiceScreen_build_closure13, A.RecurringInvoiceScreen_build_closure9, A.RecurringInvoiceScreen_build_closure5, A.RecurringInvoiceScreen_build_closure6, A.RecurringInvoiceScreen_build_closure7, A.RecurringInvoiceScreen_build_closure8, A.RecurringInvoiceViewScreen_build_closure0, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__handleRefresh, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure0, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure1, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore__closure0, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore___closure, A.RecurringInvoiceViewVM_RecurringInvoiceViewVM$fromStore_closure2, A.memoizedClientReport_closure, A.clientReport_closure, A.clientReport_closure0, A.clientReport_closure2, A.clientReport_closure3, A.memoizedContactReport_closure, A.contactReport_closure, A.contactReport_closure0, A.contactReport_closure2, A.contactReport_closure3, A.memoizedCreditItemReport_closure, A.lineItemReport_closure11, A.lineItemReport_closure12, A.lineItemReport_closure14, A.lineItemReport_closure15, A.lineItemReport_closure16, A.memoizedCreditReport_closure, A.creditReport_closure, A.creditReport_closure0, A.creditReport_closure2, A.creditReport_closure3, A.memoizedDocumentReport_closure, A.documentReport_closure, A.documentReport_closure0, A.documentReport_closure1, A.documentReport_closure3, A.documentReport_closure4, A.memoizedExpenseReport_closure, A.expenseReport_closure, A.expenseReport_closure0, A.expenseReport_closure2, A.expenseReport_closure3, A.memoizedInvoiceItemReport_closure, A.lineItemReport_closure17, A.lineItemReport_closure18, A.lineItemReport_closure20, A.lineItemReport_closure21, A.lineItemReport_closure22, A.memoizedInvoiceReport_closure, A.invoiceReport_closure, A.invoiceReport__closure, A.invoiceReport_closure1, A.invoiceReport_closure3, A.invoiceReport_closure4, A.memoizedInvoiceTaxReport_closure, A.taxReport_closure, A.taxReport_closure1, A.taxReport_closure2, A.taxReport_closure3, A.taxReport_closure4, A.memoizedPaymentReport_closure, A.paymentReport_closure, A.paymentReport_closure0, A.paymentReport_closure2, A.paymentReport_closure3, A.memoizedPaymentTaxReport_closure, A.paymentTaxReport_closure, A.paymentTaxReport_closure1, A.paymentTaxReport_closure2, A.paymentTaxReport_closure3, A.paymentTaxReport_closure4, A.memoizedProductReport_closure, A.productReport_closure, A.productReport_closure0, A.productReport_closure2, A.productReport_closure3, A.memoizedProfitAndLossReport_closure, A.profitAndLossReport_closure, A.profitAndLossReport_closure1, A.profitAndLossReport_closure2, A.profitAndLossReport_closure3, A.profitAndLossReport_closure4, A.memoizedPurchaseOrderItemReport_closure, A.lineItemReport_closure, A.lineItemReport_closure0, A.lineItemReport_closure2, A.lineItemReport_closure3, A.lineItemReport_closure4, A.memoizedPurchaseOrderReport_closure, A.purchaseOrderReport_closure, A.purchaseOrderReport_closure0, A.purchaseOrderReport_closure2, A.purchaseOrderReport_closure3, A.memoizedQuoteItemReport_closure, A.lineItemReport_closure5, A.lineItemReport_closure6, A.lineItemReport_closure8, A.lineItemReport_closure9, A.lineItemReport_closure10, A.memoizedQuoteReport_closure, A.quoteReport_closure, A.quoteReport_closure0, A.quoteReport_closure2, A.quoteReport_closure3, A.memoizedRecurringExpenseReport_closure, A.recurringExpenseReport_closure, A.recurringExpenseReport_closure0, A.recurringExpenseReport_closure2, A.recurringExpenseReport_closure3, A.memoizedRecurringInvoiceReport_closure, A.recurringInvoiceReport_closure, A.recurringInvoiceReport_closure0, A.recurringInvoiceReport_closure2, A.recurringInvoiceReport_closure3, A.ReportCharts_build_closure0, A.ReportCharts_build_closure3, A.ReportCharts_build_closure6, A.ReportsScreen_build_closure, A.ReportsScreen_build_closure0, A.ReportsScreen_build_closure3, A.ReportsScreen_build_closure2, A.ReportsScreen_build_closure6, A.ReportsScreen_build_closure4, A.ReportsScreen_build_closure5, A.ReportsScreen_build_closure7, A.ReportsScreen_build_closure8, A.ReportsScreen_build_closure9, A.ReportsScreen_build_closure11, A.ReportsScreen_build__closure5, A.ReportsScreen_build_closure10, A.ReportsScreen_build_closure12, A.ReportsScreen_build__closure4, A.ReportsScreen_build_closure13, A.ReportsScreen_build_closure14, A.ReportsScreen_build_closure19, A.ReportsScreen_build_closure17, A.ReportsScreen_build_closure18, A.ReportsScreen_build_closure27, A.ReportsScreen_build_closure20, A.ReportsScreen_build___closure0, A.ReportsScreen_build__closure2, A.ReportsScreen_build_closure23, A.ReportsScreen_build__closure0, A.ReportsScreen_build_closure25, A.ReportsScreen_build___closure, A._ReportDataTableState_initState__closure, A._ReportDataTableState__onChanged_closure, A._ReportDataTableState_dispose_closure, A._ReportDataTableState_dispose__closure, A.getReportColumnType_convertCustomFieldType, A.ReportResult_tableFilters_closure, A.ReportResult_tableFilters_closure0, A.ReportResult_tableFilters_closure1, A.ReportResult_tableFilters_closure3, A.ReportResult_tableFilters_closure4, A.ReportResult_tableFilters_closure5, A.ReportResult_tableFilters_closure9, A.ReportResult_tableFilters__closure, A.ReportResult_tableFilters__closure0, A.ReportResult_tableFilters_closure8, A.ReportResult_tableFilters__closure1, A.ReportResult_tableFilters_closure6, A.ReportResult_tableFilters__closure4, A.ReportResult_tableFilters_closure7, A.ReportResult_tableRow__closure, A.ReportResult_totalColumns_closure, A.ReportResult_totalRows_closure0, A.ReportResult_totalRows_closure2, A.ReportResult_totalRows__closure, A.ReportsScreenVM_fromStore__closure6, A.ReportsScreenVM_fromStore___closure0, A.ReportsScreenVM_fromStore__closure7, A.ReportsScreenVM_fromStore__closure8, A.ReportsScreenVM_fromStore_closure4, A.ReportsScreenVM_fromStore_closure0, A.ReportsScreenVM_fromStore__closure0, A.ReportsScreenVM_fromStore__closure1, A.ReportsScreenVM_fromStore__closure2, A.ReportsScreenVM_fromStore__closure4, A.ReportsScreenVM_fromStore__closure5, A.ReportsScreenVM_fromStore___closure, A.memoizeedGroupTotals_closure, A.memoizedTaskItemReport_closure, A.taskItemReport_closure, A.taskItemReport_closure0, A.taskItemReport_closure2, A.taskItemReport_closure3, A.memoizedTaskReport_closure, A.taskReport_closure, A.taskReport_closure0, A.taskReport_closure2, A.taskReport_closure3, A.memoizedTransactionReport_closure, A.transactionReport_closure, A.transactionReport_closure0, A.transactionReport_closure1, A.transactionReport_closure2, A.transactionReport_closure3, A.transactionReport_closure5, A.transactionReport_closure6, A.memoizedVendorReport_closure, A.vendorReport_closure, A.vendorReport_closure0, A.vendorReport_closure2, A.vendorReport_closure3, A._ScheduleEditState_didChangeDependencies_closure, A._ScheduleEditState_didChangeDependencies_closure0, A._ScheduleEditState_dispose_closure, A._ScheduleEditState__onChanged__closure, A._ScheduleEditState_build_closure0, A._ScheduleEditState_build_closure1, A._ScheduleEditState_build_closure, A._ScheduleEditState_build__closure0, A._ScheduleEditState_build___closure15, A._ScheduleEditState_build__closure, A._ScheduleEditState_build___closure14, A._ScheduleEditState_build__closure2, A._ScheduleEditState_build__closure4, A._ScheduleEditState_build___closure13, A._ScheduleEditState_build__closure3, A._ScheduleEditState_build__closure6, A._ScheduleEditState_build___closure12, A._ScheduleEditState_build__closure5, A._ScheduleEditState_build__closure9, A._ScheduleEditState_build___closure11, A._ScheduleEditState_build__closure7, A._ScheduleEditState_build__closure8, A._ScheduleEditState_build__closure11, A._ScheduleEditState_build___closure10, A._ScheduleEditState_build__closure10, A._ScheduleEditState_build__closure12, A._ScheduleEditState_build___closure9, A._ScheduleEditState_build__closure13, A._ScheduleEditState_build___closure8, A._ScheduleEditState_build__closure14, A._ScheduleEditState_build___closure7, A._ScheduleEditState_build__closure15, A._ScheduleEditState_build___closure5, A._ScheduleEditState_build___closure4, A._ScheduleEditState_build__closure18, A._ScheduleEditState_build___closure3, A._ScheduleEditState_build__closure17, A._ScheduleEditState_build__closure19, A._ScheduleEditState_build___closure2, A._ScheduleEditState_build__closure20, A._ScheduleEditState_build___closure1, A._ScheduleEditState_build__closure21, A._ScheduleEditState_build___closure0, A._ScheduleEditState_build__closure22, A._ScheduleEditState_build___closure, A.ScheduleEditScreen_build_closure0, A.ScheduleEditVM_ScheduleEditVM$fromStore_closure, A.ScheduleEditVM_ScheduleEditVM$fromStore_closure1, A.ScheduleEditVM_ScheduleEditVM$fromStore_closure0, A.ScheduleEditVM_ScheduleEditVM$fromStore___closure, A.ScheduleEditVM_ScheduleEditVM$fromStore___closure0, A.ScheduleEditVM_ScheduleEditVM$fromStore____closure, A.ScheduleListItem_build_closure, A.ScheduleListVM_fromStore__handleRefresh, A.ScheduleListVM_fromStore_closure, A.ScheduleListVM_fromStore_closure0, A.ScheduleScreen_build_closure7, A.ScheduleScreen_build_closure4, A.ScheduleScreen_build_closure0, A.ScheduleScreen_build_closure1, A.ScheduleScreen_build_closure2, A.ScheduleScreen_build_closure3, A.ScheduleViewScreen_build_closure0, A._AccountManagementState_didChangeDependencies_closure, A._AccountManagementState_didChangeDependencies_closure0, A._AccountManagementState__onChanged_closure, A._AccountManagementState_dispose_closure, A._AccountManagementState_build_closure, A._AccountManagementState_build__closure2, A._AccountManagementState_build___closure, A._AccountManagementState_build_closure0, A._AccountManagementState_build__closure1, A._AccountManagementState_build_closure1, A._AccountManagementState_build__closure0, A._AccountManagementState_build_closure2, A._AccountManagementState_build__closure, A._AccountOverview_build__closure7, A._AccountOverview_build_closure1, A._AccountOverview_build__closure6, A._AccountOverview_build_closure2, A._AccountOverview_build__closure5, A._AccountOverview_build_closure3, A._AccountOverview_build__closure4, A._AccountOverview_build_closure4, A._AccountOverview_build__closure3, A._AccountOverview_build_closure5, A._AccountOverview_build__closure2, A._AccountOverview_build__closure1, A._AccountOverview_build___closure1, A._AccountOverview_build___closure2, A._AccountOverview_build___closure3, A._AccountOverview_build__closure0, A._AccountOverview_build__closure, A.AccountManagementVM_fromStore_closure1, A.AccountManagementVM_fromStore_closure2, A.AccountManagementVM_fromStore__closure, A.AccountManagementVM_fromStore__closure0, A.AccountManagementVM_fromStore___closure0, A.AccountManagementVM_fromStore__closure1, A.AccountManagementVM_fromStore___closure, A.AccountManagementVM_fromStore_closure, A.AccountManagementVM_fromStore_closure3, A.AccountManagementVM_fromStore_closure0, A._ClientPortalState__validateSubdomain__closure1, A._ClientPortalState__validateSubdomain__closure2, A._ClientPortalState_dispose_closure, A._ClientPortalState_didChangeDependencies_closure, A._ClientPortalState_didChangeDependencies_closure0, A._ClientPortalState__onChanged__closure, A._ClientPortalState__onChanged__closure0, A._ClientPortalState_build_closure21, A._ClientPortalState_build_closure, A._ClientPortalState_build__closure13, A._ClientPortalState_build_closure1, A._ClientPortalState_build_closure0, A._ClientPortalState_build_closure2, A._ClientPortalState_build_closure5, A._ClientPortalState_build__closure12, A._ClientPortalState_build_closure6, A._ClientPortalState_build__closure11, A._ClientPortalState_build_closure7, A._ClientPortalState_build__closure10, A._ClientPortalState_build_closure8, A._ClientPortalState_build__closure9, A._ClientPortalState_build_closure9, A._ClientPortalState_build__closure8, A._ClientPortalState_build_closure11, A._ClientPortalState_build__closure7, A._ClientPortalState_build_closure13, A._ClientPortalState_build__closure6, A._ClientPortalState_build___closure, A._ClientPortalState_build____closure, A._ClientPortalState_build_closure14, A._ClientPortalState_build__closure5, A._ClientPortalState_build_closure15, A._ClientPortalState_build__closure4, A._ClientPortalState_build_closure16, A._ClientPortalState_build__closure3, A._ClientPortalState_build_closure17, A._ClientPortalState_build__closure2, A._ClientPortalState_build_closure18, A._ClientPortalState_build__closure1, A._ClientPortalState_build_closure19, A._ClientPortalState_build__closure0, A._ClientPortalState_build_closure20, A._ClientPortalState_build__closure, A.ClientPortalVM_fromStore_closure1, A.ClientPortalVM_fromStore_closure0, A.ClientPortalVM_fromStore_closure, A.ClientPortalVM_fromStore___closure, A._CompanyDetailsState_didChangeDependencies_closure, A._CompanyDetailsState_didChangeDependencies_closure0, A._CompanyDetailsState_dispose_closure, A._CompanyDetailsState__onSettingsChanged_closure, A._CompanyDetailsState_build_closure0, A._CompanyDetailsState_build__closure11, A._CompanyDetailsState_build_closure, A._CompanyDetailsState_build_closure1, A._CompanyDetailsState_build_closure2, A._CompanyDetailsState_build__closure10, A._CompanyDetailsState_build_closure3, A._CompanyDetailsState_build__closure9, A._CompanyDetailsState_build_closure4, A._CompanyDetailsState_build__closure8, A._CompanyDetailsState_build_closure5, A._CompanyDetailsState_build___closure, A._CompanyDetailsState_build_closure6, A._CompanyDetailsState_build_closure7, A._CompanyDetailsState_build__closure5, A._CompanyDetailsState_build_closure8, A._CompanyDetailsState_build_closure9, A._CompanyDetailsState_build__closure4, A._CompanyDetailsState_build_closure11, A._CompanyDetailsState_build__closure3, A._CompanyDetailsState_build_closure12, A._CompanyDetailsState_build__closure2, A._CompanyDetailsState_build_closure13, A._CompanyDetailsState_build__closure1, A._CompanyDetailsState_build_closure14, A._CompanyDetailsState_build__closure0, A._CompanyDetailsState_build_closure15, A._CompanyDetailsState_build__closure, A.CompanyDetailsVM_fromStore_closure, A.CompanyDetailsVM_fromStore_closure0, A.CompanyDetailsVM_fromStore_closure3, A.CompanyDetailsVM_fromStore__closure1, A.CompanyDetailsVM_fromStore__closure2, A.CompanyDetailsVM_fromStore__closure3, A.CompanyDetailsVM_fromStore_closure1, A.CompanyDetailsVM_fromStore_closure4, A.CompanyDetailsVM_fromStore_closure5, A.CompanyDetailsVM_fromStore__closure, A.CompanyDetailsVM_fromStore__closure0, A.CompanyDetailsVM_fromStore___closure, A._CreditCardsAndBanksState_dispose_closure, A._CreditCardsAndBanksState_didChangeDependencies_closure, A._CreditCardsAndBanksState_didChangeDependencies_closure0, A._CustomFieldsState_initState_closure, A.CustomFieldsSettings_build_closure, A.CustomFieldsSettings_build__closure6, A.CustomFieldsSettings_build_closure0, A.CustomFieldsSettings_build__closure5, A.CustomFieldsSettings_build_closure1, A.CustomFieldsSettings_build__closure4, A.CustomFieldsSettings_build_closure2, A.CustomFieldsSettings_build__closure3, A.CustomFieldsSettings_build_closure3, A.CustomFieldsSettings_build__closure2, A.CustomFieldsSettings_build_closure4, A.CustomFieldsSettings_build__closure1, A.CustomFieldsSettings_build_closure5, A.CustomFieldsSettings_build__closure0, A.CustomFieldsSettings_build_closure6, A.CustomFieldsSettings_build__closure, A._CustomFormFieldState_dispose_closure, A._CustomFormFieldState_didChangeDependencies_closure, A._CustomFormFieldState_didChangeDependencies_closure0, A._CustomFormFieldState__onChanged_closure, A._CustomFormFieldState_build_closure, A._CustomFormFieldState_build_closure1, A.CustomFieldsVM_fromStore_closure0, A.CustomFieldsVM_fromStore_closure, A._DataVisualizationsState_dispose_closure, A._DataVisualizationsState_didChangeDependencies_closure, A._DataVisualizationsState_didChangeDependencies_closure0, A._DeviceSettingsState_didChangeDependencies_closure, A._DeviceSettingsState_didChangeDependencies_closure0, A._DeviceSettingsState_build_closure, A._DeviceSettingsState_build_closure0, A._DeviceSettingsState_build_closure1, A._DeviceSettingsState_build_closure2, A._DeviceSettingsState_build_closure3, A._DeviceSettingsState_build_closure4, A._DeviceSettingsState_build_closure5, A._DeviceSettingsState_build_closure6, A._DeviceSettingsState_build_closure7, A._DeviceSettingsState_build_closure8, A._DeviceSettingsState_build__closure7, A._DeviceSettingsState_build_closure10, A._DeviceSettingsState_build_closure11, A._DeviceSettingsState_build_closure12, A._DeviceSettingsState_build_closure13, A._DeviceSettingsState_build_closure14, A._DeviceSettingsState_build__closure4, A._DeviceSettingsState_build_closure16, A._DeviceSettingsState_build_closure17, A._DeviceSettingsState_build_closure18, A._DeviceSettingsState_build_closure19, A._DeviceSettingsState_build__closure2, A._DeviceSettingsState_build__closure3, A._DeviceSettingsState_build_closure20, A._DeviceSettingsState_build__closure1, A._DeviceSettingsState_build___closure0, A._DeviceSettingsState_build__closure0, A._DeviceSettingsState_build__closure, A._DeviceSettingsState_build___closure, A.DeviceSettingsVM_fromStore_closure, A.DeviceSettingsVM_fromStore_closure0, A.DeviceSettingsVM_fromStore__closure, A._EmailSettingsState_dispose_closure, A._EmailSettingsState_didChangeDependencies_closure, A._EmailSettingsState_didChangeDependencies_closure0, A._EmailSettingsState__onChanged_closure, A._EmailSettingsState__onChanged_closure0, A._EmailSettingsState_build_closure, A._EmailSettingsState_build__closure11, A._EmailSettingsState_build_closure1, A._EmailSettingsState_build__closure10, A._EmailSettingsState_build_closure2, A._EmailSettingsState_build_closure4, A._EmailSettingsState_build__closure9, A._EmailSettingsState_build_closure5, A._EmailSettingsState_build_closure6, A._EmailSettingsState_build_closure7, A._EmailSettingsState_build_closure8, A._EmailSettingsState_build_closure10, A._EmailSettingsState_build__closure8, A._EmailSettingsState_build_closure9, A._EmailSettingsState_build_closure12, A._EmailSettingsState_build__closure7, A._EmailSettingsState_build_closure11, A._EmailSettingsState_build_closure13, A._EmailSettingsState_build__closure6, A._EmailSettingsState_build_closure14, A._EmailSettingsState_build__closure5, A._EmailSettingsState_build_closure15, A._EmailSettingsState_build__closure4, A._EmailSettingsState_build_closure16, A._EmailSettingsState_build__closure3, A._EmailSettingsState_build_closure17, A._EmailSettingsState_build__closure2, A._EmailSettingsState_build_closure18, A._EmailSettingsState_build__closure1, A._EmailSettingsState_build_closure19, A._EmailSettingsState_build__closure0, A._EmailSettingsState_build_closure21, A._EmailSettingsState_build__closure, A._EmailSettingsState_build_closure20, A.EmailSettingsVM_fromStore_closure1, A.EmailSettingsVM_fromStore_closure0, A.EmailSettingsVM_fromStore_closure, A.EmailSettingsVM_fromStore_closure2, A._ExpenseSettingsState_build_closure, A._ExpenseSettingsState_build__closure6, A._ExpenseSettingsState_build_closure0, A._ExpenseSettingsState_build__closure5, A._ExpenseSettingsState_build_closure1, A._ExpenseSettingsState_build__closure4, A._ExpenseSettingsState_build_closure2, A._ExpenseSettingsState_build__closure3, A._ExpenseSettingsState_build_closure3, A._ExpenseSettingsState_build__closure2, A._ExpenseSettingsState_build_closure4, A._ExpenseSettingsState_build__closure1, A._ExpenseSettingsState_build_closure5, A._ExpenseSettingsState_build__closure0, A._ExpenseSettingsState_build_closure6, A._ExpenseSettingsState_build__closure, A.ExpenseSettingsVM_fromStore_closure0, A.ExpenseSettingsVM_fromStore_closure1, A.ExpenseSettingsVM_fromStore_closure, A.ExpenseSettingsVM_fromStore_closure2, A._GeneratedNumbersState_initState_closure, A._GeneratedNumbersState_dispose_closure, A._GeneratedNumbersState_didChangeDependencies_closure, A._GeneratedNumbersState_didChangeDependencies_closure0, A._GeneratedNumbersState__onChanged__closure, A._GeneratedNumbersState__onSavePressed_closure, A._GeneratedNumbersState__onSavePressed_closure0, A._GeneratedNumbersState_build_closure0, A._GeneratedNumbersState_build__closure16, A._GeneratedNumbersState_build_closure, A._GeneratedNumbersState_build_closure1, A._GeneratedNumbersState_build__closure15, A._GeneratedNumbersState_build_closure3, A._GeneratedNumbersState_build__closure14, A._GeneratedNumbersState_build__closure13, A._GeneratedNumbersState_build_closure5, A._GeneratedNumbersState_build__closure12, A._GeneratedNumbersState_build_closure6, A._GeneratedNumbersState_build__closure11, A._GeneratedNumbersState_build__closure10, A._GeneratedNumbersState_build__closure9, A._GeneratedNumbersState_build__closure8, A._GeneratedNumbersState_build__closure7, A._GeneratedNumbersState_build__closure6, A._GeneratedNumbersState_build__closure5, A._GeneratedNumbersState_build__closure4, A._GeneratedNumbersState_build__closure3, A._GeneratedNumbersState_build__closure2, A._GeneratedNumbersState_build__closure1, A._GeneratedNumbersState_build__closure0, A._GeneratedNumbersState_build__closure, A._EntityNumberSettingsState_dispose_closure, A._EntityNumberSettingsState_didChangeDependencies_closure, A._EntityNumberSettingsState_didChangeDependencies_closure0, A._EntityNumberSettingsState_build_closure0, A.HelpPanel_build_closure, A.HelpPanel_build_closure0, A.HelpPanel_build_closure1, A.HelpPanel_build_closure2, A.GeneratedNumbersVM_fromStore_closure0, A.GeneratedNumbersVM_fromStore_closure, A._ImportExportState_build_closure0, A._ImportExportState_build_closure, A._ImportExportState_build_closure3, A._ImportExportState_build_closure2, A._ImportExportState_build_closure5, A._ImportExportState_build_closure4, A._ImportExportState_build_closure7, A._ImportExportState_build_closure6, A._ImportExportState_build_closure9, A._ImportExportState_build_closure8, A._ImportExportState_build__closure0, A._ImportExportState_build__closure1, A._FileImportState_uploadJsonFile_closure0, A._FileImportState_uploadJsonFile_closure1, A._FileImportState_uploadFile_closure0, A._FileImportState_uploadFile_closure1, A._FileImportState_build_closure0, A._FileImportState_build_closure, A._FileImportState_build_closure2, A._FileImportState_build_closure3, A.__FileMapperState_build_closure, A.__FileMapperState_build_closure0, A.__FileMapperState_build_closure1, A.__FileMapperState_build__closure2, A.__FileMapperState_build_closure2, A.__FileMapperState_build_closure3, A.__FileMapperState_build__closure0, A.__FileMapperState_build__closure1, A._FieldMapper_build_closure2, A._FieldMapper_build__closure, A._FieldMapper_build_closure1, A._FieldMapper_build_closure0, A._InvoiceDesignState_initState_closure, A._InvoiceDesignState_didChangeDependencies_closure, A._InvoiceDesignState_didChangeDependencies_closure0, A._InvoiceDesignState__onChanged_closure, A._InvoiceDesignState_dispose_closure, A._InvoiceDesignState_build_closure76, A._InvoiceDesignState_build_closure, A._InvoiceDesignState_build_closure1, A._InvoiceDesignState_build_closure2, A._InvoiceDesignState_build__closure29, A._InvoiceDesignState_build_closure3, A._InvoiceDesignState_build_closure4, A._InvoiceDesignState_build__closure26, A._InvoiceDesignState_build_closure5, A._InvoiceDesignState_build_closure6, A._InvoiceDesignState_build__closure23, A._InvoiceDesignState_build_closure7, A._InvoiceDesignState_build_closure8, A._InvoiceDesignState_build__closure20, A._InvoiceDesignState_build_closure9, A._InvoiceDesignState_build_closure11, A._InvoiceDesignState_build__closure17, A._InvoiceDesignState_build_closure12, A._InvoiceDesignState_build__closure16, A._InvoiceDesignState_build_closure13, A._InvoiceDesignState_build__closure15, A._InvoiceDesignState_build_closure14, A._InvoiceDesignState_build__closure14, A._InvoiceDesignState_build_closure16, A._InvoiceDesignState_build__closure13, A._InvoiceDesignState_build_closure15, A._InvoiceDesignState_build_closure18, A._InvoiceDesignState_build__closure12, A._InvoiceDesignState_build_closure17, A._InvoiceDesignState_build_closure20, A._InvoiceDesignState_build__closure11, A._InvoiceDesignState_build_closure19, A._InvoiceDesignState_build_closure21, A._InvoiceDesignState_build__closure10, A._InvoiceDesignState_build_closure22, A._InvoiceDesignState_build__closure9, A._InvoiceDesignState_build_closure23, A._InvoiceDesignState_build__closure8, A._InvoiceDesignState_build_closure24, A._InvoiceDesignState_build__closure7, A._InvoiceDesignState_build_closure25, A._InvoiceDesignState_build__closure6, A._InvoiceDesignState_build_closure26, A._InvoiceDesignState_build__closure5, A._InvoiceDesignState_build_closure27, A._InvoiceDesignState_build__closure4, A._InvoiceDesignState_build_closure28, A._InvoiceDesignState_build__closure3, A._InvoiceDesignState_build_closure29, A._InvoiceDesignState_build__closure2, A._InvoiceDesignState_build_closure30, A._InvoiceDesignState_build__closure1, A._InvoiceDesignState_build_closure31, A._InvoiceDesignState_build__closure0, A._InvoiceDesignState_build_closure32, A._InvoiceDesignState_build_closure33, A._InvoiceDesignState_build_closure34, A._InvoiceDesignState_build_closure35, A._InvoiceDesignState_build_closure36, A._InvoiceDesignState_build_closure37, A._InvoiceDesignState_build_closure38, A._InvoiceDesignState_build_closure39, A._InvoiceDesignState_build_closure40, A._InvoiceDesignState_build_closure41, A._InvoiceDesignState_build_closure42, A._InvoiceDesignState_build_closure43, A._InvoiceDesignState_build_closure44, A._InvoiceDesignState_build_closure45, A._InvoiceDesignState_build_closure46, A._InvoiceDesignState_build_closure47, A._InvoiceDesignState_build_closure48, A._InvoiceDesignState_build_closure49, A._InvoiceDesignState_build_closure50, A._InvoiceDesignState_build_closure51, A._InvoiceDesignState_build_closure52, A._InvoiceDesignState_build_closure53, A._InvoiceDesignState_build_closure54, A._InvoiceDesignState_build_closure55, A._InvoiceDesignState_build_closure56, A._InvoiceDesignState_build_closure57, A._InvoiceDesignState_build_closure58, A._InvoiceDesignState_build_closure59, A._InvoiceDesignState_build_closure60, A._InvoiceDesignState_build_closure61, A._InvoiceDesignState_build_closure62, A._InvoiceDesignState_build_closure63, A._InvoiceDesignState_build_closure64, A._InvoiceDesignState_build_closure65, A._InvoiceDesignState_build_closure66, A._InvoiceDesignState_build__closure, A._InvoiceDesignState_build_closure67, A._InvoiceDesignState_build_closure68, A._InvoiceDesignState_build_closure69, A._InvoiceDesignState_build_closure70, A._InvoiceDesignState_build_closure71, A._InvoiceDesignState_build_closure72, A._InvoiceDesignState_build_closure73, A._InvoiceDesignState_build_closure74, A._InvoiceDesignState_build_closure75, A._PdfPreviewState__loadPdf_closure0, A._PdfPreviewState_build_closure, A.InvoiceDesignVM_fromStore_closure, A.InvoiceDesignVM_fromStore___closure, A.InvoiceDesignVM_fromStore____closure, A.InvoiceDesignVM_fromStore_____closure, A.InvoiceDesignVM_fromStore_____closure0, A._LocalizationSettingsState_dispose_closure, A._LocalizationSettingsState_didChangeDependencies_closure, A._LocalizationSettingsState_didChangeDependencies_closure0, A._LocalizationSettingsState_build_closure, A._LocalizationSettingsState_build_closure1, A._LocalizationSettingsState_build__closure13, A._LocalizationSettingsState_build_closure2, A._LocalizationSettingsState_build__closure12, A._LocalizationSettingsState_build_closure3, A._LocalizationSettingsState_build__closure11, A._LocalizationSettingsState_build_closure4, A._LocalizationSettingsState_build__closure10, A._LocalizationSettingsState_build_closure5, A._LocalizationSettingsState_build__closure9, A._LocalizationSettingsState_build_closure6, A._LocalizationSettingsState_build__closure8, A._LocalizationSettingsState_build_closure7, A._LocalizationSettingsState_build__closure7, A._LocalizationSettingsState_build_closure9, A._LocalizationSettingsState_build__closure6, A._LocalizationSettingsState_build_closure10, A._LocalizationSettingsState_build_closure11, A._LocalizationSettingsState_build__closure5, A._LocalizationSettingsState_build__closure3, A._LocalizationSettingsState_build___closure, A._LocalizationSettingsState_build__closure1, A._LocalizationSettingsState_build__closure2, A._LocalizationSettingsState_build_closure14, A._LocalizationSettingsState_build__closure0, A._LocalizationSettingsState_build__closure, A._AddCompanyDialogState_build_closure1, A.LocalizationSettingsVM_fromStore_closure0, A.LocalizationSettingsVM_fromStore_closure, A.LocalizationSettingsVM_fromStore_closure1, A.LocalizationSettingsVM_fromStore___closure, A.LocalizationSettingsVM_fromStore____closure, A._PaymentSettingsState_didChangeDependencies_closure, A._PaymentSettingsState_didChangeDependencies_closure0, A._PaymentSettingsState__onChanged_closure, A._PaymentSettingsState_build_closure, A._PaymentSettingsState_build__closure13, A._PaymentSettingsState_build_closure2, A._PaymentSettingsState_build__closure11, A._PaymentSettingsState_build_closure0, A._PaymentSettingsState_build__closure12, A._PaymentSettingsState_build_closure1, A._PaymentSettingsState_build_closure3, A._PaymentSettingsState_build__closure10, A._PaymentSettingsState_build_closure4, A._PaymentSettingsState_build__closure9, A._PaymentSettingsState_build_closure5, A._PaymentSettingsState_build__closure8, A._PaymentSettingsState_build_closure6, A._PaymentSettingsState_build__closure7, A._PaymentSettingsState_build_closure7, A._PaymentSettingsState_build__closure6, A._PaymentSettingsState_build_closure8, A._PaymentSettingsState_build__closure5, A._PaymentSettingsState_build_closure9, A._PaymentSettingsState_build__closure4, A._PaymentSettingsState_build_closure10, A._PaymentSettingsState_build__closure3, A._PaymentSettingsState_build_closure11, A._PaymentSettingsState_build__closure2, A._PaymentSettingsState_build_closure12, A._PaymentSettingsState_build__closure1, A._PaymentSettingsState_build_closure13, A._PaymentSettingsState_build__closure0, A._PaymentSettingsState_build_closure14, A._PaymentSettingsState_build__closure, A.PaymentSettingsVM_fromStore_closure0, A.PaymentSettingsVM_fromStore_closure1, A.PaymentSettingsVM_fromStore_closure, A.PaymentSettingsVM_fromStore_closure2, A._ProductSettingsState_didChangeDependencies_closure, A._ProductSettingsState_didChangeDependencies_closure0, A._ProductSettingsState_dispose_closure, A._ProductSettingsState__onChanged_closure, A._ProductSettingsState_build_closure, A._ProductSettingsState_build__closure9, A._ProductSettingsState_build_closure0, A._ProductSettingsState_build__closure8, A._ProductSettingsState_build_closure1, A._ProductSettingsState_build__closure7, A._ProductSettingsState_build_closure2, A._ProductSettingsState_build__closure6, A._ProductSettingsState_build_closure3, A._ProductSettingsState_build__closure5, A._ProductSettingsState_build_closure4, A._ProductSettingsState_build__closure4, A._ProductSettingsState_build_closure5, A._ProductSettingsState_build__closure3, A._ProductSettingsState_build_closure6, A._ProductSettingsState_build__closure2, A._ProductSettingsState_build_closure7, A._ProductSettingsState_build__closure1, A._ProductSettingsState_build_closure8, A._ProductSettingsState_build__closure0, A._ProductSettingsState_build_closure9, A._ProductSettingsState_build__closure, A.ProductSettingsVM_fromStore_closure0, A.ProductSettingsVM_fromStore_closure, A._SettingsListTileState_build_closure0, A._SettingsListTileState_build_closure1, A.SettingsSearch_build_closure0, A.SettingsListVM_fromStore_closure, A.SettingsListVM_fromStore_closure1, A.SettingsListVM_fromStore_closure0, A.SettingsScreen_build_closure, A._SettingsWizardState_dispose_closure, A._SettingsWizardState__validateSubdomain__closure1, A._SettingsWizardState__validateSubdomain__closure2, A._SettingsWizardState__onSavePressed__closure, A._SettingsWizardState__onSavePressed___closure0, A._SettingsWizardState__onSavePressed___closure1, A._SettingsWizardState__onSavePressed___closure2, A._SettingsWizardState__onSavePressed__closure0, A._SettingsWizardState__onSavePressed__closure2, A._SettingsWizardState_build_closure, A._SettingsWizardState_build_closure0, A._SettingsWizardState_build_closure1, A._SettingsWizardState_build_closure2, A._SettingsWizardState_build_closure3, A._SettingsWizardState_build_closure4, A._SettingsWizardState_build_closure5, A._SettingsWizardState_build__closure, A._SettingsWizardState_build_closure8, A._SettingsWizardState_build_closure7, A._TaskSettingsState_didChangeDependencies_closure, A._TaskSettingsState_didChangeDependencies_closure0, A._TaskSettingsState_dispose_closure, A._TaskSettingsState__onChanged_closure, A._TaskSettingsState_build_closure, A._TaskSettingsState_build__closure13, A._TaskSettingsState_build_closure0, A._TaskSettingsState_build__closure12, A._TaskSettingsState_build_closure1, A._TaskSettingsState_build__closure11, A._TaskSettingsState_build_closure2, A._TaskSettingsState_build__closure10, A._TaskSettingsState_build_closure4, A._TaskSettingsState_build__closure9, A._TaskSettingsState_build_closure5, A._TaskSettingsState_build__closure8, A._TaskSettingsState_build_closure6, A._TaskSettingsState_build__closure7, A._TaskSettingsState_build_closure7, A._TaskSettingsState_build__closure6, A._TaskSettingsState_build_closure8, A._TaskSettingsState_build__closure5, A._TaskSettingsState_build_closure9, A._TaskSettingsState_build__closure4, A._TaskSettingsState_build_closure10, A._TaskSettingsState_build__closure3, A._TaskSettingsState_build_closure11, A._TaskSettingsState_build__closure2, A._TaskSettingsState_build_closure12, A._TaskSettingsState_build__closure1, A._TaskSettingsState_build_closure13, A._TaskSettingsState_build__closure0, A._TaskSettingsState_build_closure14, A._TaskSettingsState_build__closure, A._TaskSettingsState_build_closure15, A.TaskSettingsVM_fromStore_closure0, A.TaskSettingsVM_fromStore_closure1, A.TaskSettingsVM_fromStore_closure, A.TaskSettingsVM_fromStore_closure2, A._TaxSettingsState_build_closure, A._TaxSettingsState_build__closure11, A._TaxSettingsState_build_closure0, A._TaxSettingsState_build__closure10, A._TaxSettingsState_build_closure1, A._TaxSettingsState_build__closure9, A._TaxSettingsState_build_closure2, A._TaxSettingsState_build__closure8, A._TaxSettingsState_build_closure3, A._TaxSettingsState_build__closure7, A._TaxSettingsState_build_closure4, A._TaxSettingsState_build__closure6, A._TaxSettingsState_build_closure5, A._TaxSettingsState_build__closure5, A._TaxSettingsState_build_closure7, A._TaxSettingsState_build__closure4, A._TaxSettingsState_build_closure9, A._TaxSettingsState_build__closure3, A._TaxSettingsState_build_closure8, A._TaxSettingsState_build_closure10, A._TaxSettingsState_build__closure0, A._TaxSettingsState_build___closure2, A._TaxSettingsState_build____closure1, A._TaxSettingsState_build__closure, A._TaxSettingsState_build__closure2, A._TaxSettingsState_build___closure, A._TaxSettingsState_build____closure0, A._TaxSettingsState_build_____closure, A._TaxSettingsState_build______closure, A._TaxSettingsState_build_______closure, A._TaxSettingsState_build____closure, A.NumberOfRatesSelector_build_closure, A.__EditSubregionDialogState__onDone_closure, A.__EditSubregionDialogState__onDone__closure, A.__EditSubregionDialogState__onDone___closure, A.__EditSubregionDialogState__onDone____closure, A.__EditSubregionDialogState_build_closure0, A.__EditSubregionDialogState_build_closure1, A.__EditSubregionDialogState_build_closure2, A.__EditSubregionDialogState_build_closure3, A.__EditSubregionDialogState_build_closure4, A.__EditSubregionDialogState_build_closure5, A.TaxSettingsVM_fromStore_closure0, A.TaxSettingsVM_fromStore_closure1, A.TaxSettingsVM_fromStore_closure, A.TaxSettingsVM_fromStore_closure2, A._TemplatesAndRemindersState_initState_closure, A._TemplatesAndRemindersState_dispose_closure, A._TemplatesAndRemindersState__onChanged_closure, A._TemplatesAndRemindersState__onChanged_closure0, A._TemplatesAndRemindersState__onChanged_closure1, A._TemplatesAndRemindersState__onChanged_closure2, A._TemplatesAndRemindersState__onChanged_closure3, A._TemplatesAndRemindersState__onChanged_closure4, A._TemplatesAndRemindersState__onChanged_closure5, A._TemplatesAndRemindersState__onChanged_closure6, A._TemplatesAndRemindersState__onChanged_closure7, A._TemplatesAndRemindersState__onChanged_closure8, A._TemplatesAndRemindersState__onChanged_closure9, A._TemplatesAndRemindersState__onChanged_closure10, A._TemplatesAndRemindersState__onChanged_closure11, A._TemplatesAndRemindersState__onChanged_closure12, A._TemplatesAndRemindersState__renderTemplate_closure0, A._TemplatesAndRemindersState_build_closure10, A._TemplatesAndRemindersState_build_closure1, A._TemplatesAndRemindersState_build_closure, A._TemplatesAndRemindersState_build_closure0, A._TemplatesAndRemindersState_build_closure2, A._TemplatesAndRemindersState_build__closure3, A._TemplatesAndRemindersState_build_closure3, A._TemplatesAndRemindersState_build__closure2, A._TemplatesAndRemindersState_build_closure4, A._TemplatesAndRemindersState_build__closure1, A._TemplatesAndRemindersState_build_closure5, A._TemplatesAndRemindersState_build__closure0, A._TemplatesAndRemindersState_build_closure7, A._TemplatesAndRemindersState_build__closure, A._TemplatesAndRemindersState_build_closure9, A._ReminderSettingsState_dispose_closure, A._ReminderSettingsState_didChangeDependencies_closure, A._ReminderSettingsState_didChangeDependencies_closure0, A._ReminderSettingsState_build_closure, A._ReminderSettingsState_build_closure0, A.TemplatesAndRemindersVM_fromStore_closure0, A.TemplatesAndRemindersVM_fromStore_closure, A.TemplatesAndRemindersVM_fromStore____closure, A.TemplatesAndRemindersVM_fromStore____closure0, A.TemplatesAndRemindersVM_fromStore___closure0, A.TemplatesAndRemindersVM_fromStore___closure1, A.TemplatesAndRemindersVM_fromStore___closure2, A._UserDetailsState_dispose_closure, A._UserDetailsState_didChangeDependencies_closure, A._UserDetailsState_didChangeDependencies_closure0, A._UserDetailsState__onChanged_closure, A._UserDetailsState_build_closure4, A._UserDetailsState_build_closure5, A._UserDetailsState_build_closure6, A._UserDetailsState_build__closure5, A._UserDetailsState_build__closure6, A._UserDetailsState_build__closure7, A._UserDetailsState_build_closure8, A._UserDetailsState_build__closure4, A._UserDetailsState_build_closure9, A._UserDetailsState_build__closure3, A._UserDetailsState_build_closure11, A._UserDetailsState_build__closure2, A._UserDetailsState_build_closure10, A._UserDetailsState_build_closure12, A._UserDetailsState_build__closure1, A._UserDetailsState_build_closure13, A._UserDetailsState_build__closure0, A._UserDetailsState_build__closure, A._EnableTwoFactorState_initState_closure, A._EnableTwoFactorState_initState_closure0, A._EnableTwoFactorState__onSavePressed_closure1, A._EnableTwoFactorState__onSavePressed_closure2, A._EnableTwoFactorState_build_closure, A._EnableTwoFactorState_build_closure1, A._EnableTwoFactorState_build_closure0, A.UserDetailsVM_fromStore_closure, A.UserDetailsVM_fromStore_closure5, A.UserDetailsVM_fromStore__closure2, A.UserDetailsVM_fromStore_closure6, A.UserDetailsVM_fromStore__closure1, A.UserDetailsVM_fromStore_closure7, A.UserDetailsVM_fromStore__closure0, A.UserDetailsVM_fromStore_closure2, A.UserDetailsVM_fromStore__closure5, A.UserDetailsVM_fromStore____closure, A.UserDetailsVM_fromStore_closure1, A.UserDetailsVM_fromStore_closure4, A.UserDetailsVM_fromStore__closure3, A.UserDetailsVM_fromStore_closure8, A.UserDetailsVM_fromStore__closure, A.UserDetailsVM_fromStore_closure3, A.UserDetailsVM_fromStore___closure5, A.UserDetailsVM_fromStore_closure0, A.UserDetailsVM_fromStore___closure8, A.UserDetailsVM_fromStore____closure1, A.UserDetailsVM_fromStore____closure2, A.UserDetailsVM_fromStore___closure9, A._WorkflowSettingsState_build_closure, A._WorkflowSettingsState_build__closure5, A._WorkflowSettingsState_build_closure0, A._WorkflowSettingsState_build__closure4, A._WorkflowSettingsState_build_closure1, A._WorkflowSettingsState_build__closure3, A._WorkflowSettingsState_build_closure2, A._WorkflowSettingsState_build__closure2, A._WorkflowSettingsState_build_closure4, A._WorkflowSettingsState_build__closure1, A._WorkflowSettingsState_build_closure3, A._WorkflowSettingsState_build_closure5, A._WorkflowSettingsState_build__closure0, A._WorkflowSettingsState_build_closure6, A._WorkflowSettingsState_build__closure, A.WorkflowSettingsVM_fromStore_closure0, A.WorkflowSettingsVM_fromStore_closure1, A.WorkflowSettingsVM_fromStore_closure, A._SubscriptionEditState_didChangeDependencies_closure, A._SubscriptionEditState_didChangeDependencies_closure0, A._SubscriptionEditState_dispose_closure, A._SubscriptionEditState__onChanged_closure, A._SubscriptionEditState_build_closure33, A._SubscriptionEditState_build_closure, A._SubscriptionEditState_build__closure30, A._SubscriptionEditState_build_closure0, A._SubscriptionEditState_build__closure29, A._SubscriptionEditState_build_closure1, A._SubscriptionEditState_build__closure27, A._SubscriptionEditState_build___closure7, A._SubscriptionEditState_build__closure28, A._SubscriptionEditState_build_closure2, A._SubscriptionEditState_build_closure3, A._SubscriptionEditState_build___closure6, A._SubscriptionEditState_build_closure4, A._SubscriptionEditState_build__closure24, A._SubscriptionEditState_build___closure5, A._SubscriptionEditState_build__closure25, A._SubscriptionEditState_build_closure5, A._SubscriptionEditState_build_closure6, A._SubscriptionEditState_build___closure4, A._SubscriptionEditState_build_closure7, A._SubscriptionEditState_build__closure21, A._SubscriptionEditState_build___closure3, A._SubscriptionEditState_build__closure22, A._SubscriptionEditState_build_closure8, A._SubscriptionEditState_build_closure9, A._SubscriptionEditState_build___closure2, A._SubscriptionEditState_build_closure10, A._SubscriptionEditState_build__closure18, A._SubscriptionEditState_build___closure1, A._SubscriptionEditState_build__closure19, A._SubscriptionEditState_build_closure11, A._SubscriptionEditState_build_closure12, A._SubscriptionEditState_build___closure0, A._SubscriptionEditState_build_closure14, A._SubscriptionEditState_build__closure16, A._SubscriptionEditState_build_closure13, A._SubscriptionEditState_build_closure16, A._SubscriptionEditState_build__closure15, A._SubscriptionEditState_build_closure17, A._SubscriptionEditState_build__closure14, A._SubscriptionEditState_build_closure15, A._SubscriptionEditState_build_closure18, A._SubscriptionEditState_build__closure13, A._SubscriptionEditState_build_closure19, A._SubscriptionEditState_build__closure12, A._SubscriptionEditState_build_closure20, A._SubscriptionEditState_build__closure11, A._SubscriptionEditState_build_closure21, A._SubscriptionEditState_build__closure10, A._SubscriptionEditState_build_closure22, A._SubscriptionEditState_build__closure9, A._SubscriptionEditState_build_closure23, A._SubscriptionEditState_build__closure8, A._SubscriptionEditState_build_closure24, A._SubscriptionEditState_build__closure7, A._SubscriptionEditState_build_closure25, A._SubscriptionEditState_build__closure6, A._SubscriptionEditState_build_closure26, A._SubscriptionEditState_build__closure5, A._SubscriptionEditState_build_closure27, A._SubscriptionEditState_build__closure4, A._SubscriptionEditState_build_closure28, A._SubscriptionEditState_build__closure3, A._SubscriptionEditState_build_closure29, A._SubscriptionEditState_build_closure30, A._SubscriptionEditState_build__closure0, A._SubscriptionEditState_build_closure32, A._SubscriptionEditState_build___closure, A.SubscriptionEditScreen_build_closure0, A.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure, A.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure1, A.SubscriptionEditVM_SubscriptionEditVM$fromStore_closure0, A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure, A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure0, A.SubscriptionEditVM_SubscriptionEditVM$fromStore___closure1, A.SubscriptionEditVM_SubscriptionEditVM$fromStore____closure, A.SubscriptionListItem_build_closure, A.SubscriptionListVM_fromStore__handleRefresh, A.SubscriptionListVM_fromStore_closure, A.SubscriptionListVM_fromStore_closure0, A.SubscriptionScreen_build_closure7, A.SubscriptionScreen_build_closure4, A.SubscriptionScreen_build_closure0, A.SubscriptionScreen_build_closure1, A.SubscriptionScreen_build_closure2, A.SubscriptionScreen_build_closure3, A.SubscriptionViewScreen_build_closure0, A._UpdateDialogState_updateApp__closure0, A._UpdateDialogState_updateApp__closure1, A._TaskEditState_build_closure1, A._TaskEditState_build_closure2, A._TaskEditDesktopState_didChangeDependencies_closure, A._TaskEditDesktopState_didChangeDependencies_closure0, A._TaskEditDesktopState_dispose_closure, A._TaskEditDesktopState__onChanged_closure, A._TaskEditDesktopState_build_closure, A._TaskEditDesktopState_build_closure0, A._TaskEditDesktopState_build_closure2, A._TaskEditDesktopState_build__closure10, A._TaskEditDesktopState_build_closure1, A._TaskEditDesktopState_build_closure3, A._TaskEditDesktopState_build__closure9, A._TaskEditDesktopState_build_closure4, A._TaskEditDesktopState_build_closure5, A._TaskEditDesktopState_build__closure8, A._TaskEditDesktopState_build_closure6, A._TaskEditDesktopState_build__closure7, A._TaskEditDesktopState_build_closure7, A._TaskEditDesktopState_build__closure0, A._TaskEditDesktopState_build__closure2, A._TaskEditDesktopState_build__closure3, A._TaskEditDesktopState_build__closure4, A._TaskEditDesktopState_build___closure1, A._TaskEditDesktopState_build___closure0, A._TaskEditDesktopState_build___closure, A._TaskEditDetailsState_didChangeDependencies_closure, A._TaskEditDetailsState_didChangeDependencies_closure0, A._TaskEditDetailsState_dispose_closure, A._TaskEditDetailsState__onChanged_closure, A._TaskEditDetailsState_build_closure0, A._TaskEditDetailsState_build__closure2, A._TaskEditDetailsState_build_closure, A._TaskEditDetailsState_build_closure1, A._TaskEditDetailsState_build__closure1, A._TaskEditDetailsState_build_closure2, A._TaskEditDetailsState_build_closure3, A._TaskEditDetailsState_build__closure0, A._TaskEditDetailsState_build_closure4, A._TaskEditDetailsState_build__closure, A.TaskEditDetailsScreen_build_closure0, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure2, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure3, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure3, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure0, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore__closure1, A._TaskEditTimesState__showTaskTimeEditor_closure, A._TaskEditTimesState__showTaskTimeEditor__closure, A._TaskEditTimesState_build_closure, A._TaskEditTimesState_build_closure0, A.TimeEditDetailsState_build_closure0, A.TimeEditDetailsState_build_closure2, A.TimeEditDetailsState_build_closure3, A.TimeEditDetailsState_build_closure4, A.TimeEditDetailsState_build__closure1, A.TimeEditDetailsState_build_closure5, A.TimeEditDetailsState_build__closure, A.TaskEditTimesScreen_build_closure0, A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure, A.TaskEditScreen_build_closure0, A.TaskEditVM_TaskEditVM$fromStore_closure0, A.TaskEditVM_TaskEditVM$fromStore__closure, A.TaskEditVM_TaskEditVM$fromStore_closure, A.TaskEditVM_TaskEditVM$fromStore___closure, A.TaskEditVM_TaskEditVM$fromStore___closure0, A.TaskEditVM_TaskEditVM$fromStore___closure1, A.TaskEditVM_TaskEditVM$fromStore____closure, A._KanbanTaskCardState_build_closure, A._KanbanTaskCardState_build__closure4, A._KanbanTaskCardState_build_closure10, A._KanbanTaskCardState_build_closure9, A._KanbanTaskCardState_build_closure6, A._KanbanTaskCardState_build__closure2, A._KanbanTaskCardState_build_closure7, A._KanbanStatusCardState__onSavePressed_closure, A._KanbanStatusCardState_build_closure, A._KanbanStatusCardState_build_closure0, A.KanbanViewState__initBoard_closure, A.KanbanViewState__onBoardChanged_closure, A.KanbanViewState_build_closure, A.KanbanViewState_build_closure0, A.KanbanViewState_build____closure3, A.KanbanViewState_build__closure3, A.KanbanViewState_build__closure4, A.KanbanViewState_build___closure3, A.KanbanViewState_build___closure2, A.KanbanVM_fromStore_closure, A.KanbanVM_fromStore_closure1, A.KanbanVM_fromStore__closure, A.KanbanVM_fromStore_closure0, A.KanbanVM_fromStore__closure0, A.KanbanVM_fromStore__closure1, A.KanbanVM_fromStore__closure2, A.KanbanVM_fromStore__closure3, A.TaskListItem_build__closure, A.TaskListItem_build__closure3, A.TaskListVM_fromStore__handleRefresh, A.TaskListVM_fromStore_closure0, A.TaskListVM_fromStore_closure, A.TaskPresenter_getField_closure, A.TaskPresenter_getField_closure0, A.TaskScreen_build_closure, A.TaskScreen_build_closure0, A.TaskScreen_build_closure1, A.TaskScreen_build_closure2, A.TaskScreen_build_closure17, A.TaskScreen_build_closure13, A.TaskScreen_build_closure9, A.TaskScreen_build_closure10, A.TaskScreen_build_closure11, A.TaskScreen_build_closure12, A._TaskViewState_build_closure, A._TaskOverviewState_initState_closure, A._TaskOverviewState_build__buildView_closure, A._TaskOverviewState_build__buildView__closure, A.TaskViewScreen_build_closure0, A.TaskViewVM_TaskViewVM$fromStore__handleRefresh, A.TaskViewVM_TaskViewVM$fromStore_closure, A.TaskViewVM_TaskViewVM$fromStore_closure0, A.TaskViewVM_TaskViewVM$fromStore_closure1, A.TaskViewVM_TaskViewVM$fromStore__closure, A.TaskViewVM_TaskViewVM$fromStore__closure0, A.TaskViewVM_TaskViewVM$fromStore___closure, A._TaskStatusEditState_didChangeDependencies_closure, A._TaskStatusEditState_didChangeDependencies_closure0, A._TaskStatusEditState_dispose_closure, A._TaskStatusEditState__onChanged_closure, A._TaskStatusEditState_build_closure0, A._TaskStatusEditState_build_closure, A._TaskStatusEditState_build__closure, A._TaskStatusEditState_build__closure0, A._TaskStatusEditState_build___closure, A.TaskStatusEditScreen_build_closure0, A.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure, A.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure1, A.TaskStatusEditVM_TaskStatusEditVM$fromStore_closure0, A.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure, A.TaskStatusEditVM_TaskStatusEditVM$fromStore___closure0, A.TaskStatusEditVM_TaskStatusEditVM$fromStore____closure, A._TaskStatusListState_build_closure, A.TaskStatusListItem_build_closure, A.TaskStatusListVM_fromStore__handleRefresh, A.TaskStatusListVM_fromStore_closure, A.TaskStatusListVM_fromStore__closure, A.TaskStatusScreen_build_closure8, A.TaskStatusScreen_build__closure, A.TaskStatusScreen_build__closure0, A.TaskStatusScreen_build_closure5, A.TaskStatusScreen_build_closure1, A.TaskStatusScreen_build_closure2, A.TaskStatusScreen_build_closure3, A.TaskStatusScreen_build_closure4, A.TaskStatusViewScreen_build_closure0, A._TaxRateEditState_didChangeDependencies_closure, A._TaxRateEditState_didChangeDependencies_closure0, A._TaxRateEditState_dispose_closure, A._TaxRateEditState__onChanged_closure, A._TaxRateEditState_build_closure, A.TaxRateEditScreen_build_closure0, A.TaxRateEditVM_TaxRateEditVM$fromStore_closure, A.TaxRateEditVM_TaxRateEditVM$fromStore_closure1, A.TaxRateEditVM_TaxRateEditVM$fromStore_closure0, A.TaxRateEditVM_TaxRateEditVM$fromStore___closure, A.TaxRateEditVM_TaxRateEditVM$fromStore___closure0, A.TaxRateEditVM_TaxRateEditVM$fromStore____closure, A.TaxRateListItem_build_closure, A.TaxRateListVM_fromStore__handleRefresh, A.TaxRateListVM_fromStore_closure, A.TaxRateListVM_fromStore_closure0, A.TaxRateSettingsScreen_build_closure3, A.TaxRateSettingsScreen_build_closure0, A.TaxRateViewScreen_build_closure0, A._TokenEditState_didChangeDependencies_closure, A._TokenEditState_didChangeDependencies_closure0, A._TokenEditState_dispose_closure, A._TokenEditState__onChanged_closure, A._TokenEditState_build_closure0, A._TokenEditState_build_closure, A._TokenEditState_build__closure, A.TokenEditScreen_build_closure0, A.TokenEditVM_TokenEditVM$fromStore_closure, A.TokenEditVM_TokenEditVM$fromStore_closure1, A.TokenEditVM_TokenEditVM$fromStore_closure0, A.TokenEditVM_TokenEditVM$fromStore____closure, A.TokenEditVM_TokenEditVM$fromStore____closure0, A.TokenEditVM_TokenEditVM$fromStore_____closure, A.TokenListItem_build_closure, A.TokenListVM_fromStore__handleRefresh, A.TokenListVM_fromStore_closure, A.TokenListVM_fromStore_closure0, A.TokenScreen_build_closure7, A.TokenScreen_build_closure4, A.TokenScreen_build_closure0, A.TokenScreen_build_closure1, A.TokenScreen_build_closure2, A.TokenScreen_build_closure3, A.TokenViewScreen_build_closure0, A._TransactionEditState_didChangeDependencies_closure, A._TransactionEditState_didChangeDependencies_closure0, A._TransactionEditState_dispose_closure, A._TransactionEditState__onChanged__closure, A._TransactionEditState_build_closure0, A._TransactionEditState_build_closure1, A._TransactionEditState_build_closure, A._TransactionEditState_build__closure, A._TransactionEditState_build___closure3, A._TransactionEditState_build___closure2, A._TransactionEditState_build__closure1, A._TransactionEditState_build__closure2, A._TransactionEditState_build__closure3, A._TransactionEditState_build___closure1, A._TransactionEditState_build__closure6, A._TransactionEditState_build___closure, A._TransactionEditState_build__closure4, A._TransactionEditState_build___closure0, A._TransactionEditState_build__closure8, A._TransactionEditState_build__closure7, A.TransactionEditScreen_build_closure0, A.TransactionEditVM_TransactionEditVM$fromStore_closure, A.TransactionEditVM_TransactionEditVM$fromStore_closure1, A.TransactionEditVM_TransactionEditVM$fromStore_closure0, A.TransactionEditVM_TransactionEditVM$fromStore___closure, A.TransactionEditVM_TransactionEditVM$fromStore___closure0, A.TransactionEditVM_TransactionEditVM$fromStore____closure, A.TransactionEditVM_TransactionEditVM$fromStore__closure, A.TransactionEditVM_TransactionEditVM$fromStore__closure0, A.TransactionListItem_build__closure, A.TransactionListItem_build__closure3, A.TransactionListVM_fromStore__handleRefresh, A.TransactionListVM_fromStore_closure, A.TransactionListVM_fromStore_closure0, A.TransactionPresenter_getField_closure, A.TransactionPresenter_getField_closure0, A.TransactionPresenter_getField_closure1, A.TransactionPresenter_getField_closure2, A.TransactionScreen_build_closure, A.TransactionScreen_build_closure0, A.TransactionScreen_build_closure1, A.TransactionScreen_build_closure2, A.TransactionScreen_build_closure3, A.TransactionScreen_build_closure13, A.TransactionScreen_build_closure10, A.TransactionScreen_build_closure6, A.TransactionScreen_build_closure7, A.TransactionScreen_build_closure8, A.TransactionScreen_build_closure9, A._TransactionViewState_build_closure, A._TransactionViewState_build_closure0, A._TransactionViewState_build_closure1, A._MatchDepositsState_initState_closure, A._MatchDepositsState_updateInvoiceList_closure, A._MatchDepositsState_updatePaymentList_closure, A._MatchDepositsState_build_closure, A._MatchDepositsState_build_closure0, A._MatchDepositsState_build_closure1, A._MatchDepositsState_build_closure2, A._MatchDepositsState_build_closure5, A._MatchDepositsState_build_closure8, A._MatchDepositsState_build_closure9, A._MatchDepositsState_build__closure, A._MatchWithdrawalsState_updateCategoryList_closure, A._MatchWithdrawalsState_updateVendorList_closure, A._MatchWithdrawalsState_updateExpenseList_closure, A._MatchWithdrawalsState_build_closure, A._MatchWithdrawalsState_build_closure0, A._MatchWithdrawalsState_build_closure1, A._MatchWithdrawalsState_build_closure2, A._MatchWithdrawalsState_build_closure5, A._MatchWithdrawalsState_build_closure6, A._MatchWithdrawalsState_build____closure1, A._MatchWithdrawalsState_build_____closure, A._MatchWithdrawalsState_build_closure11, A._MatchWithdrawalsState_build__closure6, A._MatchWithdrawalsState_build__closure7, A._MatchWithdrawalsState_build___closure2, A._MatchWithdrawalsState_build____closure0, A._MatchWithdrawalsState_build_closure16, A._MatchWithdrawalsState_build__closure1, A._MatchWithdrawalsState_build__closure2, A._MatchWithdrawalsState_build___closure0, A._MatchWithdrawalsState_build____closure, A._MatchWithdrawalsState_build__closure, A.TransactionViewScreen_build_closure0, A.TransactionViewScreen_build__closure, A.TransactionViewVM_TransactionViewVM$fromStore_closure, A.TransactionViewVM_TransactionViewVM$fromStore_closure1, A.TransactionViewVM_TransactionViewVM$fromStore__closure, A._TransactionRuleEditState_didChangeDependencies_closure, A._TransactionRuleEditState_didChangeDependencies_closure0, A._TransactionRuleEditState_dispose_closure, A._TransactionRuleEditState__onChanged__closure, A._TransactionRuleEditState_build_closure0, A._TransactionRuleEditState_build_closure1, A._TransactionRuleEditState_build_closure, A._TransactionRuleEditState_build__closure, A._TransactionRuleEditState_build__closure0, A._TransactionRuleEditState_build__closure1, A._TransactionRuleEditState_build___closure9, A._TransactionRuleEditState_build__closure2, A._TransactionRuleEditState_build___closure8, A._TransactionRuleEditState_build___closure6, A._TransactionRuleEditState_build___closure7, A._TransactionRuleEditState_build___closure5, A._TransactionRuleEditState_build___closure3, A._TransactionRuleEditState_build___closure4, A._TransactionRuleEditState_build__closure7, A._TransactionRuleEditState_build___closure1, A._TransactionRuleEditState_build___closure2, A._TransactionRuleEditState_build__closure9, A._TransactionRuleEditState_build___closure, A._TransactionRuleEditState_build___closure0, A.__RuleCriteriaState_build_closure, A.__RuleCriteriaState_build___closure1, A.__RuleCriteriaState_build_closure0, A.__RuleCriteriaState_build___closure0, A.__RuleCriteriaState_build_closure1, A.__RuleCriteriaState_build___closure, A.__RuleCriteriaState_build_closure2, A.__RuleCriteriaState_build_closure3, A.TransactionRuleEditScreen_build_closure0, A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore_closure, A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore_closure1, A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore_closure0, A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore___closure, A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore___closure0, A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore____closure, A.TransactionRuleListItem_build_closure, A.TransactionRuleListVM_fromStore__handleRefresh, A.TransactionRuleListVM_fromStore_closure, A.TransactionRuleListVM_fromStore_closure0, A.TransactionRuleScreen_build_closure7, A.TransactionRuleScreen_build_closure4, A.TransactionRuleScreen_build_closure0, A.TransactionRuleScreen_build_closure1, A.TransactionRuleScreen_build_closure2, A.TransactionRuleScreen_build_closure3, A.TransactionRuleViewScreen_build_closure0, A._UserEditState_didChangeDependencies_closure, A._UserEditState_didChangeDependencies_closure0, A._UserEditState_dispose_closure, A._UserEditState__onChanged_closure, A._UserEditState__togglePermission_closure, A._UserEditState__togglePermission_closure0, A._UserEditState_build_closure15, A._UserEditState_build_closure, A._UserEditState_build_closure0, A._UserEditState_build_closure1, A._UserEditState_build__closure12, A._UserEditState_build_closure3, A._UserEditState_build__closure11, A._UserEditState_build_closure4, A._UserEditState_build__closure9, A._UserEditState_build__closure10, A._UserEditState_build_closure5, A._UserEditState_build__closure7, A._UserEditState_build__closure8, A._UserEditState_build__closure6, A._UserEditState_build___closure0, A._UserEditState_build_closure7, A._UserEditState_build_closure9, A._UserEditState_build_closure11, A._UserEditState_build_closure13, A._UserEditState_build_closure14, A._UserEditState_build___closure, A._UserEditState_build____closure, A._UserEditState_build__closure1, A._UserEditState_build__closure3, A._UserEditState_build__closure5, A.UserEditScreen_build_closure0, A.UserEditVM_UserEditVM$fromStore_closure, A.UserEditVM_UserEditVM$fromStore_closure1, A.UserEditVM_UserEditVM$fromStore_closure0, A.UserEditVM_UserEditVM$fromStore___closure0, A.UserEditVM_UserEditVM$fromStore___closure1, A.UserEditVM_UserEditVM$fromStore____closure, A.UserListItem_build_closure, A.UserListVM_fromStore__handleRefresh, A.UserListVM_fromStore_closure, A.UserListVM_fromStore_closure0, A.UserScreen_build_closure7, A.UserScreen_build_closure4, A.UserScreen_build_closure0, A.UserScreen_build_closure1, A.UserScreen_build_closure2, A.UserScreen_build_closure3, A.UserViewScreen_build_closure0, A._VendorEditState_build_closure, A._VendorEditState_build_closure0, A.VendorEditAddressState_didChangeDependencies_closure, A.VendorEditAddressState_didChangeDependencies_closure0, A.VendorEditAddressState_dispose_closure, A.VendorEditAddressState__onChanged_closure, A.VendorEditAddressState_build_closure, A.VendorEditAddressState_build__closure, A._VendorEditContactsState__showContactEditor_closure, A._VendorEditContactsState__showContactEditor__closure, A._VendorEditContactsState_build_closure, A._VendorEditContactsState_build_closure0, A.VendorContactEditDetailsState_didChangeDependencies_closure, A.VendorContactEditDetailsState_didChangeDependencies_closure0, A.VendorContactEditDetailsState_dispose_closure, A.VendorContactEditDetailsState__onChanged_closure, A.VendorContactEditDetailsState_build_closure, A.VendorContactEditDetailsState_build_closure0, A.VendorContactEditDetailsState_build_closure1, A.VendorContactEditDetailsState_build_closure2, A.VendorContactEditDetailsState_build_closure4, A.VendorContactEditDetailsState_build_closure3, A.VendorContactEditDetailsState_build_closure5, A.VendorContactEditDetailsState_build_closure6, A.VendorContactEditDetailsState_build_closure7, A.VendorContactEditDetailsState_build_closure8, A.VendorContactEditDetailsState_build_closure9, A.VendorContactEditDetailsState_build_closure10, A.VendorContactEditDetailsState_build___closure, A.VendorContactEditDetailsState_build__closure1, A.VendorContactEditDetailsState_build__closure, A.VendorEditContactsScreen_build_closure0, A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure0, A.VendorEditDetailsState_didChangeDependencies_closure, A.VendorEditDetailsState_didChangeDependencies_closure0, A.VendorEditDetailsState_dispose_closure, A.VendorEditDetailsState__onChanged_closure, A.VendorEditDetailsState_build_closure, A.VendorEditDetailsState_build_closure0, A.VendorEditDetailsState_build__closure0, A.VendorEditDetailsState_build_closure2, A.VendorEditDetailsState_build__closure, A.VendorEditDetailsState_build_closure1, A.VendorEditNotesState_didChangeDependencies_closure, A.VendorEditNotesState_didChangeDependencies_closure0, A.VendorEditNotesState_dispose_closure, A.VendorEditNotesState__onChanged_closure, A.VendorEditSettingsState_build_closure, A.VendorEditSettingsState_build__closure0, A.VendorEditSettingsState_build_closure0, A.VendorEditSettingsState_build__closure, A.VendorEditScreen_build_closure0, A.VendorEditVM_VendorEditVM$fromStore_closure, A.VendorEditVM_VendorEditVM$fromStore_closure1, A.VendorEditVM_VendorEditVM$fromStore_closure0, A.VendorEditVM_VendorEditVM$fromStore___closure, A.VendorEditVM_VendorEditVM$fromStore___closure0, A.VendorEditVM_VendorEditVM$fromStore___closure1, A.VendorEditVM_VendorEditVM$fromStore____closure, A.VendorListItem_build__closure, A.VendorListItem_build__closure3, A.VendorListVM_fromStore__handleRefresh, A.VendorListVM_fromStore_closure, A.VendorListVM_fromStore_closure0, A.VendorPresenter_getField_closure, A.VendorScreen_build_closure7, A.VendorScreen_build_closure4, A.VendorScreen_build_closure0, A.VendorScreen_build_closure1, A.VendorScreen_build_closure2, A.VendorScreen_build_closure3, A._VendorViewState_build_closure, A._VendorViewDetailsState_build__buildDetailsList_closure, A._VendorViewFullwidthState_build__closure1, A.VendorViewScreen_build_closure0, A.VendorViewVM_VendorViewVM$fromStore__handleRefresh, A.VendorViewVM_VendorViewVM$fromStore_closure, A.VendorViewVM_VendorViewVM$fromStore_closure0, A.VendorViewVM_VendorViewVM$fromStore__closure, A.VendorViewVM_VendorViewVM$fromStore__closure0, A.VendorViewVM_VendorViewVM$fromStore___closure, A._WebhookEditState_didChangeDependencies_closure, A._WebhookEditState_didChangeDependencies_closure0, A._WebhookEditState_dispose_closure, A._WebhookEditState__onChanged_closure, A._WebhookEditState_build_closure0, A._WebhookEditState_build_closure, A._WebhookEditState_build__closure, A._WebhookEditState_build__closure1, A._WebhookEditState_build___closure4, A._WebhookEditState_build__closure0, A._WebhookEditState_build__closure2, A._WebhookEditState_build___closure3, A._WebhookEditState_build__closure3, A._WebhookEditState_build__closure4, A._WebhookEditState_build___closure0, A._WebhookEditState_build__closure6, A._WebhookEditState_build____closure, A.WebhookEditScreen_build_closure0, A.WebhookEditVM_WebhookEditVM$fromStore_closure, A.WebhookEditVM_WebhookEditVM$fromStore_closure1, A.WebhookEditVM_WebhookEditVM$fromStore_closure0, A.WebhookEditVM_WebhookEditVM$fromStore___closure, A.WebhookEditVM_WebhookEditVM$fromStore___closure0, A.WebhookEditVM_WebhookEditVM$fromStore____closure, A.WebhookViewScreen_build_closure0, A.WebhookListItem_build_closure, A.WebhookListVM_fromStore__handleRefresh, A.WebhookListVM_fromStore_closure, A.WebhookListVM_fromStore_closure0, A.WebhookScreen_build_closure7, A.WebhookScreen_build_closure4, A.WebhookScreen_build_closure0, A.WebhookScreen_build_closure1, A.WebhookScreen_build_closure2, A.WebhookScreen_build_closure3, A.snackBarCompleter_closure, A.snackBarCompleter_closure0, A.snackBarCompleter__closure, A.loadDesign_closure, A.loadDesign_closure0, A.showRefreshDataDialog_closure, A.showErrorDialog_closure, A.showMessageDialog_closure, A.confirmCallback_closure, A.confirmCallback__closure, A.confirmCallback__closure0, A.confirmCallback__closure1, A.passwordCallback_closure0, A.passwordCallback__closure0, A.passwordCallback__closure, A.passwordCallback_closure3, A._PasswordConfirmationState_build_closure0, A._PasswordConfirmationState_build_closure1, A.fieldCallback_closure, A._FieldConfirmationState_build_closure, A._FieldConfirmationState_build_closure0, A.cloneToDialog_closure, A.changeTaskStatusDialog_closure, A.changeTaskStatusDialog_closure0, A.changeTaskStatusDialog__closure, A.changeTaskStatusDialog____closure, A.addToInvoiceDialog_closure, A.addToInvoiceDialog_closure0, A.addToInvoiceDialog__closure, A.addToInvoiceDialog____closure, A._RunTemplateDialogState_build__closure1, A._RunTemplateDialogState_build__closure3, A._RunTemplateDialogState_build__closure4, A._RunTemplateDialogState_build_closure2, A._RunTemplateDialogState_build_closure3, A._RunTemplateDialogState_build_closure4, A._RunTemplateDialogState_build_closure5, A.EnumUtils_fromString_closure, A.AttributedTextMarkdownSerializer__encodeLinkMarker_closure, A.GoogleOAuth_signIn_closure, A.GoogleOAuth_signUp_closure, A.toSnakeCase_closure, A.toCamelCase_closure, A.toSpaceCase_closure, A.toTitleCase_closure, A.matchesStrings_closure, A.matchesString_closure, A.matchesString_closure0, A.matchesStringsValue_closure, A.getRandomString_closure, A._ExampleEditorState__showEditorToolbar_closure, A._ExampleEditorState__showImageToolbar_closure, A._ExampleEditorState_build_closure, A._ExampleEditorState_build_closure0, A._ExampleEditorState__buildMountedToolbar_closure, A._SuperEditorDemoTextItemSelectorState_build_closure, A._EditorToolbarState__getSelectedLinkSpans_closure, A._EditorToolbarState__onLinkPressed_closure, A._EditorToolbarState__onBlockTypeSelected__closure, A._EditorToolbarState__buildBlockTypeSelector_closure, A._EditorToolbarState__buildUrlField_closure0, A._EditorToolbarState__buildUrlField_closure, A._ImageFormatToolbarState_build_closure, A._PositionedToolbar_build_closure, A.loadEmailTemplate_closure, A.loadEmailTemplate_closure0, A.WebUtils_registerWebView_closure, A.WebUtils_warnChanges_closure, A.WebUtils_microsoftLogin_closure, A.WebUtils_microsoftLogin_closure0, A.Element_textContent_closure, A.BlockSyntax_isAtBlockEnd_closure, A.BlockquoteSyntax_parseChildLines_closure, A.ListSyntax_parse_tryMatch, A.ParagraphSyntax__extractReflinkDefinitions_lineStartsReflinkDefinition, A.InlineParser_closure, A.InlineParser_parse_closure, A.InlineParser__linkOrImage_closure, A.InlineParser__linkOrImage_closure0, A.InlineParser__processEmphasis_closure0, A.LinkSyntax_closure, A.ImageSyntax__createNode_closure, A.memo1_closure, A.memo3_closure, A.memo4_closure, A.memo5_closure, A.memo6_closure, A.memo7_closure, A.memo8_closure, A.memo9_closure, A.memo10_closure, A.RenderOverflowView_resetOffstage_closure, A.RenderOverflowView_performFixedLayout_getChildOffset, A.RenderOverflowView_visitOnlyOnStageChildren_closure, A.RenderOverflowView_paint_paintChild, A.RenderOverflowView_hitTestChildren_closure, A._RenderIosPagedMenu__scheduleUpdateControllerPageCount_closure, A.Context_joinAll_closure, A.Context_split_closure, A._validateArgList_closure, A._PinchZoomState_build_closure0, A._PinchZoomState_build_closure, A._PinputState__buildPinput_closure1, A._PinputState__buildPinput__closure0, A._PinputState__buildPinput__closure1, A._PinputState__buildEditable_closure, A._PinputState__buildEditable_closure0, A._PinputState__buildFields_onlyFields_closure, A._SeparatedRaw_build_closure, A._PinputAnimatedCursorState__startCursorAnimation_closure, A._registerFactory_closure, A.PrintingPlugin_layoutPdf_closure, A.PrintingPlugin_layoutPdf_closure0, A.PrintingPlugin_raster_closure, A.PrintingPlugin_raster_closure0, A.MethodChannelPrinting__handleMethod_closure, A.PdfPreviewCustomState_didChangeDependencies_closure, A.PdfPreviewState_didChangeDependencies_closure, A.PdfPreviewState_build_closure, A.PdfRaster_toImage_closure, A.Store__createReduceAndNotify_closure, A.Store__createDispatchers_closure, A.RoundedLoadingButtonState_initState_closure1, A.RoundedLoadingButtonState_initState_closure3, A._forwardMulti_closure, A._forwardMulti_closure_listenToUpstream, A._forward_closure_listenToUpstream, A.SdkVersion_toJson_closure, A.SharedPreferencesPlugin__getFilteredKeys_closure, A.MethodChannelSignInWithApple__signInWithAppleAndroid_closure, A.Highlighter$__closure, A.Highlighter$___closure, A.Highlighter$__closure0, A.Highlighter__collateLines_closure, A.Highlighter__collateLines_closure1, A.Highlighter__collateLines__closure, A.Highlighter_highlight_closure, A.OnBuilder_closure, A.OnBuilder_closure0, A._MyStatefulWidgetState_initState_closure, A.ReactiveModelImp_setStateNullable_closure0, A.ReactiveModelImp_initialize_closure, A.ReactiveModelImp__handleAsyncState_closure, A.ReactiveModelImp__handleAsyncState__closure0, A.MutableDocument_onTransactionEnd_closure, A._BlockquoteComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure, A.PasteEditorCommand__convertLinesToParagraphs_closure, A.UpdateComposerTextStylesReaction_react_closure, A.UpdateComposerTextStylesReaction__updateComposerStylesAtCaret_closure, A.UpdateComposerTextStylesReaction__updateComposerStylesAtCaret_closure0, A.defaultRequestHandlers_closure, A.defaultRequestHandlers_closure0, A.defaultRequestHandlers_closure1, A.defaultRequestHandlers_closure2, A.defaultRequestHandlers_closure3, A.defaultRequestHandlers_closure4, A.defaultRequestHandlers_closure5, A.defaultRequestHandlers_closure6, A.defaultRequestHandlers_closure7, A.defaultRequestHandlers_closure8, A.defaultRequestHandlers_closure9, A.defaultRequestHandlers_closure10, A.defaultRequestHandlers_closure11, A.defaultRequestHandlers_closure12, A.defaultRequestHandlers_closure13, A.defaultRequestHandlers_closure14, A.defaultRequestHandlers_closure15, A.defaultRequestHandlers_closure16, A.defaultRequestHandlers_closure17, A.defaultRequestHandlers_closure18, A.defaultRequestHandlers_closure19, A.defaultRequestHandlers_closure20, A.defaultRequestHandlers_closure21, A.defaultRequestHandlers_closure22, A.defaultRequestHandlers_closure23, A.defaultRequestHandlers_closure24, A.defaultRequestHandlers_closure25, A.defaultRequestHandlers_closure26, A.defaultRequestHandlers_closure27, A.defaultRequestHandlers_closure28, A.defaultRequestHandlers_closure29, A.defaultRequestHandlers_closure30, A.defaultRequestHandlers_closure31, A.defaultRequestHandlers_closure32, A.defaultRequestHandlers_closure33, A.defaultRequestHandlers_closure34, A.defaultRequestHandlers_closure35, A.defaultRequestHandlers_closure36, A.defaultRequestHandlers_closure37, A.defaultRequestHandlers_closure38, A.defaultRequestHandlers_closure39, A.ImageUrlConversionReaction_react_closure, A.ImageUrlConversionReaction_react_closure1, A.ImageUrlConversionReaction_react_closure2, A.LinkifyReaction__extractUpstreamWordAndLinkify_closure, A.LinkifyReaction__moveOffsetByWord_closure, A.LinkifyReaction__moveOffsetByWord_closure0, A.LinkifyReaction__moveOffsetByWord_closure1, A._EditorSelectionAndFocusPolicyState__onFocusChange_closure, A._DocumentMouseInteractorState__onSelectionChange_closure, A._DocumentMouseInteractorState_build_closure, A._DocumentMouseInteractorState_build_closure0, A._DocumentMouseInteractorState__buildCursorStyle_closure, A._DocumentMouseInteractorState__buildCursorStyle__closure, A._DocumentMouseInteractorState__buildGestureInput_closure0, A._DocumentMouseInteractorState__buildGestureInput_closure2, A.SuperEditorAndroidControlsScope_maybeRootOf_closure, A._AndroidDocumentTouchInteractorState_didChangeDependencies_closure, A._AndroidDocumentTouchInteractorState_didChangeMetrics_closure, A._AndroidDocumentTouchInteractorState__configureScrollController_closure, A._AndroidDocumentTouchInteractorState__onScrollActivityChange_closure, A._AndroidDocumentTouchInteractorState__onDocumentChange_closure, A._AndroidDocumentTouchInteractorState_build_closure0, A._AndroidDocumentTouchInteractorState_build_closure2, A.SuperEditorAndroidControlsOverlayManagerState__buildCollapsedHandle_closure, A.SuperEditorAndroidControlsOverlayManagerState__buildCollapsedHandle__closure0, A.SuperEditorAndroidControlsOverlayManagerState__buildCollapsedHandle__closure, A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles_closure, A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles__closure2, A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles__closure1, A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles_closure0, A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles__closure0, A.SuperEditorAndroidControlsOverlayManagerState__buildExpandedHandles__closure, A.SuperEditorAndroidControlsOverlayManagerState__buildToolbar_closure, A.SuperEditorAndroidControlsOverlayManagerState__buildMagnifierFocalPoint_closure, A.SuperEditorAndroidControlsOverlayManagerState__buildMagnifier_closure, A.SuperEditorIosControlsScope_maybeRootOf_closure, A._IosDocumentTouchInteractorState_didChangeDependencies_closure, A._IosDocumentTouchInteractorState_didChangeMetrics_closure, A._IosDocumentTouchInteractorState__configureScrollController_closure, A._IosDocumentTouchInteractorState__onScrollActivityChange_closure, A._IosDocumentTouchInteractorState__onDocumentChange_closure, A._IosDocumentTouchInteractorState_build_closure0, A._IosDocumentTouchInteractorState_build_closure2, A._IosDocumentTouchInteractorState_build_closure4, A._IosDocumentTouchInteractorState__buildMagnifierFocalPoint_closure, A.SuperEditorIosMagnifierOverlayManagerState__buildMagnifier_closure, A._EditorFloatingCursorState__buildFloatingCursor_closure, A.DocumentImeInputClient_updateEditingValueWithDeltas_closure, A._DocumentSelectionOpenAndCloseImePolicyState_didUpdateWidget_closure, A._SoftwareKeyboardOpenerState_dispose_closure, A._KeyboardEditingToolbarState__buildToolbarOverlay__closure, A.SuperEditorImeInteractorState__createTextDeltasDocumentEditor_closure, A.SuperEditorImeInteractorState__reportVisualInformationToIme_closure, A._DocumentScrollableState_initState_closure, A._SingleColumnDocumentLayoutState__getNodeIdsBetween_closure, A.SingleColumnLayoutComposingRegionStyler__computeNodeSelection_closure, A.SingleColumnLayoutSelectionStyler__computeNodeSelection_closure, A._ListItemComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure, A.SplitParagraphCommand_execute_closure, A._ParagraphComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure, A.SuperEditorState_build_closure, A.SuperEditorState_build__closure, A.SuperEditorState_build__closure0, A.SuperEditorState_build__closure1, A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure, A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure2, A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure3, A.TaskComponentBuilder_createViewModel_closure, A._TaskComponentState_build_closure, A._TaskComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel_applyStyles_closure, A.ComputeTextSpan_computeTextSpan_closure, A.ContentLayersElement__onBuildScheduled_closure, A.ContentLayersElement__isSubtreeDirty_closure, A.RenderContentLayers_attach_closure, A.RenderContentLayers_detach_closure, A.RenderContentLayers_performLayout_closure, A._extension_0_findAncestorContentLayers_closure, A._DocumentScaffoldState__buildDocumentLayout_closure, A._CupertinoScrollbarState_handleThumbPress_closure0, A.Scheduler_runAsSoonAsPossible_closure, A.Frames_onNextFrame_closure, A.Frames_scheduleBuildAfterBuild_closure, A._MaterialScrollbarState__trackVisibility_closure0, A._MaterialScrollbarState__thumbColor_closure0, A._MaterialScrollbarState__trackColor_closure0, A._MaterialScrollbarState__trackBorderColor_closure0, A._MaterialScrollbarState__thickness_closure0, A.RawScrollbarWithCustomPhysicsState__gestures_closure0, A.RawScrollbarWithCustomPhysicsState__gestures__closure, A.RawScrollbarWithCustomPhysicsState__gestures__closure0, A.RawScrollbarWithCustomPhysicsState__gestures__closure1, A.RawScrollbarWithCustomPhysicsState__gestures_closure2, A.RawScrollbarWithCustomPhysicsState_build_closure, A.RawScrollbarWithCustomPhysicsState_build_closure0, A.ScrollbarPainter_update_needPaint0, A.disabledMacIntents_closure, A._PopoverScaffoldState__onPopoverControllerChanged_closure, A.ItemSelectionListState__activateItem_closure, A.CharacterMovement__moveOffsetByWord_closure, A.CharacterMovement__moveOffsetByWord_closure0, A.CharacterMovement__moveOffsetByWord_closure1, A.CharacterMovement__moveOffsetByCharacter_closure, A._AndroidEditingOverlayControlsState_initState_closure, A._AndroidEditingOverlayControlsState_didUpdateWidget_closure, A._AndroidEditingOverlayControlsState__updateSelectionForDragHandleAfterScrollChange_closure, A._AndroidEditingOverlayControlsState__updateOffsetForCollapsedHandle_closure, A._AndroidEditingOverlayControlsState_build_closure, A._AndroidEditingOverlayControlsState__buildToolbar_closure, A.AndroidTextFieldTouchInteractorState__onScrollChange_closure, A.AndroidTextFieldTouchInteractorState__buildTapAndDragDetector_closure0, A.AndroidTextFieldTouchInteractorState__buildTapAndDragDetector_closure2, A.AndroidTextFieldTouchInteractorState__buildTapAndDragDetector_closure4, A.SuperAndroidTextFieldState_initState_closure, A.SuperAndroidTextFieldState_initState_closure0, A.SuperAndroidTextFieldState_dispose_closure, A.SuperAndroidTextFieldState_didChangeMetrics_closure, A.SuperDesktopTextFieldState__onSelectionOrContentChange_closure, A.SuperDesktopTextFieldState_build_closure0, A._SuperTextFieldGestureInteractorState_build_closure4, A._SuperTextFieldGestureInteractorState_build_closure3, A._SuperTextFieldGestureInteractorState_build_closure5, A._SuperTextFieldGestureInteractorState_build_closure0, A._SuperTextFieldGestureInteractorState_build_closure2, A._SuperTextFieldImeInteractorState_initState_closure, A._SuperTextFieldImeInteractorState_didUpdateWidget_closure, A._SuperTextFieldImeInteractorState__reportVisualInformationToIme_closure, A.SuperTextFieldScrollviewState_didUpdateWidget_closure, A.SuperTextFieldScrollviewState__onSelectionOrContentChange_closure, A._IOSEditingControlsState_build_closure, A._IOSEditingControlsState__buildToolbar_closure, A.IOSTextFieldTouchInteractorState__onScrollChange_closure, A.IOSTextFieldTouchInteractorState__buildTapAndDragDetector_closure0, A.IOSTextFieldTouchInteractorState__buildTapAndDragDetector_closure2, A.IOSTextFieldTouchInteractorState__buildTrackerForToolbarFocus_closure, A.SuperIOSTextFieldState_initState_closure, A.SuperIOSTextFieldState_initState_closure0, A.SuperIOSTextFieldState_dispose_closure, A.SuperIOSTextFieldState_didChangeMetrics_closure, A.format_closure, A.MethodChannelUrlLauncher_launch_closure, A._MaterialScrollbarState__thumbColor_closure1, A._MaterialScrollbarState__trackColor_closure1, A._MaterialScrollbarState__trackBorderColor_closure1, A._MaterialScrollbarState__thickness_closure1, A._EventStreamSubscription_closure0, A._EventStreamSubscription_onData_closure0, A.HttpRequest_request_closure]); + _inheritMany(A.Closure0Args, [A.AppBootstrap_prepareEngineInitializer_closure, A.HtmlViewEmbedder__compositeWithParams_closure, A.HtmlViewEmbedder__applyMutators_closure, A.HtmlViewEmbedder__applyMutators_closure0, A.SkiaFontCollection__registerWithFontProvider_closure, A.SkiaFontCollection__registerWithFontProvider_closure0, A.SkiaFontCollection_loadAssetFonts_closure, A.SkiaFontCollection_loadAssetFonts_closure0, A.skiaDecodeImageFromPixels_closure, A.Frame_raster_closure, A.Frame_raster_closure0, A.CanvasKitRenderer_initialize_closure, A.CkTextStyle_skTextStyle_closure, A.FontFallbackManager_addMissingCodePoints_closure, A.FallbackFontDownloadQueue_startDownloads_closure, A.PersistedPicture__applyBitmapPaint_closure, A.HtmlRenderer_initialize_closure, A.SurfaceSceneBuilder_build_closure, A.SurfaceSceneBuilder_build_closure0, A.GradientLinear_createImageBitmap_closure, A.BrowserImageDecoder__cacheExpirationClock_closure, A.BrowserImageDecoder__getOrCreateWebDecoder_closure, A.initializeEngineServices_closure0, A.initializeEngineServices_initializeRendererCallback, A.FlutterEngineInitializer__staticInteropFactoryStub_closure0, A._cached_closure, A.KeyboardConverter__scheduleAsyncEvent_closure0, A.KeyboardConverter__startGuardingKey_closure, A.KeyboardConverter__startGuardingKey_closure0, A.KeyboardConverter__handleEvent_closure, A.KeyboardConverter__handleEvent_closure0, A.KeyboardConverter__handleEvent_closure1, A.EnginePlatformDispatcher_invokeOnKeyData_closure, A.invoke2_closure, A.PlatformViewManager_renderContent_closure, A._PointerAdapter__ensureSanitizer_closure, A.PointerDataConverter__ensureStateForPointer_closure, A.RawKeyboard$__closure1, A.RawKeyboard__handleHtmlEvent_closure, A.AccessibilityAnnouncements_announce_closure, A.RouteName_update_closure, A.AccessibilityFocusManager_changeFocus_closure, A.Scrollable_update_closure, A.EngineSemanticsOwner$__closure, A.EngineSemanticsOwner__now_closure, A.EngineSemanticsOwner__getGestureModeClock_closure, A.MobileSemanticsEnabler_tryEnableSemantics_closure, A.TextField__invokeIosWorkaround_closure, A.TextField_update_closure, A.HtmlFontCollection_loadAssetFonts_closure, A.HtmlFontCollection_loadAssetFonts_closure0, A.HtmlFontCollection_loadAssetFonts_closure1, A.SafariDesktopTextEditingStrategy_placeElement_closure, A.IOSTextEditingStrategy__schedulePlacement_closure, A.FirefoxTextEditingStrategy__postponeFocus_closure, A.TextEditingChannel_handleTextInput_closure, A.EngineFlutterWindow_closure, A.EngineFlutterWindow_handleNavigationMessage_closure, A.CastMap_putIfAbsent_closure, A.nullFuture_closure, A.Primitives_initTicker_closure, A._AsyncRun__scheduleImmediateJsOverride_internalCallback, A._AsyncRun__scheduleImmediateWithSetImmediate_internalCallback, A._TimerImpl_internalCallback, A._TimerImpl$periodic_closure, A._asyncStarHelper_closure, A._AsyncStarStreamController__resumeBody, A._AsyncStarStreamController__resumeBody_closure, A._AsyncStarStreamController_closure0, A._AsyncStarStreamController_closure1, A._AsyncStarStreamController_closure, A._AsyncStarStreamController__closure, A.Future_Future_closure, A.Future_Future$delayed_closure, A._Future__addListener_closure, A._Future__prependListeners_closure, A._Future__chainForeignFuture_closure1, A._Future__chainCoreFutureAsync_closure, A._Future__asyncCompleteWithValue_closure, A._Future__asyncCompleteError_closure, A._Future__propagateToListeners_handleWhenCompleteCallback, A._Future__propagateToListeners_handleValueCallback, A._Future__propagateToListeners_handleError, A._Future_timeout_closure, A.Stream_asyncMap_closure, A.Stream_fold_closure, A.Stream_fold__closure, A.Stream_forEach_closure, A.Stream_forEach__closure, A.Stream_length_closure0, A.Stream_isEmpty_closure, A.Stream_toList_closure0, A.Stream_first_closure, A._StreamController__subscribe_closure, A._StreamController__recordCancel_complete, A._AddStreamState_cancel_closure, A._BufferingStreamSubscription__sendError_sendError, A._BufferingStreamSubscription__sendDone_sendDone, A._PendingEvents_schedule_closure, A._MultiStream_listen_closure, A._cancelAndError_closure, A._cancelAndValue_closure, A._rootHandleError_closure, A._RootZone_bindCallbackGuarded_closure, A.Utf8Decoder__decoder_closure, A.Utf8Decoder__decoderNonfatal_closure, A._BigIntImpl_toDouble_roundUp, A._FileStream_listen_closure, A._FileStream__closeFile_done, A._File_readAsBytes_readUnsized_read, A._File_readAsBytes_readSized_read, A.ChannelBuffers_push_closure, A.ChannelBuffers_setListener_closure, A.KeyData__logicalToString_closure, A.bootstrapEngine_closure0, A.BrowserPlatformLocation_getOrCreateDomEventListener_closure, A.HashUrlStrategy_addPopStateListener_closure, A.AttributedSpans_copyAttributionRegion__closure1, A.AttributedSpans_copyAttributionRegion__closure2, A.AttributedSpans_copyAttributionRegion__closure, A.AttributedSpans_copyAttributionRegion__closure0, A.BoardItemState_onDropItem_closure, A.BoardItemState__startDrag_closure, A.BoardItemState__startDrag_closure0, A.BoardItemState_build_closure2, A.BoardItemState_build_closure1, A.BoardItemState_build_closure0, A.BoardListState_onDropList_closure, A.BoardListState__startDrag_closure, A.BoardListState_build_closure0, A.BoardListState_build_closure1, A.BoardListState_build_closure, A.BoardViewState_moveDown_closure, A.BoardViewState_moveUp_closure, A.BoardViewState_moveListRight_closure, A.BoardViewState_moveListRight__closure, A.BoardViewState_moveListRight_closure0, A.BoardViewState_moveRight_closure, A.BoardViewState_moveRight_closure0, A.BoardViewState_moveRight_closure1, A.BoardViewState_moveRight__closure, A.BoardViewState_moveRight_closure2, A.BoardViewState_moveListLeft_closure, A.BoardViewState_moveListLeft__closure, A.BoardViewState_moveListLeft_closure0, A.BoardViewState_moveLeft_closure, A.BoardViewState_moveLeft_closure0, A.BoardViewState_moveLeft_closure1, A.BoardViewState_moveLeft__closure, A.BoardViewState_moveLeft_closure2, A.BoardViewState_build__closure5, A.BoardViewState_build_closure1, A.BoardViewState_build__closure4, A.BoardViewState_build_closure2, A.BoardViewState_build__closure3, A.BoardViewState_build__closure2, A.BoardViewState_build__closure0, A.BoardViewState_build__closure1, A.BoardViewState_build__closure, A.BoardViewState_run_closure, A.Serializers_Serializers_closure, A.Serializers_Serializers_closure0, A.Serializers_Serializers_closure1, A.Serializers_Serializers_closure2, A.Serializers_Serializers_closure3, A.BaseBarRenderer_preprocessSeries__closure1, A.BaseBarRenderer_update__closure, A.BaseBarRenderer_update__closure1, A._ReversedSeriesIterator_closure, A.BaseChart_getSelectionModel_closure, A.BaseChart_configureSeries__closure, A.BaseChart_preprocessSeries__closure, A.GestureListener_defaultTapCancel_closure, A.MaterialPalette__orderedPalettes_closure, A.MaterialPalette__orderedPalettes_closure0, A.MaterialPalette__orderedPalettes_closure1, A.MaterialPalette__orderedPalettes_closure2, A.MaterialPalette__orderedPalettes_closure3, A.MaterialPalette__orderedPalettes_closure4, A.MaterialPalette__orderedPalettes_closure5, A.MaterialPalette__orderedPalettes_closure6, A.MaterialPalette__orderedPalettes_closure7, A.MaterialPalette__orderedPalettes_closure8, A.MaterialPalette__orderedPalettes_closure9, A.BaseChartState_requestRebuild_closure, A.BaseChartState__animationTick_closure, A.LinePainter__drawDashedLine_closure, A.ChartGestureDetector_makeWidget_closure, A.ChartGestureDetector_onTapDown_closure, A.CanonicalizedMap_putIfAbsent_closure, A._CupertinoDesktopTextSelectionToolbarButtonState__onEnter_closure, A._CupertinoDesktopTextSelectionToolbarButtonState__onExit_closure, A._CupertinoTextMagnifierState_initState_closure, A._CupertinoTextMagnifierState_initState__closure, A._CupertinoTextMagnifierState__determineMagnifierPositionAndFocalPoint_closure, A.CupertinoRouteTransitionMixin_buildPageTransitions_closure, A.CupertinoRouteTransitionMixin_buildPageTransitions_closure0, A._CupertinoScrollbarState_initState_closure, A._CupertinoSwitchState__handleDragEnd_closure, A._CupertinoSwitchState__onShowFocusHighlight_closure, A._RenderCupertinoSwitch_paint_closure, A._RenderCupertinoSwitch_paint_closure0, A._RenderCupertinoSwitch_paint_closure1, A._RenderCupertinoSwitch_paint_closure2, A._RenderCupertinoSwitch_paint_closure3, A._RenderCupertinoSwitch_paint_closure4, A._RenderCupertinoTextSelectionToolbarShape__addRRectToPath_closure, A._RenderCupertinoTextSelectionToolbarShape__addRRectToPath_closure0, A._CupertinoTextSelectionToolbarContentState__statusListener_closure, A._CupertinoTextSelectionToolbarButtonState__onTapDown_closure, A._CupertinoTextSelectionToolbarButtonState__onTapUp_closure, A._CupertinoTextSelectionToolbarButtonState__onTapCancel_closure, A.ToggleableStateMixin__handleTapDown_closure0, A.ToggleableStateMixin__handleTapEnd_closure0, A.ToggleableStateMixin__handleFocusHighlightChanged_closure0, A._testPlatform_closure, A._browserPlatform_closure, A.FlutterErrorDetails_summary_formatException, A.FlutterErrorDetails_summary_closure0, A.BindingBase_initServiceExtensions_closure, A.BindingBase_initServiceExtensions_closure1, A.BindingBase_lockEvents_closure, A.BindingBase_registerServiceExtension__closure, A.ChangeNotifier_notifyListeners_closure, A.LicenseEntryWithLineBreaks_paragraphs_addLine, A.LicenseEntryWithLineBreaks_paragraphs_getParagraph, A.LicenseRegistry_licenses_closure, A.GestureArenaManager_add_closure, A.GestureArenaManager__tryToResolveArena_closure, A.GestureBinding_dispatchEvent_closure, A.GestureBinding_dispatchEvent_closure0, A.ForcePressGestureRecognizer_handleEvent_closure, A.ForcePressGestureRecognizer_acceptGesture_closure, A.ForcePressGestureRecognizer_didStopTrackingLastPointer_closure, A.LongPressGestureRecognizer__checkLongPressStart_closure, A.LongPressGestureRecognizer__checkLongPressMoveUpdate_closure, A.LongPressGestureRecognizer__checkLongPressEnd_closure, A.DragGestureRecognizer__checkDown_closure, A.DragGestureRecognizer__checkStart_closure, A.DragGestureRecognizer__checkUpdate_closure, A.DragGestureRecognizer__checkEnd_closure, A.DragGestureRecognizer__checkEnd_closure0, A.DragGestureRecognizer__checkEnd_closure1, A.DragGestureRecognizer__checkEnd_closure2, A.MultiDragGestureRecognizer__startDrag_closure, A.PointerRouter_addRoute_closure, A.PrimaryPointerGestureRecognizer_addAllowedPointer_closure, A.ScaleGestureRecognizer__reconfigure_closure1, A.ScaleGestureRecognizer__reconfigure_closure2, A.ScaleGestureRecognizer__advanceStateMachine_closure, A.ScaleGestureRecognizer__dispatchOnStartCallbackIfNeeded_closure, A.TapGestureRecognizer_handleTapDown_closure, A.TapGestureRecognizer_handleTapDown_closure0, A.TapGestureRecognizer_handleTapUp_closure, A.TapGestureRecognizer_handleTapUp_closure0, A.TapGestureRecognizer_handleTapUp_closure1, A.BaseTapAndDragGestureRecognizer__handleDragUpdateThrottled_closure, A.BaseTapAndDragGestureRecognizer_addAllowedPointer_closure, A.BaseTapAndDragGestureRecognizer__checkTapDown_closure, A.BaseTapAndDragGestureRecognizer__checkTapUp_closure, A.BaseTapAndDragGestureRecognizer__checkDragStart_closure, A.BaseTapAndDragGestureRecognizer__checkDragUpdate_closure, A.BaseTapAndDragGestureRecognizer__checkDragEnd_closure, A.GestureArenaTeam_add_closure, A._PackagesViewState__packagesList__closure, A._PackageLicensePageState__initLicenses_closure, A._PackageLicensePageState__initLicenses_closure0, A._MasterDetailFlowState__nestedUI_closure1, A._MasterDetailFlowState__masterPageRoute__closure, A._ActionButton_build_closure, A.AppBar__getEffectiveCenterTitle_platformCenter, A._AppBarState__handleScrollNotification_closure, A.MaterialPointArcTween__initialize_sweepAngle, A._BottomSheetState__handleDragStart_closure, A._BottomSheetState__handleDragEnd_closure, A._BottomSheetState__handleDragHandleHover_closure, A._BottomSheetGestureDetector_build_closure, A._ButtonStyleState_handleStatesControllerChange_closure, A._ButtonStyleState_build__closure1, A._CalendarDatePickerState__handleModeChanged_closure, A._CalendarDatePickerState__handleMonthChanged_closure, A._CalendarDatePickerState__handleYearChanged_closure, A._CalendarDatePickerState__handleDayChanged_closure, A._CalendarDatePickerState_build_closure, A._MonthPickerState__handleMonthPageChanged_closure, A._MonthPickerState__handleGridFocusChange_closure, A._MonthPickerState__handleDirectionFocus_closure, A._DayState_build_closure1, A._YearPickerState__buildYearItem_closure1, A.DataTable_build_closure5, A.DataTable_build_closure6, A.DataTable_build_closure7, A.TableRowInkWell_getRectCallback_closure, A._SortArrowState__rebuild_closure, A._DatePickerDialogState__handleOk_closure, A._DatePickerDialogState__handleEntryModeToggle_closure, A._DatePickerDialogState__handleDateChanged_closure, A._DatePickerDialogState_build_calendarDatePicker, A._DatePickerDialogState_build_inputDatePicker, A.DrawerControllerState__animationChanged_closure, A._DropdownMenuState_build_closure, A.DropdownButtonFormField_closure_isHintOrDisabledHintAvailable, A.DropdownButtonFormField__closure_resolveInputBorder, A.DropdownButtonFormField__closure_effectiveBorderRadius, A.Feedback_wrapForTap_closure, A._getClipCallback_closure, A._getClipCallback_closure0, A._InkResponseState_activateOnIntent_closure, A._InkResponseState_handleStatesControllerChange_closure, A._InkResponseState_updateHighlight_handleInkRemoval, A._InkResponseState__createSplash_onRemoved, A._InkResponseState_handleFocusHighlightModeChange_closure, A._InputDatePickerFormFieldState_didUpdateWidget__closure, A._HelperErrorState__handleChange_closure, A._InputDecoratorState__handleChange_closure, A._TextMagnifierState__determineMagnifierPositionAndFocalPoint_closure, A._TextMagnifierState__determineMagnifierPositionAndFocalPoint__closure, A._TextMagnifierState__determineMagnifierPositionAndFocalPoint_closure0, A.MaterialStateMixin_addMaterialState_closure, A.MaterialStateMixin_removeMaterialState_closure, A._MergeableMaterialState__handleTick_closure, A.RadioListTile_build_closure, A.RefreshIndicatorState__handleScrollNotification_closure, A.RefreshIndicatorState__dismiss_closure, A.RefreshIndicatorState__dismiss_closure0, A.RefreshIndicatorState__show__closure, A.RefreshIndicatorState__show__closure0, A._FloatingActionButtonTransitionState__handlePreviousAnimationStatusChanged_closure, A.ScaffoldState__drawerOpenedCallback_closure, A.ScaffoldState__endDrawerOpenedCallback_closure, A.ScaffoldState__updateSnackBar_closure, A.ScaffoldState__updateMaterialBanner_closure, A.ScaffoldState__buildBottomSheet_removePersistentSheetHistoryEntryIfNeeded, A.ScaffoldState__buildBottomSheet_removeCurrentBottomSheet, A.ScaffoldState__buildBottomSheet_removeCurrentBottomSheet_closure, A.ScaffoldState__buildBottomSheet_closure, A.ScaffoldState__buildBottomSheet_removeEntryIfNeeded, A.ScaffoldState__buildBottomSheet_closure0, A.ScaffoldState__buildBottomSheet_closure1, A.ScaffoldState__buildBottomSheet__closure, A.ScaffoldState__buildBottomSheet_closure2, A.ScaffoldState_showBottomSheet_closure, A.ScaffoldState__moveFloatingActionButton_closure, A.ScaffoldState_showBodyScrim_closure, A._MaterialScrollbarState_initState_closure, A._MaterialScrollbarState_handleThumbPressStart_closure, A._MaterialScrollbarState_handleThumbPressEnd_closure, A._MaterialScrollbarState_handleHover_closure, A._MaterialScrollbarState_handleHover_closure0, A._MaterialScrollbarState_handleHoverExit_closure, A._SelectableTextState__onControllerChanged_closure, A._SelectableTextState__handleSelectionChanged_closure, A._SelectableTextState_build_closure, A._MaterialSwitchState__handleDragEnd_closure, A.SwitchListTile_build_closure, A.TabController__changeIndex_closure, A._TabBarState__handleTabControllerTick_closure, A._TabBarState_build_closure1, A._TabBarViewState__warpToAdjacentTab_closure, A._TabBarViewState__warpToNonAdjacentTab_closure, A._TabBarViewState__warpToNonAdjacentTab_closure0, A._TextFieldState__handleFocusChanged_closure, A._TextFieldState__handleSelectionChanged_closure, A._TextFieldState__handleHover_closure, A._TextFieldState_build_closure, A._TextFieldState_build_closure0, A._TextFieldState_build_closure1, A._TextFieldState_build_closure2, A._TextFieldState_build_closure3, A._TextFieldState_build_closure4, A._TextFieldState_build__closure, A._TextSelectionToolbarOverflowableState_build_closure, A._TextSelectionToolbarOverflowableState_build__closure, A.ThemeData_localize_closure, A._HourControl_build_closure1, A._HourControl_build_closure0, A._HourControl_build_closure, A._MinuteControl_build_closure1, A._MinuteControl_build_closure0, A._MinuteControl_build_closure, A._DayPeriodControl_build_closure, A._DayPeriodControl_build_closure0, A._DialState_initState_closure, A._DialState_initState__closure0, A._DialState_initState_closure0, A._DialState_initState__closure, A._DialState__updateThetaForPan_closure, A._DialState__selectHour_getAmPmTime, A._DialState__build24HourRing_closure, A._DialState__build24HourRing_closure0, A._DialState__build12HourRing_closure, A._DialState__buildMinutes_closure, A._TimePickerInputState__validateHour_closure, A._TimePickerInputState__validateMinute_closure, A._HourMinuteTextFieldState_initState_closure, A._HourMinuteTextFieldState_initState__closure, A._HourMinuteTextFieldState_build_closure, A._TimePickerDialogState__handleTimeChanged_closure, A._TimePickerDialogState__handleEntryModeChanged_closure, A._TimePickerDialogState__handleOk_closure, A._TimePickerState__vibrate_closure, A._TimePickerState__handleHourMinuteModeChanged_closure, A._TimePickerState__handleEntryModeToggle_closure, A._TimePickerState__handleTimeChanged_closure, A._TimePickerState__handleHourSelected_closure, A.ToggleButtons_build__closure, A.ToggleableStateMixin__handleTapDown_closure, A.ToggleableStateMixin__handleTapEnd_closure, A.ToggleableStateMixin__handleFocusHighlightChanged_closure, A.ToggleableStateMixin__handleHoverChanged_closure, A.TooltipState__handleStatusChanged_closure, A.TooltipState__handleStatusChanged_closure0, A.TooltipState__handleStatusChanged_closure1, A.TooltipState__handleStatusChanged_closure2, A.TooltipState__handleStatusChanged_closure3, A.TooltipState__handleStatusChanged_closure4, A.TooltipState__scheduleShowTooltip_show, A.TooltipState__scheduleShowTooltip_closure, A.TooltipState__buildTooltipOverlay_closure2, A.TooltipState__buildTooltipOverlay_closure3, A.TooltipState__buildTooltipOverlay_closure, A.TooltipState__buildTooltipOverlay_closure0, A.TooltipState__buildTooltipOverlay_closure1, A.ImageCache__trackLiveImage_closure, A.ImageCache__trackLiveImage__closure, A._LiveImage_closure, A.ImageProvider_resolveStreamForKey_closure, A.ImageProvider_resolveStreamForKey_closure0, A.MultiFrameImageStreamCompleter__handleAppFrame_closure, A.TextPainter__computePaintOffsetFraction_closure, A.TextPainter__computePaintOffsetFraction_closure1, A.TextPainter__computePaintOffsetFraction_closure0, A.TextPainter__computePaintOffsetFraction_closure2, A.TextPainter__computePaintOffsetFraction_closure3, A.TextPainter__computePaintOffsetFraction_closure4, A.TextPainter__computePaintOffsetFraction_closure5, A.TextPainter_getOffsetForCaret_closure, A.TextPainter_getOffsetForCaret_closure0, A.TextPainter_getOffsetForCaret_closure1, A.TextPainter_getFullHeightForCaret_closure, A.TextStyle_getTextStyle_closure, A.TextStyle_getTextStyle_closure0, A.RenderAnimatedSize_closure, A.RendererBinding_pipelineOwner_closure, A.RendererBinding_pipelineOwner_closure0, A.RenderBox__computeIntrinsicDimension_closure, A.RenderBox_getDryLayout_closure, A.RenderBox_getDistanceToActualBaseline_closure, A.RenderEditable__createShowOnScreenFor_closure, A.Layer_addCompositionCallback_closure, A.Layer_addCompositionCallback_closure0, A.MouseTracker_updateWithEvent_closure, A.MouseTracker_updateWithEvent__closure, A.MouseTracker_updateAllDevices_closure, A.PaintingContext_pushClipRect_closure, A.PaintingContext_pushClipRRect_closure, A.PaintingContext_pushClipPath_closure, A.RenderObject__reportException_closure, A.RenderObject_invokeLayoutCallback_closure, A.RenderObject_toStringDeep_closure, A.RenderParagraph__createShowOnScreenFor_closure, A.RenderSliverList_performLayout_advance, A.RenderSliverFloatingPersistentHeader__updateAnimation_closure, A._TaskEntry_run_closure, A.SchedulerBinding_scheduleWarmUpFrame_closure, A.SchedulerBinding_scheduleWarmUpFrame_closure0, A.SchedulerBinding_scheduleWarmUpFrame_closure1, A.CachingAssetBundle_loadString_closure, A.ServicesBinding__addLicenses_closure, A.RawKeyEvent_RawKeyEvent$fromMessage_dataFromWeb, A.RestorationBucket__rawChildren_closure, A.RestorationBucket__rawValues_closure, A.RestorationBucket__addChildData_closure, A.SystemChrome_setSystemUIOverlayStyle_closure, A.TextInput__loudlyHandleTextInputInvocation_closure, A.TextInput__scheduleHide_closure, A._ActionsState__handleActionChanged_closure, A._FocusableActionDetectorState__updateHighlightMode_closure, A._FocusableActionDetectorState__handleMouseEnter_closure, A._FocusableActionDetectorState__handleMouseExit_closure, A._FocusableActionDetectorState__handleFocusChange_closure, A._AnimatedCrossFadeState_initState__closure, A._AnimatedSwitcherState__newEntry__closure, A._WidgetsAppState_didChangeLocales_closure, A._StreamBuilderBaseState__subscribe__closure1, A._StreamBuilderBaseState__subscribe__closure, A._StreamBuilderBaseState__subscribe_closure0, A._StreamBuilderBaseState__subscribe__closure0, A._FutureBuilderState__subscribe__closure0, A._FutureBuilderState__subscribe__closure, A.AutofillGroupState_register_closure, A._AutomaticKeepAliveState__createCallback_closure, A._AutomaticKeepAliveState__createCallback__closure, A._AutomaticKeepAliveState__createCallback__closure0, A._AutomaticKeepAliveState__createCallback___closure, A.RichText__effectiveTextScalerFrom_closure, A.RichText__effectiveTextScalerFrom_closure0, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure2, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_initServiceExtensions_closure4, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_initServiceExtensions_closure, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure3, A._WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_initServiceExtensions_closure5, A.WidgetsBinding_scheduleAttachRootWidget_closure, A.RootWidget_attach_closure, A.RootWidget_attach_closure0, A._DraggableScrollableSheetScrollController_createScrollPosition_closure, A._DraggableScrollableSheetScrollPosition_goBallistic_tick, A._DraggableScrollableSheetScrollPosition_goBallistic_closure, A.EditableTextState__onChangedClipboardStatus_closure, A.EditableTextState_buttonItemsForToolbarOptions_closure, A.EditableTextState_buttonItemsForToolbarOptions_closure0, A.EditableTextState_buttonItemsForToolbarOptions_closure1, A.EditableTextState_buttonItemsForToolbarOptions_closure2, A.EditableTextState_contextMenuButtonItems_closure, A.EditableTextState_contextMenuButtonItems_closure0, A.EditableTextState_contextMenuButtonItems_closure1, A.EditableTextState_contextMenuButtonItems_closure2, A.EditableTextState_contextMenuButtonItems_closure3, A.EditableTextState_contextMenuButtonItems_closure4, A.EditableTextState_contextMenuButtonItems_closure5, A.EditableTextState_contextMenuButtonItems_closure6, A.EditableTextState__onCursorTick_closure, A.EditableTextState__onCursorTick_closure0, A.EditableTextState__didChangeTextEditingValue_closure, A.EditableTextState__handleFocusChanged_closure, A.EditableTextState__updateSelectionRects_closure, A.EditableTextState__updateSelectionRects_closure1, A.EditableTextState__updateSelectionRects_closure0, A.EditableTextState_insertTextPlaceholder_closure, A.EditableTextState_removeTextPlaceholder_closure, A.EditableTextState_showAutocorrectionPromptRect_closure, A.EditableTextState__semanticsOnCopy_closure, A.EditableTextState__semanticsOnCut_closure, A.EditableTextState__semanticsOnPaste_closure, A.EditableTextState_build_closure, A.EditableTextState_build_closure1, A.EditableTextState_build_closure0, A.EditableTextState_build__closure, A._FocusState__handleFocusChanged_closure, A._FocusState__handleFocusChanged_closure0, A._FocusState__handleFocusChanged_closure1, A._FocusState__handleFocusChanged_closure2, A.FormState__forceRebuild_closure, A.FormState__validate_closure, A.FormFieldState_validate_closure, A.FormFieldState_didChange_closure, A.BuildOwner_buildScope_closure, A.ComponentElement_performRebuild_closure, A.ComponentElement_performRebuild_closure0, A.GestureDetector_build_closure, A.GestureDetector_build_closure1, A.GestureDetector_build_closure3, A.GestureDetector_build_closure5, A.GestureDetector_build_closure7, A.GestureDetector_build_closure9, A.GestureDetector_build_closure11, A.GestureDetector_build_closure13, A._DefaultSemanticsGestureDelegate__getTapHandler_closure, A._DefaultSemanticsGestureDelegate__getLongPressHandler_closure, A._HeroState_startFlight_closure, A._HeroState_endFlight_closure, A._HeroFlight__handleAnimationUpdate_delayedPerformAnimationUpdate, A._ImageState__handleImageFrame_closure, A._ImageState__updateSourceStream_closure, A._ImageState__updateSourceStream_closure0, A.AnimatedWidgetBaseState__handleAnimationChanged_closure, A._InteractiveViewerState__onTransformationControllerChange_closure, A._LayoutBuilderElement__layout_layoutCallback, A._LayoutBuilderElement__layout_layoutCallback_closure, A._LayoutBuilderElement__layout_layoutCallback_closure0, A._LocalizationsState_load__closure, A._MediaQueryFromViewState__updateData_closure, A.ModalBarrier_build_handleDismiss, A._RouteEntry_handlePush_closure, A._RouteEntry_dispose_closure0, A._RouteEntry_dispose__closure, A.NavigatorState__cancelActivePointers_closure, A._NavigatorPopHandlerState_build__closure, A._RenderOverflowBar_performLayout_nextChild, A._OverlayEntryWidgetState__markNeedsBuild_closure, A.OverlayState_insert_closure, A.OverlayState_insertAll_closure, A.OverlayState_rearrange_closure, A.OverlayState__markDirty_closure, A.OverlayState__didChangeEntryOpacity_closure, A._OverlayPortalState__getLocation_closure, A._OverlayPortalState_show_closure, A._OverlayPortalState_hide_closure, A._GlowController_pull_closure, A._PlatformViewLinkState__onPlatformViewCreated_closure, A.SliverReorderableListState_startItemDragReorder_closure, A.SliverReorderableListState_cancelReorder_closure, A.SliverReorderableListState__dragUpdate_closure, A.SliverReorderableListState__dragCancel_closure, A.SliverReorderableListState__dragEnd_closure, A.SliverReorderableListState__dragEnd_closure0, A.SliverReorderableListState__dropCompleted_closure, A.SliverReorderableListState__wrapWithSemantics_moveToStart, A.SliverReorderableListState__wrapWithSemantics_moveToEnd, A.SliverReorderableListState__wrapWithSemantics_moveBefore, A.SliverReorderableListState__wrapWithSemantics_moveAfter, A._ReorderableItemState_dragging_closure, A._ReorderableItemState_rebuild_closure, A._RootRestorationScopeState__loadRootBucketIfNecessary__closure, A.RestorationMixin_registerForRestoration_listener, A._RouterState_restoreState_closure, A._RouterState_restoreState_closure0, A._RouterState_didChangeDependencies_closure, A._RouterState__handleRouteInformationProviderNotification_closure, A._RouterState__rebuild_closure, A._RouterState__handleRouterDelegateNotification_closure, A.TransitionRoute__updateSecondaryAnimation_closure, A.TransitionRoute__updateSecondaryAnimation_closure0, A._ModalScopeState__forceRebuildPage_closure, A.ModalRoute_offstage_closure, A.ModalRoute_changedInternalState_closure, A.ScrollAwareImageProvider_resolveStreamForKey__closure, A._SelectionKeepAliveState_listensTo_closure, A.ScrollNotificationObserverState__notifyListeners_closure, A.ScrollableState_setCanDrag_closure, A.ScrollableState_setCanDrag_closure1, A.RawScrollbarState__maybeStartFadeoutTimer_closure, A.RawScrollbarState__gestures_closure, A.RawScrollbarState__gestures_closure1, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure0, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure1, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure2, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure3, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure4, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure5, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure6, A.MultiSelectableSelectionContainerDelegate__adjustSelection_closure7, A.ShortcutManager__indexShortcuts__closure, A.ShortcutManager_handleKeypress_closure, A.ShortcutManager_handleKeypress_closure0, A.SliverMultiBoxAdaptorElement_performRebuild_closure, A.SliverMultiBoxAdaptorElement_performRebuild_closure0, A.SliverMultiBoxAdaptorElement_createChild_closure, A.SliverMultiBoxAdaptorElement_removeChild_closure, A._SliverPersistentHeaderElement__build_closure, A.Text_build_closure, A.Text_build_closure1, A.Text_build_closure0, A._SelectionHandleOverlayState_build_closure, A._TextSelectionGestureDetectorState_build_closure, A._TextSelectionGestureDetectorState_build_closure1, A._TextSelectionGestureDetectorState_build_closure3, A._TextSelectionGestureDetectorState_build_closure5, A._TextSelectionGestureDetectorState_build_closure7, A._AnimatedState__handleChange_closure, A._throttle__closure, A._ValueListenableBuilderState__valueChanged_closure, A._BlockPickerState_changeColor_closure, A._BlockPickerState_build__closure, A.JsonObjectViewerState__getList_closure, A.JsonObjectViewerState__getList__closure, A.JsonObjectViewerState_getValueWidget_closure, A.JsonObjectViewerState_getValueWidget__closure0, A.JsonObjectViewerState_getValueWidget_closure0, A.JsonObjectViewerState_getValueWidget__closure, A._JsonArrayViewerState_getInkWell_closure, A._JsonArrayViewerState_getInkWell__closure, A._JsonArrayViewerState_getValueWidget_closure, A._JsonArrayViewerState_getValueWidget__closure0, A._JsonArrayViewerState_getValueWidget_closure0, A._JsonArrayViewerState_getValueWidget__closure, A._GlobalCupertinoLocalizationsDelegate_load_closure, A._MaterialLocalizationsDelegate_load_closure, A._WidgetsLocalizationsDelegate_load_closure, A.CustomSlidableAction_build_closure, A._SlidableDismissalState_handleResizeRequestChanged_closure0, A._ActionPaneState_handleRatioChanged_closure, A._SlidableState_handleActionPanelTypeChanged_closure, A.StyledToastWidgetState_initState_closure, A.StyledToastWidgetState_dismissToast_closure, A.StyledToastWidgetState_didChangeMetrics_closure, A.ToastFuture$create_closure, A.inject_closure, A.init_closure, A.Phase_startTagHtml__closure, A.InBodyPhase_startTagBody__closure, A.entitiesByFirstChar_closure, A.entitiesByFirstChar__closure, A.HtmlTokenizer_emitCurrentToken_closure, A.Rule_findRule_closure1, A._CommonRules_referenceLink_closure, A.MediaType_MediaType$parse_closure, A.BillingClientManager__connect_closure, A.InAppPurchaseStoreKitPlatform_registerPlatform_closure, A.InAppPurchaseStoreKitPlatform_registerPlatform_closure0, A.InAppPurchaseStoreKitPlatform_restorePurchases_closure, A.SKPaymentQueueWrapper_handleObserverCallbacks_closure, A.SKPaymentQueueWrapper_handleObserverCallbacks_closure0, A.SKPaymentQueueWrapper_handleObserverCallbacks_closure1, A.SKPaymentQueueWrapper_handleObserverCallbacks_closure2, A.SKPaymentQueueWrapper_handleObserverCallbacks_closure3, A.NumberFormat__formatFixed_computeFractionDigits, A._CountryPickerDialogState_build__closure1, A._CountryPickerDialogState_build__closure, A._IntlPhoneFieldState_initState_closure0, A._IntlPhoneFieldState__changeCountry____closure, A._IntlPhoneFieldState__changeCountry_closure0, A.ClientEntity_primaryContact_closure0, A.ClientEntity_getContact_closure0, A.InvoiceEntity__calculateTax_closure, A.CalculateInvoiceTotal_calculateTaxes__closure0, A.CalculateInvoiceTotal_calculateTaxes__closure2, A.CalculateInvoiceTotal_calculateTaxes__closure4, A.CalculateInvoiceTotal_calculateTaxes_closure1, A.CalculateInvoiceTotal_calculateTaxes_closure3, A.CalculateInvoiceTotal_calculateTaxes_closure5, A._$serializers_closure, A._$serializers_closure0, A._$serializers_closure1, A._$serializers_closure2, A._$serializers_closure3, A._$serializers_closure4, A._$serializers_closure5, A._$serializers_closure6, A._$serializers_closure7, A._$serializers_closure8, A._$serializers_closure9, A._$serializers_closure10, A._$serializers_closure11, A._$serializers_closure12, A._$serializers_closure13, A._$serializers_closure14, A._$serializers_closure15, A._$serializers_closure16, A._$serializers_closure17, A._$serializers_closure18, A._$serializers_closure19, A._$serializers_closure20, A._$serializers_closure21, A._$serializers_closure22, A._$serializers_closure23, A._$serializers_closure24, A._$serializers_closure25, A._$serializers_closure26, A._$serializers_closure27, A._$serializers_closure28, A._$serializers_closure29, A._$serializers_closure30, A._$serializers_closure31, A._$serializers_closure32, A._$serializers_closure33, A._$serializers_closure34, A._$serializers_closure35, A._$serializers_closure36, A._$serializers_closure37, A._$serializers_closure38, A._$serializers_closure39, A._$serializers_closure40, A._$serializers_closure41, A._$serializers_closure42, A._$serializers_closure43, A._$serializers_closure44, A._$serializers_closure45, A._$serializers_closure46, A._$serializers_closure47, A._$serializers_closure48, A._$serializers_closure49, A._$serializers_closure50, A._$serializers_closure51, A._$serializers_closure52, A._$serializers_closure53, A._$serializers_closure54, A._$serializers_closure55, A._$serializers_closure56, A._$serializers_closure57, A._$serializers_closure58, A._$serializers_closure59, A._$serializers_closure60, A._$serializers_closure61, A._$serializers_closure62, A._$serializers_closure63, A._$serializers_closure64, A._$serializers_closure65, A._$serializers_closure66, A._$serializers_closure67, A._$serializers_closure68, A._$serializers_closure69, A._$serializers_closure70, A._$serializers_closure71, A._$serializers_closure72, A._$serializers_closure73, A._$serializers_closure74, A._$serializers_closure75, A._$serializers_closure76, A._$serializers_closure77, A._$serializers_closure78, A._$serializers_closure79, A._$serializers_closure80, A._$serializers_closure81, A._$serializers_closure82, A._$serializers_closure83, A._$serializers_closure84, A._$serializers_closure85, A._$serializers_closure86, A._$serializers_closure87, A._$serializers_closure88, A._$serializers_closure89, A._$serializers_closure90, A._$serializers_closure91, A._$serializers_closure92, A._$serializers_closure93, A._$serializers_closure94, A._$serializers_closure95, A._$serializers_closure96, A._$serializers_closure97, A._$serializers_closure98, A._$serializers_closure99, A._$serializers_closure100, A._$serializers_closure101, A._$serializers_closure102, A._$serializers_closure103, A._$serializers_closure104, A._$serializers_closure105, A._$serializers_closure106, A._$serializers_closure107, A._$serializers_closure108, A._$serializers_closure109, A._$serializers_closure110, A._$serializers_closure111, A._$serializers_closure112, A._$serializers_closure113, A._$serializers_closure114, A._$serializers_closure115, A._$serializers_closure116, A._$serializers_closure117, A._$serializers_closure118, A._$serializers_closure119, A._$serializers_closure120, A._$serializers_closure121, A._$serializers_closure122, A._$serializers_closure123, A._$serializers_closure124, A._$serializers_closure125, A._$serializers_closure126, A._$serializers_closure127, A._$serializers_closure128, A._$serializers_closure129, A._$serializers_closure130, A._$serializers_closure131, A._$serializers_closure132, A._$serializers_closure133, A._$serializers_closure134, A._$serializers_closure135, A._$serializers_closure136, A._$serializers_closure137, A._$serializers_closure138, A._$serializers_closure139, A._$serializers_closure140, A._$serializers_closure141, A._$serializers_closure142, A._$serializers_closure143, A._$serializers_closure144, A._$serializers_closure145, A._$serializers_closure146, A._$serializers_closure147, A._$serializers_closure148, A._$serializers_closure149, A._$serializers_closure150, A._$serializers_closure151, A._$serializers_closure152, A._$serializers_closure153, A._$serializers_closure154, A._$serializers_closure155, A._$serializers_closure156, A._$serializers_closure157, A._$serializers_closure158, A._$serializers_closure159, A._$serializers_closure160, A._$serializers_closure161, A._$serializers_closure162, A._$serializers_closure163, A._$serializers_closure164, A._$serializers_closure165, A._$serializers_closure166, A._$serializers_closure167, A._$serializers_closure168, A._$serializers_closure169, A._$serializers_closure170, A._$serializers_closure171, A._$serializers_closure172, A._$serializers_closure173, A._$serializers_closure174, A._$serializers_closure175, A._$serializers_closure176, A._$serializers_closure177, A._$serializers_closure178, A._$serializers_closure179, A._$serializers_closure180, A._$serializers_closure181, A._$serializers_closure182, A._$serializers_closure183, A._$serializers_closure184, A._$serializers_closure185, A._$serializers_closure186, A._$serializers_closure187, A._$serializers_closure188, A._$serializers_closure189, A._$serializers_closure190, A._$serializers_closure191, A._$serializers_closure192, A._$serializers_closure193, A._$serializers_closure194, A._$serializers_closure195, A._$serializers_closure196, A._$serializers_closure197, A._$serializers_closure198, A._$serializers_closure199, A._$serializers_closure200, A._$serializers_closure201, A._$serializers_closure202, A._$serializers_closure203, A._$serializers_closure204, A._$serializers_closure205, A._$serializers_closure206, A._$serializers_closure207, A._$serializers_closure208, A._$serializers_closure209, A._$serializers_closure210, A._$serializers_closure211, A._$serializers_closure212, A._$serializers_closure213, A._$serializers_closure214, A.VendorEntity_primaryContact_closure0, A.VendorEntity_getContact_closure0, A.InvoiceNinjaAppState__authenticate_closure, A.viewEntitiesByType_closure, A.viewEntityById_closure, A.createEntityByType_closure, A.createEntity_closure, A.editEntity_closure, A.checkForChanges__closure, A._createPersistUI__closure, A.handleClientAction___closure, A.__MergClientPickerState_build__closure0, A.__MergClientPickerState_build_closure0, A.__MergClientPickerState_build_closure1, A.handleCreditAction_closure1, A.handleCreditAction_closure2, A._createViewDashboard__closure, A.handleDocumentAction_showDocument, A.handleDocumentAction_showDocument__closure, A.handleDocumentAction_downloadDocument, A.handleInvoiceAction_closure4, A.handleInvoiceAction_closure5, A.handleInvoiceAction___closure, A.handleProductAction___closure, A.handlePurchaseOrderAction_closure3, A.handlePurchaseOrderAction_closure4, A.handleQuoteAction_closure3, A.handleQuoteAction_closure4, A.handleRecurringInvoiceAction__closure0, A.handleRecurringInvoiceAction__closure1, A._viewReports__closure, A._viewSettings__closure, A._AppBottomBarState_build_closure0, A._AppBottomBarState_build__closure15, A._AppBottomBarState_build_closure1, A._AppBottomBarState_build__closure13, A._AppBottomBarState_build_closure6, A._AppBottomBarState_build_____closure0, A._AppBottomBarState_build__closure3, A._AppBottomBarState_build_closure2, A._AppBottomBarState_build__closure11, A._AppBottomBarState_build_closure3, A._AppBottomBarState_build__closure9, A._AppBottomBarState_build_closure4, A._AppBottomBarState_build__closure7, A._AppBottomBarState_build_closure5, A._AppBottomBarState_build__closure5, A._AppBottomBarState_build_closure__onColumnsPressed, A._AppBottomBarState_build__closure, A._AppBottomBarState_build__closure0, A._AppBottomBarState_build__closure1, A.AppBuilderState_rebuild_closure, A.AppHeader_build__value1, A.AppHeader_build__value2, A.BottomButtons_build_closure, A.BottomButtons_build_closure0, A._ChangeLayoutBannerState_build_closure, A._ChangeLayoutBannerState_build__closure0, A._ChangeLayoutBannerState_build_closure0, A.ConfirmEmail_build_closure, A.ConfirmEmailVM_fromStore_closure0, A.ConfirmEmailVM_fromStore_closure1, A.ConfirmEmailVM_fromStore_closure, A.CopyToClipboard_build_closure, A._DesktopSessionTimeoutState_initState__closure, A._DesktopSessionTimeoutState_build_closure, A._DesktopSessionTimeoutState_build___closure, A.MessageDialog_build_closure0, A.MessageDialog_build_closure1, A.ErrorDialog_build_closure, A.ErrorDialog_build_closure0, A.ErrorDialog_build_closure1, A._HealthCheckDialogState_runCheck_closure, A._HealthCheckDialogState_runCheck__closure, A._HealthCheckDialogState_clearCache_closure, A._HealthCheckDialogState_build_closure, A._HealthCheckDialogState_build_closure0, A._HealthCheckDialogState_build_closure1, A._HealthListTile_build_closure, A.MultiSelectListState_build__closure3, A.MultiSelectListState_build__closure2, A.MultiSelectListState_build___closure, A.MultiSelectListState_build__closure1, A.MultiSelectListState_build_closure6, A.MultiSelectListState_build__closure0, A.MultiSelectListState_build_closure7, A.MultiSelectListState_build__closure, A.MultiSelectListState_build_closure8, A.MultiSelectListState_build_closure9, A._DocumentGridState_build__closure4, A._DocumentGridState_build__closure3, A._DocumentGridState_build___closure0, A._DocumentGridState_build___closure, A.DocumentTile_build_closure, A.EditScaffold_build_closure, A.EditScaffold_build_closure0, A.EditScaffold_build_closure1, A.EditScaffold_build__closure0, A.EditScaffold_build_closure4, A.EditScaffold_build_closure5, A.EntityActionListTile_build_closure, A._EntityListTileState_build_closure0, A._EntityListTileState_build__closure0, A._EntityListTileState_build__closure, A._EntityListTileState_build_closure2, A._EntityListTileState_build_closure1, A._EntitiesListTileState_build__closure0, A._EntitiesListTileState_build__closure, A._EntitiesListTileState_build_closure, A._EntitiesListTileState_build_closure1, A._EntitiesListTileState_build_closure0, A._EntityDropdownState_build_closure, A._EntityDropdownState_build_closure0, A._EntityDropdownState_build_closure6, A._EntityDropdownState_build_closure7, A._EntityDropdownDialogState_build__headerRow, A._EntityDropdownDialogState_build__headerRow__closure0, A._EntityDropdownDialogState_build__headerRow_closure0, A._EntityDropdownDialogState_build__headerRow_closure1, A._EntityDropdownDialogState_build__createList, A.EntityAutocompleteListTile_build_closure, A.EntityHeader_build__value1, A.EntityHeader_build__value2, A.EntityTopFilter_build_closure0, A.EntityTopFilter_build_closure2, A.EntityTopFilter_build_closure1, A.EntityTopFilter_build_closure4, A.EntityTopFilter_build_closure3, A.EntityTopFilter_build_closure6, A.EntityTopFilterHeader_build_closure, A.EntityTopFilterHeader_build_closure1, A.EntityTopFilterHeader_build_closure0, A.EntityTopFilterHeader_build__closure1, A.EntityTopFilterHeader_build_closure4, A.BoolDropdownButton_build_closure2, A.BoolDropdownButton_build_closure4, A._FormColorPickerState__onChanged_closure, A._FormColorPickerState__selectColor_closure, A._FormColorPickerState__showPicker__closure0, A._FormColorPickerState__showPicker__closure1, A._FormColorPickerState_build_closure, A._CustomFieldState_build__closure, A._DatePickerState__onFoucsChanged_closure, A._DatePickerState_build_closure, A._DatePickerState_build_closure0, A._DatePickerState_build__closure, A._DecoratedFormFieldState_build_closure, A._DecoratedFormFieldState_build__closure, A._DurationPickerState__onFoucsChanged_closure, A._DurationPickerState_build__closure, A._GrowableFormFieldState__onFoucsChanged_closure, A.LearnMoreUrl_build_closure, A._PasswordFormFieldState_build_closure, A._PasswordFormFieldState_build__closure, A.SaveCancelButtons_build__closure0, A.SaveCancelButtons_build__closure, A._TimePickerState__onFoucsChanged_closure, A._TimePickerState_build_closure, A._TimePickerState_build__closure1, A.HistoryDrawer_build__closure, A.HistoryDrawer_build_closure0, A._HistoryListTileState_build_closure, A._HistoryListTileState_build_closure1, A._HistoryListTileState_build_closure0, A._InvoiceEmailViewState__onChanged_closure, A._InvoiceEmailViewState__loadTemplate_closure, A._InvoiceEmailViewState__loadTemplate__closure, A._InvoiceEmailViewState__buildTemplateDropdown__closure, A._InvoiceEmailViewState__buildEdit_closure, A._TaxRateDropdownState_didChangeDependencies_closure1, A._TaxRateDropdownState_build_closure2, A._LinkTextRelatedEntityState_build__closure, A._LinkTextRelatedEntityState_build__closure0, A._LinkTextRelatedEntityState_build_closure0, A._LinkTextRelatedEntityState_build_closure, A.LinkTextSpan_closure, A._ListFilterState_onFocusChanged_closure, A._ListFilterState_build_closure, A._ListFilterState_build_closure1, A._ListFilterState_build__closure5, A.ListScaffold_build_closure, A.ListScaffold_build__closure0, A.ListScaffold_build_closure1, A.ListScaffold_build_closure2, A.ListScaffold_build_closure3, A.ListScaffold_build__closure, A.ActivityListTile_build_closure, A.AppListTile_build_closure, A.FilterListTile_build__closure, A._LiveTextState_initState__closure, A._MenuDrawerState_build__companyListItem__closure0, A._MenuDrawerState_build__companyListItem__closure, A._MenuDrawerState_build__companyListItem_closure0, A._MenuDrawerState_build__companyListItem_closure1, A._MenuDrawerState_build_closure4, A._MenuDrawerState_build_closure5, A._MenuDrawerState_build_closure6, A._MenuDrawerState_build_closure7, A._MenuDrawerState_build_closure8, A._MenuDrawerState_build_closure9, A._MenuDrawerState_build_closure10, A._MenuDrawerState_build_closure11, A._MenuDrawerState_build_closure13, A._MenuDrawerState_build_closure12, A._MenuDrawerState_build_closure14, A._MenuDrawerState_build_closure15, A._DrawerTileState_build_closure, A._DrawerTileState_build_closure0, A._DrawerTileState_build_closure1, A._DrawerTileState_build_closure2, A._DrawerTileState_build__closure0, A._DrawerTileState_build__closure, A.SidebarFooter_build_closure, A.SidebarFooter_build__closure3, A.SidebarFooter_build__closure4, A.SidebarFooter_build_closure0, A.SidebarFooter_build_closure1, A.SidebarFooter_build_closure2, A.SidebarFooter_build_closure3, A.SidebarFooter_build__closure1, A.SidebarFooter_build__closure0, A.SidebarFooter_build__closure2, A.SidebarFooter_build_closure4, A.SidebarFooter_build_closure5, A.SidebarFooter_build_closure6, A.SidebarFooter_build_closure7, A.SidebarFooter_build_closure8, A.SidebarFooter_build_closure9, A.SidebarFooterCollapsed_build_closure1, A._showConnectStripe_closure, A._showAbout__closure, A._showAbout__closure0, A._showAbout__closure2, A._showAbout__closure1, A._showAbout__closure3, A._showAbout____closure, A._showAbout______closure, A._showAbout______closure0, A._showAbout______closure1, A._showAbout______closure2, A._showAbout____closure0, A._showAbout____closure1, A._showAbout____closure2, A._showAbout____closure3, A._showAbout____closure4, A._showAbout____closure5, A._showAbout____closure6, A._showAbout__closure4, A._showAbout__closure5, A._showAbout__closure6, A._showAbout__closure7, A._showAbout__closure8, A._showAbout__closure9, A._showAbout__closure10, A._showAbout__closure11, A._showAbout__closure12, A._ContactUsDialogState__sendMessage_closure, A._ContactUsDialogState__sendMessage__closure0, A._ContactUsDialogState__sendMessage__closure, A._ContactUsDialogState_build_closure, A._ContactUsDialogState_build_closure0, A._ContactUsDialogState_build__closure, A.MenuDrawerVM_fromStore__closure1, A._theState_closure, A._SelectRow_build_closure, A._DropDownMultiSelectState_initState__closure, A._DropDownMultiSelectState_build__closure, A._DropDownMultiSelectState_build___closure0, A._DropDownMultiSelectState_build___closure1, A.PortalLinks_build_closure, A.PortalLinks_build_closure0, A.SearchText_build_closure, A._AccountSmsVerificationState__sendCode_closure, A._AccountSmsVerificationState__sendCode__closure0, A._AccountSmsVerificationState__sendCode__closure, A._AccountSmsVerificationState__verifyCode_closure, A._AccountSmsVerificationState__verifyCode__closure0, A._AccountSmsVerificationState__verifyCode__closure, A._AccountSmsVerificationState_build_closure2, A._AccountSmsVerificationState_build_closure3, A._AccountSmsVerificationState_build_closure4, A._AccountSmsVerificationState_build_closure5, A._UserSmsVerificationState__sendCode_closure, A._UserSmsVerificationState__sendCode__closure0, A._UserSmsVerificationState__sendCode__closure, A._UserSmsVerificationState__verifyCode_closure, A._UserSmsVerificationState__verifyCode__closure0, A._UserSmsVerificationState__verifyCode__closure, A._UserSmsVerificationState_build_closure0, A._UserSmsVerificationState_build_closure1, A._UserSmsVerificationState_build_closure2, A._UserSmsVerificationState_build_closure3, A._SystemLogViewerState_build__closure, A._SystemLogViewerState_build___closure, A._SystemLogViewerState_build____closure, A.AppPaginatedDataTableState__handleDataSourceChanged_closure, A.AppPaginatedDataTableState_pageTo_closure, A.AppPaginatedDataTableState__getRows_closure, A.EntityDataTableSource_getRow_closure1, A.EntityDataTableSource_getRow_closure0, A.EntityDataTableSource_getRow_closure3, A.EntityDataTableSource_getRow__closure0, A.EntityDataTableSource_getRow__closure, A._EntityListState_build_closure6, A._EntityListState_build__closure0, A._EntityListState_build__closure4, A._EntityListState_build_closure7, A._EntityListState_build__closure12, A._UpgradeDialogState_initState_closure0, A._UpgradeDialogState_initStoreInfo_closure, A._UpgradeDialogState_initStoreInfo_closure0, A._UpgradeDialogState_initStoreInfo_closure1, A._UpgradeDialogState_initStoreInfo_closure2, A._UpgradeDialogState_build_closure, A._UpgradeDialogState_build_closure0, A._UpgradeDialogState_build_closure1, A._UpgradeDialogState__buildProductList__closure, A._UpgradeDialogState_showPendingUI_closure, A._UpgradeDialogState_deliverProduct_closure, A._UpgradeDialogState_handleError_closure, A._VariableGrid_build___closure, A.ViewScaffold_build_closure, A.ViewScaffold_build_closure0, A.ViewScaffold_build_closure1, A.ViewScaffold_build_closure2, A.ViewScaffold_build_closure3, A.ViewScaffold_build__closure, A._LoginState__submitSignUpForm_closure, A._LoginState__submitSignUpForm__closure1, A._LoginState__submitSignUpForm__closure0, A._LoginState__submitSignUpForm__closure, A._LoginState__submitLoginForm_closure, A._LoginState__submitLoginForm__closure0, A._LoginState__submitLoginForm__closure, A._LoginState_build_closure0, A._LoginState_build_closure, A._LoginState_build__closure7, A._LoginState_build_closure1, A._LoginState_build__closure6, A._LoginState_build__closure5, A._LoginState_build__closure4, A._LoginState_build__closure3, A._LoginState_build_closure10, A._LoginState_build_closure11, A._LoginState_build_closure12, A._LoginState_build__closure2, A._LoginState_build_closure13, A._LoginState_build__closure1, A._LoginState_build_closure14, A._LoginState_build__closure0, A._LoginState_build_closure15, A._LoginState_build__closure, A._LoginState_build_closure16, A._LoginState_build_closure17, A.BankAccountListItem_build_closure1, A.BankAccountListItem_build_closure0, A.BankAccountListVM_fromStore_closure1, A.BankAccountScreen_connectAccounts__closure, A.BankAccountScreen_connectAccounts__closure0, A.BankAccountScreen_connectAccounts__closure1, A.BankAccountScreen_connectAccounts__closure2, A.BankAccountScreen_connectAccounts__closure3, A.BankAccountScreen_build_closure15, A.BankAccountScreen_build_closure14, A.BankAccountScreen_build_closure, A.BankAccountScreen_build_closure0, A.BankAccountScreen_build_closure1, A.BankAccountScreen_build_closure2, A.BankAccountScreen_build_closure3, A.BankAccountScreen_build_closure4, A.BankAccountScreen_build_closure11, A._BankAccountEditState__onChanged_closure0, A.BankAccountEditVM_BankAccountEditVM$fromStore__closure, A._BankAccountViewState_build_closure, A.BankAccountViewVM_BankAccountViewVM$fromStore_closure, A.ClientListItem_build__closure2, A.ClientListItem_build__closure1, A.ClientListItem_build__closure5, A.ClientListItem_build__closure4, A.ClientListVM_fromStore_closure1, A._ClientPdfViewState_loadPDF_closure, A._ClientPdfViewState_loadPDF__closure1, A._ClientPdfViewState_loadPDF__closure, A._ClientPdfViewState_build__closure6, A._ClientPdfViewState_build__closure5, A._ClientPdfViewState_build_closure6, A._ClientPdfViewState_build_closure7, A._ClientPdfViewState_build__closure3, A._ClientPdfViewState_build_closure8, A._ClientPdfViewState_build__closure1, A._ClientPdfViewState_build_closure9, A._ClientPdfViewState_build__closure0, A._ClientPdfViewState_build__closure, A._ClientPdfViewState_build_closure12, A.ClientPresenter_getField_closure, A.ClientScreen_build_closure10, A.ClientScreen_build_closure9, A.ClientScreen_build_closure, A.ClientScreen_build_closure6, A._ClientEditState_build__closure, A.ClientEditBillingAddressState__onChanged_closure0, A.ClientEditBillingAddressState_build_closure0, A._ClientEditContactsState_build__closure, A._ClientEditContactsState_build_closure1, A.ContactEditDetailsState__onChanged_closure0, A.ContactEditDetailsState_build__closure0, A.ContactEditDetailsState_build_closure13, A.ContactEditDetailsState_build_closure14, A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure, A.ClientEditDetailsState__onChanged_closure0, A.ClientEditFooter_build_closure, A.ClientEditNotesState__onChanged_closure0, A.ClientEditSettingsState__onChanged_closure0, A.ClientEditShippingAddressState__onChanged_closure0, A.ClientEditShippingAddressState_build_closure0, A.ClientEditVM_ClientEditVM$fromStore_closure3, A.ClientEditVM_ClientEditVM$fromStore_closure2, A.ClientEditVM_ClientEditVM$fromStore__closure1, A._ClientViewState_build__closure, A._ClientViewState_build__closure0, A._ClientViewState_build__closure1, A._ClientViewState_build__closure2, A._ClientViewState_build__closure3, A._ClientViewState_build__closure4, A._ClientViewDetailsState_build__buildDetailsList, A._ClientViewDetailsState_build__buildDetailsList__closure1, A._ClientViewDetailsState_build__buildDetailsList___closure0, A._ClientViewDetailsState_build__buildDetailsList__closure2, A._ClientViewDetailsState_build__buildDetailsList___closure, A._ClientViewDetailsState_build__buildDetailsList_closure0, A._ClientViewDetailsState_build__buildDetailsList__closure0, A._ClientViewDetailsState_build__buildDetailsList_closure1, A._ClientViewDetailsState_build__buildDetailsList__closure, A._ClientViewDetailsState_build__buildDetailsList_closure2, A._ClientViewDetailsState_build__buildDetailsList_closure3, A.ClientViewDocuments_build_closure0, A._ClientViewFullwidthState_build__closure, A._ClientViewFullwidthState_build__closure0, A._ClientViewFullwidthState_build__closure1, A._ClientViewFullwidthState_build__closure3, A._ClientViewFullwidthState_build__closure4, A._ClientViewFullwidthState_build__closure5, A._ClientViewFullwidthState_build__closure6, A._ClientViewFullwidthState_build__closure7, A._ClientViewLedgerState_build__closure0, A._ClientViewLedgerState_build__closure, A.ClientOverview_build_closure1, A.ClientOverview_build_closure2, A.ClientOverview_build_closure3, A.ClientViewPaymentMethods_build__closure0, A.ClientViewPaymentMethods_build__closure1, A.ClientViewPaymentMethods_build__closure2, A._CompanyGatewayListState_build_closure1, A._CompanyGatewayListState_build__closure, A.CompanyGatewayListItem_build_closure0, A.CompanyGatewayScreen_build_closure11, A.CompanyGatewayScreen_build_closure10, A.CompanyGatewayScreen_build_closure1, A.CompanyGatewayScreen_build_closure3, A.CompanyGatewayScreen_build_closure9, A.CompanyGatewayScreenVM_fromStore__closure, A._CompanyGatewayEditState_build_closure1, A._CompanyGatewayEditState_build_closure2, A._CompanyGatewayEditState_build__closure, A.GatewayConfigSettings_build_closure, A._LimitEditorState__onTextChange_closure, A._LimitEditorState_build__closure0, A._LimitEditorState_build__closure, A._FeesEditorState__onChanged_closure0, A.CompanyGatewayEditVM_CompanyGatewayEditVM$fromStore__closure1, A._CompanyGatewayViewState_build_closure1, A._CompanyGatewayViewState_build_closure, A._CompanyGatewayViewState_build_closure0, A._CompanyGatewayOverview_build_closure, A._CompanyGatewayOverview_build_closure0, A._CompanyGatewayOverview_build_closure1, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore_____closure, A.CreditListItem_build__closure2, A.CreditListItem_build__closure1, A.CreditListItem_build__closure5, A.CreditListItem_build__closure4, A.CreditListVM_fromStore_closure1, A.CreditPresenter_getField_closure, A.CreditScreen_build_closure10, A.CreditScreen_build_closure9, A.CreditScreen_build_closure, A.CreditScreen_build_closure6, A._CreditEditState_build_closure, A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure0, A.CreditEditVM_CreditEditVM$fromStore__closure1, A._DashboardChartState__onSelectionChanged_closure1, A._DashboardChartState_build__closure, A._DashboardChartState_build___closure, A._DashboardDateRangePickerState_build__closure6, A._DashboardDateRangePickerState_build__closure5, A._DashboardDateRangePickerState_build__closure4, A._DashboardDateRangePickerState_build__closure3, A._DashboardDateRangePickerState_build__closure2, A._DashboardDateRangePickerState_build__closure1, A._DashboardDateRangePickerState_build__closure0, A._DashboardDateRangePickerState_build_closure9, A.DashboardPanels__header_closure__showSettings, A.DashboardPanels__header__closure5, A.DashboardPanels__header__closure6, A.DashboardPanels__header__closure7, A.DashboardPanels__header__closure8, A.DashboardPanels__runningTasks__closure2, A.DashboardPanels__runningTasks__closure1, A.DashboardPanels__runningTasks__closure0, A.DashboardPanels_build__closure, A.DashboardPanels_build__closure0, A.DashboardPanels_build__closure1, A.DashboardPanels_build__closure4, A.DashboardPanels_build__closure6, A.DashboardPanels_build__closure8, A.DashboardPanels_build__closure10, A.DashboardPanels_build__closure12, A.__OverviewPanelState_build_closure0, A.__DashboardSettingsState_build__closure9, A.__DashboardSettingsState_build__closure8, A.__DashboardSettingsState_build__closure7, A.__DashboardSettingsState_build_closure3, A.__DashboardSettingsState_build_closure4, A.__DashboardSettingsState_build__closure3, A.__DashboardSettingsState_build_closure5, A.__DashboardSettingsState_build__closure5, A.__DashboardSettingsState_build_closure7, A.__DashboardSettingsState_build__closure1, A.__DashboardSettingsState_build__closure, A._DashboardFieldState_build__closure2, A._DashboardFieldState_build__closure1, A._DashboardFieldState_build_closure2, A._DashboardFieldState_build_closure3, A._DashboardScreenState_build__closure1, A._DashboardScreenState_build_closure1, A._DashboardScreenState_build_closure2, A._DashboardScreenState_build__closure, A._CustomTabBarView_build__closure, A._CustomTabBarView_build_closure0, A._CustomTabBarView_build_closure1, A._CustomTabBarView_build_closure2, A.DashboardVM_fromStore_closure6, A.SidebarScaffold_build_closure, A._DashboardSidebar_build_closure, A.DesignListItem_build_closure1, A.DesignListItem_build_closure0, A.DesignListVM_fromStore_closure1, A.DesignScreen_build_closure10, A.DesignScreen_build_closure9, A.DesignScreen_build_closure, A.DesignScreen_build_closure6, A._DesignEditState__onChanged_closure0, A._DesignEditState__onHtmlChanged_closure, A._DesignEditState__onHtmlChanged__closure, A._DesignEditState__loadPreview_closure, A._DesignEditState__loadPreview__closure, A._DesignEditState__setDraftMode_closure, A._DesignSettingsState_build_closure4, A._DesignSettingsState_build_closure5, A._DesignSettingsState_build_closure6, A.__DesignImportDialogState_build_closure0, A.__DesignImportDialogState_build_closure1, A.DesignEditVM_DesignEditVM$fromStore__closure, A._DesignViewState_build_closure7, A.DesignViewVM_DesignViewVM$fromStore_closure, A.DocumentListItem_build__closure2, A.DocumentListItem_build__closure1, A.DocumentListItem_build__closure5, A.DocumentListItem_build__closure4, A.DocumentListBuilder_build__closure, A.DocumentListVM_fromStore_closure1, A.DocumentScreen_build_closure14, A.DocumentScreen_build_closure13, A.DocumentScreen_build_closure6, A._DocumentEditState__onChanged_closure0, A.DocumentEditVM_DocumentEditVM$fromStore__closure, A._ExpenseEditState_build_closure, A.ExpenseEditDetailsState__onChanged_closure0, A.ExpenseEditNotesState__onChanged_closure0, A.ExpenseEditNotesState_build_closure0, A.ExpenseEditSettingsState__onChanged_closure0, A.ExpenseEditSettingsState_build__closure10, A.ExpenseEditSettingsState_build__closure2, A.ExpenseEditSettingsState_build_closure9, A.ExpenseEditVM_ExpenseEditVM$fromStore__closure5, A.ExpenseListItem_build__closure2, A.ExpenseListItem_build__closure1, A.ExpenseListItem_build__closure5, A.ExpenseListItem_build__closure4, A.ExpenseListVM_fromStore_closure1, A.ExpenseScreen_build_closure18, A.ExpenseScreen_build_closure17, A.ExpenseScreen_build_closure4, A.ExpenseScreen_build_closure5, A.ExpenseScreen_build_closure13, A._ExpenseViewState_build__closure, A._ExpenseViewState_build__closure0, A._ExpenseViewState_build__closure1, A._ExpenseViewState_build__closure2, A.ExpenseViewDocuments_build_closure0, A.ExpenseOverview_build__buildDetailsList, A._ExpenseCategoryEditState__onChanged_closure0, A.ExpenseCategoryEditVM_ExpenseCategoryEditVM$fromStore__closure, A.ExpenseCategoryListItem_build_closure1, A.ExpenseCategoryListItem_build_closure0, A.ExpenseCategoryListVM_fromStore_closure1, A.ExpenseCategoryScreen_build_closure10, A.ExpenseCategoryScreen_build_closure9, A.ExpenseCategoryScreen_build_closure, A.ExpenseCategoryScreen_build_closure6, A._ExpenseCategoryViewState_build_closure, A.ExpenseCategoryViewVM_ExpenseCategoryViewVM$fromStore_closure, A._GroupEditState__onChanged_closure0, A.GroupEditVM_GroupEditVM$fromStore__closure, A.GroupListItem_build_closure1, A.GroupListItem_build_closure0, A.GroupListVM_fromStore_closure1, A.GroupSettingsScreen_build_closure6, A.GroupSettingsScreen_build_closure5, A.GroupSettingsScreen_build_closure, A.GroupSettingsScreen_build_closure2, A._GroupViewState_build_closure2, A._GroupViewState_build_closure, A._GroupViewState_build_closure1, A.GroupViewVM_GroupViewVM$fromStore_closure, A._InvoiceEditState_build_closure, A.InvoiceEditContacts_build__closure0, A.InvoiceEditContacts_build__closure, A._ContactListTileState_build_closure2, A._ContactListTileState_build___closure, A.InvoiceEditDesktopState__onChanged_closure0, A.InvoiceEditDesktopState_build_closure5, A.InvoiceEditDesktopState_build_closure6, A.InvoiceEditDesktopState_build__closure11, A.InvoiceEditDesktopState_build_closure29, A.InvoiceEditDesktopState_build_closure33, A.__PdfPreviewState_loadPdf_closure, A.__PdfPreviewState__loadPdf_closure, A.__PdfPreviewState__loadPdf__closure0, A.__PdfPreviewState__loadPdf__closure, A.__PdfPreviewState_build_closure, A.__PdfPreviewState_build__closure0, A.__PdfPreviewState_build_closure0, A.__PdfPreviewState_build__closure, A.InvoiceEditDetailsState__onChanged_closure0, A.InvoiceEditDetailsState_build_closure32, A.InvoiceEditFooter_build_closure, A._InvoiceEditItemsState_build_closure0, A.ItemEditDetailsState__onTextChanged_closure, A.ItemEditDetailsState_build_closure, A.ItemEditDetailsState_build_closure0, A.ItemEditDetailsState_build__closure2, A.ItemEditDetailsState_build__closure1, A.ItemEditDetailsState_build__closure0, A.ItemEditDetailsState_build__closure, A._InvoiceEditItemsDesktopState__updateTable_closure, A._InvoiceEditItemsDesktopState__onChanged_closure, A._InvoiceEditItemsDesktopState_build_closure1, A._InvoiceEditItemsDesktopState_build__closure35, A._InvoiceEditItemsDesktopState_build_closure6, A._InvoiceEditItemsDesktopState_build__closure32, A._InvoiceEditItemsDesktopState_build__closure21, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure1, A.InvoiceEditNotesState__onChanged_closure0, A.InvoiceEditPDFState_didChangeDependencies_closure, A.InvoiceEditPDFState_didChangeDependencies__closure0, A.InvoiceEditPDFState_didChangeDependencies__closure, A.InvoiceEditVM_InvoiceEditVM$fromStore__closure2, A._InvoiceItemSelectorState__toggleEntity_closure, A._InvoiceItemSelectorState_build__productList, A._InvoiceItemSelectorState_build__productList__closure0, A._InvoiceItemSelectorState_build__taskList, A._InvoiceItemSelectorState_build__taskList__closure0, A._InvoiceItemSelectorState_build__expenseList, A._InvoiceItemSelectorState_build__expenseList__closure0, A._InvoiceItemSelectorState_build__closure0, A._InvoiceItemSelectorState_build_closure3, A._InvoiceItemSelectorState_build__closure, A._InvoiceItemSelectorState_build_closure4, A._InvoiceItemSelectorState_build_closure5, A.InvoiceTaxDetails_build_closure, A.InvoiceListItem_build__closure2, A.InvoiceListItem_build__closure1, A.InvoiceListItem_build__closure5, A.InvoiceListItem_build__closure4, A.InvoiceListVM_fromStore_closure1, A._InvoicePdfViewState_loadPdf_closure, A._InvoicePdfViewState_loadPdf__closure1, A._InvoicePdfViewState_loadPdf__closure, A._InvoicePdfViewState_build__closure0, A._InvoicePdfViewState_build__closure, A._InvoicePdfViewState_build_closure2, A._InvoicePdfViewState_build_closure3, A._InvoicePdfViewState_build_closure4, A.InvoicePresenter_getField_closure, A.InvoiceScreen_build_closure20, A.InvoiceScreen_build_closure19, A.InvoiceScreen_build_closure7, A.InvoiceScreen_build_closure15, A._InvoiceViewState_build__closure5, A._InvoiceViewState_build__closure, A._InvoiceViewState_build__closure0, A._InvoiceViewState_build__closure1, A._InvoiceViewState_build__closure2, A._InvoiceViewState_build__closure3, A._InvoiceViewState_build__closure4, A._InvitationListTile_build_closure0, A._InvitationListTile_build_closure2, A.InvoiceViewDocuments_build_closure1, A._InvoiceViewHistoryState_build__closure, A.InvoiceOverview_build___closure, A._PaymentEditState__onChanged_closure0, A._PaymentEditState_build__closure1, A._PaymentEditState_build_closure15, A._PaymentEditState_build_closure16, A._PaymentableEditorState_build_closure7, A.PaymentEditVM_PaymentEditVM$fromStore__closure, A.PaymentListItem_build__closure2, A.PaymentListItem_build__closure1, A.PaymentListItem_build__closure5, A.PaymentListItem_build__closure4, A.PaymentListVM_fromStore_closure1, A.PaymentScreen_build_closure21, A.PaymentScreen_build_closure20, A.PaymentScreen_build_closure7, A.PaymentScreen_build_closure8, A.PaymentScreen_build_closure16, A._PaymentRefundState__onChanged_closure, A._PaymentRefundState_build_onSavePressed_closure, A._PaymentRefundState_build_closure6, A._PaymentRefundState_build_closure7, A._PaymentableEditorState_build__closure2, A._PaymentableEditorState_build_closure12, A._PaymentViewState_build__closure2, A._PaymentViewState_build__closure, A._PaymentViewState_build__closure0, A._PaymentViewState_build__closure1, A._PaymentTermEditState__onChanged_closure0, A.PaymentTermEditVM_PaymentTermEditVM$fromStore__closure, A.PaymentTermListItem_build_closure1, A.PaymentTermListItem_build_closure0, A.PaymentTermListVM_fromStore_closure1, A.PaymentTermScreen_build_closure10, A.PaymentTermScreen_build_closure9, A.PaymentTermScreen_build_closure, A.PaymentTermScreen_build_closure6, A._PaymentTermViewState_build_closure, A.PaymentTermViewVM_PaymentTermViewVM$fromStore_closure, A._ProductEditState__onChanged_closure0, A.ProductEditVM_ProductEditVM$fromStore__closure, A.ProductListItem_build__closure2, A.ProductListItem_build__closure1, A.ProductListItem_build__closure5, A.ProductListItem_build__closure4, A.ProductListVM_fromStore_closure1, A.ProductScreen_build_closure11, A.ProductScreen_build_closure10, A.ProductScreen_build_closure, A.ProductScreen_build_closure0, A.ProductScreen_build_closure7, A._ProductViewState_build__closure, A._ProductViewState_build__closure0, A._ProductViewState_build__closure1, A.ProductViewDocuments_build_closure0, A._ProjectEditState__onChanged_closure0, A.ProjectEditVM_ProjectEditVM$fromStore__closure1, A.ProjectListItem_build__closure2, A.ProjectListItem_build__closure1, A.ProjectListItem_build__closure5, A.ProjectListItem_build__closure4, A.ProjectListVM_fromStore_closure1, A.ProjectScreen_build_closure10, A.ProjectScreen_build_closure9, A.ProjectScreen_build_closure, A.ProjectScreen_build_closure6, A._ProjectViewState_build__closure, A._ProjectViewState_build__closure0, A._ProjectViewState_build__closure1, A.ProjectViewDocuments_build_closure0, A._ProjectOverviewState_initState__closure, A._ProjectOverviewState_build__buildView, A._ProjectOverviewState_build_closure, A._PurchaseOrderEditState_build_closure, A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure0, A.PurchaseOrderEditVM_PurchaseOrderEditVM$fromStore__closure1, A.PurchaseOrderListItem_build__closure2, A.PurchaseOrderListItem_build__closure1, A.PurchaseOrderListItem_build__closure5, A.PurchaseOrderListItem_build__closure4, A.PurchaseOrderListVM_fromStore_closure1, A.PurchaseOrderPresenter_getField_closure, A.PurchaseOrderScreen_build_closure16, A.PurchaseOrderScreen_build_closure15, A.PurchaseOrderScreen_build_closure3, A.PurchaseOrderScreen_build_closure11, A._QuoteEditState_build_closure, A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure0, A.QuoteEditVM_QuoteEditVM$fromStore__closure1, A.QuoteListItem_build__closure2, A.QuoteListItem_build__closure1, A.QuoteListItem_build__closure5, A.QuoteListItem_build__closure4, A.QuoteListVM_fromStore_closure1, A.QuotePresenter_getField_closure, A.QuoteScreen_build_closure18, A.QuoteScreen_build_closure17, A.QuoteScreen_build_closure5, A.QuoteScreen_build_closure13, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore__closure5, A.RecurringExpenseListItem_build__closure2, A.RecurringExpenseListItem_build__closure1, A.RecurringExpenseListItem_build__closure5, A.RecurringExpenseListItem_build__closure4, A.RecurringExpenseListVM_fromStore_closure1, A.RecurringExpenseScreen_build_closure17, A.RecurringExpenseScreen_build_closure16, A.RecurringExpenseScreen_build_closure4, A.RecurringExpenseScreen_build_closure12, A._RecurringInvoiceEditState_build_closure, A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure0, A.RecurringInvoiceEditVM_RecurringInvoiceEditVM$fromStore__closure1, A.RecurringInvoiceListItem_build__closure2, A.RecurringInvoiceListItem_build__closure1, A.RecurringInvoiceListItem_build__closure5, A.RecurringInvoiceListItem_build__closure4, A.RecurringInvoiceListVM_fromStore_closure1, A.RecurringInvoiceScreen_build_closure17, A.RecurringInvoiceScreen_build_closure16, A.RecurringInvoiceScreen_build_closure4, A.RecurringInvoiceScreen_build_closure12, A.ReportsScreen_build__closure6, A.ReportsScreen_build__closure3, A.ReportsScreen_build_closure21, A.ReportsScreen_build__closure1, A.ReportsScreen_build_closure24, A.ReportsScreen_build__closure, A.ReportsScreen_build_closure26, A._ReportDataTableState_didChangeDependencies_closure, A.ReportResult_tableColumns_closure, A.ReportResult_tableFilters_closure2, A.ReportResult_tableFilters__closure3, A.ReportResult_tableFilters___closure, A.ReportResult_tableRow_closure, A.ReportResult_tableRow_closure0, A.ReportsScreenVM_fromStore__closure, A._ScheduleEditState__onChanged_closure, A._ScheduleEditState_build___closure6, A._ScheduleEditState_build__closure16, A.ScheduleEditVM_ScheduleEditVM$fromStore__closure, A.ScheduleListItem_build_closure1, A.ScheduleListItem_build_closure0, A.ScheduleListVM_fromStore_closure1, A.ScheduleScreen_build_closure10, A.ScheduleScreen_build_closure9, A.ScheduleScreen_build_closure, A.ScheduleScreen_build_closure6, A._ScheduleViewState_build_closure, A.ScheduleViewVM_ScheduleViewVM$fromStore_closure, A._AccountManagementState__onChanged_closure0, A._AccountOverview_build__getDataStats, A._AccountOverview_build_closure, A._AccountOverview_build_closure0, A._AccountOverview_build_closure6, A._AccountOverview_build_closure7, A._AccountOverview_build_closure8, A._AccountOverview_build_closure9, A._AccountOverview_build_closure10, A._AccountOverview_build_closure11, A._AccountOverview_build_closure12, A._AccountOverview_build_closure13, A.AccountManagementVM_fromStore__closure2, A.AccountManagementVM_fromStore_closure4, A._ClientPortalState__validateSubdomain_closure, A._ClientPortalState__validateSubdomain_closure0, A._ClientPortalState__validateSubdomain__closure, A._ClientPortalState__validateSubdomain__closure0, A._ClientPortalState__validateSubdomain___closure0, A._ClientPortalState__validateSubdomain___closure, A._ClientPortalState__onChanged_closure, A._ClientPortalState_build_closure3, A._ClientPortalState_build_closure4, A._ClientPortalState_build_closure10, A._ClientPortalState_build_closure12, A.ClientPortalVM_fromStore__closure, A._CompanyDetailsState__onSettingsChanged_closure0, A._CompanyDetailsState_build__closure6, A._CompanyDetailsState_build__closure7, A._CompanyDetailsState_build_closure10, A._CompanyDetailsState_build_closure17, A.CompanyDetailsVM_fromStore__closure4, A._CustomFormFieldState_build_closure0, A._CustomFormFieldState_build__closure, A.CustomFieldsVM_fromStore__closure, A._DeviceSettingsState_build__closure6, A._DeviceSettingsState_build__closure5, A._DeviceSettingsState_build_closure15, A._DeviceSettingsState_build_closure21, A._DeviceSettingsState_build_closure22, A.DeviceSettingsVM_fromStore_closure20, A._EmailSettingsState_build_closure0, A._EmailSettingsState_build_closure3, A._EmailSettingsState_build_closure22, A.EmailSettingsVM_fromStore__closure, A._ExpenseSettingsState_build_closure7, A.ExpenseSettingsVM_fromStore__closure, A._GeneratedNumbersState__onChanged_closure, A._EntityNumberSettingsState__onChanged_closure, A._EntityNumberSettingsState_build_closure, A.HelpPanel_build__closure, A.GeneratedNumbersVM_fromStore__closure, A._ImportExportState_build__closure9, A._ImportExportState_build__closure10, A._ImportExportState_build_closure1, A._ImportExportState_build__closure8, A._ImportExportState_build__closure7, A._ImportExportState_build__closure6, A._ImportExportState_build__closure5, A._ImportExportState_build__closure4, A._ImportExportState_build__closure3, A._ImportExportState_build__closure2, A._ImportExportState_build_closure12, A._ImportExportState_build__closure, A._ImportExportState_build___closure0, A._ImportExportState_build___closure, A._FileImportState_uploadJsonFile_closure, A._FileImportState_uploadJsonFile__closure0, A._FileImportState_uploadJsonFile__closure, A._FileImportState_uploadFile_closure, A._FileImportState_uploadFile__closure0, A._FileImportState_uploadFile__closure, A._FileImportState_build_closure1, A._FileImportState_build__closure1, A._FileImportState_build__closure0, A._FileImportState_build__closure, A._FileImportState_build_closure4, A.__FileMapperState_build__closure5, A.__FileMapperState_build__closure4, A.__FileMapperState_build__closure3, A.__FileMapperState_build_closure5, A.__FileMapperState_build_closure6, A.__FileMapperState_build__closure, A.__FileMapperState_build___closure0, A.__FileMapperState_build___closure, A._InvoiceDesignState__onChanged_closure0, A._InvoiceDesignState_build_closure0, A._InvoiceDesignState_build__closure28, A._InvoiceDesignState_build__closure27, A._InvoiceDesignState_build__closure25, A._InvoiceDesignState_build__closure24, A._InvoiceDesignState_build__closure22, A._InvoiceDesignState_build__closure21, A._InvoiceDesignState_build__closure19, A._InvoiceDesignState_build__closure18, A._InvoiceDesignState_build_closure10, A._PdfPreviewState__loadPdf_closure, A._PdfPreviewState__loadPdf_closure1, A.InvoiceDesignVM_fromStore__closure, A._LocalizationSettingsState_build_closure12, A._LocalizationSettingsState_build__closure4, A._LocalizationSettingsState_build_closure13, A._LocalizationSettingsState_build_closure15, A._AddCompanyDialogState_build_closure, A._AddCompanyDialogState_build_closure0, A.LocalizationSettingsVM_fromStore__closure, A._PaymentSettingsState_build_closure15, A.PaymentSettingsVM_fromStore__closure, A._ProductSettingsState__onChanged_closure0, A.ProductSettingsVM_fromStore__closure, A._SettingsListTileState_build__closure0, A._SettingsListTileState_build__closure, A._SettingsListTileState_build_closure, A.SettingsSearch_build_closure1, A.SettingsSearch_build_closure2, A.SettingsListVM_fromStore_closure2, A._SettingsWizardState__validateSubdomain_closure, A._SettingsWizardState__validateSubdomain__closure, A._SettingsWizardState__validateSubdomain__closure0, A._SettingsWizardState__validateSubdomain___closure0, A._SettingsWizardState__validateSubdomain___closure, A._SettingsWizardState__onSavePressed____closure0, A._SettingsWizardState__onSavePressed____closure, A._SettingsWizardState__onSavePressed___closure, A._SettingsWizardState__onSavePressed__closure1, A._SettingsWizardState_build__closure1, A._SettingsWizardState_build__closure0, A._SettingsWizardState_build_closure9, A._SettingsWizardState_build_closure10, A._TaskSettingsState_build_closure3, A.TaskSettingsVM_fromStore__closure, A._TaxSettingsState_build_closure6, A._TaxSettingsState_build__closure1, A._TaxSettingsState_build___closure1, A._TaxSettingsState_build___closure0, A.__EditSubregionDialogState_build_closure, A.TaxSettingsVM_fromStore__closure, A._TemplatesAndRemindersState__loadTemplate_closure, A._TemplatesAndRemindersState__onTextChanged_closure, A._TemplatesAndRemindersState__onTabChanged_closure, A._TemplatesAndRemindersState__renderTemplate_closure, A._TemplatesAndRemindersState__renderTemplate__closure, A._TemplatesAndRemindersState_build__closure4, A._TemplatesAndRemindersState_build_closure8, A._ReminderSettingsState__onTextChanged_closure, A.TemplatesAndRemindersVM_fromStore__closure, A.TemplatesAndRemindersVM_fromStore___closure, A.TemplatesAndRemindersVM_fromStore_____closure, A._UserDetailsState__onChanged_closure0, A._UserDetailsState_build_closure, A._UserDetailsState_build_closure0, A._UserDetailsState_build_closure1, A._UserDetailsState_build_closure2, A._UserDetailsState_build_closure3, A._UserDetailsState_build_closure7, A._EnableTwoFactorState_initState__closure, A._EnableTwoFactorState__onSavePressed_closure, A._EnableTwoFactorState__onSavePressed_closure0, A._EnableTwoFactorState__onSavePressed__closure0, A._EnableTwoFactorState__onSavePressed__closure, A._EnableTwoFactorState_build_closure2, A._EnableTwoFactorState_build_closure3, A._EnableTwoFactorState_build_closure4, A.UserDetailsVM_fromStore__closure7, A.WorkflowSettingsVM_fromStore__closure, A._SubscriptionEditState__onChanged_closure0, A._SubscriptionEditState_build__closure26, A._SubscriptionEditState_build__closure23, A._SubscriptionEditState_build__closure20, A._SubscriptionEditState_build__closure17, A._SubscriptionEditState_build__closure2, A._SubscriptionEditState_build__closure1, A._SubscriptionEditState_build_closure31, A._SubscriptionEditState_build__closure, A.SubscriptionEditVM_SubscriptionEditVM$fromStore__closure, A.SubscriptionListItem_build_closure1, A.SubscriptionListItem_build_closure0, A.SubscriptionListVM_fromStore_closure1, A.SubscriptionScreen_build_closure10, A.SubscriptionScreen_build_closure9, A.SubscriptionScreen_build_closure, A.SubscriptionScreen_build_closure6, A._SubscriptionViewState_build_closure1, A._SubscriptionViewState_build_closure0, A._SubscriptionViewState_build_closure, A.SubscriptionViewVM_SubscriptionViewVM$fromStore_closure, A._UpdateDialogState_build_closure, A._UpdateDialogState_build_closure0, A._UpdateDialogState_build_closure1, A._UpdateDialogState_build_closure2, A._UpdateDialogState_build_closure3, A._UpdateDialogState_build_closure4, A._UpdateDialogState_updateApp__closure, A._UpdateDialogState_updateApp___closure0, A._UpdateDialogState_updateApp___closure, A._TaskEditState_build_closure, A._TaskEditState_build__closure, A._BottomBar_build_closure, A._BottomBar_build_closure0, A._TaskEditDesktopState__onChanged_closure0, A._TaskEditDesktopState_build___closure6, A._TaskEditDesktopState_build___closure5, A._TaskEditDesktopState_build___closure4, A._TaskEditDesktopState_build___closure3, A._TaskEditDesktopState_build___closure2, A._TaskEditDesktopState_build__closure5, A._TaskEditDesktopState_build__closure6, A._TaskEditDesktopState_build____closure, A._TaskEditDetailsState__onChanged_closure0, A.TimeEditDetailsState_build__closure6, A.TimeEditDetailsState_build__closure5, A.TimeEditDetailsState_build__closure4, A.TimeEditDetailsState_build__closure3, A.TimeEditDetailsState_build__closure2, A.TimeEditDetailsState_build__closure0, A.TimeEditDetailsState_build_closure6, A.TimeEditDetailsState_build_closure7, A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure0, A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure2, A.TaskEditVM_TaskEditVM$fromStore_closure1, A.TaskEditVM_TaskEditVM$fromStore__closure0, A._KanbanTaskCardState_build_closure1, A._KanbanTaskCardState_build__closure3, A._KanbanTaskCardState_build_closure0, A._KanbanTaskCardState_build___closure, A._KanbanTaskCardState_build__closure, A._KanbanTaskCardState_build__closure0, A._KanbanTaskCardState_build_closure2, A._KanbanTaskCardState_build_closure3, A._KanbanTaskCardState_build_closure4, A._KanbanTaskCardState_build_closure5, A._KanbanTaskCardState_build_closure8, A._KanbanTaskCardState_build__closure1, A._KanbanStatusCardState__onSavePressed__closure, A._KanbanStatusCardState_build_closure1, A._KanbanStatusCardState_build__closure0, A._KanbanStatusCardState_build_closure2, A._KanbanStatusCardState_build__closure, A.KanbanViewState_build___closure, A.KanbanViewState_build__closure0, A.KanbanViewState_build___closure5, A.KanbanViewState_build__closure2, A.KanbanViewState_build___closure4, A.KanbanViewState_build___closure0, A.KanbanViewState_build____closure2, A.KanbanViewState_build____closure, A.KanbanViewState_build____closure0, A.KanbanViewState_build____closure1, A.TaskListItem_build_closure1, A.TaskListItem_build_closure, A.TaskListItem_build__closure2, A.TaskListItem_build__closure1, A.TaskListItem_build__closure5, A.TaskListItem_build__closure4, A.TaskListVM_fromStore_closure1, A.TaskScreen_build_closure21, A.TaskScreen_build_closure20, A.TaskScreen_build_closure3, A.TaskScreen_build_closure4, A.TaskScreen_build_closure5, A.TaskScreen_build_closure6, A.TaskScreen_build_closure7, A.TaskScreen_build_closure8, A.TaskScreen_build_closure16, A.TaskTimeListTile_build_closure0, A.TaskTimeListTile_build_closure, A._TaskViewState_build__closure, A._TaskViewState_build__closure0, A._TaskViewState_build__closure1, A.TaskViewDocuments_build_closure0, A._TaskOverviewState_initState__closure, A._TaskOverviewState_build__buildView, A._TaskOverviewState_build_closure, A._TaskStatusEditState__onChanged_closure0, A.TaskStatusEditVM_TaskStatusEditVM$fromStore__closure, A._TaskStatusListState_build_closure1, A.TaskStatusListItem_build_closure1, A.TaskStatusListItem_build_closure0, A.TaskStatusScreen_build_closure11, A.TaskStatusScreen_build_closure10, A.TaskStatusScreen_build_closure, A.TaskStatusScreen_build_closure0, A.TaskStatusScreen_build_closure7, A._TaskStatusViewState_build_closure, A.TaskStatusViewVM_TaskStatusViewVM$fromStore_closure, A._TaxRateEditState__onChanged_closure0, A.TaxRateEditVM_TaxRateEditVM$fromStore__closure, A.TaxRateListItem_build_closure1, A.TaxRateListItem_build_closure0, A.TaxRateListVM_fromStore_closure1, A.TaxRateSettingsScreen_build_closure6, A.TaxRateSettingsScreen_build_closure5, A.TaxRateSettingsScreen_build_closure, A.TaxRateSettingsScreen_build_closure2, A._TaxRateViewState_build_closure, A.TaxRateViewVM_TaxRateViewVM$fromStore_closure, A._TokenEditState__onChanged_closure0, A.TokenEditVM_TokenEditVM$fromStore__closure, A.TokenListItem_build_closure1, A.TokenListItem_build_closure0, A.TokenListVM_fromStore_closure1, A.TokenScreen_build_closure10, A.TokenScreen_build_closure9, A.TokenScreen_build_closure, A.TokenScreen_build_closure6, A._TokenViewState_build_closure, A._TokenListTile_build_closure, A.TokenViewVM_TokenViewVM$fromStore_closure, A._TransactionEditState__onChanged_closure, A.TransactionEditVM_TransactionEditVM$fromStore__closure1, A.TransactionListItem_build__closure2, A.TransactionListItem_build__closure1, A.TransactionListItem_build__closure5, A.TransactionListItem_build__closure4, A.TransactionListVM_fromStore_closure1, A.TransactionScreen_build_closure17, A.TransactionScreen_build_closure16, A.TransactionScreen_build_closure4, A.TransactionScreen_build_closure5, A.TransactionScreen_build_closure12, A._MatchDepositsState_build__closure12, A._MatchDepositsState_build__closure11, A._MatchDepositsState_build_closure3, A._MatchDepositsState_build__closure10, A._MatchDepositsState_build_closure4, A._MatchDepositsState_build__closure9, A._MatchDepositsState_build__closure8, A._MatchDepositsState_build_closure6, A._MatchDepositsState_build__closure7, A._MatchDepositsState_build_closure7, A._MatchDepositsState_build__closure6, A._MatchDepositsState_build__closure5, A._MatchDepositsState_build__closure4, A._MatchDepositsState_build__closure3, A._MatchDepositsState_build__closure2, A._MatchDepositsState_build__closure1, A._MatchDepositsState_build___closure0, A._MatchDepositsState_build__closure0, A._MatchDepositsState_build___closure, A._MatchDepositsState_build_closure16, A._MatchDepositsState_build_closure17, A._MatchWithdrawalsState_build__closure18, A._MatchWithdrawalsState_build__closure17, A._MatchWithdrawalsState_build_closure3, A._MatchWithdrawalsState_build__closure16, A._MatchWithdrawalsState_build_closure4, A._MatchWithdrawalsState_build__closure15, A._MatchWithdrawalsState_build__closure14, A._MatchWithdrawalsState_build__closure13, A._MatchWithdrawalsState_build__closure12, A._MatchWithdrawalsState_build__closure11, A._MatchWithdrawalsState_build__closure10, A._MatchWithdrawalsState_build___closure3, A._MatchWithdrawalsState_build__closure9, A._MatchWithdrawalsState_build_closure12, A._MatchWithdrawalsState_build__closure8, A._MatchWithdrawalsState_build_closure13, A._MatchWithdrawalsState_build__closure5, A._MatchWithdrawalsState_build___closure1, A._MatchWithdrawalsState_build__closure4, A._MatchWithdrawalsState_build_closure17, A._MatchWithdrawalsState_build__closure3, A._MatchWithdrawalsState_build_closure18, A._MatchWithdrawalsState_build__closure0, A._MatchWithdrawalsState_build___closure, A._MatchWithdrawalsState_build_closure21, A._MatchWithdrawalsState_build_closure22, A._TransactionRuleEditState__onChanged_closure, A._TransactionRuleEditState_build__closure3, A._TransactionRuleEditState_build__closure4, A._TransactionRuleEditState_build__closure5, A.__RuleCriteriaState_build__closure1, A.__RuleCriteriaState_build__closure0, A.__RuleCriteriaState_build__closure, A.__RuleCriteriaState_build_closure4, A.TransactionRuleEditVM_TransactionRuleEditVM$fromStore__closure, A.TransactionRuleListItem_build_closure1, A.TransactionRuleListItem_build_closure0, A.TransactionRuleListVM_fromStore_closure1, A.TransactionRuleScreen_build_closure10, A.TransactionRuleScreen_build_closure9, A.TransactionRuleScreen_build_closure, A.TransactionRuleScreen_build_closure6, A._TransactionRuleViewState_build_closure, A.TransactionRuleViewVM_TransactionRuleViewVM$fromStore_closure, A._UserEditState__onChanged_closure0, A._UserEditState_build_closure6, A._UserEditState_build_closure8, A._UserEditState_build_closure10, A._UserEditState_build_closure12, A._UserEditState_build__closure, A._UserEditState_build__closure0, A._UserEditState_build__closure2, A._UserEditState_build__closure4, A.UserEditVM_UserEditVM$fromStore__closure, A.UserListItem_build_closure1, A.UserListItem_build_closure0, A.UserListBuilder_build__closure_showDialog, A.UserListBuilder_build___closure, A.UserListVM_fromStore_closure1, A.UserScreen_build_closure10, A.UserScreen_build_closure9, A.UserScreen_build_closure, A.UserScreen_build_closure6, A.UserView_build_closure, A.UserViewVM_UserViewVM$fromStore_closure, A.VendorEditAddressState__onChanged_closure0, A._VendorEditContactsState_build__closure, A._VendorEditContactsState_build_closure1, A.VendorContactEditDetailsState__onChanged_closure0, A.VendorContactEditDetailsState_build__closure0, A.VendorContactEditDetailsState_build_closure11, A.VendorContactEditDetailsState_build_closure12, A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure, A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure1, A.VendorEditDetailsState__onChanged_closure0, A.VendorEditFooter_build_closure, A.VendorEditNotesState__onChanged_closure0, A.VendorEditVM_VendorEditVM$fromStore__closure, A.VendorListItem_build__closure2, A.VendorListItem_build__closure1, A.VendorListItem_build__closure5, A.VendorListItem_build__closure4, A.VendorListVM_fromStore_closure1, A.VendorPresenter_getField_closure0, A.VendorScreen_build_closure10, A.VendorScreen_build_closure9, A.VendorScreen_build_closure, A.VendorScreen_build_closure6, A._VendorViewState_build__closure, A._VendorViewState_build__closure0, A._VendorViewState_build__closure1, A._VendorViewState_build__closure2, A._VendorViewDetailsState_build__buildDetailsList, A._VendorViewDetailsState_build__buildDetailsList__closure1, A._VendorViewDetailsState_build__buildDetailsList___closure0, A._VendorViewDetailsState_build__buildDetailsList__closure2, A._VendorViewDetailsState_build__buildDetailsList___closure, A._VendorViewDetailsState_build__buildDetailsList_closure0, A._VendorViewDetailsState_build__buildDetailsList__closure0, A._VendorViewDetailsState_build__buildDetailsList_closure1, A._VendorViewDetailsState_build__buildDetailsList__closure, A._VendorViewDetailsState_build__buildDetailsList_closure2, A.VendorViewDocuments_build_closure0, A._VendorViewFullwidthState_build__closure, A._VendorViewFullwidthState_build__closure0, A._VendorViewFullwidthState_build__closure2, A._VendorViewFullwidthState_build__closure3, A._WebhookEditState__onChanged_closure0, A._WebhookEditState_build___closure2, A._WebhookEditState_build___closure1, A._WebhookEditState_build__closure5, A._WebhookEditState_build___closure, A.WebhookEditVM_WebhookEditVM$fromStore__closure, A._WebhookViewState_build_closure, A.TargetListTile_build_closure, A.WebhookViewVM_WebhookViewVM$fromStore_closure, A.WebhookListItem_build_closure1, A.WebhookListItem_build_closure0, A.WebhookListVM_fromStore_closure1, A.WebhookScreen_build_closure10, A.WebhookScreen_build_closure9, A.WebhookScreen_build_closure, A.WebhookScreen_build_closure6, A.Debouncer_run_closure, A.SimpleDebouncer_run_closure, A.PersistDebouncer_run_closure, A.confirmCallback_closure__onPressed, A.confirmCallback__closure2, A.confirmCallback__closure3, A.passwordCallback_closure, A._PasswordConfirmationState_build_closure, A._PasswordConfirmationState_build__closure, A._PasswordConfirmationState_build_closure2, A._PasswordConfirmationState_build_closure3, A._FieldConfirmationState_build_closure1, A._FieldConfirmationState_build_closure2, A.cloneToDialog__closure, A.cloneToDialog__closure0, A.cloneToDialog__closure1, A.cloneToDialog__closure2, A.cloneToDialog__closure3, A.cloneToDialog__closure4, A.changeTaskStatusDialog___closure, A.changeTaskStatusDialog__closure0, A.addToInvoiceDialog___closure, A._RunTemplateDialogState_build_closure, A._RunTemplateDialogState_build_closure0, A._RunTemplateDialogState_build_closure1, A._RunTemplateDialogState_build__closure2, A._RunTemplateDialogState_build___closure0, A._RunTemplateDialogState_build___closure1, A._RunTemplateDialogState_build___closure, A._RunTemplateDialogState_build__closure0, A._RunTemplateDialogState_build__closure, A._ExampleEditorState_initState_closure, A._SuperEditorDemoTextItemSelectorState_build__closure, A._SuperEditorDemoTextItemSelectorState__buildButton_closure, A._EditorToolbarState__onLinkPressed_closure0, A._EditorToolbarState__applyLink_closure, A._EditorToolbarState__onBlockTypeSelected_closure, A._EditorToolbarState__buildUrlField_closure1, A._EditorToolbarState__buildUrlField__closure, A.Logger_Logger_closure, A.ListSyntax_parse_endItem, A.ParagraphSyntax__parseReflinkDefinition_closure, A.InlineParser__linkOrImage_closure1, A.InlineParser__processEmphasis_closure, A.InlineParser__processEmphasis_closure1, A.PublicClientApplication_loginPopup_closure, A._PinputState__handleHover_closure, A._PinputState__validator_closure, A._PinputState__buildPinput_closure, A._PinputState__buildPinput_closure0, A._PinputState__buildFields_onlyFields, A.PrintingPlugin_layoutPdf__closure, A.PdfPreviewAction_build_closure, A.PdfPreviewCustomState_didChangeDependencies__closure, A.PdfPreviewCustomState__createPreview__closure, A.PdfPreviewCustomState__createPreview___closure, A.PdfPreviewCustomState__zoomPreview_closure, A.PdfPreviewCustomState__zoomPreview__closure, A.PdfPreviewCustomState_build_closure, A.PdfPreviewState_initState_closure, A.PdfPreviewState_initState__closure, A.PdfPreviewState_didUpdateWidget_closure, A.PdfPreviewState_didChangeDependencies__closure, A.PdfPreviewRaster_raster_closure, A.PdfPreviewRaster__raster_closure, A.PdfPreviewRaster__raster_closure0, A.PdfPreviewRaster__raster_closure1, A.PdfPreviewRaster__raster_closure2, A.PdfPreviewRaster__raster_closure3, A.LoggingMiddleware_call_closure, A.RoundedLoadingButtonState_initState_closure, A.RoundedLoadingButtonState_initState__closure1, A.RoundedLoadingButtonState_initState_closure0, A.RoundedLoadingButtonState_initState__closure0, A.RoundedLoadingButtonState_initState_closure2, A.RoundedLoadingButtonState_initState__closure, A.BehaviorSubject__deferStream_closure, A.Subject_addStream_complete, A.StartWithStreamTransformer_bind_closure, A.StartWithErrorStreamTransformer_bind_closure, A._forwardMulti__closure, A._forward_closure, A._forward_closure0, A._forward__listenToUpstream_closure, A._forward__listenToUpstream_closure0, A._forward_closure1, A.Highlighter_closure, A.Highlighter__writeFileStart_closure, A.Highlighter__writeMultilineHighlights_closure, A.Highlighter__writeMultilineHighlights_closure0, A.Highlighter__writeMultilineHighlights_closure1, A.Highlighter__writeMultilineHighlights_closure2, A.Highlighter__writeMultilineHighlights__closure, A.Highlighter__writeMultilineHighlights__closure0, A.Highlighter__writeHighlightedText_closure, A.Highlighter__writeIndicator_closure, A.Highlighter__writeIndicator_closure0, A.Highlighter__writeIndicator_closure1, A.Highlighter__writeSidebar_closure, A._Highlight_closure, A.addToContextSet_closure, A.addToActiveReactiveModels_closure, A._MyStatefulWidgetState_initState__closure, A.InjectedImp_closure, A.IObservable_addObserver_closure, A.IObservable_addCleaner_closure, A.ReactiveModelImp_setStateNullable_closure, A.ReactiveModelImp_setStateNullable_closure1, A.ReactiveModelImp__handleAsyncState__closure, A.ReactiveModelImp__handleAsyncState_closure0, A.DocumentComposer_closure, A.InspectDocumentRange_getRangeBetween_closure, A.HeaderConversionReaction_onPrefixMatched_closure, A.CaretDocumentOverlayState__onSelectionChange_closure, A._DocumentMouseInteractorState__onPanUpdate_closure, A._DocumentMouseInteractorState__onDragEnd_closure, A._DocumentMouseInteractorState__buildGestureInput_closure, A._DocumentMouseInteractorState__buildGestureInput_closure1, A.SuperEditorAndroidControlsController_startCollapsedHandleAutoHideCountdown_closure, A._AndroidDocumentTouchInteractorState_initState_closure, A._AndroidDocumentTouchInteractorState_initState_closure0, A._AndroidDocumentTouchInteractorState_didChangeMetrics__closure, A._AndroidDocumentTouchInteractorState__onPanStart_closure, A._AndroidDocumentTouchInteractorState_build_closure, A._AndroidDocumentTouchInteractorState_build_closure1, A._IosDocumentTouchInteractorState_initState_closure, A._IosDocumentTouchInteractorState_initState_closure0, A._IosDocumentTouchInteractorState_didChangeDependencies__closure, A._IosDocumentTouchInteractorState__startDragScrolling_closure, A._IosDocumentTouchInteractorState_build_closure, A._IosDocumentTouchInteractorState_build_closure1, A._IosDocumentTouchInteractorState_build_closure3, A._ImeFocusPolicyState__onFocusChange_closure, A._DocumentSelectionOpenAndCloseImePolicyState__onSelectionChange_closure, A._KeyboardEditingToolbarState_initState_closure, A._KeyboardEditingToolbarState__onToolbarLayout_closure, A._KeyboardHeightBuilderState_didChangeMetrics_closure, A.SuperEditorImeInteractorState_build_closure, A.SuperEditorImeInteractorState_build_closure0, A._DocumentScrollableState_initState__closure, A._DocumentScrollableState_initState__closure0, A._DocumentScrollableState_didUpdateWidget_closure, A._DocumentScrollableState_didUpdateWidget_closure0, A._SingleColumnDocumentLayoutState__onViewModelChange_closure, A._PresenterComponentBuilderState__onViewModelChange_closure, A.SingleColumnLayoutPresenter__assemblePipeline_closure, A.SuperEditorState_initState_closure, A.SuperEditorState_didUpdateWidget_closure, A.SuperEditorState__createEditContext_closure, A.SuperEditorState__createEditContext_closure0, A.SuperEditorState_build__closure2, A.SuperEditorState_build__closure3, A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure0, A.SuperEditorState__buildPlatformSpecificViewportDecorations_closure1, A.SuperEditorState__buildGestureInteractor_closure, A.SuperEditorState__buildGestureInteractor_closure0, A.SuperEditorState__buildGestureInteractor_closure1, A.ToggleTextAttributionsCommand_execute_closure, A.ContentLayersElement_buildLayers_closure, A._SelectionLeadersDocumentLayerState__onSelectionChange_closure, A._CupertinoScrollbarState_initState_closure0, A.Frames_setStateAsSoonAsPossible_closure, A.Frames_setStateAsSoonAsPossible__closure, A.Frames_scheduleBuildAfterBuild__closure, A._MaterialScrollbarState_initState_closure0, A._MaterialScrollbarState_handleThumbPressStart_closure0, A._MaterialScrollbarState_handleThumbPressEnd_closure0, A._MaterialScrollbarState_handleHover_closure1, A._MaterialScrollbarState_handleHover_closure2, A._MaterialScrollbarState_handleHoverExit_closure0, A.RawScrollbarWithCustomPhysicsState__maybeStartFadeoutTimer_closure, A.RawScrollbarWithCustomPhysicsState__gestures_closure, A.RawScrollbarWithCustomPhysicsState__gestures_closure1, A.RawScrollbarWithCustomPhysicsState_handleHover_closure, A.RawScrollbarWithCustomPhysicsState_handleHoverExit_closure, A._FocusWithCustomParentState__handleFocusChanged_closure, A._FocusWithCustomParentState__handleFocusChanged_closure0, A._FocusWithCustomParentState__handleFocusChanged_closure1, A._FocusWithCustomParentState__handleFocusChanged_closure2, A._MultiListenableBuilderState__onListenableChange_closure, A.TapSequenceGestureRecognizer_addAllowedPointer_closure, A.TapSequenceGestureRecognizer_addAllowedPointer_closure0, A.TapSequenceGestureRecognizer_addAllowedPointer_closure1, A.TapSequenceGestureRecognizer__checkUp_closure, A.TapSequenceGestureRecognizer__checkUp_closure0, A.TapSequenceGestureRecognizer__checkUp_closure1, A._AndroidToolbarFocalPointDocumentLayerState__onSelectionChange_closure, A.AndroidControlsDocumentLayerState__onSelectionChange_closure, A.ItemSelectionListState__onKeyEvent_closure, A.ItemSelectionListState_build_closure, A._AndroidEditingOverlayControlsState__rebuildOnNextFrame_closure, A._AndroidEditingOverlayControlsState__onCollapsedPanStart_closure, A._AndroidEditingOverlayControlsState__onBasePanStart_closure, A._AndroidEditingOverlayControlsState__onExtentPanStart_closure, A._AndroidEditingOverlayControlsState__onPanUpdate_closure, A._AndroidEditingOverlayControlsState__onHandleDragEnd_closure, A._AndroidEditingOverlayControlsState__updateOffsetForCollapsedHandle_closure0, A.AndroidTextFieldTouchInteractorState__onDoubleTapDown_closure, A.AndroidTextFieldTouchInteractorState__onPanStart_closure, A.AndroidTextFieldTouchInteractorState__onPanUpdate_closure, A.AndroidTextFieldTouchInteractorState__onHandleDragEnd_closure, A.AndroidTextFieldTouchInteractorState_build_closure, A.AndroidTextFieldTouchInteractorState__buildTapAndDragDetector_closure, A.AndroidTextFieldTouchInteractorState__buildTapAndDragDetector_closure1, A.AndroidTextFieldTouchInteractorState__buildTapAndDragDetector_closure3, A.SuperAndroidTextFieldState__updateSelectionAndImeConnectionOnFocusChange_closure, A.SuperAndroidTextFieldState__updateSelectionAndImeConnectionOnFocusChange_closure0, A._defaultAndroidToolbarBuilder_closure, A._defaultAndroidToolbarBuilder_closure0, A._defaultAndroidToolbarBuilder_closure1, A._defaultAndroidToolbarBuilder_closure2, A.SuperDesktopTextFieldState__createTextFieldContext_closure, A.SuperDesktopTextFieldState__updateViewportHeight_closure, A.SuperDesktopTextFieldState_build_closure, A._SuperTextFieldGestureInteractorState__onTapDown_closure, A._SuperTextFieldGestureInteractorState__onDoubleTapDown_closure, A._SuperTextFieldGestureInteractorState__onTripleTapDown_closure, A._SuperTextFieldGestureInteractorState__onPanUpdate_closure, A._SuperTextFieldGestureInteractorState__onPanEnd_closure, A._SuperTextFieldGestureInteractorState__onPanCancel_closure, A._SuperTextFieldGestureInteractorState__updateDragSelection_closure, A._SuperTextFieldGestureInteractorState__clearSelection_closure, A._SuperTextFieldGestureInteractorState_build_closure, A._SuperTextFieldGestureInteractorState_build_closure1, A._SuperTextFieldImeInteractorState__updateSelectionAndImeConnectionOnFocusChange_closure, A._SuperTextFieldImeInteractorState__updateSelectionAndImeConnectionOnFocusChange_closure0, A._IOSEditingControlsState__onBasePanStart_closure, A._IOSEditingControlsState__onExtentPanStart_closure, A._IOSEditingControlsState__onPanUpdate_closure, A._IOSEditingControlsState__onHandleDragEnd_closure, A.IOSTextFieldTouchInteractorState__onDoubleTapDown_closure, A.IOSTextFieldTouchInteractorState__onPanStart_closure, A.IOSTextFieldTouchInteractorState__onPanUpdate_closure, A.IOSTextFieldTouchInteractorState__onHandleDragEnd_closure, A.IOSTextFieldTouchInteractorState_build_closure0, A.IOSTextFieldTouchInteractorState_build_closure, A.IOSTextFieldTouchInteractorState__buildTapAndDragDetector_closure, A.IOSTextFieldTouchInteractorState__buildTapAndDragDetector_closure1, A.SuperIOSTextFieldState__updateSelectionAndImeConnectionOnFocusChange_closure, A.SuperIOSTextFieldState__updateSelectionAndImeConnectionOnFocusChange_closure0, A._defaultPopoverToolbarBuilder_closure, A._defaultPopoverToolbarBuilder_closure0, A._defaultPopoverToolbarBuilder_closure1, A._MaterialScrollbarState_initState_closure1, A._MaterialScrollbarState_handleThumbPressStart_closure1, A._MaterialScrollbarState_handleThumbPressEnd_closure1, A._MaterialScrollbarState_handleHover_closure3, A._MaterialScrollbarState_handleHover_closure4, A._MaterialScrollbarState_handleHoverExit_closure1, A.main_closure0, A.main_closure]); + _inheritMany(A._Enum, [A.BrowserEngine, A.OperatingSystem, A.MutatorType, A.CanvasKitVariant, A.IntlSegmenterGranularity, A.PersistedSurfaceState, A.DebugEngineInitializationState, A.Assertiveness, A._CheckableKind, A.PrimaryRole, A.Role, A.AccessibilityMode, A.GestureMode, A.SemanticsUpdatePhase, A.EnabledState, A.LineBreakType, A.FragmentFlow, A._ComparisonResult, A._FindBreakDirection, A.TextCapitalization, A.TransformKind, A.LineCharProperty, A.WordCharProperty, A.ClipOp, A.PathFillType, A.KeyEventType, A.StrokeCap, A.StrokeJoin, A.PaintingStyle, A.BlendMode, A.Clip, A.BlurStyle, A.FilterQuality, A.ImageByteFormat, A.PixelFormat, A.AppLifecycleState, A.AppExitResponse, A.DartPerformanceMode, A.PointerChange, A.PointerDeviceKind, A.PointerSignalKind, A.FontStyle, A.PlaceholderAlignment, A.TextAlign, A.TextBaseline, A.TextDecorationStyle, A.TextLeadingDistribution, A.TextDirection, A.TextAffinity, A.BoxHeightStyle, A.BoxWidthStyle, A.TileMode, A.Brightness, A.SpanMarkerType, A.AttributionVisitEvent, A.BarGroupingType, A.AxisOrientation, A._PixelVerticalDirection, A.RangeBandType, A.StepSizeType, A.TickLabelAnchor, A.TickLabelJustification, A.CalendarField, A.BehaviorPosition, A.OutsideJustification, A.InsideJustification, A.LegendTapHandling, A.LegendDefaultMeasure, A.LinePointHighlighterFollowLineType, A.SelectionMode, A.SelectionTrigger, A.FillPatternType, A.SelectionModelType, A.LayoutPosition, A.TextDirection0, A.MaxWidthStrategy, A.GestureType, A._HorizontalJustification, A.MessageLevel, A._DragTargetStatus, A.FileType, A.AnimationStatus, A._AnimationDirection, A.AnimationBehavior, A._TrainHoppingMode, A._CupertinoTextSelectionToolbarItemsSlot, A.DiagnosticLevel, A.DiagnosticsTreeStyle, A._WordWrapParseMode, A._LicenseEntryWithLineBreaksParserState, A.TargetPlatform, A.GestureDisposition, A._ForceState, A._DragState, A.DragStartBehavior, A.GestureRecognizerState, A._ScaleState, A._DragState0, A._ActionLevel, A._LayoutMode, A._Focus, A.ThemeMode, A._SliverAppVariant, A._CornerId, A.ButtonTextTheme, A.ButtonBarLayoutBehavior, A._CheckboxType, A._CheckboxType0, A.DatePickerEntryMode, A.DatePickerMode, A.DrawerAlignment, A._FloatingActionButtonType, A._IconButtonVariant, A._HighlightType, A.FloatingLabelBehavior, A._DecorationSlot, A.ListTileStyle, A.ListTileControlAffinity, A.ListTileTitleAlignment, A._ListTileSlot, A.MaterialType, A.MaterialState, A._ActivityIndicatorType, A._RadioType, A._RadioType0, A._RefreshIndicatorMode, A.RefreshIndicatorTriggerMode, A._IndicatorType, A._ScaffoldSlot, A.SnackBarClosedReason, A._SwitchType, A._SwitchListTileType, A.TabBarIndicatorSize, A.TabAlignment, A._TextSelectionToolbarItemPosition, A.MaterialTapTargetSize, A.DayPeriod, A.TimeOfDayFormat, A.HourFormat, A.TimePickerEntryMode, A._HourMinuteMode, A._TimePickerAspect, A._HourDialType, A.ScriptCategory, A.RenderComparison, A.Axis0, A.VerticalDirection, A.AxisDirection, A.BorderStyle, A.BoxShape, A.BoxFit, A.ImageRepeat, A.TextOverflow, A.TextWidthBasis, A.SpringType, A.RenderAnimatedSizeState, A._IntrinsicDimension, A.FlexFit, A.MainAxisSize, A.MainAxisAlignment, A.CrossAxisAlignment, A.PlatformViewHitTestBehavior, A.HitTestBehavior, A.DecorationPosition, A.SelectionResult, A.SelectionEventType, A.TextGranularity, A.SelectionExtendDirection, A.SelectionStatus, A.TextSelectionHandleType, A.GrowthDirection, A.StackFit, A.TableCellVerticalAlignment, A.CacheExtentStyle, A.ScrollDirection, A.WrapAlignment, A.WrapCrossAlignment, A.SchedulerPhase, A.DebugSemanticsDumpOrder, A.Assertiveness0, A.KeyboardLockMode, A.KeyDataTransitMode, A.KeyboardSide, A.ModifierKey, A.SystemSoundType, A.MaxLengthEnforcement, A.SmartDashesType, A.SmartQuotesType, A.TextInputAction, A.TextCapitalization0, A.FloatingCursorDragState, A.SelectionChangedCause, A.UndoDirection, A.CrossFadeState, A.ConnectionState, A.OptionsViewOpenDirection, A.AutofillContextAction, A.ContextMenuButtonType, A.KeyEventResult, A.UnfocusDisposition, A.FocusHighlightMode, A.FocusHighlightStrategy, A.TraversalDirection, A.TraversalEdgeBehavior, A.AutovalidateMode, A._StateLifecycle, A._ElementLifecycle, A.HeroFlightDirection, A._GestureType, A.PanAxis, A.Orientation, A._MediaQueryAspect, A.NavigationMode, A._ToolbarSlot, A.RoutePopDisposition, A._RouteLifecycle, A._RouteRestorationType, A.OverflowBarAlignment, A._GlowState, A._StretchDirection, A._StretchState, A.RouteInformationReportingType, A.AndroidOverscrollIndicator, A.ScrollDecelerationRate, A.ScrollPositionAlignmentPolicy, A.ScrollViewKeyboardDismissBehavior, A.ScrollIncrementType, A.ScrollbarOrientation, A.SnapshotMode, A.ClipboardStatus, A.ActionPaneType, A.GestureDirection, A.StyledToastAnimation, A.SignInOption, A.Channel, A.Format, A.BlendMode0, A.IfdValueType, A.PngDisposeMode, A.PngBlendMode, A.PngFilterType, A.IccProfileCompression, A.FrameType, A.BillingResponse, A.ProductType, A.RecurrenceMode, A.PurchaseStateWrapper, A.PurchaseStatus, A._TransactionRestoreState, A.SKPaymentTransactionStateWrapper, A.SKSubscriptionPeriodUnit, A.SKProductDiscountPaymentMode, A.SKProductDiscountType, A.PluralCase, A.IconPosition, A._HealthCheckLevel, A.PortalLinkStyle, A.DashboardSections, A.ClientReportFields, A.ContactReportFields, A.CreditItemReportFields, A.CreditReportFields, A.DocumentReportFields, A.ExpenseReportFields, A.InvoiceItemReportFields, A.InvoiceReportFields, A.TaxRateReportFields0, A.PaymentReportFields, A.TaxRateReportFields, A.ProductReportFields, A.ProfitAndLossReportFields, A.PurchaseOrderItemReportFields, A.PurchaseOrderReportFields, A.QuoteItemReportFields, A.QuoteReportFields, A.RecurringExpenseReportFields, A.RecurringInvoiceReportFields, A.ReportColumnType, A.TaskItemReportFields, A.TaskReportFields, A.TransactionReportFields, A.VendorReportFields, A.UpdateState, A.FormatNumberType, A._TextType, A.OverflowViewLayoutBehavior, A.ArrowDirection, A.PinputAutovalidateMode, A.AndroidSmsAutofillMethod, A.PinAnimationType, A.HapticFeedbackType, A.QrCodeElement, A.FinderPatternPosition, A.QrEyeShape, A.QrDataModuleShape, A.QrValidationStatus, A.ButtonState, A._MissingCase, A.SignInWithAppleButtonStyle, A.IconAlignment, A.AppleIDAuthorizationScopes, A.AuthorizationErrorCode, A.StateStatus, A.SelectionChangeType, A.DocumentGestureMode, A.SelectionBound, A.DragMode, A.PrependedCharacterPolicy, A.ListItemType, A.SelectionType, A.TapHandlingInstruction, A.ExecutionInstruction, A.TextInputSource, A.HandleType, A._SelectionType, A.TextFieldKeyboardHandlerResult, A.HintBehavior, A._AutoScrollDirection, A.SuperTextFieldPlatformConfiguration, A.BlinkTimingMode, A.LaunchMode, A.PreferredLaunchMode]); _inherit(A.CanvasPool, A._SaveStackTracking); _inheritMany(A.CkColorFilter, [A.CkBlendModeColorFilter, A.CkMatrixColorFilter, A.CkLinearToSrgbGammaColorFilter, A.CkSrgbToLinearGammaColorFilter, A.CkComposeColorFilter]); _inheritMany(A.Iterable, [A.MutatorsStack, A._DomListWrapper, A._DomTouchListWrapper, A._CastIterableBase, A.EfficientLengthIterable, A.MappedIterable, A.WhereIterable, A.ExpandIterable, A.TakeIterable, A.SkipIterable, A.SkipWhileIterable, A.FollowedByIterable, A.WhereTypeIterable, A._KeysOrValues, A._AllMatchesIterable, A._StringAllMatchesIterable, A._SyncStarIterable, A.LinkedList, A.DoubleLinkedQueue, A.Runes, A.StringCharacters, A._ReversedSeriesIterable, A.TimeStepIteratorFactory, A.ObserverList, A.HashedObserverList, A.__History_Iterable_ChangeNotifier, A._FilteredElementList_IterableBase_ListMixin, A.ColorFloat16, A.ColorFloat32, A.ColorFloat64, A.ColorInt16, A.ColorInt32, A.ColorInt8, A.ColorUint1, A.ColorUint16, A.ColorUint2, A.ColorUint32, A.ColorUint4, A.ColorUint8, A.Image0, A.ImageData0, A.PixelFloat16, A.PixelFloat32, A.PixelFloat64, A.PixelInt16, A.PixelInt32, A.PixelInt8, A.PixelUint1, A.PixelUint16, A.PixelUint2, A.PixelUint32, A.PixelUint4, A.PixelUint8, A.PixelUndefined]); @@ -623221,7 +624572,7 @@ _inheritMany(A.ContainerLayer, [A.RootLayer, A.BackdropFilterEngineLayer, A.ClipPathEngineLayer, A.ClipRectEngineLayer, A.ClipRRectEngineLayer, A.OpacityEngineLayer, A.TransformEngineLayer, A.ImageFilterEngineLayer]); _inherit(A.OffsetEngineLayer, A.TransformEngineLayer); _inherit(A.CkGradientLinear, A.SimpleCkShader); - _inheritMany(A.Closure2Args, [A.Surface_acquireFrame_closure, A.createDomResizeObserver_closure, A.commitScene_closure, A.PersistedContainerSurface__matchChildren_closure, A.initializeEngineServices_closure, A.futureToPromise_closure, A.KeyboardConverter__handleEvent_closure2, A.KeyboardConverter__handleEvent__closure, A.EnginePlatformDispatcher__addFontSizeObserver_closure, A.StandardMessageCodec_writeValue_closure, A._computeLineBreakFragments_setBreak, A.saveForms_closure, A.HybridTextEditing__startEditing_closure0, A.CustomElementDimensionsProvider_closure, A._CastListBase_sort_closure, A.CastMap_forEach_closure, A.ConstantMap_map_closure, A.Primitives_functionNoSuchMethod_closure, A.JsLinkedHashMap_addAll_closure, A.initHooks_closure0, A._awaitOnObject_closure0, A._wrapJsFunctionForAsync_closure, A.Future_wait_handleError, A.FutureExtensions_onError_onError, A._Future__chainForeignFuture_closure0, A._Future_timeout_closure1, A.Stream_Stream$fromFuture_closure0, A._AddStreamState_makeErrorHandler_closure, A._cancelAndErrorClosure_closure, A._RootZone_bindBinaryCallback_closure, A._HashMap_addAll_closure, A.LinkedHashMap_LinkedHashMap$from_closure, A.MapBase_mapToString_closure, A.SplayTreeSet__newSet_closure, A.SplayTreeSet__copyNode_copyChildren, A._JsonStringifier_writeMap_closure, A._JsonPrettyPrintMixin_writeMap_closure, A._BigIntImpl_hashCode_combine, A._symbolMapToStringMap_closure, A.NoSuchMethodError_toString_closure, A.Uri_splitQueryString_closure, A.Uri__parseIPv4Address_error, A.Uri_parseIPv6Address_error, A.Uri_parseIPv6Address_parseHex, A._Uri__makeQuery_writeParameter, A._Uri__makeQuery_closure, A._createTables_build, A.MidiInputMap_keys_closure, A.MidiInputMap_values_closure, A.MidiOutputMap_keys_closure, A.MidiOutputMap_values_closure, A.RtcStatsReport_keys_closure, A.RtcStatsReport_values_closure, A.Storage_keys_closure, A.Storage_values_closure, A._DataAttributeMap_forEach_closure, A._DataAttributeMap_keys_closure, A._DataAttributeMap_values_closure, A._AcceptStructuredClone_walk_closure, A._FileStream__readBlock_closure0, A._FileStream__start_onOpenFile_closure, A._FileStream__start_openFailed, A._File_readAsBytes_readSized, A.AudioParamMap_keys_closure, A.AudioParamMap_values_closure, A.AttributedSpans_copyAttributionRegion_closure1, A.AttributedSpans_copyAttributionRegion_closure6, A.BoardListState_build_closure3, A.BoardViewState_build_closure0, A.hashObjects_closure, A.BuiltListMultimap_forEach_closure, A.MapBuilder_replace_closure, A.MapBuilder_replace_closure0, A.BuiltSetMultimap_forEach_closure, A.StandardJsonPlugin__toList_closure0, A.StandardJsonPlugin__toListUsingDiscriminator_closure0, A.BaseBarRenderer_preprocessSeries__closure, A.BaseBarRenderer_update_closure0, A.BaseBarRenderer_paint_closure, A.BaseBarRenderer_paint_closure0, A.BaseBarRenderer_paint_closure1, A.BaseBarRenderer__getSegmentsForDomainValue_closure, A._ReversedSeriesIterator_closure0, A.BaseTickDrawStrategy_collides_closure, A.BaseTickDrawStrategy_measureVerticallyDrawnTicks_closure, A.BaseTickDrawStrategy_measureHorizontallyDrawnTicks_closure, A.CartesianChart_init_closure, A.CartesianChart_preprocessSeries_closure, A.CartesianChart_preprocessSeries_closure0, A.CartesianChart_preprocessSeries_closure1, A.CartesianChart_preprocessSeries_closure2, A.CartesianChart_onSkipLayout_closure, A.BaseChart_getNearestDatumDetailPerSeries_closure0, A.BaseChart_configureSeries_closure0, A.BaseChart_preprocessSeries_closure1, A.BaseChart_onPostLayout_closure, A.LinePointHighlighter__updateViewData_closure, A._LinePointLayoutView_paint_closure, A._LinePointLayoutView_paint_closure0, A.SelectNearest__onSelect_closure, A.LayoutManagerImpl_paintOrderedViews_closure, A.LayoutManagerImpl_positionOrderedViews_closure, A.LineRenderer_update_closure0, A.LineRenderer_paint_closure, A.LineRenderer_paint_closure0, A.PointRenderer_paint_closure, A.PointRenderer_paint_closure0, A.BaseChartState_build_closure, A.BaseChartState_dispose_closure, A.TabularLegendLayout__buildTableFromRows_closure0, A.CanonicalizedMap_addAll_closure, A.CanonicalizedMap_forEach_closure, A.CanonicalizedMap_map_closure, A.FilePickerWeb__fileType_closure, A.CupertinoDynamicColor_toString_toString, A._RenderCupertinoSwitch_paint_closure5, A._RenderCupertinoTextSelectionToolbarShape_paint_closure, A._RenderCupertinoTextSelectionToolbarItems_hitTestChild_closure, A.BindingBase_registerServiceExtension_closure, A.PointerRouter__dispatchEventToRoutes_closure, A.ScaleGestureRecognizer__reconfigure_closure0, A.ScaleGestureRecognizer_acceptGesture_closure0, A._PackagesViewState_licenses_closure, A._PackagesViewState_build_closure, A._PackagesViewState_build__closure, A._PackagesViewState__packagesList_closure, A._LicenseData_sortPackages_closure, A._PackageLicensePageState_build_closure, A._MasterDetailFlowState_build_closure, A._MasterDetailFlowState__nestedUI_closure, A._MasterDetailFlowState__lateralUI_closure1, A._MasterDetailFlowState__lateralUI_closure, A._MasterDetailScaffoldState_build__closure, A._DetailView_build_closure, A.MaterialApp_createMaterialHeroController_closure, A._MaterialAppState_build_closure, A._RenderInputPadding_hitTest_closure, A._RenderInputPadding_hitTest_closure0, A._DatePickerDialogState_build_closure, A.__DatePickerDialogState_State_RestorationMixin_dispose_closure, A._DropdownRoute_buildPage_closure, A._DropdownRoute_getItemOffset_closure, A._DropdownRoute_getMenuLimits_closure, A._RenderDecoration_performLayout_centerLayout, A._RenderDecoration_performLayout_baselineLayout, A._RenderDecoration_hitTestChildren_closure, A._RenderListTile_hitTestChildren_closure, A._ZoomEnterTransitionPainter_paint_closure, A._ZoomExitTransitionPainter_paint_closure, A._PopupMenu_build_closure0, A._LinearProgressIndicatorPainter_paint_drawBar, A._LinearProgressIndicatorState_build_closure, A._CircularProgressIndicatorState__buildAnimation_closure, A._RefreshProgressIndicatorState__buildAnimation_closure, A.RefreshIndicatorState_build_closure, A.ReorderableListView_closure, A._ReorderableListViewState__proxyDecorator_closure, A.ScaffoldState_build_closure, A._StandardBottomSheetState_build_closure, A._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure, A._TextFieldState_build_closure5, A._TextFieldState_build_closure6, A.__TextFieldState_State_RestorationMixin_dispose_closure, A._TextSelectionToolbarTrailingEdgeAlignRenderBox_hitTestChildren_closure, A._RenderTextSelectionToolbarItemsLayout_hitTestChildren_closure, A.ThemeData__lerpThemeExtensions_closure, A._RenderInputPadding_hitTest_closure2, A._DialPainter_paint_getOffsetForTheta, A._DialPainter_paint_paintLabels, A._TimePickerDialogState_build_closure, A.__HourMinuteTextFieldState_State_RestorationMixin_dispose_closure, A.__TimePickerDialogState_State_RestorationMixin_dispose_closure, A.__TimePickerInputState_State_RestorationMixin_dispose_closure, A.__TimePickerState_State_RestorationMixin_dispose_closure, A._RenderInputPadding_hitTest_closure1, A.NetworkImage__loadAsync_closure, A.NetworkImage__loadAsync_closure2, A._CompoundBorder_dimensions_closure, A.paintImage_closure, A.ImageCache_putIfAbsent_listener, A.ImageProvider_resolve_closure, A.ImageProvider__createErrorHandlerAndKey_handleError, A.AssetImage_obtainKey_closure0, A.MultiFrameImageStreamCompleter_closure, A.MultiFrameImageStreamCompleter_closure0, A.RendererBinding_initMouseTracker_closure, A.RenderBoxContainerDefaultsMixin_defaultHitTestChildren_closure, A.RenderEditable_getRectForComposingRange_closure, A.RenderFlex_computeMinIntrinsicWidth_closure, A.RenderFlex_computeMaxIntrinsicWidth_closure, A.RenderFlex_computeMinIntrinsicHeight_closure, A.RenderFlex_computeMaxIntrinsicHeight_closure, A.MouseTracker__handleDeviceUpdateMouseEvents_closure, A.PipelineOwner_flushLayout_closure, A.PipelineOwner_flushCompositingBits_closure, A.PipelineOwner_flushPaint_closure, A.PipelineOwner_flushSemantics_closure, A.RenderInlineChildrenContainerDefaults_hitTestInlineChildren_closure, A.RenderParagraph_computeMinIntrinsicWidth_closure, A.RenderParagraph_computeMaxIntrinsicWidth_closure, A.RenderPhysicalModel_paint_closure, A.RenderPhysicalShape_paint_closure, A.RenderTransform_hitTestChildren_closure, A.RenderFittedBox_hitTestChildren_closure, A.RenderFractionalTranslation_hitTestChildren_closure, A.RenderFollowerLayer_hitTestChildren_closure, A.RenderShiftedBox_hitTestChildren_closure, A.RenderIndexedStack_hitTestChildren_closure, A.RenderTable_computeDryLayout_closure, A.RenderTable_hitTestChildren_closure, A.SchedulerBinding_handleBeginFrame_closure, A._SemanticsSortGroup_sortedWithinKnot_closure, A.SemanticsOwner_sendSemanticsUpdate_closure0, A.SemanticsOwner_sendSemanticsUpdate_closure1, A.SemanticsConfiguration_absorb_closure, A.CachingAssetBundle_loadStructuredData_closure0, A._DefaultBinaryMessenger_setMessageHandler_closure, A.StandardMessageCodec_writeValue_closure0, A.HtmlElementViewImpl_buildImpl_closure, A._StreamBuilderBaseState__subscribe_closure1, A._FutureBuilderState__subscribe_closure0, A._DraggableScrollableSheetState_build__closure, A.EditableTextState__formatAndSetValue_closure, A.EditableTextState_build_closure2, A.EditableTextState_build_closure4, A.DirectionalFocusTraversalPolicyMixin__sortAndFindInitial_closure, A.DirectionalFocusTraversalPolicyMixin__sortByDistancePreferVertical_closure, A.DirectionalFocusTraversalPolicyMixin__sortByDistancePreferHorizontal_closure, A.DirectionalFocusTraversalPolicyMixin__sortClosestEdgesByDistancePreferHorizontal_closure, A.DirectionalFocusTraversalPolicyMixin__sortClosestEdgesByDistancePreferVertical_closure, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure1, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure1, A._ReadingOrderSortData_sortWithDirectionality_closure, A._ReadingOrderDirectionalGroupData_sortWithDirectionality_closure, A.ReadingOrderTraversalPolicy__pickNext_closure, A.ReadingOrderTraversalPolicy__pickNext_inBand, A._FormFieldState_State_RestorationMixin_dispose_closure, A.Element_updateChildren_slotFor, A.Hero__allHeroesFor_inviteHero, A._HeroFlight__buildOverlay_closure, A.HeroController__defaultHeroFlightShuttleBuilder_closure, A._HistoryProperty_fromPrimitives_closure, A._NavigatorState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure, A._RenderTheaterMixin_hitTestChildren_childHitTest, A._StretchingOverscrollIndicatorState_build_closure, A._PageViewState_build_closure0, A._PlatformViewLinkState_build_closure, A.SliverReorderableListState__wrapWithSemantics_reorder, A._DragItemProxy_build_closure, A.__RestorationScopeState_State_RestorationMixin_dispose_closure, A.__RouterState_State_RestorationMixin_dispose_closure, A._ModalScopeState_build_closure, A._ModalScopeState_build__closure0, A._ModalScopeState_build___closure, A.ScrollView_build_closure, A.ListView$separated_closure, A.ListView$separated_closure0, A._ScrollableState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure, A._ScrollableSelectionContainerDelegate_didChangeSelectables_closure, A._ScrollableSelectionContainerDelegate_didChangeSelectables_closure0, A.ScrollableDetails_toString_addIfNonNull, A.ShortcutManager__indexShortcuts_closure, A.CallbackShortcuts_build_closure, A.SingleChildScrollView_build_closure, A._RenderSingleChildViewport_paint_paintContents, A._RenderSingleChildViewport_hitTestChildren_closure, A.View_build_closure, A._RenderScaledInlineWidget_paint_closure, A._RenderScaledInlineWidget_hitTestChildren_closure, A.loadDateIntlDataIfNotLoaded_closure, A._StoreStreamListenerState_build_closure, A._RenderFlexEntranceTransition_hitTestChildren_closure, A.RenderStaggeredGrid__computeSize_computeCrossAxisCellCount, A.RenderFollower_hitTestChildren_closure, A.RenderFollower_paint_closure0, A.FollowerFadeOutBeyondBoundary_build_closure, A.RenderLeader_paint_closure, A.Element__addOuterHtml_closure, A.Phase_startTagHtml_closure, A.InBodyPhase_startTagBody_closure, A.formatStr_closure, A._separatingNewlines_closure, A._BaseRules_defaultRule_closure, A._CommonRules_paragraph_closure, A._CommonRules_lineBreak_closure, A._CommonRules_heading_closure, A._CommonRules_blockquote_closure, A._CommonRules_list_closure, A._CommonRules_listItem_closure, A._CommonRules_indentedCodeBlock_closure0, A._CommonRules_fencedCodeBlock_closure0, A._CommonRules_horizontalRule_closure, A._CommonRules_inlineLink_closure0, A._CommonRules_referenceLink_closure1, A._CommonRules_emphasis_closure, A._CommonRules_strong_closure, A._CommonRules_strike_closure, A._CommonRules_code_closure0, A._CommonRules_image_closure, A._TableRules_tableCell_closure, A._TableRules_tableRow_closure, A._TableRules_table_closure, A._TableRules_tableSection_closure, A._TableRules_captionSection_closure, A.BaseRequest_closure, A.mapToQuery_closure, A.MediaType_toString_closure, A.IfdContainer$from_closure, A.IfdDirectory_copy_closure, A.IfdDirectory_copy_closure0, A._$ProductDetailsResponseWrapperFromJson_closure, A._$PurchasesResultWrapperFromJson_closure, A._$SKErrorFromJson_closure, A._$SKProductDiscountWrapperFromJson_closure, A._$SKProductDiscountWrapperFromJson_closure0, A._$SKProductWrapperFromJson_closure, A._$SKProductWrapperFromJson_closure0, A.DateFormat__fieldConstructors_closure, A.DateFormat__fieldConstructors_closure0, A.DateFormat__fieldConstructors_closure1, A._CountryPickerDialogState_initState_closure, A._CountryPickerDialogState_build__closure0, A._CountryPickerDialogState_build_closure0, A._IntlPhoneFieldState__changeCountry__closure, A.GatewayEntity_supportedEvents_closure, A.InvoiceEntity_getTaxes_calculateAmount, A.TaskEntity_getTaskTimes_closure0, A._parseError_closure, A.InvoiceNinjaAppState_build__closure123, A.lastErrorReducer_closure, A.lastErrorReducer_closure0, A.lastErrorReducer_closure1, A.lastErrorReducer_closure2, A.lastErrorReducer_closure3, A.lastErrorReducer_closure4, A.lastErrorReducer_closure5, A.lastErrorReducer_closure6, A.lastErrorReducer_closure7, A.lastErrorReducer_closure8, A.lastErrorReducer_closure9, A.lastErrorReducer_closure10, A.lastErrorReducer_closure11, A.lastErrorReducer_closure12, A.lastErrorReducer_closure13, A.lastErrorReducer_closure14, A.lastErrorReducer_closure15, A.lastErrorReducer_closure16, A.lastErrorReducer_closure17, A.lastErrorReducer_closure18, A.lastErrorReducer_closure19, A.lastErrorReducer_closure20, A.lastErrorReducer_closure21, A.lastErrorReducer_closure22, A.lastErrorReducer_closure23, A.dismissedNativeWarningReducer_closure, A.dismissedNativeWarningReducer_closure0, A.forceSelectedReducer_closure176, A.forceSelectedReducer_closure177, A.forceSelectedReducer_closure178, A.forceSelectedReducer_closure179, A.forceSelectedReducer_closure180, A.forceSelectedReducer_closure181, A.forceSelectedReducer_closure182, A.forceSelectedReducer_closure183, A.tabIndexReducer_closure21, A.tabIndexReducer_closure22, A.selectedIdReducer_closure338, A.selectedIdReducer_closure339, A.selectedIdReducer_closure340, A.selectedIdReducer_closure341, A.selectedIdReducer_closure342, A.selectedIdReducer_closure343, A.selectedIdReducer_closure344, A.selectedIdReducer_closure345, A.selectedIdReducer_closure346, A.selectedIdReducer_closure347, A.selectedIdReducer_closure348, A.selectedIdReducer_closure349, A.selectedIdReducer_closure350, A.selectedIdReducer_closure351, A.selectedIdReducer_closure352, A.editingReducer_closure114, A.editingReducer_closure115, A.editingReducer_closure116, A.editingReducer_closure117, A.bankAccountListReducer_closure, A.dropdownBankAccountsSelector_closure0, A.filteredBankAccountsSelector_closure0, A.handleClientAction__closure, A.__MergClientPickerState_build__closure, A.forceSelectedReducer_closure218, A.forceSelectedReducer_closure219, A.forceSelectedReducer_closure220, A.forceSelectedReducer_closure221, A.forceSelectedReducer_closure222, A.forceSelectedReducer_closure223, A.forceSelectedReducer_closure224, A.forceSelectedReducer_closure225, A.tabIndexReducer_closure31, A.tabIndexReducer_closure32, A.saveCompleterReducer_closure2, A.cancelCompleterReducer_closure2, A.editingContactReducer_closure, A.editingContactReducer_closure0, A.selectedIdReducer_closure418, A.selectedIdReducer_closure419, A.selectedIdReducer_closure420, A.selectedIdReducer_closure421, A.selectedIdReducer_closure422, A.selectedIdReducer_closure423, A.selectedIdReducer_closure424, A.selectedIdReducer_closure425, A.selectedIdReducer_closure426, A.selectedIdReducer_closure427, A.selectedIdReducer_closure428, A.selectedIdReducer_closure429, A.selectedIdReducer_closure430, A.selectedIdReducer_closure431, A.selectedIdReducer_closure432, A.selectedIdReducer_closure433, A.selectedIdReducer_closure434, A.editingReducer_closure141, A.editingReducer_closure142, A.editingReducer_closure143, A.editingReducer_closure144, A.editingReducer_closure145, A.editingReducer_closure146, A.editingReducer_closure147, A.editingReducer_closure148, A.editingReducer_closure149, A.editingReducer_closure150, A.editingReducer_closure151, A.editingReducer_closure152, A.editingReducer_closure153, A.editingReducer_closure154, A.clientListReducer_closure, A.dropdownClientsSelector_closure0, A.memoizedClientStatsForUser_closure, A.clientStatsForUser_closure, A.filteredClientsSelector_closure0, A.userCompanyEntityReducer_closure, A.userCompanyEntityReducer_closure0, A.userCompanyEntityReducer_closure1, A.userCompanyEntityReducer_closure2, A.userCompanyEntityReducer_closure3, A.userCompanyEntityReducer_closure4, A.userCompanyEntityReducer_closure5, A.userCompanyEntityReducer_closure6, A.userCompanyEntityReducer_closure7, A.userCompanyEntityReducer_closure8, A.userCompanyEntityReducer_closure9, A.userCompanyEntityReducer_closure10, A.lastUpdatedReducer_closure, A.lastUpdatedReducer_closure0, A.memoizedDropdownExpenseCategoriesList_closure, A.dropdownExpenseCategoriesSelector_closure2, A.getCurrencyIds_closure, A.memoizedFilteredSelector_closure, A.filteredSelector_closure13, A.handleCompanyGatewayAction__closure, A.forceSelectedReducer_closure64, A.forceSelectedReducer_closure65, A.forceSelectedReducer_closure66, A.forceSelectedReducer_closure67, A.forceSelectedReducer_closure68, A.forceSelectedReducer_closure69, A.forceSelectedReducer_closure70, A.forceSelectedReducer_closure71, A.selectedIdReducer_closure121, A.selectedIdReducer_closure122, A.selectedIdReducer_closure123, A.selectedIdReducer_closure124, A.selectedIdReducer_closure125, A.selectedIdReducer_closure126, A.selectedIdReducer_closure127, A.selectedIdReducer_closure128, A.selectedIdReducer_closure129, A.selectedIdReducer_closure130, A.selectedIdReducer_closure131, A.selectedIdReducer_closure132, A.selectedIdReducer_closure133, A.selectedIdReducer_closure134, A.selectedIdReducer_closure135, A.editingReducer_closure37, A.editingReducer_closure38, A.editingReducer_closure39, A.editingReducer_closure40, A.companyGatewayListReducer_closure, A.memoizedCalculateCompanyGatewayProcessed_closure, A.calculateCompanyGatewayProcessed_closure, A.memoizedClientStatsForCompanyGateway_closure, A.clientStatsForCompanyGateway_closure, A.memoizedPaymentStatsForCompanyGateway_closure, A.paymentStatsForCompanyGateway_closure, A.getUnconnectedStripeAccount_closure, A.forceSelectedReducer_closure84, A.forceSelectedReducer_closure85, A.forceSelectedReducer_closure86, A.forceSelectedReducer_closure87, A.forceSelectedReducer_closure88, A.forceSelectedReducer_closure89, A.forceSelectedReducer_closure90, A.forceSelectedReducer_closure91, A.forceSelectedReducer_closure92, A.tabIndexReducer_closure11, A.tabIndexReducer_closure12, A.historyActivityIdReducer_closure0, A.editingItemReducer_closure1, A.editingItemReducer_closure2, A.selectedIdReducer_closure162, A.selectedIdReducer_closure163, A.selectedIdReducer_closure164, A.selectedIdReducer_closure165, A.selectedIdReducer_closure166, A.selectedIdReducer_closure167, A.selectedIdReducer_closure168, A.selectedIdReducer_closure169, A.selectedIdReducer_closure170, A.selectedIdReducer_closure171, A.selectedIdReducer_closure172, A.selectedIdReducer_closure173, A.selectedIdReducer_closure174, A.selectedIdReducer_closure175, A.selectedIdReducer_closure176, A.selectedIdReducer_closure177, A.selectedIdReducer_closure178, A.selectedIdReducer_closure179, A.selectedIdReducer_closure180, A.editingReducer_closure49, A.editingReducer_closure50, A.editingReducer_closure51, A.editingReducer_closure52, A.editingReducer_closure53, A.editingReducer_closure54, A.editingReducer_closure55, A.editingReducer_closure56, A.editingReducer_closure57, A.editingReducer_closure58, A.editingReducer_closure59, A.creditListReducer_closure, A._purgeClientSuccess__closure5, A.dropdownCreditSelector_closure0, A.filteredCreditsSelector_closure, A.filteredCreditsSelector_closure1, A.memoizedCreditStatsForDesign_closure, A.creditStatsForDesign_closure, A.memoizedCreditStatsForClient_closure, A.creditStatsForClient_closure, A.memoizedCreditStatsForUser_closure, A.creditStatsForUser_closure, A.selectedEntitiesReducer_closure, A.selectedEntitiesReducer_closure0, A.selectedEntityTypeReducer_closure, A.showSidebarReducer_closure, A._chartInvoices_closure, A.chartQuotes_closure, A.chartPayments_closure, A.chartTasks_closure, A.chartTasks___closure, A.chartExpenses_closure, A.memoizedRunningTasks_closure0, A.runningTasks_closure, A.memoizedUpcomingInvoices_closure, A._upcomingInvoices_closure, A._upcomingInvoices_closure0, A.memoizedPastDueInvoices_closure, A._pastDueInvoices_closure, A._pastDueInvoices_closure0, A.memoizedRecentPayments_closure, A._recentPayments_closure, A._recentPayments_closure0, A.memoizedUpcomingQuotes_closure, A._upcomingQuotes_closure, A._upcomingQuotes_closure0, A.memoizedExpiredQuotes_closure, A._expiredQuotes_closure, A._expiredQuotes_closure0, A.memoizedRunningTasks_closure, A._runningTasks_closure, A._runningTasks_closure0, A.memoizedRecentTasks_closure, A._recentTasks_closure, A._recentTasks_closure0, A.memoizedRecentExpenses_closure, A._recentExpenses_closure, A._recentExpenses_closure0, A.forceSelectedReducer_closure93, A.forceSelectedReducer_closure94, A.forceSelectedReducer_closure95, A.forceSelectedReducer_closure96, A.forceSelectedReducer_closure97, A.forceSelectedReducer_closure98, A.forceSelectedReducer_closure99, A.forceSelectedReducer_closure100, A.selectedIdReducer_closure181, A.selectedIdReducer_closure182, A.selectedIdReducer_closure183, A.selectedIdReducer_closure184, A.selectedIdReducer_closure185, A.selectedIdReducer_closure186, A.selectedIdReducer_closure187, A.selectedIdReducer_closure188, A.selectedIdReducer_closure189, A.selectedIdReducer_closure190, A.selectedIdReducer_closure191, A.selectedIdReducer_closure192, A.selectedIdReducer_closure193, A.selectedIdReducer_closure194, A.editingReducer_closure60, A.editingReducer_closure61, A.editingReducer_closure62, A.editingReducer_closure63, A.designListReducer_closure, A.filteredDesignsSelector_closure0, A.handleDocumentAction__closure, A.forceSelectedReducer_closure51, A.forceSelectedReducer_closure52, A.forceSelectedReducer_closure53, A.forceSelectedReducer_closure54, A.forceSelectedReducer_closure55, A.forceSelectedReducer_closure56, A.forceSelectedReducer_closure57, A.forceSelectedReducer_closure58, A.forceSelectedReducer_closure59, A.selectedIdReducer_closure95, A.selectedIdReducer_closure96, A.selectedIdReducer_closure97, A.selectedIdReducer_closure98, A.selectedIdReducer_closure99, A.selectedIdReducer_closure100, A.selectedIdReducer_closure101, A.selectedIdReducer_closure102, A.selectedIdReducer_closure103, A.selectedIdReducer_closure104, A.selectedIdReducer_closure105, A.selectedIdReducer_closure106, A.selectedIdReducer_closure107, A.selectedIdReducer_closure108, A.editingReducer_closure32, A.documentListReducer_closure, A.filteredDocumentsSelector_closure0, A.forceSelectedReducer_closure42, A.forceSelectedReducer_closure43, A.forceSelectedReducer_closure44, A.forceSelectedReducer_closure45, A.forceSelectedReducer_closure46, A.forceSelectedReducer_closure47, A.forceSelectedReducer_closure48, A.forceSelectedReducer_closure49, A.forceSelectedReducer_closure50, A.tabIndexReducer_closure9, A.tabIndexReducer_closure10, A.selectedIdReducer_closure80, A.selectedIdReducer_closure81, A.selectedIdReducer_closure82, A.selectedIdReducer_closure83, A.selectedIdReducer_closure84, A.selectedIdReducer_closure85, A.selectedIdReducer_closure86, A.selectedIdReducer_closure87, A.selectedIdReducer_closure88, A.selectedIdReducer_closure89, A.selectedIdReducer_closure90, A.selectedIdReducer_closure91, A.selectedIdReducer_closure92, A.selectedIdReducer_closure93, A.selectedIdReducer_closure94, A.editingReducer_closure28, A.editingReducer_closure29, A.editingReducer_closure30, A.editingReducer_closure31, A.expenseListReducer_closure, A._purgeClientSuccess__closure13, A.memoizedExpensePurchaseOrderSelector_closure, A.expensePurchaseOrderSelector_closure, A.filteredExpensesSelector_closure0, A.memoizedExpenseStatsForVendor_closure, A.expenseStatsForVendor_closure, A.memoizedExpenseStatsForClient_closure, A.expenseStatsForClient_closure, A.memoizedClientExpenseList_closure, A.clientExpenseList_closure0, A.memoizedExpenseStatsForProject_closure, A.expenseStatsForProject_closure, A.memoizedExpenseStatsForUser_closure, A.expenseStatsForUser_closure, A.saveCompleterReducer_closure1, A.cancelCompleterReducer_closure1, A.forceSelectedReducer_closure134, A.forceSelectedReducer_closure135, A.forceSelectedReducer_closure136, A.forceSelectedReducer_closure137, A.forceSelectedReducer_closure138, A.forceSelectedReducer_closure139, A.forceSelectedReducer_closure140, A.forceSelectedReducer_closure141, A.selectedIdReducer_closure258, A.selectedIdReducer_closure259, A.selectedIdReducer_closure260, A.selectedIdReducer_closure261, A.selectedIdReducer_closure262, A.selectedIdReducer_closure263, A.selectedIdReducer_closure264, A.selectedIdReducer_closure265, A.selectedIdReducer_closure266, A.selectedIdReducer_closure267, A.selectedIdReducer_closure268, A.selectedIdReducer_closure269, A.selectedIdReducer_closure270, A.selectedIdReducer_closure271, A.selectedIdReducer_closure272, A.editingReducer_closure87, A.editingReducer_closure88, A.editingReducer_closure89, A.editingReducer_closure90, A.expenseCategoryListReducer_closure, A.dropdownExpenseCategoriesSelector_closure0, A.filteredExpenseCategoriesSelector_closure0, A.memoizedCalculateExpenseCategoryAmount_closure, A.calculateExpenseCategoryAmount_closure, A.memoizedExpenseStatsForExpenseCategory_closure, A.expenseStatsForExpenseCategory_closure, A.memoizedTransactionStatsForExpenseCategory_closure, A.transactionStatsForExpenseCategory_closure, A.forceSelectedReducer_closure60, A.forceSelectedReducer_closure61, A.forceSelectedReducer_closure62, A.forceSelectedReducer_closure63, A.selectedIdReducer_closure109, A.selectedIdReducer_closure110, A.selectedIdReducer_closure111, A.selectedIdReducer_closure112, A.selectedIdReducer_closure113, A.selectedIdReducer_closure114, A.selectedIdReducer_closure115, A.selectedIdReducer_closure116, A.selectedIdReducer_closure117, A.selectedIdReducer_closure118, A.selectedIdReducer_closure119, A.selectedIdReducer_closure120, A.editingReducer_closure33, A.editingReducer_closure34, A.editingReducer_closure35, A.editingReducer_closure36, A.groupListReducer_closure, A.filteredGroupsSelector_closure0, A.memoizedClientStatsForGroup_closure, A.clientStatsForGroup_closure, A.forceSelectedReducer_closure209, A.forceSelectedReducer_closure210, A.forceSelectedReducer_closure211, A.forceSelectedReducer_closure212, A.forceSelectedReducer_closure213, A.forceSelectedReducer_closure214, A.forceSelectedReducer_closure215, A.forceSelectedReducer_closure216, A.forceSelectedReducer_closure217, A.tabIndexReducer_closure29, A.tabIndexReducer_closure30, A.historyActivityIdReducer_closure3, A.editingItemIndexReducer_closure1, A.editingItemIndexReducer_closure2, A.selectedIdReducer_closure399, A.selectedIdReducer_closure400, A.selectedIdReducer_closure401, A.selectedIdReducer_closure402, A.selectedIdReducer_closure403, A.selectedIdReducer_closure404, A.selectedIdReducer_closure405, A.selectedIdReducer_closure406, A.selectedIdReducer_closure407, A.selectedIdReducer_closure408, A.selectedIdReducer_closure409, A.selectedIdReducer_closure410, A.selectedIdReducer_closure411, A.selectedIdReducer_closure412, A.selectedIdReducer_closure413, A.selectedIdReducer_closure414, A.selectedIdReducer_closure415, A.selectedIdReducer_closure416, A.selectedIdReducer_closure417, A.editingReducer_closure130, A.editingReducer_closure131, A.editingReducer_closure132, A.editingReducer_closure133, A.editingReducer_closure134, A.editingReducer_closure135, A.editingReducer_closure136, A.editingReducer_closure137, A.editingReducer_closure138, A.editingReducer_closure139, A.editingReducer_closure140, A.invoiceListReducer_closure, A._purgeClientSuccess__closure15, A.memoizedHasActiveUnpaidInvoices_closure, A.memoizedInvoiceQuoteSelector_closure, A.invoiceQuoteSelector_closure, A.dropdownInvoiceSelector_closure0, A.filteredInvoicesSelector_closure, A.filteredInvoicesSelector_closure1, A.memoizedInvoiceStatsForClient_closure, A.invoiceStatsForClient_closure, A.memoizedInvoiceStatsForDesign_closure, A.invoiceStatsForDesign_closure, A.memoizedInvoiceStatsForSubscription_closure, A.invoiceStatsForSubscription_closure, A.memoizedInvoiceStatsForProject_closure, A.invoiceStatsForProject_closure, A.memoizedQuoteStatsForProject_closure, A.quoteStatsForProject_closure, A.memoizedInvoiceStatsForUser_closure, A.invoiceStatsForUser_closure, A.forceSelectedReducer_closure8, A.forceSelectedReducer_closure9, A.forceSelectedReducer_closure10, A.forceSelectedReducer_closure11, A.forceSelectedReducer_closure12, A.forceSelectedReducer_closure13, A.forceSelectedReducer_closure14, A.forceSelectedReducer_closure15, A.forceSelectedReducer_closure16, A.tabIndexReducer_closure1, A.tabIndexReducer_closure2, A.selectedIdReducer_closure18, A.selectedIdReducer_closure19, A.selectedIdReducer_closure20, A.selectedIdReducer_closure21, A.selectedIdReducer_closure22, A.selectedIdReducer_closure23, A.selectedIdReducer_closure24, A.selectedIdReducer_closure25, A.selectedIdReducer_closure26, A.selectedIdReducer_closure27, A.selectedIdReducer_closure28, A.selectedIdReducer_closure29, A.selectedIdReducer_closure30, A.selectedIdReducer_closure31, A.selectedIdReducer_closure32, A.selectedIdReducer_closure33, A.selectedIdReducer_closure34, A.editingReducer_closure10, A.editingReducer_closure11, A.editingReducer_closure12, A.editingReducer_closure13, A.paymentListReducer_closure, A._purgeClientSuccess__closure1, A.filteredPaymentsSelector_closure0, A.paymentStatsForClient_closure, A.forceSelectedReducer_closure101, A.forceSelectedReducer_closure102, A.forceSelectedReducer_closure103, A.forceSelectedReducer_closure104, A.forceSelectedReducer_closure105, A.forceSelectedReducer_closure106, A.forceSelectedReducer_closure107, A.forceSelectedReducer_closure108, A.selectedIdReducer_closure195, A.selectedIdReducer_closure196, A.selectedIdReducer_closure197, A.selectedIdReducer_closure198, A.selectedIdReducer_closure199, A.selectedIdReducer_closure200, A.selectedIdReducer_closure201, A.selectedIdReducer_closure202, A.selectedIdReducer_closure203, A.selectedIdReducer_closure204, A.selectedIdReducer_closure205, A.selectedIdReducer_closure206, A.selectedIdReducer_closure207, A.selectedIdReducer_closure208, A.editingReducer_closure64, A.editingReducer_closure65, A.editingReducer_closure66, A.editingReducer_closure67, A.paymentTermListReducer_closure, A.memoizedDropdownPaymentTermList_closure, A.dropdownPaymentTermsSelector_closure0, A.filteredPaymentTermsSelector_closure0, A.forceSelectedReducer_closure226, A.forceSelectedReducer_closure227, A.forceSelectedReducer_closure228, A.forceSelectedReducer_closure229, A.forceSelectedReducer_closure230, A.forceSelectedReducer_closure231, A.forceSelectedReducer_closure232, A.forceSelectedReducer_closure233, A.tabIndexReducer_closure33, A.tabIndexReducer_closure34, A.editingReducer_closure155, A.editingReducer_closure156, A.editingReducer_closure157, A.editingReducer_closure158, A.selectedIdReducer_closure435, A.selectedIdReducer_closure436, A.selectedIdReducer_closure437, A.selectedIdReducer_closure438, A.selectedIdReducer_closure439, A.selectedIdReducer_closure440, A.selectedIdReducer_closure441, A.selectedIdReducer_closure442, A.selectedIdReducer_closure443, A.selectedIdReducer_closure444, A.selectedIdReducer_closure445, A.selectedIdReducer_closure446, A.selectedIdReducer_closure447, A.selectedIdReducer_closure448, A.productListReducer_closure, A.dropdownProductsSelector_closure0, A.productList_closure0, A.filteredProductsSelector_closure0, A.forceSelectedReducer_closure17, A.forceSelectedReducer_closure18, A.forceSelectedReducer_closure19, A.forceSelectedReducer_closure20, A.forceSelectedReducer_closure21, A.forceSelectedReducer_closure22, A.forceSelectedReducer_closure23, A.forceSelectedReducer_closure24, A.tabIndexReducer_closure3, A.tabIndexReducer_closure4, A.saveCompleterReducer_closure, A.cancelCompleterReducer_closure, A.selectedIdReducer_closure35, A.selectedIdReducer_closure36, A.selectedIdReducer_closure37, A.selectedIdReducer_closure38, A.selectedIdReducer_closure39, A.selectedIdReducer_closure40, A.selectedIdReducer_closure41, A.selectedIdReducer_closure42, A.selectedIdReducer_closure43, A.selectedIdReducer_closure44, A.selectedIdReducer_closure45, A.selectedIdReducer_closure46, A.selectedIdReducer_closure47, A.selectedIdReducer_closure48, A.selectedIdReducer_closure49, A.editingReducer_closure14, A.editingReducer_closure15, A.editingReducer_closure16, A.editingReducer_closure17, A.projectListReducer_closure, A._purgeClientSuccess__closure3, A.convertProjectToInvoiceItem_closure, A.convertProjectToInvoiceItem_closure0, A.convertProjectToInvoiceItem_closure1, A.convertProjectToInvoiceItem_closure2, A.dropdownProjectsSelector_closure0, A.filteredProjectsSelector_closure0, A.taskDurationForProject_closure, A.memoizedProjectStatsForClient_closure, A.projectStatsForClient_closure, A.memoizedProjectStatsForUser_closure, A.forceSelectedReducer_closure167, A.forceSelectedReducer_closure168, A.forceSelectedReducer_closure169, A.forceSelectedReducer_closure170, A.forceSelectedReducer_closure171, A.forceSelectedReducer_closure172, A.forceSelectedReducer_closure173, A.forceSelectedReducer_closure174, A.forceSelectedReducer_closure175, A.tabIndexReducer_closure19, A.tabIndexReducer_closure20, A.historyActivityIdReducer_closure2, A.editingItemReducer_closure3, A.editingItemReducer_closure4, A.selectedIdReducer_closure319, A.selectedIdReducer_closure320, A.selectedIdReducer_closure321, A.selectedIdReducer_closure322, A.selectedIdReducer_closure323, A.selectedIdReducer_closure324, A.selectedIdReducer_closure325, A.selectedIdReducer_closure326, A.selectedIdReducer_closure327, A.selectedIdReducer_closure328, A.selectedIdReducer_closure329, A.selectedIdReducer_closure330, A.selectedIdReducer_closure331, A.selectedIdReducer_closure332, A.selectedIdReducer_closure333, A.selectedIdReducer_closure334, A.selectedIdReducer_closure335, A.selectedIdReducer_closure336, A.selectedIdReducer_closure337, A.editingReducer_closure103, A.editingReducer_closure104, A.editingReducer_closure105, A.editingReducer_closure106, A.editingReducer_closure107, A.editingReducer_closure108, A.editingReducer_closure109, A.editingReducer_closure110, A.editingReducer_closure111, A.editingReducer_closure112, A.editingReducer_closure113, A.purchaseOrderListReducer_closure, A.dropdownPurchaseOrdersSelector_closure0, A.filteredPurchaseOrdersSelector_closure0, A.memoizedPurchaseOrderStatsForVendor_closure, A.purchaseOrderStatsForVendor_closure, A.forceSelectedReducer_closure, A.forceSelectedReducer_closure0, A.forceSelectedReducer_closure1, A.forceSelectedReducer_closure2, A.forceSelectedReducer_closure3, A.forceSelectedReducer_closure4, A.forceSelectedReducer_closure5, A.forceSelectedReducer_closure6, A.forceSelectedReducer_closure7, A.tabIndexReducer_closure, A.tabIndexReducer_closure0, A.historyActivityIdReducer_closure, A.editingItemReducer_closure, A.editingItemReducer_closure0, A.selectedIdReducer_closure, A.selectedIdReducer_closure0, A.selectedIdReducer_closure1, A.selectedIdReducer_closure2, A.selectedIdReducer_closure3, A.selectedIdReducer_closure4, A.selectedIdReducer_closure5, A.selectedIdReducer_closure6, A.selectedIdReducer_closure7, A.selectedIdReducer_closure8, A.selectedIdReducer_closure9, A.selectedIdReducer_closure10, A.selectedIdReducer_closure11, A.selectedIdReducer_closure12, A.selectedIdReducer_closure13, A.selectedIdReducer_closure14, A.selectedIdReducer_closure15, A.selectedIdReducer_closure16, A.selectedIdReducer_closure17, A.editingReducer_closure, A.editingReducer_closure0, A.editingReducer_closure1, A.editingReducer_closure2, A.editingReducer_closure3, A.editingReducer_closure4, A.editingReducer_closure5, A.editingReducer_closure6, A.editingReducer_closure7, A.editingReducer_closure8, A.editingReducer_closure9, A.quoteListReducer_closure, A._purgeClientSuccess__closure, A.dropdownQuoteSelector_closure0, A.filteredQuotesSelector_closure0, A.memoizedQuoteStatsForClient_closure, A.quoteStatsForClient_closure, A.memoizedQuoteStatsForDesign_closure, A.quoteStatsForDesign_closure, A.memoizedQuoteStatsForUser_closure, A.quoteStatsForUser_closure, A.forceSelectedReducer_closure158, A.forceSelectedReducer_closure159, A.forceSelectedReducer_closure160, A.forceSelectedReducer_closure161, A.forceSelectedReducer_closure162, A.forceSelectedReducer_closure163, A.forceSelectedReducer_closure164, A.forceSelectedReducer_closure165, A.forceSelectedReducer_closure166, A.tabIndexReducer_closure17, A.tabIndexReducer_closure18, A.selectedIdReducer_closure303, A.selectedIdReducer_closure304, A.selectedIdReducer_closure305, A.selectedIdReducer_closure306, A.selectedIdReducer_closure307, A.selectedIdReducer_closure308, A.selectedIdReducer_closure309, A.selectedIdReducer_closure310, A.selectedIdReducer_closure311, A.selectedIdReducer_closure312, A.selectedIdReducer_closure313, A.selectedIdReducer_closure314, A.selectedIdReducer_closure315, A.selectedIdReducer_closure316, A.selectedIdReducer_closure317, A.selectedIdReducer_closure318, A.editingReducer_closure99, A.editingReducer_closure100, A.editingReducer_closure101, A.editingReducer_closure102, A.recurringExpenseListReducer_closure, A._purgeClientSuccess__closure9, A.filteredRecurringExpensesSelector_closure0, A.memoizedRecurringExpenseStatsForClient_closure, A.recurringExpenseStatsForClient_closure, A.memoizedRecurringExpenseStatsForVendor_closure, A.recurringExpenseStatsForVendor_closure, A.memoizedTransactionStatsForVendor_closure, A.transactionStatsForVendor_closure, A.memoizedRecurringExpenseStatsForUser_closure, A.recurringExpenseStatsForUser_closure, A.memoizedRecurringExpenseStatsForExpense_closure, A.recurringExpenseStatsForExpense_closure, A.forceSelectedReducer_closure125, A.forceSelectedReducer_closure126, A.forceSelectedReducer_closure127, A.forceSelectedReducer_closure128, A.forceSelectedReducer_closure129, A.forceSelectedReducer_closure130, A.forceSelectedReducer_closure131, A.forceSelectedReducer_closure132, A.forceSelectedReducer_closure133, A.tabIndexReducer_closure13, A.tabIndexReducer_closure14, A.historyActivityIdReducer_closure1, A.editingItemIndexReducer_closure, A.editingItemIndexReducer_closure0, A.selectedIdReducer_closure239, A.selectedIdReducer_closure240, A.selectedIdReducer_closure241, A.selectedIdReducer_closure242, A.selectedIdReducer_closure243, A.selectedIdReducer_closure244, A.selectedIdReducer_closure245, A.selectedIdReducer_closure246, A.selectedIdReducer_closure247, A.selectedIdReducer_closure248, A.selectedIdReducer_closure249, A.selectedIdReducer_closure250, A.selectedIdReducer_closure251, A.selectedIdReducer_closure252, A.selectedIdReducer_closure253, A.selectedIdReducer_closure254, A.selectedIdReducer_closure255, A.selectedIdReducer_closure256, A.selectedIdReducer_closure257, A.editingReducer_closure76, A.editingReducer_closure77, A.editingReducer_closure78, A.editingReducer_closure79, A.editingReducer_closure80, A.editingReducer_closure81, A.editingReducer_closure82, A.editingReducer_closure83, A.editingReducer_closure84, A.editingReducer_closure85, A.editingReducer_closure86, A.recurringInvoiceListReducer_closure, A._purgeClientSuccess__closure7, A.filteredRecurringInvoicesSelector_closure0, A.memoizedRecurringInvoiceStatsForClient_closure, A.recurringInvoiceStatsForClient_closure, A.memoizedRecurringInvoiceStatsForUser_closure, A.recurringInvoiceStatsForUser_closure, A.memoizedRecurringInvoiceStatsForInvoice_closure, A.recurringInvoiceStatsForInvoice_closure, A.memoizedRecurringInvoiceStatsForDesign_closure, A.recurringInvoiceStatsForDesign_closure, A.memoizedRecurringInvoiceStatsForSubscription_closure, A.recurringInvoiceStatsForSubscription_closure, A.forceSelectedReducer_closure201, A.forceSelectedReducer_closure202, A.forceSelectedReducer_closure203, A.forceSelectedReducer_closure204, A.forceSelectedReducer_closure205, A.forceSelectedReducer_closure206, A.forceSelectedReducer_closure207, A.forceSelectedReducer_closure208, A.tabIndexReducer_closure27, A.tabIndexReducer_closure28, A.selectedIdReducer_closure384, A.selectedIdReducer_closure385, A.selectedIdReducer_closure386, A.selectedIdReducer_closure387, A.selectedIdReducer_closure388, A.selectedIdReducer_closure389, A.selectedIdReducer_closure390, A.selectedIdReducer_closure391, A.selectedIdReducer_closure392, A.selectedIdReducer_closure393, A.selectedIdReducer_closure394, A.selectedIdReducer_closure395, A.selectedIdReducer_closure396, A.selectedIdReducer_closure397, A.selectedIdReducer_closure398, A.editingReducer_closure126, A.editingReducer_closure127, A.editingReducer_closure128, A.editingReducer_closure129, A.scheduleListReducer_closure, A.filteredSchedulesSelector_closure0, A.settingsUIReducer_closure, A.settingsUIReducer_closure0, A.settingsUIReducer_closure1, A.settingsUIReducer_closure2, A.settingsUIReducer_closure3, A.settingsUIReducer_closure4, A.settingsUIReducer_closure5, A.settingsUIReducer_closure6, A.settingsUIReducer_closure7, A.settingsUIReducer_closure8, A.settingsUIReducer_closure9, A.settingsUIReducer_closure10, A.settingsUIReducer_closure11, A.settingsUIReducer_closure12, A.settingsUIReducer_closure13, A.settingsUIReducer_closure14, A.settingsUIReducer_closure15, A.settingsUIReducer_closure16, A.settingsUIReducer_closure17, A.settingsUIReducer_closure18, A.countryList_closure, A.groupList_closure0, A.languageList_closure, A.currencyList_closure, A.timezoneList_closure, A.dateFormatList_closure, A.industryList_closure, A.sizeList_closure, A.memoizedGatewayList_closure, A.gatewayList_closure0, A.paymentTypeList_closure, A.forceSelectedReducer_closure150, A.forceSelectedReducer_closure151, A.forceSelectedReducer_closure152, A.forceSelectedReducer_closure153, A.forceSelectedReducer_closure154, A.forceSelectedReducer_closure155, A.forceSelectedReducer_closure156, A.forceSelectedReducer_closure157, A.tabIndexReducer_closure15, A.tabIndexReducer_closure16, A.selectedIdReducer_closure288, A.selectedIdReducer_closure289, A.selectedIdReducer_closure290, A.selectedIdReducer_closure291, A.selectedIdReducer_closure292, A.selectedIdReducer_closure293, A.selectedIdReducer_closure294, A.selectedIdReducer_closure295, A.selectedIdReducer_closure296, A.selectedIdReducer_closure297, A.selectedIdReducer_closure298, A.selectedIdReducer_closure299, A.selectedIdReducer_closure300, A.selectedIdReducer_closure301, A.selectedIdReducer_closure302, A.editingReducer_closure95, A.editingReducer_closure96, A.editingReducer_closure97, A.editingReducer_closure98, A.subscriptionListReducer_closure, A.filteredSubscriptionsSelector_closure0, A.handleTaskAction_closure1, A.forceSelectedReducer_closure25, A.forceSelectedReducer_closure26, A.forceSelectedReducer_closure27, A.forceSelectedReducer_closure28, A.forceSelectedReducer_closure29, A.forceSelectedReducer_closure30, A.forceSelectedReducer_closure31, A.forceSelectedReducer_closure32, A.forceSelectedReducer_closure33, A.tabIndexReducer_closure5, A.tabIndexReducer_closure6, A.kanbanLastUpdatedReducer_closure, A.editingTimeReducer_closure, A.editingTimeReducer_closure0, A.selectedIdReducer_closure50, A.selectedIdReducer_closure51, A.selectedIdReducer_closure52, A.selectedIdReducer_closure53, A.selectedIdReducer_closure54, A.selectedIdReducer_closure55, A.selectedIdReducer_closure56, A.selectedIdReducer_closure57, A.selectedIdReducer_closure58, A.selectedIdReducer_closure59, A.selectedIdReducer_closure60, A.selectedIdReducer_closure61, A.selectedIdReducer_closure62, A.selectedIdReducer_closure63, A.selectedIdReducer_closure64, A.editingReducer_closure18, A.editingReducer_closure19, A.editingReducer_closure20, A.editingReducer_closure21, A.editingReducer_closure22, A.editingReducer_closure23, A.taskListReducer_closure, A._purgeClientSuccess__closure11, A.convertTaskToInvoiceItem_closure1, A.taskList_closure0, A.kanbanTasksSelector_closure0, A.filteredTasksSelector_closure0, A.memoizedTaskStatsForClient_closure, A.taskStatsForClient_closure, A.memoizedTaskStatsForProject_closure, A.taskStatsForProject_closure, A.memoizedTaskStatsForUser_closure, A.forceSelectedReducer_closure142, A.forceSelectedReducer_closure143, A.forceSelectedReducer_closure144, A.forceSelectedReducer_closure145, A.forceSelectedReducer_closure146, A.forceSelectedReducer_closure147, A.forceSelectedReducer_closure148, A.forceSelectedReducer_closure149, A.selectedIdReducer_closure273, A.selectedIdReducer_closure274, A.selectedIdReducer_closure275, A.selectedIdReducer_closure276, A.selectedIdReducer_closure277, A.selectedIdReducer_closure278, A.selectedIdReducer_closure279, A.selectedIdReducer_closure280, A.selectedIdReducer_closure281, A.selectedIdReducer_closure282, A.selectedIdReducer_closure283, A.selectedIdReducer_closure284, A.selectedIdReducer_closure285, A.selectedIdReducer_closure286, A.selectedIdReducer_closure287, A.editingReducer_closure91, A.editingReducer_closure92, A.editingReducer_closure93, A.editingReducer_closure94, A.taskStatusListReducer_closure, A.memoizedSortedActiveTaskStatusIds_closure, A.sortedActiveTaskStatusIds_closure0, A.dropdownTaskStatusesSelector_closure0, A.filteredTaskStatusesSelector_closure0, A.memoizedCalculateTaskStatusAmount_closure, A.calculateTaskStatusAmount_closure, A.memoizedTaskStatsForTaskStatus_closure, A.taskStatsForTaskStatus_closure, A.defaultTaskStatusId_closure0, A.forceSelectedReducer_closure72, A.forceSelectedReducer_closure73, A.forceSelectedReducer_closure74, A.forceSelectedReducer_closure75, A.selectedIdReducer_closure136, A.selectedIdReducer_closure137, A.selectedIdReducer_closure138, A.selectedIdReducer_closure139, A.selectedIdReducer_closure140, A.selectedIdReducer_closure141, A.selectedIdReducer_closure142, A.selectedIdReducer_closure143, A.selectedIdReducer_closure144, A.selectedIdReducer_closure145, A.editingReducer_closure41, A.editingReducer_closure42, A.editingReducer_closure43, A.editingReducer_closure44, A.taxRateListReducer_closure, A.filteredTaxRatesSelector_closure0, A.forceSelectedReducer_closure109, A.forceSelectedReducer_closure110, A.forceSelectedReducer_closure111, A.forceSelectedReducer_closure112, A.forceSelectedReducer_closure113, A.forceSelectedReducer_closure114, A.forceSelectedReducer_closure115, A.forceSelectedReducer_closure116, A.selectedIdReducer_closure209, A.selectedIdReducer_closure210, A.selectedIdReducer_closure211, A.selectedIdReducer_closure212, A.selectedIdReducer_closure213, A.selectedIdReducer_closure214, A.selectedIdReducer_closure215, A.selectedIdReducer_closure216, A.selectedIdReducer_closure217, A.selectedIdReducer_closure218, A.selectedIdReducer_closure219, A.selectedIdReducer_closure220, A.selectedIdReducer_closure221, A.selectedIdReducer_closure222, A.selectedIdReducer_closure223, A.editingReducer_closure68, A.editingReducer_closure69, A.editingReducer_closure70, A.editingReducer_closure71, A.tokenListReducer_closure, A.filteredTokensSelector_closure0, A.forceSelectedReducer_closure184, A.forceSelectedReducer_closure185, A.forceSelectedReducer_closure186, A.forceSelectedReducer_closure187, A.forceSelectedReducer_closure188, A.forceSelectedReducer_closure189, A.forceSelectedReducer_closure190, A.forceSelectedReducer_closure191, A.forceSelectedReducer_closure192, A.tabIndexReducer_closure23, A.tabIndexReducer_closure24, A.selectedIdReducer_closure353, A.selectedIdReducer_closure354, A.selectedIdReducer_closure355, A.selectedIdReducer_closure356, A.selectedIdReducer_closure357, A.selectedIdReducer_closure358, A.selectedIdReducer_closure359, A.selectedIdReducer_closure360, A.selectedIdReducer_closure361, A.selectedIdReducer_closure362, A.selectedIdReducer_closure363, A.selectedIdReducer_closure364, A.selectedIdReducer_closure365, A.selectedIdReducer_closure366, A.selectedIdReducer_closure367, A.selectedIdReducer_closure368, A.editingReducer_closure118, A.editingReducer_closure119, A.editingReducer_closure120, A.editingReducer_closure121, A.transactionListReducer_closure, A.filteredTransactionsSelector_closure0, A.memoizedTransactionStatsForBankAccount_closure, A.transactionStatsForBankAccount_closure, A.forceSelectedReducer_closure193, A.forceSelectedReducer_closure194, A.forceSelectedReducer_closure195, A.forceSelectedReducer_closure196, A.forceSelectedReducer_closure197, A.forceSelectedReducer_closure198, A.forceSelectedReducer_closure199, A.forceSelectedReducer_closure200, A.tabIndexReducer_closure25, A.tabIndexReducer_closure26, A.selectedIdReducer_closure369, A.selectedIdReducer_closure370, A.selectedIdReducer_closure371, A.selectedIdReducer_closure372, A.selectedIdReducer_closure373, A.selectedIdReducer_closure374, A.selectedIdReducer_closure375, A.selectedIdReducer_closure376, A.selectedIdReducer_closure377, A.selectedIdReducer_closure378, A.selectedIdReducer_closure379, A.selectedIdReducer_closure380, A.selectedIdReducer_closure381, A.selectedIdReducer_closure382, A.selectedIdReducer_closure383, A.editingReducer_closure122, A.editingReducer_closure123, A.editingReducer_closure124, A.editingReducer_closure125, A.transactionRuleListReducer_closure, A.filteredTransactionRulesSelector_closure0, A.memoizedTransactionStatsForTransactionRule_closure, A.transactionStatsForTransactionRule_closure, A.sortFieldsReducer_closure, A.sortFieldsReducer_closure0, A.sortFieldsReducer_closure1, A.sortFieldsReducer_closure2, A.sortFieldsReducer_closure3, A.sortFieldsReducer_closure4, A.sortFieldsReducer_closure5, A.sortFieldsReducer_closure6, A.sortFieldsReducer_closure7, A.sortFieldsReducer_closure8, A.sortFieldsReducer_closure9, A.sortFieldsReducer_closure10, A.sortFieldsReducer_closure11, A.sortFieldsReducer_closure12, A.sortFieldsReducer_closure13, A.sortFieldsReducer_closure14, A.sortFieldsReducer_closure15, A.sortFieldsReducer_closure16, A.sortFieldsReducer_closure17, A.sortFieldsReducer_closure18, A.sortFieldsReducer_closure19, A.sortFieldsReducer_closure20, A.sidebarEditorReducer_closure, A.sidebarViewerReducer_closure, A.menuVisibleReducer_closure, A.menuVisibleReducer_closure0, A.textScaleFactorReducer_closure, A.historyVisibleReducer_closure, A.historyVisibleReducer_closure0, A.hideDesktopWarningReducer_closure, A.hideTaskExtensionBannerReducer_closure, A.hideGatewayWarningReducer_closure, A.hideReviewAppReducer_closure, A.hideReviewAppReducer_closure0, A.hideReviewAppReducer_closure1, A.hideOneYearReviewAppReducer_closure, A.hideOneYearReviewAppReducer_closure0, A.hideTwoYearReviewAppReducer_closure, A.layoutReducer_closure, A.moduleLayoutReducer_closure, A.moduleLayoutReducer_closure0, A.rowsPerPageReducer_closure, A.manuSidebarReducer_closure, A.historySidebarReducer_closure, A.darkModeTypeReducer_closure, A.darkModeSystemReducer_closure, A.statementIncludesReducer_closure, A.enableTooltipsReducer_closure, A.enableFlexibleSearchReducer_closure, A.enableNativeBrowserReducer_closure, A.persistDataReducer_closure, A.showKanbanReducer_closure, A.isFilterVisibleReducer_closure, A.longPressReducer_closure, A.tapSelectedToEditReducer_closure, A.downloadsFolderReducer_closure, A.isPreviewVisibleReducer_closure, A.isPreviewVisibleReducer_closure0, A.isPreviewVisibleReducer_closure1, A.isPreviewVisibleReducer_closure2, A.isPreviewVisibleReducer_closure3, A.isPreviewVisibleReducer_closure4, A.isPreviewVisibleReducer_closure5, A.isPreviewVisibleReducer_closure6, A.isPreviewVisibleReducer_closure7, A.isPreviewVisibleReducer_closure8, A.isPreviewVisibleReducer_closure9, A.isPreviewVisibleReducer_closure10, A.isPreviewVisibleReducer_closure11, A.isPreviewVisibleReducer_closure12, A.isPreviewVisibleReducer_closure13, A.isPreviewVisibleReducer_closure14, A.requireAuthenticationReducer_closure, A.colorThemeReducer_closure, A.darkColorThemeReducer_closure, A.showPdfPreviewReducer_closure, A.showPdfPreviewSideBySideReducer_closure, A.editAfterSavingReducer_closure, A.enableTouchEventsReducer_closure, A.customColorsReducer_closure, A.darkCustomColorsReducer_closure, A.historyReducer_closure, A.historyReducer_closure0, A.historyReducer_closure1, A.historyReducer_closure2, A.historyReducer_closure3, A.historyReducer_closure4, A.historyReducer_closure5, A.historyReducer_closure6, A.historyReducer_closure7, A.historyReducer_closure8, A.historyReducer_closure9, A.historyReducer_closure10, A.historyReducer_closure11, A.historyReducer_closure12, A.historyReducer_closure13, A.historyReducer_closure14, A.historyReducer_closure15, A.historyReducer_closure16, A.historyReducer_closure17, A.historyReducer_closure18, A.historyReducer_closure19, A.historyReducer_closure20, A.historyReducer_closure21, A.historyReducer_closure22, A.historyReducer_closure23, A.historyReducer_closure24, A.historyReducer_closure25, A.historyReducer_closure26, A.historyReducer_closure27, A.historyReducer_closure28, A.historyReducer_closure29, A.historyReducer_closure30, A.historyReducer_closure31, A.historyReducer_closure32, A.historyReducer_closure33, A.historyReducer_closure34, A.historyReducer_closure35, A.historyReducer_closure36, A.historyReducer_closure37, A.historyReducer_closure38, A.historyReducer_closure39, A.historyReducer_closure40, A.historyReducer_closure41, A.historyReducer_closure42, A.historyReducer_closure43, A.historyReducer_closure44, A.historyReducer_closure45, A.historyReducer_closure46, A.historyReducer_closure47, A.historyReducer_closure48, A.historyReducer_closure49, A.historyReducer_closure50, A.historyReducer_closure51, A.historyReducer_closure52, A.historyReducer_closure53, A.historyReducer_closure54, A.historyReducer_closure55, A.historyReducer_closure56, A.historyReducer_closure57, A.historyReducer_closure58, A.historyReducer_closure59, A.historyReducer_closure60, A.historyReducer_closure61, A.historyReducer_closure62, A.historyReducer_closure63, A.historyReducer_closure64, A.historyReducer_closure65, A.historyReducer_closure66, A.historyReducer_closure67, A.historyReducer_closure68, A.historyReducer_closure69, A.historyReducer_closure70, A.historyReducer_closure71, A.historyReducer_closure72, A.historyReducer_closure73, A.historyReducer_closure74, A.historyReducer_closure75, A.historyReducer_closure76, A.historyReducer_closure77, A.historyReducer_closure78, A.historyReducer_closure79, A.historyReducer_closure80, A.historyReducer_closure81, A.historyReducer_closure82, A.historyReducer_closure83, A.historyReducer_closure84, A.historyReducer_closure85, A.historyReducer_closure86, A.lastActivityReducer_closure, A.filterReducer_closure, A.filterReducer_closure0, A.loadingEntityTypeReducer_closure, A.loadingEntityTypeReducer_closure0, A.loadingEntityTypeReducer_closure1, A.loadingEntityTypeReducer_closure2, A.loadingEntityTypeReducer_closure3, A.loadingEntityTypeReducer_closure4, A.loadingEntityTypeReducer_closure5, A.loadingEntityTypeReducer_closure6, A.loadingEntityTypeReducer_closure7, A.loadingEntityTypeReducer_closure8, A.loadingEntityTypeReducer_closure9, A.loadingEntityTypeReducer_closure10, A.loadingEntityTypeReducer_closure11, A.loadingEntityTypeReducer_closure12, A.loadingEntityTypeReducer_closure13, A.filterClearedAtReducer_closure, A.filterClearedAtReducer_closure0, A.currentRouteReducer_closure, A.selectedCompanyIndexReducer_closure, A.previewStackReducer_closure, A.previewStackReducer_closure0, A.previewStackReducer_closure1, A.filterStackReducer_closure, A.filterStackReducer_closure0, A.filterStackReducer_closure1, A.handleUserAction_closure10, A.handleUserAction_closure12, A.handleUserAction_closure14, A.handleUserAction__closure, A.handleUserAction_closure18, A.forceSelectedReducer_closure76, A.forceSelectedReducer_closure77, A.forceSelectedReducer_closure78, A.forceSelectedReducer_closure79, A.forceSelectedReducer_closure80, A.forceSelectedReducer_closure81, A.forceSelectedReducer_closure82, A.forceSelectedReducer_closure83, A.selectedIdReducer_closure146, A.selectedIdReducer_closure147, A.selectedIdReducer_closure148, A.selectedIdReducer_closure149, A.selectedIdReducer_closure150, A.selectedIdReducer_closure151, A.selectedIdReducer_closure152, A.selectedIdReducer_closure153, A.selectedIdReducer_closure154, A.selectedIdReducer_closure155, A.selectedIdReducer_closure156, A.selectedIdReducer_closure157, A.selectedIdReducer_closure158, A.selectedIdReducer_closure159, A.selectedIdReducer_closure160, A.selectedIdReducer_closure161, A.editingReducer_closure45, A.editingReducer_closure46, A.editingReducer_closure47, A.editingReducer_closure48, A.userListReducer_closure, A.filteredUsersSelector_closure0, A.userList_closure0, A.forceSelectedReducer_closure34, A.forceSelectedReducer_closure35, A.forceSelectedReducer_closure36, A.forceSelectedReducer_closure37, A.forceSelectedReducer_closure38, A.forceSelectedReducer_closure39, A.forceSelectedReducer_closure40, A.forceSelectedReducer_closure41, A.tabIndexReducer_closure7, A.tabIndexReducer_closure8, A.saveCompleterReducer_closure0, A.cancelCompleterReducer_closure0, A.selectedIdReducer_closure65, A.selectedIdReducer_closure66, A.selectedIdReducer_closure67, A.selectedIdReducer_closure68, A.selectedIdReducer_closure69, A.selectedIdReducer_closure70, A.selectedIdReducer_closure71, A.selectedIdReducer_closure72, A.selectedIdReducer_closure73, A.selectedIdReducer_closure74, A.selectedIdReducer_closure75, A.selectedIdReducer_closure76, A.selectedIdReducer_closure77, A.selectedIdReducer_closure78, A.selectedIdReducer_closure79, A.editingReducer_closure24, A.editingReducer_closure25, A.editingReducer_closure26, A.editingReducer_closure27, A.vendorListReducer_closure, A.dropdownVendorsSelector_closure0, A.filteredVendorsSelector_closure0, A.memoizedVendorStatsForUser_closure, A.vendorStatsForUser_closure, A.forceSelectedReducer_closure117, A.forceSelectedReducer_closure118, A.forceSelectedReducer_closure119, A.forceSelectedReducer_closure120, A.forceSelectedReducer_closure121, A.forceSelectedReducer_closure122, A.forceSelectedReducer_closure123, A.forceSelectedReducer_closure124, A.selectedIdReducer_closure224, A.selectedIdReducer_closure225, A.selectedIdReducer_closure226, A.selectedIdReducer_closure227, A.selectedIdReducer_closure228, A.selectedIdReducer_closure229, A.selectedIdReducer_closure230, A.selectedIdReducer_closure231, A.selectedIdReducer_closure232, A.selectedIdReducer_closure233, A.selectedIdReducer_closure234, A.selectedIdReducer_closure235, A.selectedIdReducer_closure236, A.selectedIdReducer_closure237, A.selectedIdReducer_closure238, A.editingReducer_closure72, A.editingReducer_closure73, A.editingReducer_closure74, A.editingReducer_closure75, A.webhookListReducer_closure, A.filteredWebhooksSelector_closure0, A.FieldGrid_build_closure, A.FieldGrid_build_closure0, A._AppBottomBarState_build___closure7, A._AppBottomBarState_build___closure5, A._AppBottomBarState_build___closure, A._AppBottomBarState_build_closure, A.CustomFieldSelector_build_closure, A.ConfirmEmail_build__closure, A.ConfirmEmailBuilder_build_closure, A.MultiSelectListState_build_closure1, A.MultiSelectListState_build_closure5, A._DocumentGridState_build_closure0, A._DocumentGridState_build_closure1, A.EditScaffold_build_closure2, A._EntityListTileState_build_closure, A._EntityDropdownState__showOptions__closure0, A._EntityDropdownState_build__closure, A._EntityDropdownDialogState_build__createList_closure1, A.EntityTopFilter_build_closure5, A.EntityTopFilterHeader_build_closure3, A.AppToggleButtons_build_closure, A._CustomFieldState_build_closure0, A.ProjectPicker_build_closure, A._TimePickerState__showTimePicker_closure, A.VendorPicker_build_closure, A.HistoryDrawerBuilder_build_closure, A._InvoiceEmailViewState__buildHistory_closure, A.FilterListTile_build_closure, A.MainScreen_build_closure, A.MenuDrawerBuilder_build_closure, A._DropDownMultiSelectState_build_closure, A._DropDownMultiSelectState_build___closure4, A._SystemLogViewerState_build_closure2, A._SystemLogViewerState_build__closure0, A.AppPaginatedDataTableState_build_closure0, A.EntityDataTableSource_getRow_closure2, A._EntityListState_build__closure2, A._EntityListState_build__closure1, A._EntityListState_build___closure1, A._EntityListState_build_closure3, A._UpgradeDialogState__buildProductList_closure0, A._VariableGrid_build_closure, A._VariableGrid_build_closure0, A.ViewScaffold_build_closure5, A.InitScreen_build_closure, A.LoginScreen_build_closure, A.LoginVM_fromStore__closure6, A.LoginVM_fromStore__closure5, A.LoginVM_fromStore__closure3, A.LoginVM_fromStore__closure1, A.BankAccountListBuilder_build_closure, A.BankAccountListBuilder_build__closure, A.BankAccountScreen_build_closure13, A.BankAccountScreen_build_closure10, A.BankAccountScreenBuilder_build_closure, A._BankAccountEditState_build_closure1, A.BankAccountEditScreen_build_closure, A.BankAccountViewScreen_build_closure, A.ClientListItem_build_closure, A.ClientListItem_build__closure0, A.ClientListBuilder_build_closure, A.ClientListBuilder_build__closure, A._ClientPdfViewState_build_closure10, A._ClientPdfViewState_build_closure11, A.ClientPdfScreen_build_closure, A.ClientScreen_build_closure8, A.ClientScreen_build_closure5, A.ClientScreenBuilder_build_closure, A.ClientEditContactsScreen_build_closure, A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure2, A.ClientEditScreen_build_closure, A._ClientViewActivityState_build_closure0, A._ClientViewActivityState_build_closure, A.ClientViewDocuments_build_closure, A._ClientViewFullwidthState_build_closure0, A._ClientViewLedgerState_build_closure1, A._ClientViewLedgerState_build_closure0, A.ClientViewPaymentMethods_build_closure0, A.ClientViewPaymentMethods_build_closure, A.ClientViewScreen_build_closure, A._CompanyGatewayListState_build_closure0, A.CompanyGatewayListBuilder_build_closure, A.CompanyGatewayListVM_fromStore_closure0, A.CompanyGatewayScreen_build_closure8, A.CompanyGatewayScreenBuilder_build_closure, A.CompanyGatewayEditScreen_build_closure, A.CompanyGatewayViewScreen_build_closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure0, A.CreditEmailScreen_build_closure, A.CreditListItem_build_closure, A.CreditListItem_build__closure0, A.CreditListBuilder_build_closure, A.CreditListBuilder_build__closure, A.CreditPdfScreen_build_closure, A.CreditScreen_build_closure8, A.CreditScreen_build_closure5, A.CreditScreenBuilder_build_closure, A._CreditEditState_build_closure0, A.CreditEditDetailsScreen_build_closure, A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure1, A.CreditEditItemsScreen_build_closure, A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure1, A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure2, A.CreditEditNotesScreen_build_closure, A.CreditEditPDFScreen_build_closure, A.CreditEditScreen_build_closure, A.CreditViewScreen_build_closure, A.DashboardActivity_build_closure0, A.DashboardActivity_build_closure, A._DashboardDateRangePickerState_build_closure3, A._DashboardDateRangePickerState_build_closure4, A._DashboardDateRangePickerState_build_closure7, A._DashboardDateRangePickerState_build_closure8, A.DashboardPanels__header_closure, A.DashboardPanels__runningTasks__closure, A.DashboardPanels_build_closure4, A.DashboardPanels_build__closure3, A.DashboardPanels_build__closure5, A.DashboardPanels_build__closure7, A.DashboardPanels_build__closure9, A.DashboardPanels_build__closure11, A.__DashboardPanelState_build__closure0, A.__DashboardPanelState_build__closure1, A.__DashboardPanelState_build__closure, A.__DashboardPanelState_build__closure2, A.__DashboardPanelState_build__closure4, A.__DashboardPanelState_build__closure5, A.__DashboardPanelState_build__closure3, A.__DashboardPanelState_build__closure6, A.__OverviewPanelState_build__closure0, A.__OverviewPanelState_build__closure1, A.__OverviewPanelState_build__closure, A.__OverviewPanelState_build__closure2, A.__OverviewPanelState_build__closure4, A.__OverviewPanelState_build__closure5, A.__OverviewPanelState_build__closure3, A.__OverviewPanelState_build__closure6, A.__OverviewPanelState_build__closure8, A.__OverviewPanelState_build__closure9, A.__OverviewPanelState_build__closure7, A.__OverviewPanelState_build__closure10, A.__DashboardSettingsState_build_closure6, A._DashboardFieldState_build_closure, A._CustomTabBarView_build_closure, A.DashboardScreenBuilder_build_closure, A.DashboardVM_fromStore_closure1, A.InvoiceSidebar_build_closure, A.InvoiceSidebar_build_closure0, A.InvoiceSidebar_build_closure1, A.InvoiceSidebar_build_closure2, A.InvoiceSidebar_build_closure3, A.InvoiceSidebar_build_closure4, A.PaymentSidebar_build_closure, A.PaymentSidebar_build_closure0, A.PaymentSidebar_build_closure1, A.PaymentSidebar_build_closure2, A.QuoteSidebar_build_closure, A.QuoteSidebar_build_closure0, A.QuoteSidebar_build_closure1, A.QuoteSidebar_build_closure2, A.QuoteSidebar_build_closure3, A.QuoteSidebar_build_closure4, A.TaskSidebar_build_closure, A.TaskSidebar_build_closure0, A.TaskSidebar_build_closure1, A.TaskSidebar_build_closure2, A.TaskSidebar_build_closure3, A.TaskSidebar_build_closure4, A.ExpenseSidbar_build_closure, A.ExpenseSidbar_build_closure0, A.ExpenseSidbar_build_closure1, A.ExpenseSidbar_build_closure2, A.DesignListBuilder_build_closure, A.DesignListBuilder_build__closure, A.DesignScreen_build_closure8, A.DesignScreen_build_closure5, A.DesignScreenBuilder_build_closure, A.DesignEditScreen_build_closure, A.DesignViewScreen_build_closure, A.DocumentListItem_build_closure, A.DocumentListItem_build__closure0, A.DocumentListBuilder_build_closure, A.DocumentListBuilder_build__closure0, A.DocumentListVM_fromStore__handleRefresh, A.DocumentListVM_fromStore_closure, A.DocumentScreen_build_closure5, A.DocumentScreen_build_closure12, A.DocumentScreenBuilder_build_closure, A.DocumentEditScreen_build_closure, A.DocumentViewScreen_build_closure, A._ExpenseEditState_build_closure0, A.ExpenseEditDetailsState_build_closure0, A.ExpenseEditDetailsState_build_closure5, A.ExpenseEditDetailsState_build_closure18, A.ExpenseEditDetailsState_build_closure21, A.ExpenseEditNotesState_build_closure, A.ExpenseEditSettingsState_build_closure2, A.ExpenseEditScreen_build_closure, A.ExpenseEditVM_ExpenseEditVM$fromStore_closure2, A.ExpenseEditVM_ExpenseEditVM$fromStore_closure3, A.ExpenseListItem_build_closure, A.ExpenseListItem_build__closure0, A.ExpenseListBuilder_build_closure, A.ExpenseListBuilder_build__closure, A.ExpenseScreen_build_closure16, A.ExpenseScreen_build_closure15, A.ExpenseScreen_build_closure11, A.ExpenseScreen_build_closure12, A.ExpenseScreenBuilder_build_closure, A.ExpenseViewDocuments_build_closure, A.ExpenseViewScreen_build_closure, A.ExpenseCategoryEditScreen_build_closure, A.ExpenseCategoryListBuilder_build_closure, A.ExpenseCategoryListBuilder_build__closure, A.ExpenseCategoryScreen_build_closure8, A.ExpenseCategoryScreen_build_closure5, A.ExpenseCategoryScreenBuilder_build_closure, A.ExpenseCategoryViewScreen_build_closure, A.GroupEditScreen_build_closure, A.GroupListBuilder_build_closure, A.GroupListBuilder_build__closure, A.GroupSettingsScreen_build_closure4, A.GroupSettingsScreen_build_closure1, A.GroupScreenBuilder_build_closure, A._GroupViewState_build_closure0, A.GroupViewScreen_build_closure, A._InvoiceEditState_build_closure0, A.InvoiceEditContacts_build_closure, A.InvoiceEditContacts_build_closure1, A.InvoiceEditContactsScreen_build_closure, A.InvoiceEditDesktopState_build_closure9, A.InvoiceEditDesktopState_build_closure14, A.InvoiceEditDesktopState_build_closure16, A.InvoiceEditDesktopState_build_closure18, A.InvoiceEditDesktopState_build_closure27, A.InvoiceEditDesktopState_build__closure4, A.InvoiceEditDesktopState_build_closure28, A.InvoiceEditDetailsState_build_closure7, A.InvoiceEditDetailsState_build_closure12, A.InvoiceEditDetailsState_build_closure14, A.InvoiceEditDetailsState_build_closure16, A.InvoiceEditDetailsState_build_closure27, A.InvoiceEditDetailsScreen_build_closure, A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure1, A._InvoiceEditItemsDesktopState_build_closure2, A._InvoiceEditItemsDesktopState_build_closure3, A._InvoiceEditItemsDesktopState_build___closure12, A.InvoiceEditItemsScreen_build_closure, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure2, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure3, A.InvoiceEditNotesScreen_build_closure, A.InvoiceEditPDFScreen_build_closure, A.InvoiceEditScreen_build_closure, A._InvoiceItemSelectorState_build__productList_closure, A._InvoiceItemSelectorState_build__taskList_closure, A._InvoiceItemSelectorState_build__expenseList_closure, A.InvoiceEmailScreen_build_closure, A.InvoiceListItem_build_closure, A.InvoiceListItem_build__closure0, A.InvoiceListBuilder_build_closure, A.InvoiceListBuilder_build__closure, A.InvoicePdfScreen_build_closure, A.InvoiceScreen_build_closure18, A.InvoiceScreen_build_closure17, A.InvoiceScreen_build_closure13, A.InvoiceScreen_build_closure14, A.InvoiceScreenBuilder_build_closure, A._InvoiceViewActivityState_build_closure0, A._InvoiceViewActivityState_build_closure, A.InvoiceViewDocuments_build_closure, A._InvoiceViewHistoryState_build_closure1, A._InvoiceViewHistoryState_build_closure2, A._InvoiceViewHistoryState_build_closure3, A.InvoiceOverview_build_surchargeRow, A.InvoiceOverview_build_closure3, A.InvoiceViewScreen_build_closure, A.InvoiceViewVM_InvoiceViewVM$fromStore_closure2, A._PaymentEditState_build_closure7, A.PaymentEditScreen_build_closure, A.PaymentListItem_build_closure, A.PaymentListItem_build__closure0, A.PaymentListBuilder_build_closure, A.PaymentListBuilder_build__closure, A.PaymentScreen_build_closure19, A.PaymentScreen_build_closure18, A.PaymentScreen_build_closure14, A.PaymentScreen_build_closure15, A.PaymentScreenBuilder_build_closure, A._PaymentRefundState_build_closure0, A.PaymentRefundScreen_build_closure, A.PaymentRefundVM_PaymentRefundVM$fromStore_closure0, A.PaymentViewScreen_build_closure, A.PaymentTermEditScreen_build_closure, A.PaymentTermListBuilder_build_closure, A.PaymentTermListBuilder_build__closure, A.PaymentTermScreen_build_closure8, A.PaymentTermScreen_build_closure5, A.PaymentTermScreenBuilder_build_closure, A.PaymentTermViewScreen_build_closure, A.ProductEditScreen_build_closure, A.ProductListItem_build_closure, A.ProductListItem_build__closure0, A.ProductListBuilder_build_closure, A.ProductListBuilder_build__closure, A.ProductScreen_build_closure9, A.ProductScreen_build_closure6, A.ProductScreenBuilder_build_closure, A.ProductViewDocuments_build_closure, A.ProductViewScreen_build_closure, A._ProjectEditState_build__closure3, A.ProjectEditScreen_build_closure, A.ProjectEditVM_ProjectEditVM$fromStore_closure2, A.ProjectListItem_build_closure, A.ProjectListItem_build__closure0, A.ProjectListBuilder_build_closure, A.ProjectListBuilder_build__closure, A.ProjectScreen_build_closure8, A.ProjectScreen_build_closure5, A.ProjectScreenBuilder_build_closure, A.ProjectViewDocuments_build_closure, A.ProjectViewScreen_build_closure, A._PurchaseOrderEditState_build_closure0, A.PurchaseOrderEditDetailsScreen_build_closure, A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure1, A.PurchaseOrderEditItemsScreen_build_closure, A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure1, A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure2, A.PurchaseOrderEditNotesScreen_build_closure, A.PurchaseOrderEditPDFScreen_build_closure, A.PurchaseOrderEditScreen_build_closure, A.PurchaseOrderEmailScreen_build_closure, A.PurchaseOrderListItem_build_closure, A.PurchaseOrderListItem_build__closure0, A.PurchaseOrderListBuilder_build_closure, A.PurchaseOrderListBuilder_build__closure, A.PurchaseOrderPdfScreen_build_closure, A.PurchaseOrderScreen_build_closure14, A.PurchaseOrderScreen_build_closure13, A.PurchaseOrderScreen_build_closure9, A.PurchaseOrderScreen_build_closure10, A.PurchaseOrderScreenBuilder_build_closure, A.PurchaseOrderViewScreen_build_closure, A._QuoteEditState_build_closure0, A.QuoteEditDetailsScreen_build_closure, A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure1, A.QuoteEditItemsScreen_build_closure, A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure1, A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure2, A.QuoteEditNotesScreen_build_closure, A.QuoteEditPDFScreen_build_closure, A.QuoteEditScreen_build_closure, A.QuoteEmailScreen_build_closure, A.QuoteListItem_build_closure, A.QuoteListItem_build__closure0, A.QuoteListBuilder_build_closure, A.QuoteListBuilder_build__closure, A.QuotePdfScreen_build_closure, A.QuoteScreen_build_closure16, A.QuoteScreen_build_closure15, A.QuoteScreen_build_closure11, A.QuoteScreen_build_closure12, A.QuoteScreenBuilder_build_closure, A.QuoteViewScreen_build_closure, A.RecurringExpenseEditScreen_build_closure, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure2, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure3, A.RecurringExpenseListItem_build_closure, A.RecurringExpenseListItem_build__closure0, A.RecurringExpenseListBuilder_build_closure, A.RecurringExpenseListBuilder_build__closure, A.RecurringExpenseScreen_build_closure14, A.RecurringExpenseScreen_build_closure15, A.RecurringExpenseScreen_build_closure11, A.RecurringExpenseScreen_build_closure10, A.RecurringExpenseScreenBuilder_build_closure, A.RecurringExpenseViewScreen_build_closure, A._RecurringInvoiceEditState_build_closure0, A.RecurringInvoiceEditDetailsScreen_build_closure, A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure1, A.RecurringInvoiceEditItemsScreen_build_closure, A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure1, A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure2, A.RecurringInvoiceEditNotesScreen_build_closure, A.RecurringInvoiceEditPDFScreen_build_closure, A.RecurringInvoiceEditScreen_build_closure, A.RecurringInvoiceListItem_build_closure, A.RecurringInvoiceListItem_build__closure0, A.RecurringInvoiceListBuilder_build_closure, A.RecurringInvoiceListBuilder_build__closure, A.RecurringInvoicePdfScreen_build_closure, A.RecurringInvoiceScreen_build_closure14, A.RecurringInvoiceScreen_build_closure15, A.RecurringInvoiceScreen_build_closure11, A.RecurringInvoiceScreen_build_closure10, A.RecurringInvoiceScreenBuilder_build_closure, A.RecurringInvoiceViewScreen_build_closure, A.clientReport_closure1, A.contactReport_closure1, A.lineItemReport_closure13, A.creditReport_closure1, A.documentReport_closure2, A.expenseReport_closure1, A.lineItemReport_closure19, A.invoiceReport_closure0, A.invoiceReport_closure2, A.taxReport_closure0, A.paymentReport_closure1, A.paymentTaxReport_closure0, A.productReport_closure1, A.profitAndLossReport_closure0, A.lineItemReport_closure1, A.purchaseOrderReport_closure1, A.lineItemReport_closure7, A.quoteReport_closure1, A.recurringExpenseReport_closure1, A.recurringInvoiceReport_closure1, A.ReportCharts_build_closure, A.ReportCharts_build_closure1, A.ReportCharts_build_closure2, A.ReportCharts_build_closure4, A.ReportCharts_build_closure5, A.ReportCharts_build_closure7, A.ReportCharts_build_closure8, A.ReportsScreen_build_closure1, A.ReportsScreen_build_closure15, A.ReportsScreen_build_closure16, A.ReportsScreen_build_closure22, A._ReportDataTableState_initState_closure, A._ReportDataTableState_build_closure, A.TotalsDataTable_build_closure, A.ReportDataTableSource_getRow_closure, A.ReportResult_tableFilters__closure2, A.ReportResult_totalColumns_closure0, A.ReportResult_totalRows_closure, A.ReportResult_totalRows__closure0, A.ReportResult_totalRows_closure1, A.ReportsScreenBuilder_build_closure, A.ReportsScreenVM_fromStore_closure2, A.ReportsScreenVM_fromStore_closure3, A.ReportsScreenVM_fromStore_closure1, A.ReportsScreenVM_fromStore_closure, A.ReportsScreenVM_fromStore__closure3, A.calculateReportTotals_closure, A.taskItemReport_closure1, A.taskReport_closure1, A.transactionReport_closure4, A.vendorReport_closure1, A._ScheduleEditState_build__closure1, A.ScheduleEditScreen_build_closure, A.ScheduleListBuilder_build_closure, A.ScheduleListBuilder_build__closure, A.ScheduleScreen_build_closure8, A.ScheduleScreen_build_closure5, A.ScheduleScreenBuilder_build_closure, A.ScheduleViewScreen_build_closure, A._AccountOverview_build___closure0, A._AccountOverview_build___closure, A.AccountManagementScreen_build_closure, A.ClientPortalScreen_build_closure, A._CompanyDetailsState_build_closure16, A.CompanyDetailsScreen_build_closure, A.CompanyDetailsVM_fromStore_closure2, A.CreditCardsAndBanksScreen_build_closure, A.CustomFieldsScreen_build_closure, A.DataVisualizationsScreen_build_closure, A._DeviceSettingsState_build_closure9, A.DeviceSettingsScreen_build_closure, A.DeviceSettingsVM_fromStore_closure1, A.DeviceSettingsVM_fromStore_closure7, A.DeviceSettingsVM_fromStore_closure4, A.DeviceSettingsVM_fromStore_closure5, A.DeviceSettingsVM_fromStore_closure8, A.DeviceSettingsVM_fromStore_closure19, A.DeviceSettingsVM_fromStore_closure15, A.DeviceSettingsVM_fromStore_closure12, A.DeviceSettingsVM_fromStore_closure13, A.DeviceSettingsVM_fromStore_closure14, A.DeviceSettingsVM_fromStore_closure18, A.DeviceSettingsVM_fromStore_closure16, A.DeviceSettingsVM_fromStore_closure17, A.DeviceSettingsVM_fromStore_closure6, A.DeviceSettingsVM_fromStore_closure9, A.DeviceSettingsVM_fromStore_closure3, A.DeviceSettingsVM_fromStore_closure10, A.DeviceSettingsVM_fromStore_closure2, A.DeviceSettingsVM_fromStore_closure11, A.EmailSettingsScreen_build_closure, A.ExpenseSettingsScreen_build_closure, A._GeneratedNumbersState_build_closure2, A._GeneratedNumbersState_build_closure4, A._GeneratedNumbersState_build_closure7, A._GeneratedNumbersState_build_closure8, A._GeneratedNumbersState_build_closure9, A._GeneratedNumbersState_build_closure10, A._GeneratedNumbersState_build_closure11, A._GeneratedNumbersState_build_closure12, A._GeneratedNumbersState_build_closure13, A._GeneratedNumbersState_build_closure14, A._GeneratedNumbersState_build_closure15, A._GeneratedNumbersState_build_closure16, A._GeneratedNumbersState_build_closure17, A._GeneratedNumbersState_build_closure18, A.GeneratedNumbersScreen_build_closure, A._ImportExportState_build_closure10, A._ImportExportState_build_closure11, A.__FileMapperState_build_closure4, A._FieldMapper_build_closure, A.ImportExportScreen_build_closure, A.InvoiceDesignScreen_build_closure, A.InvoiceDesignVM_fromStore_closure0, A._LocalizationSettingsState_build_closure0, A._LocalizationSettingsState_build_closure8, A.LocalizationScreen_build_closure, A.PaymentsSettingsScreen_build_closure, A.ProductSettingsScreen_build_closure, A.SettingsSearch_build_closure, A.SettingsListBuilder_build_closure, A.SettingsScreenBuilder_build_closure, A._SettingsWizardState__onSavePressed_closure, A._SettingsWizardState_build_closure6, A.TaskSettingsScreen_build_closure, A.TaxSettingsScreen_build_closure, A._TemplatesAndRemindersState_build_closure6, A.TemplatesAndRemindersScreen_build_closure, A.TemplatesAndRemindersVM_fromStore_closure1, A._UserDetailsState_build_closure14, A.UserDetailsScreen_build_closure, A.UserDetailsVM_fromStore___closure2, A.UserDetailsVM_fromStore___closure1, A.UserDetailsVM_fromStore___closure0, A.UserDetailsVM_fromStore___closure6, A.UserDetailsVM_fromStore__closure6, A.UserDetailsVM_fromStore___closure7, A.UserDetailsVM_fromStore___closure3, A.UserDetailsVM_fromStore___closure, A.UserDetailsVM_fromStore__closure4, A.UserDetailsVM_fromStore___closure4, A.UserDetailsVM_fromStore____closure0, A.WorkflowSettingsScreen_build_closure, A.SubscriptionEditScreen_build_closure, A.SubscriptionListBuilder_build_closure, A.SubscriptionListBuilder_build__closure, A.SubscriptionScreen_build_closure8, A.SubscriptionScreen_build_closure5, A.SubscriptionScreenBuilder_build_closure, A.SubscriptionViewScreen_build_closure, A._UpdateDialogState_updateApp_closure, A._TaskEditState_build_closure0, A._TaskEditDesktopState_build__closure, A._TaskEditDesktopState_build__closure1, A.TaskEditDetailsScreen_build_closure, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure0, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure2, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure1, A.TimeEditDetailsState_build_closure, A.TimeEditDetailsState_build_closure1, A.TaskEditTimesScreen_build_closure, A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure1, A.TaskEditScreen_build_closure, A.KanbanViewState__initBoard_closure0, A.KanbanViewState__initBoard__closure, A.KanbanViewState_build__closure5, A.KanbanViewState_build__closure, A.KanbanViewState_build__closure1, A.KanbanViewState_build___closure1, A._KanbanViewBuilderState_build_closure, A.TaskListItem_build_closure0, A.TaskListItem_build__closure0, A.TaskListBuilder_build_closure, A.TaskListBuilder_build__closure, A.TaskScreen_build_closure19, A.TaskScreen_build_closure18, A.TaskScreen_build_closure15, A.TaskScreen_build_closure14, A.TaskScreenBuilder_build_closure, A.TaskViewDocuments_build_closure, A.TaskViewScreen_build_closure, A.TaskStatusEditScreen_build_closure, A._TaskStatusListState_build_closure0, A.TaskStatusListBuilder_build_closure, A.TaskStatusListVM_fromStore_closure0, A.TaskStatusScreen_build_closure9, A.TaskStatusScreen_build_closure6, A.TaskStatusScreenBuilder_build_closure, A.TaskStatusViewScreen_build_closure, A.TaxRateEditScreen_build_closure, A.TaxRateListBuilder_build_closure, A.TaxRateListBuilder_build__closure, A.TaxRateSettingsScreen_build_closure4, A.TaxRateSettingsScreen_build_closure1, A.TaxRateScreenBuilder_build_closure, A.TaxRateViewScreen_build_closure, A.TokenEditScreen_build_closure, A.TokenEditVM_TokenEditVM$fromStore___closure, A.TokenListBuilder_build_closure, A.TokenListBuilder_build__closure, A.TokenScreen_build_closure8, A.TokenScreen_build_closure5, A.TokenScreenBuilder_build_closure, A.TokenViewScreen_build_closure, A._TransactionEditState_build__closure0, A._TransactionEditState_build__closure5, A.TransactionEditScreen_build_closure, A.TransactionEditVM_TransactionEditVM$fromStore_closure2, A.TransactionListItem_build_closure, A.TransactionListItem_build__closure0, A.TransactionListBuilder_build_closure, A.TransactionListBuilder_build__closure, A.TransactionScreen_build_closure15, A.TransactionScreen_build_closure14, A.TransactionScreen_build_closure11, A.TransactionScreenBuilder_build_closure, A._MatchDepositsState_updateInvoiceList_closure0, A._MatchDepositsState_updatePaymentList_closure0, A._MatchDepositsState_build_closure10, A._MatchDepositsState_build_closure11, A._MatchDepositsState_build_closure13, A._MatchDepositsState_build_closure12, A._MatchDepositsState_build_closure15, A._MatchDepositsState_build_closure14, A._MatchWithdrawalsState_updateCategoryList_closure0, A._MatchWithdrawalsState_updateVendorList_closure0, A._MatchWithdrawalsState_updateExpenseList_closure0, A._MatchWithdrawalsState_build_closure7, A._MatchWithdrawalsState_build_closure8, A._MatchWithdrawalsState_build_closure10, A._MatchWithdrawalsState_build_closure9, A._MatchWithdrawalsState_build_closure15, A._MatchWithdrawalsState_build_closure14, A._MatchWithdrawalsState_build_closure20, A._MatchWithdrawalsState_build_closure19, A.TransactionViewScreen_build_closure, A.TransactionViewVM_TransactionViewVM$fromStore_closure2, A.TransactionViewVM_TransactionViewVM$fromStore_closure3, A.TransactionViewVM_TransactionViewVM$fromStore_closure0, A._TransactionRuleEditState_build__closure6, A._TransactionRuleEditState_build__closure8, A.TransactionRuleEditScreen_build_closure, A.TransactionRuleListBuilder_build_closure, A.TransactionRuleListBuilder_build__closure, A.TransactionRuleScreen_build_closure8, A.TransactionRuleScreen_build_closure5, A.TransactionRuleScreenBuilder_build_closure, A.TransactionRuleViewScreen_build_closure, A._UserEditState_build_closure2, A.UserEditScreen_build_closure, A.UserEditVM_UserEditVM$fromStore___closure, A.UserListBuilder_build_closure, A.UserListBuilder_build__closure, A.UserScreen_build_closure8, A.UserScreen_build_closure5, A.UserScreenBuilder_build_closure, A.UserViewScreen_build_closure, A.VendorEditContactsScreen_build_closure, A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure2, A.VendorEditScreen_build_closure, A.VendorListItem_build_closure, A.VendorListItem_build__closure0, A.VendorListBuilder_build_closure, A.VendorListBuilder_build__closure, A.VendorScreen_build_closure8, A.VendorScreen_build_closure5, A.VendorScreenBuilder_build_closure, A._VendorViewActivityState_build_closure0, A._VendorViewActivityState_build_closure, A.VendorViewDocuments_build_closure, A._VendorViewFullwidthState_build_closure, A.VendorViewScreen_build_closure, A.WebhookEditScreen_build_closure, A.WebhookViewScreen_build_closure, A.WebhookListBuilder_build_closure, A.WebhookListBuilder_build__closure, A.WebhookScreen_build_closure8, A.WebhookScreen_build_closure5, A.WebhookScreenBuilder_build_closure, A.passwordCallback_closure1, A.passwordCallback_closure2, A._ExampleEditorState__buildImageToolbar_closure, A._darkModeStyles_closure, A._darkModeStyles_closure0, A._darkModeStyles_closure1, A.memo2_closure, A.RenderOverflowView_performFlexibleLayout_closure, A.RenderOverflowView_paint_defaultPaint, A.RenderOverflowView_hitTestChildren__closure, A.OverflowView$_all_closure, A.RenderPopover_paint_closure, A.RenderPopover_hitTestChildren_closure, A._CupertinoPopoverToolbarState__buildContent_closure, A._RenderIosPagedMenu__hitTestChild_closure, A._PinputState__buildPinput__closure, A._PinputState__buildFields_closure, A.__PinputState_State_RestorationMixin_dispose_closure, A.PdfPreviewCustomState__createPreview_closure, A._QrImageViewState_build_closure, A.combineReducers_closure, A.RoundedLoadingButtonState_build_closure, A.RouteObserverBreadcrumb__formatArgs_closure, A.Highlighter__collateLines_closure0, A.ReactiveModelImp__handleAsyncState_closure1, A.ImageUrlConversionReaction_react_closure0, A.LinkifyReaction__extractUpstreamWordAndLinkify_closure0, A._CaretDocumentOverlayState_doBuild_closure, A._KeyboardEditingToolbarState__buildToolbarOverlay_closure, A._KeyboardEditingToolbarState__buildToolbar_closure, A._KeyboardEditingToolbarState__buildToolbar__closure, A._SingleColumnDocumentLayoutState__buildDocComponents_closure, A._SingleColumnDocumentLayoutState__buildDocComponents_closure0, A.defaultStylesheet_closure, A.defaultStylesheet_closure0, A.defaultStylesheet_closure1, A.defaultStylesheet_closure2, A.defaultStylesheet_closure3, A.defaultStylesheet_closure4, A.defaultStylesheet_closure5, A.defaultStylesheet_closure6, A.defaultStylesheet_closure7, A.defaultStylesheet_closure8, A.defaultStylesheet_closure9, A.taskStyles_closure, A.TextComponentState_build_closure, A.GroupedOverlayPortalController__visibleControllers_closure, A.AndroidControlsDocumentLayerState__buildCaret_closure, A._IosFloatingToolbarOverlayState_build_closure, A.SuperAndroidTextFieldState__buildTextField_closure, A.SuperAndroidTextFieldState__buildSelectableText_closure0, A.SuperAndroidTextFieldState__buildSelectableText_closure, A.SuperAndroidTextFieldState__buildPopoverToolbar_closure, A.SuperDesktopTextFieldState__buildSelectableText_closure0, A.SuperDesktopTextFieldState__buildSelectableText_closure, A.IOSFloatingCursor_build_closure, A.SuperIOSTextFieldState__buildTextField_closure, A.SuperIOSTextFieldState__buildSelectableText_closure0, A.SuperIOSTextFieldState__buildSelectableText_closure, A.SuperIOSTextFieldState__buildPopoverToolbar_closure, A.SuperTextState_build_closure, A.SuperTextState_build_closure0]); + _inheritMany(A.Closure2Args, [A.Surface_acquireFrame_closure, A.createDomResizeObserver_closure, A.commitScene_closure, A.PersistedContainerSurface__matchChildren_closure, A.initializeEngineServices_closure, A.futureToPromise_closure, A.KeyboardConverter__handleEvent_closure2, A.KeyboardConverter__handleEvent__closure, A.EnginePlatformDispatcher__addFontSizeObserver_closure, A.StandardMessageCodec_writeValue_closure, A._computeLineBreakFragments_setBreak, A.saveForms_closure, A.HybridTextEditing__startEditing_closure0, A.CustomElementDimensionsProvider_closure, A._CastListBase_sort_closure, A.CastMap_forEach_closure, A.ConstantMap_map_closure, A.Primitives_functionNoSuchMethod_closure, A.JsLinkedHashMap_addAll_closure, A.initHooks_closure0, A._awaitOnObject_closure0, A._wrapJsFunctionForAsync_closure, A.Future_wait_handleError, A.FutureExtensions_onError_onError, A._Future__chainForeignFuture_closure0, A._Future_timeout_closure1, A.Stream_Stream$fromFuture_closure0, A._AddStreamState_makeErrorHandler_closure, A._cancelAndErrorClosure_closure, A._RootZone_bindBinaryCallback_closure, A._HashMap_addAll_closure, A.LinkedHashMap_LinkedHashMap$from_closure, A.MapBase_mapToString_closure, A.SplayTreeSet__newSet_closure, A.SplayTreeSet__copyNode_copyChildren, A._JsonStringifier_writeMap_closure, A._JsonPrettyPrintMixin_writeMap_closure, A._BigIntImpl_hashCode_combine, A._symbolMapToStringMap_closure, A.NoSuchMethodError_toString_closure, A.Uri_splitQueryString_closure, A.Uri__parseIPv4Address_error, A.Uri_parseIPv6Address_error, A.Uri_parseIPv6Address_parseHex, A._Uri__makeQuery_writeParameter, A._Uri__makeQuery_closure, A._createTables_build, A.MidiInputMap_keys_closure, A.MidiInputMap_values_closure, A.MidiOutputMap_keys_closure, A.MidiOutputMap_values_closure, A.RtcStatsReport_keys_closure, A.RtcStatsReport_values_closure, A.Storage_keys_closure, A.Storage_values_closure, A._DataAttributeMap_forEach_closure, A._DataAttributeMap_keys_closure, A._DataAttributeMap_values_closure, A._AcceptStructuredClone_walk_closure, A._FileStream__readBlock_closure0, A._FileStream__start_onOpenFile_closure, A._FileStream__start_openFailed, A._File_readAsBytes_readSized, A.AudioParamMap_keys_closure, A.AudioParamMap_values_closure, A.AttributedSpans_copyAttributionRegion_closure1, A.AttributedSpans_copyAttributionRegion_closure6, A.BoardListState_build_closure3, A.BoardViewState_build_closure0, A.hashObjects_closure, A.BuiltListMultimap_forEach_closure, A.MapBuilder_replace_closure, A.MapBuilder_replace_closure0, A.BuiltSetMultimap_forEach_closure, A.StandardJsonPlugin__toList_closure0, A.StandardJsonPlugin__toListUsingDiscriminator_closure0, A.BaseBarRenderer_preprocessSeries__closure, A.BaseBarRenderer_update_closure0, A.BaseBarRenderer_paint_closure, A.BaseBarRenderer_paint_closure0, A.BaseBarRenderer_paint_closure1, A.BaseBarRenderer__getSegmentsForDomainValue_closure, A._ReversedSeriesIterator_closure0, A.BaseTickDrawStrategy_collides_closure, A.BaseTickDrawStrategy_measureVerticallyDrawnTicks_closure, A.BaseTickDrawStrategy_measureHorizontallyDrawnTicks_closure, A.CartesianChart_init_closure, A.CartesianChart_preprocessSeries_closure, A.CartesianChart_preprocessSeries_closure0, A.CartesianChart_preprocessSeries_closure1, A.CartesianChart_preprocessSeries_closure2, A.CartesianChart_onSkipLayout_closure, A.BaseChart_getNearestDatumDetailPerSeries_closure0, A.BaseChart_configureSeries_closure0, A.BaseChart_preprocessSeries_closure1, A.BaseChart_onPostLayout_closure, A.LinePointHighlighter__updateViewData_closure, A._LinePointLayoutView_paint_closure, A._LinePointLayoutView_paint_closure0, A.SelectNearest__onSelect_closure, A.LayoutManagerImpl_paintOrderedViews_closure, A.LayoutManagerImpl_positionOrderedViews_closure, A.LineRenderer_update_closure0, A.LineRenderer_paint_closure, A.LineRenderer_paint_closure0, A.PointRenderer_paint_closure, A.PointRenderer_paint_closure0, A.BaseChartState_build_closure, A.BaseChartState_dispose_closure, A.TabularLegendLayout__buildTableFromRows_closure0, A.CanonicalizedMap_addAll_closure, A.CanonicalizedMap_forEach_closure, A.CanonicalizedMap_map_closure, A.FilePickerWeb__fileType_closure, A.CupertinoDynamicColor_toString_toString, A._RenderCupertinoSwitch_paint_closure5, A._RenderCupertinoTextSelectionToolbarShape_paint_closure, A._RenderCupertinoTextSelectionToolbarItems_hitTestChild_closure, A.BindingBase_registerServiceExtension_closure, A.PointerRouter__dispatchEventToRoutes_closure, A.ScaleGestureRecognizer__reconfigure_closure0, A.ScaleGestureRecognizer_acceptGesture_closure0, A._PackagesViewState_licenses_closure, A._PackagesViewState_build_closure, A._PackagesViewState_build__closure, A._PackagesViewState__packagesList_closure, A._LicenseData_sortPackages_closure, A._PackageLicensePageState_build_closure, A._MasterDetailFlowState_build_closure, A._MasterDetailFlowState__nestedUI_closure, A._MasterDetailFlowState__lateralUI_closure1, A._MasterDetailFlowState__lateralUI_closure, A._MasterDetailScaffoldState_build__closure, A._DetailView_build_closure, A.MaterialApp_createMaterialHeroController_closure, A._MaterialAppState_build_closure, A._RenderInputPadding_hitTest_closure, A._RenderInputPadding_hitTest_closure0, A._DatePickerDialogState_build_closure, A.__DatePickerDialogState_State_RestorationMixin_dispose_closure, A._DropdownRoute_buildPage_closure, A._DropdownRoute_getItemOffset_closure, A._DropdownRoute_getMenuLimits_closure, A._RenderDecoration_performLayout_centerLayout, A._RenderDecoration_performLayout_baselineLayout, A._RenderDecoration_hitTestChildren_closure, A._RenderListTile_hitTestChildren_closure, A._ZoomEnterTransitionPainter_paint_closure, A._ZoomExitTransitionPainter_paint_closure, A._PopupMenu_build_closure0, A._LinearProgressIndicatorPainter_paint_drawBar, A._LinearProgressIndicatorState_build_closure, A._CircularProgressIndicatorState__buildAnimation_closure, A._RefreshProgressIndicatorState__buildAnimation_closure, A.RefreshIndicatorState_build_closure, A.ReorderableListView_closure, A._ReorderableListViewState__proxyDecorator_closure, A.ScaffoldState_build_closure, A._StandardBottomSheetState_build_closure, A._ScaffoldState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure, A._TextFieldState_build_closure5, A._TextFieldState_build_closure6, A.__TextFieldState_State_RestorationMixin_dispose_closure, A._TextSelectionToolbarTrailingEdgeAlignRenderBox_hitTestChildren_closure, A._RenderTextSelectionToolbarItemsLayout_hitTestChildren_closure, A.ThemeData__lerpThemeExtensions_closure, A._RenderInputPadding_hitTest_closure2, A._DialPainter_paint_getOffsetForTheta, A._DialPainter_paint_paintLabels, A._TimePickerDialogState_build_closure, A.__HourMinuteTextFieldState_State_RestorationMixin_dispose_closure, A.__TimePickerDialogState_State_RestorationMixin_dispose_closure, A.__TimePickerInputState_State_RestorationMixin_dispose_closure, A.__TimePickerState_State_RestorationMixin_dispose_closure, A._RenderInputPadding_hitTest_closure1, A.NetworkImage__loadAsync_closure, A.NetworkImage__loadAsync_closure2, A._CompoundBorder_dimensions_closure, A.paintImage_closure, A.ImageCache_putIfAbsent_listener, A.ImageProvider_resolve_closure, A.ImageProvider__createErrorHandlerAndKey_handleError, A.AssetImage_obtainKey_closure0, A.MultiFrameImageStreamCompleter_closure, A.MultiFrameImageStreamCompleter_closure0, A.RendererBinding_initMouseTracker_closure, A.RenderBoxContainerDefaultsMixin_defaultHitTestChildren_closure, A.RenderEditable_getRectForComposingRange_closure, A.RenderFlex_computeMinIntrinsicWidth_closure, A.RenderFlex_computeMaxIntrinsicWidth_closure, A.RenderFlex_computeMinIntrinsicHeight_closure, A.RenderFlex_computeMaxIntrinsicHeight_closure, A.MouseTracker__handleDeviceUpdateMouseEvents_closure, A.PipelineOwner_flushLayout_closure, A.PipelineOwner_flushCompositingBits_closure, A.PipelineOwner_flushPaint_closure, A.PipelineOwner_flushSemantics_closure, A.RenderInlineChildrenContainerDefaults_hitTestInlineChildren_closure, A.RenderParagraph_computeMinIntrinsicWidth_closure, A.RenderParagraph_computeMaxIntrinsicWidth_closure, A.RenderPhysicalModel_paint_closure, A.RenderPhysicalShape_paint_closure, A.RenderTransform_hitTestChildren_closure, A.RenderFittedBox_hitTestChildren_closure, A.RenderFractionalTranslation_hitTestChildren_closure, A.RenderFollowerLayer_hitTestChildren_closure, A.RenderShiftedBox_hitTestChildren_closure, A.RenderIndexedStack_hitTestChildren_closure, A.RenderTable_computeDryLayout_closure, A.RenderTable_hitTestChildren_closure, A.SchedulerBinding_handleBeginFrame_closure, A._SemanticsSortGroup_sortedWithinKnot_closure, A.SemanticsOwner_sendSemanticsUpdate_closure0, A.SemanticsOwner_sendSemanticsUpdate_closure1, A.SemanticsConfiguration_absorb_closure, A.CachingAssetBundle_loadStructuredData_closure0, A._DefaultBinaryMessenger_setMessageHandler_closure, A.StandardMessageCodec_writeValue_closure0, A.HtmlElementViewImpl_buildImpl_closure, A._StreamBuilderBaseState__subscribe_closure1, A._FutureBuilderState__subscribe_closure0, A._DraggableScrollableSheetState_build__closure, A.EditableTextState__formatAndSetValue_closure, A.EditableTextState_build_closure2, A.EditableTextState_build_closure4, A.DirectionalFocusTraversalPolicyMixin__sortAndFindInitial_closure, A.DirectionalFocusTraversalPolicyMixin__sortByDistancePreferVertical_closure, A.DirectionalFocusTraversalPolicyMixin__sortByDistancePreferHorizontal_closure, A.DirectionalFocusTraversalPolicyMixin__sortClosestEdgesByDistancePreferHorizontal_closure, A.DirectionalFocusTraversalPolicyMixin__sortClosestEdgesByDistancePreferVertical_closure, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterHorizontally_closure1, A.DirectionalFocusTraversalPolicyMixin__sortAndFilterVertically_closure1, A._ReadingOrderSortData_sortWithDirectionality_closure, A._ReadingOrderDirectionalGroupData_sortWithDirectionality_closure, A.ReadingOrderTraversalPolicy__pickNext_closure, A.ReadingOrderTraversalPolicy__pickNext_inBand, A._FormFieldState_State_RestorationMixin_dispose_closure, A.Element_updateChildren_slotFor, A.Hero__allHeroesFor_inviteHero, A._HeroFlight__buildOverlay_closure, A.HeroController__defaultHeroFlightShuttleBuilder_closure, A._HistoryProperty_fromPrimitives_closure, A._NavigatorState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure, A._RenderTheaterMixin_hitTestChildren_childHitTest, A._StretchingOverscrollIndicatorState_build_closure, A._PageViewState_build_closure0, A._PlatformViewLinkState_build_closure, A.SliverReorderableListState__wrapWithSemantics_reorder, A._DragItemProxy_build_closure, A.__RestorationScopeState_State_RestorationMixin_dispose_closure, A.__RouterState_State_RestorationMixin_dispose_closure, A._ModalScopeState_build_closure, A._ModalScopeState_build__closure0, A._ModalScopeState_build___closure, A.ScrollView_build_closure, A.ListView$separated_closure, A.ListView$separated_closure0, A._ScrollableState_State_TickerProviderStateMixin_RestorationMixin_dispose_closure, A._ScrollableSelectionContainerDelegate_didChangeSelectables_closure, A._ScrollableSelectionContainerDelegate_didChangeSelectables_closure0, A.ScrollableDetails_toString_addIfNonNull, A.ShortcutManager__indexShortcuts_closure, A.CallbackShortcuts_build_closure, A.SingleChildScrollView_build_closure, A._RenderSingleChildViewport_paint_paintContents, A._RenderSingleChildViewport_hitTestChildren_closure, A.View_build_closure, A._RenderScaledInlineWidget_paint_closure, A._RenderScaledInlineWidget_hitTestChildren_closure, A.loadDateIntlDataIfNotLoaded_closure, A._StoreStreamListenerState_build_closure, A._RenderFlexEntranceTransition_hitTestChildren_closure, A.RenderStaggeredGrid__computeSize_computeCrossAxisCellCount, A.RenderFollower_hitTestChildren_closure, A.RenderFollower_paint_closure0, A.FollowerFadeOutBeyondBoundary_build_closure, A.RenderLeader_paint_closure, A.Element__addOuterHtml_closure, A.Phase_startTagHtml_closure, A.InBodyPhase_startTagBody_closure, A.formatStr_closure, A._separatingNewlines_closure, A._BaseRules_defaultRule_closure, A._CommonRules_paragraph_closure, A._CommonRules_lineBreak_closure, A._CommonRules_heading_closure, A._CommonRules_blockquote_closure, A._CommonRules_list_closure, A._CommonRules_listItem_closure, A._CommonRules_indentedCodeBlock_closure0, A._CommonRules_fencedCodeBlock_closure0, A._CommonRules_horizontalRule_closure, A._CommonRules_inlineLink_closure0, A._CommonRules_referenceLink_closure1, A._CommonRules_emphasis_closure, A._CommonRules_strong_closure, A._CommonRules_strike_closure, A._CommonRules_code_closure0, A._CommonRules_image_closure, A._TableRules_tableCell_closure, A._TableRules_tableRow_closure, A._TableRules_table_closure, A._TableRules_tableSection_closure, A._TableRules_captionSection_closure, A.BaseRequest_closure, A.mapToQuery_closure, A.MediaType_toString_closure, A.IfdContainer$from_closure, A.IfdDirectory_copy_closure, A.IfdDirectory_copy_closure0, A._$ProductDetailsResponseWrapperFromJson_closure, A._$PurchasesResultWrapperFromJson_closure, A._$SKErrorFromJson_closure, A._$SKProductDiscountWrapperFromJson_closure, A._$SKProductDiscountWrapperFromJson_closure0, A._$SKProductWrapperFromJson_closure, A._$SKProductWrapperFromJson_closure0, A.DateFormat__fieldConstructors_closure, A.DateFormat__fieldConstructors_closure0, A.DateFormat__fieldConstructors_closure1, A._CountryPickerDialogState_initState_closure, A._CountryPickerDialogState_build__closure0, A._CountryPickerDialogState_build_closure0, A._IntlPhoneFieldState__changeCountry__closure, A.GatewayEntity_supportedEvents_closure, A.InvoiceEntity_getTaxes_calculateAmount, A.TaskEntity_getTaskTimes_closure0, A._parseError_closure, A.InvoiceNinjaAppState_build__closure123, A.lastErrorReducer_closure, A.lastErrorReducer_closure0, A.lastErrorReducer_closure1, A.lastErrorReducer_closure2, A.lastErrorReducer_closure3, A.lastErrorReducer_closure4, A.lastErrorReducer_closure5, A.lastErrorReducer_closure6, A.lastErrorReducer_closure7, A.lastErrorReducer_closure8, A.lastErrorReducer_closure9, A.lastErrorReducer_closure10, A.lastErrorReducer_closure11, A.lastErrorReducer_closure12, A.lastErrorReducer_closure13, A.lastErrorReducer_closure14, A.lastErrorReducer_closure15, A.lastErrorReducer_closure16, A.lastErrorReducer_closure17, A.lastErrorReducer_closure18, A.lastErrorReducer_closure19, A.lastErrorReducer_closure20, A.lastErrorReducer_closure21, A.lastErrorReducer_closure22, A.lastErrorReducer_closure23, A.dismissedNativeWarningReducer_closure, A.dismissedNativeWarningReducer_closure0, A.forceSelectedReducer_closure176, A.forceSelectedReducer_closure177, A.forceSelectedReducer_closure178, A.forceSelectedReducer_closure179, A.forceSelectedReducer_closure180, A.forceSelectedReducer_closure181, A.forceSelectedReducer_closure182, A.forceSelectedReducer_closure183, A.tabIndexReducer_closure21, A.tabIndexReducer_closure22, A.selectedIdReducer_closure338, A.selectedIdReducer_closure339, A.selectedIdReducer_closure340, A.selectedIdReducer_closure341, A.selectedIdReducer_closure342, A.selectedIdReducer_closure343, A.selectedIdReducer_closure344, A.selectedIdReducer_closure345, A.selectedIdReducer_closure346, A.selectedIdReducer_closure347, A.selectedIdReducer_closure348, A.selectedIdReducer_closure349, A.selectedIdReducer_closure350, A.selectedIdReducer_closure351, A.selectedIdReducer_closure352, A.editingReducer_closure114, A.editingReducer_closure115, A.editingReducer_closure116, A.editingReducer_closure117, A.bankAccountListReducer_closure, A.dropdownBankAccountsSelector_closure0, A.filteredBankAccountsSelector_closure0, A.handleClientAction__closure, A.__MergClientPickerState_build__closure, A.forceSelectedReducer_closure218, A.forceSelectedReducer_closure219, A.forceSelectedReducer_closure220, A.forceSelectedReducer_closure221, A.forceSelectedReducer_closure222, A.forceSelectedReducer_closure223, A.forceSelectedReducer_closure224, A.forceSelectedReducer_closure225, A.tabIndexReducer_closure31, A.tabIndexReducer_closure32, A.saveCompleterReducer_closure2, A.cancelCompleterReducer_closure2, A.editingContactReducer_closure, A.editingContactReducer_closure0, A.selectedIdReducer_closure418, A.selectedIdReducer_closure419, A.selectedIdReducer_closure420, A.selectedIdReducer_closure421, A.selectedIdReducer_closure422, A.selectedIdReducer_closure423, A.selectedIdReducer_closure424, A.selectedIdReducer_closure425, A.selectedIdReducer_closure426, A.selectedIdReducer_closure427, A.selectedIdReducer_closure428, A.selectedIdReducer_closure429, A.selectedIdReducer_closure430, A.selectedIdReducer_closure431, A.selectedIdReducer_closure432, A.selectedIdReducer_closure433, A.selectedIdReducer_closure434, A.editingReducer_closure141, A.editingReducer_closure142, A.editingReducer_closure143, A.editingReducer_closure144, A.editingReducer_closure145, A.editingReducer_closure146, A.editingReducer_closure147, A.editingReducer_closure148, A.editingReducer_closure149, A.editingReducer_closure150, A.editingReducer_closure151, A.editingReducer_closure152, A.editingReducer_closure153, A.editingReducer_closure154, A.clientListReducer_closure, A.dropdownClientsSelector_closure0, A.memoizedClientStatsForUser_closure, A.clientStatsForUser_closure, A.filteredClientsSelector_closure0, A.userCompanyEntityReducer_closure, A.userCompanyEntityReducer_closure0, A.userCompanyEntityReducer_closure1, A.userCompanyEntityReducer_closure2, A.userCompanyEntityReducer_closure3, A.userCompanyEntityReducer_closure4, A.userCompanyEntityReducer_closure5, A.userCompanyEntityReducer_closure6, A.userCompanyEntityReducer_closure7, A.userCompanyEntityReducer_closure8, A.userCompanyEntityReducer_closure9, A.userCompanyEntityReducer_closure10, A.lastUpdatedReducer_closure, A.lastUpdatedReducer_closure0, A.memoizedDropdownExpenseCategoriesList_closure, A.dropdownExpenseCategoriesSelector_closure2, A.getCurrencyIds_closure, A.memoizedFilteredSelector_closure, A.filteredSelector_closure13, A.handleCompanyGatewayAction__closure, A.forceSelectedReducer_closure64, A.forceSelectedReducer_closure65, A.forceSelectedReducer_closure66, A.forceSelectedReducer_closure67, A.forceSelectedReducer_closure68, A.forceSelectedReducer_closure69, A.forceSelectedReducer_closure70, A.forceSelectedReducer_closure71, A.selectedIdReducer_closure121, A.selectedIdReducer_closure122, A.selectedIdReducer_closure123, A.selectedIdReducer_closure124, A.selectedIdReducer_closure125, A.selectedIdReducer_closure126, A.selectedIdReducer_closure127, A.selectedIdReducer_closure128, A.selectedIdReducer_closure129, A.selectedIdReducer_closure130, A.selectedIdReducer_closure131, A.selectedIdReducer_closure132, A.selectedIdReducer_closure133, A.selectedIdReducer_closure134, A.selectedIdReducer_closure135, A.editingReducer_closure37, A.editingReducer_closure38, A.editingReducer_closure39, A.editingReducer_closure40, A.companyGatewayListReducer_closure, A.memoizedCalculateCompanyGatewayProcessed_closure, A.calculateCompanyGatewayProcessed_closure, A.memoizedClientStatsForCompanyGateway_closure, A.clientStatsForCompanyGateway_closure, A.memoizedPaymentStatsForCompanyGateway_closure, A.paymentStatsForCompanyGateway_closure, A.getUnconnectedStripeAccount_closure, A.forceSelectedReducer_closure84, A.forceSelectedReducer_closure85, A.forceSelectedReducer_closure86, A.forceSelectedReducer_closure87, A.forceSelectedReducer_closure88, A.forceSelectedReducer_closure89, A.forceSelectedReducer_closure90, A.forceSelectedReducer_closure91, A.forceSelectedReducer_closure92, A.tabIndexReducer_closure11, A.tabIndexReducer_closure12, A.historyActivityIdReducer_closure0, A.editingItemReducer_closure1, A.editingItemReducer_closure2, A.selectedIdReducer_closure162, A.selectedIdReducer_closure163, A.selectedIdReducer_closure164, A.selectedIdReducer_closure165, A.selectedIdReducer_closure166, A.selectedIdReducer_closure167, A.selectedIdReducer_closure168, A.selectedIdReducer_closure169, A.selectedIdReducer_closure170, A.selectedIdReducer_closure171, A.selectedIdReducer_closure172, A.selectedIdReducer_closure173, A.selectedIdReducer_closure174, A.selectedIdReducer_closure175, A.selectedIdReducer_closure176, A.selectedIdReducer_closure177, A.selectedIdReducer_closure178, A.selectedIdReducer_closure179, A.selectedIdReducer_closure180, A.editingReducer_closure49, A.editingReducer_closure50, A.editingReducer_closure51, A.editingReducer_closure52, A.editingReducer_closure53, A.editingReducer_closure54, A.editingReducer_closure55, A.editingReducer_closure56, A.editingReducer_closure57, A.editingReducer_closure58, A.editingReducer_closure59, A.creditListReducer_closure, A._purgeClientSuccess__closure5, A.dropdownCreditSelector_closure0, A.filteredCreditsSelector_closure, A.filteredCreditsSelector_closure1, A.memoizedCreditStatsForDesign_closure, A.creditStatsForDesign_closure, A.memoizedCreditStatsForClient_closure, A.creditStatsForClient_closure, A.memoizedCreditStatsForUser_closure, A.creditStatsForUser_closure, A.selectedEntitiesReducer_closure, A.selectedEntitiesReducer_closure0, A.selectedEntityTypeReducer_closure, A.showSidebarReducer_closure, A._chartInvoices_closure, A.chartQuotes_closure, A.chartPayments_closure, A.chartTasks_closure, A.chartTasks___closure, A.chartExpenses_closure, A.memoizedRunningTasks_closure0, A.runningTasks_closure, A.memoizedUpcomingInvoices_closure, A._upcomingInvoices_closure, A._upcomingInvoices_closure0, A.memoizedPastDueInvoices_closure, A._pastDueInvoices_closure, A._pastDueInvoices_closure0, A.memoizedRecentPayments_closure, A._recentPayments_closure, A._recentPayments_closure0, A.memoizedUpcomingQuotes_closure, A._upcomingQuotes_closure, A._upcomingQuotes_closure0, A.memoizedExpiredQuotes_closure, A._expiredQuotes_closure, A._expiredQuotes_closure0, A.memoizedRunningTasks_closure, A._runningTasks_closure, A._runningTasks_closure0, A.memoizedRecentTasks_closure, A._recentTasks_closure, A._recentTasks_closure0, A.memoizedRecentExpenses_closure, A._recentExpenses_closure, A._recentExpenses_closure0, A.forceSelectedReducer_closure93, A.forceSelectedReducer_closure94, A.forceSelectedReducer_closure95, A.forceSelectedReducer_closure96, A.forceSelectedReducer_closure97, A.forceSelectedReducer_closure98, A.forceSelectedReducer_closure99, A.forceSelectedReducer_closure100, A.selectedIdReducer_closure181, A.selectedIdReducer_closure182, A.selectedIdReducer_closure183, A.selectedIdReducer_closure184, A.selectedIdReducer_closure185, A.selectedIdReducer_closure186, A.selectedIdReducer_closure187, A.selectedIdReducer_closure188, A.selectedIdReducer_closure189, A.selectedIdReducer_closure190, A.selectedIdReducer_closure191, A.selectedIdReducer_closure192, A.selectedIdReducer_closure193, A.selectedIdReducer_closure194, A.editingReducer_closure60, A.editingReducer_closure61, A.editingReducer_closure62, A.editingReducer_closure63, A.designListReducer_closure, A.filteredDesignsSelector_closure0, A.handleDocumentAction__closure, A.forceSelectedReducer_closure51, A.forceSelectedReducer_closure52, A.forceSelectedReducer_closure53, A.forceSelectedReducer_closure54, A.forceSelectedReducer_closure55, A.forceSelectedReducer_closure56, A.forceSelectedReducer_closure57, A.forceSelectedReducer_closure58, A.forceSelectedReducer_closure59, A.selectedIdReducer_closure95, A.selectedIdReducer_closure96, A.selectedIdReducer_closure97, A.selectedIdReducer_closure98, A.selectedIdReducer_closure99, A.selectedIdReducer_closure100, A.selectedIdReducer_closure101, A.selectedIdReducer_closure102, A.selectedIdReducer_closure103, A.selectedIdReducer_closure104, A.selectedIdReducer_closure105, A.selectedIdReducer_closure106, A.selectedIdReducer_closure107, A.selectedIdReducer_closure108, A.editingReducer_closure32, A.documentListReducer_closure, A.filteredDocumentsSelector_closure0, A.forceSelectedReducer_closure42, A.forceSelectedReducer_closure43, A.forceSelectedReducer_closure44, A.forceSelectedReducer_closure45, A.forceSelectedReducer_closure46, A.forceSelectedReducer_closure47, A.forceSelectedReducer_closure48, A.forceSelectedReducer_closure49, A.forceSelectedReducer_closure50, A.tabIndexReducer_closure9, A.tabIndexReducer_closure10, A.selectedIdReducer_closure80, A.selectedIdReducer_closure81, A.selectedIdReducer_closure82, A.selectedIdReducer_closure83, A.selectedIdReducer_closure84, A.selectedIdReducer_closure85, A.selectedIdReducer_closure86, A.selectedIdReducer_closure87, A.selectedIdReducer_closure88, A.selectedIdReducer_closure89, A.selectedIdReducer_closure90, A.selectedIdReducer_closure91, A.selectedIdReducer_closure92, A.selectedIdReducer_closure93, A.selectedIdReducer_closure94, A.editingReducer_closure28, A.editingReducer_closure29, A.editingReducer_closure30, A.editingReducer_closure31, A.expenseListReducer_closure, A._purgeClientSuccess__closure13, A.memoizedExpensePurchaseOrderSelector_closure, A.expensePurchaseOrderSelector_closure, A.filteredExpensesSelector_closure0, A.memoizedExpenseStatsForVendor_closure, A.expenseStatsForVendor_closure, A.memoizedExpenseStatsForClient_closure, A.expenseStatsForClient_closure, A.memoizedClientExpenseList_closure, A.clientExpenseList_closure0, A.memoizedExpenseStatsForProject_closure, A.expenseStatsForProject_closure, A.memoizedExpenseStatsForUser_closure, A.expenseStatsForUser_closure, A.saveCompleterReducer_closure1, A.cancelCompleterReducer_closure1, A.forceSelectedReducer_closure134, A.forceSelectedReducer_closure135, A.forceSelectedReducer_closure136, A.forceSelectedReducer_closure137, A.forceSelectedReducer_closure138, A.forceSelectedReducer_closure139, A.forceSelectedReducer_closure140, A.forceSelectedReducer_closure141, A.selectedIdReducer_closure258, A.selectedIdReducer_closure259, A.selectedIdReducer_closure260, A.selectedIdReducer_closure261, A.selectedIdReducer_closure262, A.selectedIdReducer_closure263, A.selectedIdReducer_closure264, A.selectedIdReducer_closure265, A.selectedIdReducer_closure266, A.selectedIdReducer_closure267, A.selectedIdReducer_closure268, A.selectedIdReducer_closure269, A.selectedIdReducer_closure270, A.selectedIdReducer_closure271, A.selectedIdReducer_closure272, A.editingReducer_closure87, A.editingReducer_closure88, A.editingReducer_closure89, A.editingReducer_closure90, A.expenseCategoryListReducer_closure, A.dropdownExpenseCategoriesSelector_closure0, A.filteredExpenseCategoriesSelector_closure0, A.memoizedCalculateExpenseCategoryAmount_closure, A.calculateExpenseCategoryAmount_closure, A.memoizedExpenseStatsForExpenseCategory_closure, A.expenseStatsForExpenseCategory_closure, A.memoizedTransactionStatsForExpenseCategory_closure, A.transactionStatsForExpenseCategory_closure, A.forceSelectedReducer_closure60, A.forceSelectedReducer_closure61, A.forceSelectedReducer_closure62, A.forceSelectedReducer_closure63, A.selectedIdReducer_closure109, A.selectedIdReducer_closure110, A.selectedIdReducer_closure111, A.selectedIdReducer_closure112, A.selectedIdReducer_closure113, A.selectedIdReducer_closure114, A.selectedIdReducer_closure115, A.selectedIdReducer_closure116, A.selectedIdReducer_closure117, A.selectedIdReducer_closure118, A.selectedIdReducer_closure119, A.selectedIdReducer_closure120, A.editingReducer_closure33, A.editingReducer_closure34, A.editingReducer_closure35, A.editingReducer_closure36, A.groupListReducer_closure, A.filteredGroupsSelector_closure0, A.memoizedClientStatsForGroup_closure, A.clientStatsForGroup_closure, A.forceSelectedReducer_closure209, A.forceSelectedReducer_closure210, A.forceSelectedReducer_closure211, A.forceSelectedReducer_closure212, A.forceSelectedReducer_closure213, A.forceSelectedReducer_closure214, A.forceSelectedReducer_closure215, A.forceSelectedReducer_closure216, A.forceSelectedReducer_closure217, A.tabIndexReducer_closure29, A.tabIndexReducer_closure30, A.historyActivityIdReducer_closure3, A.editingItemIndexReducer_closure1, A.editingItemIndexReducer_closure2, A.selectedIdReducer_closure399, A.selectedIdReducer_closure400, A.selectedIdReducer_closure401, A.selectedIdReducer_closure402, A.selectedIdReducer_closure403, A.selectedIdReducer_closure404, A.selectedIdReducer_closure405, A.selectedIdReducer_closure406, A.selectedIdReducer_closure407, A.selectedIdReducer_closure408, A.selectedIdReducer_closure409, A.selectedIdReducer_closure410, A.selectedIdReducer_closure411, A.selectedIdReducer_closure412, A.selectedIdReducer_closure413, A.selectedIdReducer_closure414, A.selectedIdReducer_closure415, A.selectedIdReducer_closure416, A.selectedIdReducer_closure417, A.editingReducer_closure130, A.editingReducer_closure131, A.editingReducer_closure132, A.editingReducer_closure133, A.editingReducer_closure134, A.editingReducer_closure135, A.editingReducer_closure136, A.editingReducer_closure137, A.editingReducer_closure138, A.editingReducer_closure139, A.editingReducer_closure140, A.invoiceListReducer_closure, A._purgeClientSuccess__closure15, A.memoizedHasActiveUnpaidInvoices_closure, A.memoizedInvoiceQuoteSelector_closure, A.invoiceQuoteSelector_closure, A.dropdownInvoiceSelector_closure0, A.filteredInvoicesSelector_closure, A.filteredInvoicesSelector_closure1, A.memoizedInvoiceStatsForClient_closure, A.invoiceStatsForClient_closure, A.memoizedInvoiceStatsForDesign_closure, A.invoiceStatsForDesign_closure, A.memoizedInvoiceStatsForSubscription_closure, A.invoiceStatsForSubscription_closure, A.memoizedInvoiceStatsForProject_closure, A.invoiceStatsForProject_closure, A.memoizedQuoteStatsForProject_closure, A.quoteStatsForProject_closure, A.memoizedInvoiceStatsForUser_closure, A.invoiceStatsForUser_closure, A.forceSelectedReducer_closure8, A.forceSelectedReducer_closure9, A.forceSelectedReducer_closure10, A.forceSelectedReducer_closure11, A.forceSelectedReducer_closure12, A.forceSelectedReducer_closure13, A.forceSelectedReducer_closure14, A.forceSelectedReducer_closure15, A.forceSelectedReducer_closure16, A.tabIndexReducer_closure1, A.tabIndexReducer_closure2, A.selectedIdReducer_closure18, A.selectedIdReducer_closure19, A.selectedIdReducer_closure20, A.selectedIdReducer_closure21, A.selectedIdReducer_closure22, A.selectedIdReducer_closure23, A.selectedIdReducer_closure24, A.selectedIdReducer_closure25, A.selectedIdReducer_closure26, A.selectedIdReducer_closure27, A.selectedIdReducer_closure28, A.selectedIdReducer_closure29, A.selectedIdReducer_closure30, A.selectedIdReducer_closure31, A.selectedIdReducer_closure32, A.selectedIdReducer_closure33, A.selectedIdReducer_closure34, A.editingReducer_closure10, A.editingReducer_closure11, A.editingReducer_closure12, A.editingReducer_closure13, A.paymentListReducer_closure, A._purgeClientSuccess__closure1, A.filteredPaymentsSelector_closure0, A.paymentStatsForClient_closure, A.forceSelectedReducer_closure101, A.forceSelectedReducer_closure102, A.forceSelectedReducer_closure103, A.forceSelectedReducer_closure104, A.forceSelectedReducer_closure105, A.forceSelectedReducer_closure106, A.forceSelectedReducer_closure107, A.forceSelectedReducer_closure108, A.selectedIdReducer_closure195, A.selectedIdReducer_closure196, A.selectedIdReducer_closure197, A.selectedIdReducer_closure198, A.selectedIdReducer_closure199, A.selectedIdReducer_closure200, A.selectedIdReducer_closure201, A.selectedIdReducer_closure202, A.selectedIdReducer_closure203, A.selectedIdReducer_closure204, A.selectedIdReducer_closure205, A.selectedIdReducer_closure206, A.selectedIdReducer_closure207, A.selectedIdReducer_closure208, A.editingReducer_closure64, A.editingReducer_closure65, A.editingReducer_closure66, A.editingReducer_closure67, A.paymentTermListReducer_closure, A.memoizedDropdownPaymentTermList_closure, A.dropdownPaymentTermsSelector_closure0, A.filteredPaymentTermsSelector_closure0, A.forceSelectedReducer_closure226, A.forceSelectedReducer_closure227, A.forceSelectedReducer_closure228, A.forceSelectedReducer_closure229, A.forceSelectedReducer_closure230, A.forceSelectedReducer_closure231, A.forceSelectedReducer_closure232, A.forceSelectedReducer_closure233, A.tabIndexReducer_closure33, A.tabIndexReducer_closure34, A.editingReducer_closure155, A.editingReducer_closure156, A.editingReducer_closure157, A.editingReducer_closure158, A.selectedIdReducer_closure435, A.selectedIdReducer_closure436, A.selectedIdReducer_closure437, A.selectedIdReducer_closure438, A.selectedIdReducer_closure439, A.selectedIdReducer_closure440, A.selectedIdReducer_closure441, A.selectedIdReducer_closure442, A.selectedIdReducer_closure443, A.selectedIdReducer_closure444, A.selectedIdReducer_closure445, A.selectedIdReducer_closure446, A.selectedIdReducer_closure447, A.selectedIdReducer_closure448, A.productListReducer_closure, A.dropdownProductsSelector_closure0, A.productList_closure0, A.filteredProductsSelector_closure0, A.forceSelectedReducer_closure17, A.forceSelectedReducer_closure18, A.forceSelectedReducer_closure19, A.forceSelectedReducer_closure20, A.forceSelectedReducer_closure21, A.forceSelectedReducer_closure22, A.forceSelectedReducer_closure23, A.forceSelectedReducer_closure24, A.tabIndexReducer_closure3, A.tabIndexReducer_closure4, A.saveCompleterReducer_closure, A.cancelCompleterReducer_closure, A.selectedIdReducer_closure35, A.selectedIdReducer_closure36, A.selectedIdReducer_closure37, A.selectedIdReducer_closure38, A.selectedIdReducer_closure39, A.selectedIdReducer_closure40, A.selectedIdReducer_closure41, A.selectedIdReducer_closure42, A.selectedIdReducer_closure43, A.selectedIdReducer_closure44, A.selectedIdReducer_closure45, A.selectedIdReducer_closure46, A.selectedIdReducer_closure47, A.selectedIdReducer_closure48, A.selectedIdReducer_closure49, A.editingReducer_closure14, A.editingReducer_closure15, A.editingReducer_closure16, A.editingReducer_closure17, A.projectListReducer_closure, A._purgeClientSuccess__closure3, A.convertProjectToInvoiceItem_closure, A.convertProjectToInvoiceItem_closure0, A.convertProjectToInvoiceItem_closure1, A.convertProjectToInvoiceItem_closure2, A.dropdownProjectsSelector_closure0, A.filteredProjectsSelector_closure0, A.taskDurationForProject_closure, A.memoizedProjectStatsForClient_closure, A.projectStatsForClient_closure, A.memoizedProjectStatsForUser_closure, A.forceSelectedReducer_closure167, A.forceSelectedReducer_closure168, A.forceSelectedReducer_closure169, A.forceSelectedReducer_closure170, A.forceSelectedReducer_closure171, A.forceSelectedReducer_closure172, A.forceSelectedReducer_closure173, A.forceSelectedReducer_closure174, A.forceSelectedReducer_closure175, A.tabIndexReducer_closure19, A.tabIndexReducer_closure20, A.historyActivityIdReducer_closure2, A.editingItemReducer_closure3, A.editingItemReducer_closure4, A.selectedIdReducer_closure319, A.selectedIdReducer_closure320, A.selectedIdReducer_closure321, A.selectedIdReducer_closure322, A.selectedIdReducer_closure323, A.selectedIdReducer_closure324, A.selectedIdReducer_closure325, A.selectedIdReducer_closure326, A.selectedIdReducer_closure327, A.selectedIdReducer_closure328, A.selectedIdReducer_closure329, A.selectedIdReducer_closure330, A.selectedIdReducer_closure331, A.selectedIdReducer_closure332, A.selectedIdReducer_closure333, A.selectedIdReducer_closure334, A.selectedIdReducer_closure335, A.selectedIdReducer_closure336, A.selectedIdReducer_closure337, A.editingReducer_closure103, A.editingReducer_closure104, A.editingReducer_closure105, A.editingReducer_closure106, A.editingReducer_closure107, A.editingReducer_closure108, A.editingReducer_closure109, A.editingReducer_closure110, A.editingReducer_closure111, A.editingReducer_closure112, A.editingReducer_closure113, A.purchaseOrderListReducer_closure, A.dropdownPurchaseOrdersSelector_closure0, A.filteredPurchaseOrdersSelector_closure0, A.memoizedPurchaseOrderStatsForVendor_closure, A.purchaseOrderStatsForVendor_closure, A.forceSelectedReducer_closure, A.forceSelectedReducer_closure0, A.forceSelectedReducer_closure1, A.forceSelectedReducer_closure2, A.forceSelectedReducer_closure3, A.forceSelectedReducer_closure4, A.forceSelectedReducer_closure5, A.forceSelectedReducer_closure6, A.forceSelectedReducer_closure7, A.tabIndexReducer_closure, A.tabIndexReducer_closure0, A.historyActivityIdReducer_closure, A.editingItemReducer_closure, A.editingItemReducer_closure0, A.selectedIdReducer_closure, A.selectedIdReducer_closure0, A.selectedIdReducer_closure1, A.selectedIdReducer_closure2, A.selectedIdReducer_closure3, A.selectedIdReducer_closure4, A.selectedIdReducer_closure5, A.selectedIdReducer_closure6, A.selectedIdReducer_closure7, A.selectedIdReducer_closure8, A.selectedIdReducer_closure9, A.selectedIdReducer_closure10, A.selectedIdReducer_closure11, A.selectedIdReducer_closure12, A.selectedIdReducer_closure13, A.selectedIdReducer_closure14, A.selectedIdReducer_closure15, A.selectedIdReducer_closure16, A.selectedIdReducer_closure17, A.editingReducer_closure, A.editingReducer_closure0, A.editingReducer_closure1, A.editingReducer_closure2, A.editingReducer_closure3, A.editingReducer_closure4, A.editingReducer_closure5, A.editingReducer_closure6, A.editingReducer_closure7, A.editingReducer_closure8, A.editingReducer_closure9, A.quoteListReducer_closure, A._purgeClientSuccess__closure, A.dropdownQuoteSelector_closure0, A.filteredQuotesSelector_closure0, A.memoizedQuoteStatsForClient_closure, A.quoteStatsForClient_closure, A.memoizedQuoteStatsForDesign_closure, A.quoteStatsForDesign_closure, A.memoizedQuoteStatsForUser_closure, A.quoteStatsForUser_closure, A.forceSelectedReducer_closure158, A.forceSelectedReducer_closure159, A.forceSelectedReducer_closure160, A.forceSelectedReducer_closure161, A.forceSelectedReducer_closure162, A.forceSelectedReducer_closure163, A.forceSelectedReducer_closure164, A.forceSelectedReducer_closure165, A.forceSelectedReducer_closure166, A.tabIndexReducer_closure17, A.tabIndexReducer_closure18, A.selectedIdReducer_closure303, A.selectedIdReducer_closure304, A.selectedIdReducer_closure305, A.selectedIdReducer_closure306, A.selectedIdReducer_closure307, A.selectedIdReducer_closure308, A.selectedIdReducer_closure309, A.selectedIdReducer_closure310, A.selectedIdReducer_closure311, A.selectedIdReducer_closure312, A.selectedIdReducer_closure313, A.selectedIdReducer_closure314, A.selectedIdReducer_closure315, A.selectedIdReducer_closure316, A.selectedIdReducer_closure317, A.selectedIdReducer_closure318, A.editingReducer_closure99, A.editingReducer_closure100, A.editingReducer_closure101, A.editingReducer_closure102, A.recurringExpenseListReducer_closure, A._purgeClientSuccess__closure9, A.filteredRecurringExpensesSelector_closure0, A.memoizedRecurringExpenseStatsForClient_closure, A.recurringExpenseStatsForClient_closure, A.memoizedRecurringExpenseStatsForVendor_closure, A.recurringExpenseStatsForVendor_closure, A.memoizedTransactionStatsForVendor_closure, A.transactionStatsForVendor_closure, A.memoizedRecurringExpenseStatsForUser_closure, A.recurringExpenseStatsForUser_closure, A.memoizedRecurringExpenseStatsForExpense_closure, A.recurringExpenseStatsForExpense_closure, A.forceSelectedReducer_closure125, A.forceSelectedReducer_closure126, A.forceSelectedReducer_closure127, A.forceSelectedReducer_closure128, A.forceSelectedReducer_closure129, A.forceSelectedReducer_closure130, A.forceSelectedReducer_closure131, A.forceSelectedReducer_closure132, A.forceSelectedReducer_closure133, A.tabIndexReducer_closure13, A.tabIndexReducer_closure14, A.historyActivityIdReducer_closure1, A.editingItemIndexReducer_closure, A.editingItemIndexReducer_closure0, A.selectedIdReducer_closure239, A.selectedIdReducer_closure240, A.selectedIdReducer_closure241, A.selectedIdReducer_closure242, A.selectedIdReducer_closure243, A.selectedIdReducer_closure244, A.selectedIdReducer_closure245, A.selectedIdReducer_closure246, A.selectedIdReducer_closure247, A.selectedIdReducer_closure248, A.selectedIdReducer_closure249, A.selectedIdReducer_closure250, A.selectedIdReducer_closure251, A.selectedIdReducer_closure252, A.selectedIdReducer_closure253, A.selectedIdReducer_closure254, A.selectedIdReducer_closure255, A.selectedIdReducer_closure256, A.selectedIdReducer_closure257, A.editingReducer_closure76, A.editingReducer_closure77, A.editingReducer_closure78, A.editingReducer_closure79, A.editingReducer_closure80, A.editingReducer_closure81, A.editingReducer_closure82, A.editingReducer_closure83, A.editingReducer_closure84, A.editingReducer_closure85, A.editingReducer_closure86, A.recurringInvoiceListReducer_closure, A._purgeClientSuccess__closure7, A.filteredRecurringInvoicesSelector_closure0, A.memoizedRecurringInvoiceStatsForClient_closure, A.recurringInvoiceStatsForClient_closure, A.memoizedRecurringInvoiceStatsForUser_closure, A.recurringInvoiceStatsForUser_closure, A.memoizedRecurringInvoiceStatsForInvoice_closure, A.recurringInvoiceStatsForInvoice_closure, A.memoizedRecurringInvoiceStatsForDesign_closure, A.recurringInvoiceStatsForDesign_closure, A.memoizedRecurringInvoiceStatsForSubscription_closure, A.recurringInvoiceStatsForSubscription_closure, A.forceSelectedReducer_closure201, A.forceSelectedReducer_closure202, A.forceSelectedReducer_closure203, A.forceSelectedReducer_closure204, A.forceSelectedReducer_closure205, A.forceSelectedReducer_closure206, A.forceSelectedReducer_closure207, A.forceSelectedReducer_closure208, A.tabIndexReducer_closure27, A.tabIndexReducer_closure28, A.selectedIdReducer_closure384, A.selectedIdReducer_closure385, A.selectedIdReducer_closure386, A.selectedIdReducer_closure387, A.selectedIdReducer_closure388, A.selectedIdReducer_closure389, A.selectedIdReducer_closure390, A.selectedIdReducer_closure391, A.selectedIdReducer_closure392, A.selectedIdReducer_closure393, A.selectedIdReducer_closure394, A.selectedIdReducer_closure395, A.selectedIdReducer_closure396, A.selectedIdReducer_closure397, A.selectedIdReducer_closure398, A.editingReducer_closure126, A.editingReducer_closure127, A.editingReducer_closure128, A.editingReducer_closure129, A.scheduleListReducer_closure, A.filteredSchedulesSelector_closure0, A.settingsUIReducer_closure, A.settingsUIReducer_closure0, A.settingsUIReducer_closure1, A.settingsUIReducer_closure2, A.settingsUIReducer_closure3, A.settingsUIReducer_closure4, A.settingsUIReducer_closure5, A.settingsUIReducer_closure6, A.settingsUIReducer_closure7, A.settingsUIReducer_closure8, A.settingsUIReducer_closure9, A.settingsUIReducer_closure10, A.settingsUIReducer_closure11, A.settingsUIReducer_closure12, A.settingsUIReducer_closure13, A.settingsUIReducer_closure14, A.settingsUIReducer_closure15, A.settingsUIReducer_closure16, A.settingsUIReducer_closure17, A.settingsUIReducer_closure18, A.countryList_closure, A.groupList_closure0, A.languageList_closure, A.currencyList_closure, A.timezoneList_closure, A.dateFormatList_closure, A.industryList_closure, A.sizeList_closure, A.memoizedGatewayList_closure, A.gatewayList_closure0, A.paymentTypeList_closure, A.forceSelectedReducer_closure150, A.forceSelectedReducer_closure151, A.forceSelectedReducer_closure152, A.forceSelectedReducer_closure153, A.forceSelectedReducer_closure154, A.forceSelectedReducer_closure155, A.forceSelectedReducer_closure156, A.forceSelectedReducer_closure157, A.tabIndexReducer_closure15, A.tabIndexReducer_closure16, A.selectedIdReducer_closure288, A.selectedIdReducer_closure289, A.selectedIdReducer_closure290, A.selectedIdReducer_closure291, A.selectedIdReducer_closure292, A.selectedIdReducer_closure293, A.selectedIdReducer_closure294, A.selectedIdReducer_closure295, A.selectedIdReducer_closure296, A.selectedIdReducer_closure297, A.selectedIdReducer_closure298, A.selectedIdReducer_closure299, A.selectedIdReducer_closure300, A.selectedIdReducer_closure301, A.selectedIdReducer_closure302, A.editingReducer_closure95, A.editingReducer_closure96, A.editingReducer_closure97, A.editingReducer_closure98, A.subscriptionListReducer_closure, A.filteredSubscriptionsSelector_closure0, A.handleTaskAction_closure1, A.forceSelectedReducer_closure25, A.forceSelectedReducer_closure26, A.forceSelectedReducer_closure27, A.forceSelectedReducer_closure28, A.forceSelectedReducer_closure29, A.forceSelectedReducer_closure30, A.forceSelectedReducer_closure31, A.forceSelectedReducer_closure32, A.forceSelectedReducer_closure33, A.tabIndexReducer_closure5, A.tabIndexReducer_closure6, A.kanbanLastUpdatedReducer_closure, A.editingTimeReducer_closure, A.editingTimeReducer_closure0, A.selectedIdReducer_closure50, A.selectedIdReducer_closure51, A.selectedIdReducer_closure52, A.selectedIdReducer_closure53, A.selectedIdReducer_closure54, A.selectedIdReducer_closure55, A.selectedIdReducer_closure56, A.selectedIdReducer_closure57, A.selectedIdReducer_closure58, A.selectedIdReducer_closure59, A.selectedIdReducer_closure60, A.selectedIdReducer_closure61, A.selectedIdReducer_closure62, A.selectedIdReducer_closure63, A.selectedIdReducer_closure64, A.editingReducer_closure18, A.editingReducer_closure19, A.editingReducer_closure20, A.editingReducer_closure21, A.editingReducer_closure22, A.editingReducer_closure23, A.taskListReducer_closure, A._purgeClientSuccess__closure11, A.convertTaskToInvoiceItem_closure1, A.taskList_closure0, A.kanbanTasksSelector_closure0, A.filteredTasksSelector_closure0, A.memoizedTaskStatsForClient_closure, A.taskStatsForClient_closure, A.memoizedTaskStatsForProject_closure, A.taskStatsForProject_closure, A.memoizedTaskStatsForUser_closure, A.forceSelectedReducer_closure142, A.forceSelectedReducer_closure143, A.forceSelectedReducer_closure144, A.forceSelectedReducer_closure145, A.forceSelectedReducer_closure146, A.forceSelectedReducer_closure147, A.forceSelectedReducer_closure148, A.forceSelectedReducer_closure149, A.selectedIdReducer_closure273, A.selectedIdReducer_closure274, A.selectedIdReducer_closure275, A.selectedIdReducer_closure276, A.selectedIdReducer_closure277, A.selectedIdReducer_closure278, A.selectedIdReducer_closure279, A.selectedIdReducer_closure280, A.selectedIdReducer_closure281, A.selectedIdReducer_closure282, A.selectedIdReducer_closure283, A.selectedIdReducer_closure284, A.selectedIdReducer_closure285, A.selectedIdReducer_closure286, A.selectedIdReducer_closure287, A.editingReducer_closure91, A.editingReducer_closure92, A.editingReducer_closure93, A.editingReducer_closure94, A.taskStatusListReducer_closure, A.memoizedSortedActiveTaskStatusIds_closure, A.sortedActiveTaskStatusIds_closure0, A.dropdownTaskStatusesSelector_closure0, A.filteredTaskStatusesSelector_closure0, A.memoizedCalculateTaskStatusAmount_closure, A.calculateTaskStatusAmount_closure, A.memoizedTaskStatsForTaskStatus_closure, A.taskStatsForTaskStatus_closure, A.defaultTaskStatusId_closure0, A.forceSelectedReducer_closure72, A.forceSelectedReducer_closure73, A.forceSelectedReducer_closure74, A.forceSelectedReducer_closure75, A.selectedIdReducer_closure136, A.selectedIdReducer_closure137, A.selectedIdReducer_closure138, A.selectedIdReducer_closure139, A.selectedIdReducer_closure140, A.selectedIdReducer_closure141, A.selectedIdReducer_closure142, A.selectedIdReducer_closure143, A.selectedIdReducer_closure144, A.selectedIdReducer_closure145, A.editingReducer_closure41, A.editingReducer_closure42, A.editingReducer_closure43, A.editingReducer_closure44, A.taxRateListReducer_closure, A.filteredTaxRatesSelector_closure0, A.forceSelectedReducer_closure109, A.forceSelectedReducer_closure110, A.forceSelectedReducer_closure111, A.forceSelectedReducer_closure112, A.forceSelectedReducer_closure113, A.forceSelectedReducer_closure114, A.forceSelectedReducer_closure115, A.forceSelectedReducer_closure116, A.selectedIdReducer_closure209, A.selectedIdReducer_closure210, A.selectedIdReducer_closure211, A.selectedIdReducer_closure212, A.selectedIdReducer_closure213, A.selectedIdReducer_closure214, A.selectedIdReducer_closure215, A.selectedIdReducer_closure216, A.selectedIdReducer_closure217, A.selectedIdReducer_closure218, A.selectedIdReducer_closure219, A.selectedIdReducer_closure220, A.selectedIdReducer_closure221, A.selectedIdReducer_closure222, A.selectedIdReducer_closure223, A.editingReducer_closure68, A.editingReducer_closure69, A.editingReducer_closure70, A.editingReducer_closure71, A.tokenListReducer_closure, A.filteredTokensSelector_closure0, A.forceSelectedReducer_closure184, A.forceSelectedReducer_closure185, A.forceSelectedReducer_closure186, A.forceSelectedReducer_closure187, A.forceSelectedReducer_closure188, A.forceSelectedReducer_closure189, A.forceSelectedReducer_closure190, A.forceSelectedReducer_closure191, A.forceSelectedReducer_closure192, A.tabIndexReducer_closure23, A.tabIndexReducer_closure24, A.selectedIdReducer_closure353, A.selectedIdReducer_closure354, A.selectedIdReducer_closure355, A.selectedIdReducer_closure356, A.selectedIdReducer_closure357, A.selectedIdReducer_closure358, A.selectedIdReducer_closure359, A.selectedIdReducer_closure360, A.selectedIdReducer_closure361, A.selectedIdReducer_closure362, A.selectedIdReducer_closure363, A.selectedIdReducer_closure364, A.selectedIdReducer_closure365, A.selectedIdReducer_closure366, A.selectedIdReducer_closure367, A.selectedIdReducer_closure368, A.editingReducer_closure118, A.editingReducer_closure119, A.editingReducer_closure120, A.editingReducer_closure121, A.transactionListReducer_closure, A.filteredTransactionsSelector_closure0, A.memoizedTransactionStatsForBankAccount_closure, A.transactionStatsForBankAccount_closure, A.forceSelectedReducer_closure193, A.forceSelectedReducer_closure194, A.forceSelectedReducer_closure195, A.forceSelectedReducer_closure196, A.forceSelectedReducer_closure197, A.forceSelectedReducer_closure198, A.forceSelectedReducer_closure199, A.forceSelectedReducer_closure200, A.tabIndexReducer_closure25, A.tabIndexReducer_closure26, A.selectedIdReducer_closure369, A.selectedIdReducer_closure370, A.selectedIdReducer_closure371, A.selectedIdReducer_closure372, A.selectedIdReducer_closure373, A.selectedIdReducer_closure374, A.selectedIdReducer_closure375, A.selectedIdReducer_closure376, A.selectedIdReducer_closure377, A.selectedIdReducer_closure378, A.selectedIdReducer_closure379, A.selectedIdReducer_closure380, A.selectedIdReducer_closure381, A.selectedIdReducer_closure382, A.selectedIdReducer_closure383, A.editingReducer_closure122, A.editingReducer_closure123, A.editingReducer_closure124, A.editingReducer_closure125, A.transactionRuleListReducer_closure, A.filteredTransactionRulesSelector_closure0, A.memoizedTransactionStatsForTransactionRule_closure, A.transactionStatsForTransactionRule_closure, A.sortFieldsReducer_closure, A.sortFieldsReducer_closure0, A.sortFieldsReducer_closure1, A.sortFieldsReducer_closure2, A.sortFieldsReducer_closure3, A.sortFieldsReducer_closure4, A.sortFieldsReducer_closure5, A.sortFieldsReducer_closure6, A.sortFieldsReducer_closure7, A.sortFieldsReducer_closure8, A.sortFieldsReducer_closure9, A.sortFieldsReducer_closure10, A.sortFieldsReducer_closure11, A.sortFieldsReducer_closure12, A.sortFieldsReducer_closure13, A.sortFieldsReducer_closure14, A.sortFieldsReducer_closure15, A.sortFieldsReducer_closure16, A.sortFieldsReducer_closure17, A.sortFieldsReducer_closure18, A.sortFieldsReducer_closure19, A.sortFieldsReducer_closure20, A.sidebarEditorReducer_closure, A.sidebarViewerReducer_closure, A.menuVisibleReducer_closure, A.menuVisibleReducer_closure0, A.textScaleFactorReducer_closure, A.historyVisibleReducer_closure, A.historyVisibleReducer_closure0, A.hideDesktopWarningReducer_closure, A.hideTaskExtensionBannerReducer_closure, A.hideGatewayWarningReducer_closure, A.hideReviewAppReducer_closure, A.hideReviewAppReducer_closure0, A.hideReviewAppReducer_closure1, A.hideOneYearReviewAppReducer_closure, A.hideOneYearReviewAppReducer_closure0, A.hideTwoYearReviewAppReducer_closure, A.layoutReducer_closure, A.moduleLayoutReducer_closure, A.moduleLayoutReducer_closure0, A.rowsPerPageReducer_closure, A.manuSidebarReducer_closure, A.historySidebarReducer_closure, A.darkModeTypeReducer_closure, A.darkModeSystemReducer_closure, A.statementIncludesReducer_closure, A.enableTooltipsReducer_closure, A.enableFlexibleSearchReducer_closure, A.enableNativeBrowserReducer_closure, A.persistDataReducer_closure, A.showKanbanReducer_closure, A.isFilterVisibleReducer_closure, A.longPressReducer_closure, A.tapSelectedToEditReducer_closure, A.downloadsFolderReducer_closure, A.isPreviewVisibleReducer_closure, A.isPreviewVisibleReducer_closure0, A.isPreviewVisibleReducer_closure1, A.isPreviewVisibleReducer_closure2, A.isPreviewVisibleReducer_closure3, A.isPreviewVisibleReducer_closure4, A.isPreviewVisibleReducer_closure5, A.isPreviewVisibleReducer_closure6, A.isPreviewVisibleReducer_closure7, A.isPreviewVisibleReducer_closure8, A.isPreviewVisibleReducer_closure9, A.isPreviewVisibleReducer_closure10, A.isPreviewVisibleReducer_closure11, A.isPreviewVisibleReducer_closure12, A.isPreviewVisibleReducer_closure13, A.isPreviewVisibleReducer_closure14, A.requireAuthenticationReducer_closure, A.colorThemeReducer_closure, A.darkColorThemeReducer_closure, A.showPdfPreviewReducer_closure, A.showPdfPreviewSideBySideReducer_closure, A.editAfterSavingReducer_closure, A.enableTouchEventsReducer_closure, A.customColorsReducer_closure, A.darkCustomColorsReducer_closure, A.historyReducer_closure, A.historyReducer_closure0, A.historyReducer_closure1, A.historyReducer_closure2, A.historyReducer_closure3, A.historyReducer_closure4, A.historyReducer_closure5, A.historyReducer_closure6, A.historyReducer_closure7, A.historyReducer_closure8, A.historyReducer_closure9, A.historyReducer_closure10, A.historyReducer_closure11, A.historyReducer_closure12, A.historyReducer_closure13, A.historyReducer_closure14, A.historyReducer_closure15, A.historyReducer_closure16, A.historyReducer_closure17, A.historyReducer_closure18, A.historyReducer_closure19, A.historyReducer_closure20, A.historyReducer_closure21, A.historyReducer_closure22, A.historyReducer_closure23, A.historyReducer_closure24, A.historyReducer_closure25, A.historyReducer_closure26, A.historyReducer_closure27, A.historyReducer_closure28, A.historyReducer_closure29, A.historyReducer_closure30, A.historyReducer_closure31, A.historyReducer_closure32, A.historyReducer_closure33, A.historyReducer_closure34, A.historyReducer_closure35, A.historyReducer_closure36, A.historyReducer_closure37, A.historyReducer_closure38, A.historyReducer_closure39, A.historyReducer_closure40, A.historyReducer_closure41, A.historyReducer_closure42, A.historyReducer_closure43, A.historyReducer_closure44, A.historyReducer_closure45, A.historyReducer_closure46, A.historyReducer_closure47, A.historyReducer_closure48, A.historyReducer_closure49, A.historyReducer_closure50, A.historyReducer_closure51, A.historyReducer_closure52, A.historyReducer_closure53, A.historyReducer_closure54, A.historyReducer_closure55, A.historyReducer_closure56, A.historyReducer_closure57, A.historyReducer_closure58, A.historyReducer_closure59, A.historyReducer_closure60, A.historyReducer_closure61, A.historyReducer_closure62, A.historyReducer_closure63, A.historyReducer_closure64, A.historyReducer_closure65, A.historyReducer_closure66, A.historyReducer_closure67, A.historyReducer_closure68, A.historyReducer_closure69, A.historyReducer_closure70, A.historyReducer_closure71, A.historyReducer_closure72, A.historyReducer_closure73, A.historyReducer_closure74, A.historyReducer_closure75, A.historyReducer_closure76, A.historyReducer_closure77, A.historyReducer_closure78, A.historyReducer_closure79, A.historyReducer_closure80, A.historyReducer_closure81, A.historyReducer_closure82, A.historyReducer_closure83, A.historyReducer_closure84, A.historyReducer_closure85, A.historyReducer_closure86, A.lastActivityReducer_closure, A.filterReducer_closure, A.filterReducer_closure0, A.loadingEntityTypeReducer_closure, A.loadingEntityTypeReducer_closure0, A.loadingEntityTypeReducer_closure1, A.loadingEntityTypeReducer_closure2, A.loadingEntityTypeReducer_closure3, A.loadingEntityTypeReducer_closure4, A.loadingEntityTypeReducer_closure5, A.loadingEntityTypeReducer_closure6, A.loadingEntityTypeReducer_closure7, A.loadingEntityTypeReducer_closure8, A.loadingEntityTypeReducer_closure9, A.loadingEntityTypeReducer_closure10, A.loadingEntityTypeReducer_closure11, A.loadingEntityTypeReducer_closure12, A.loadingEntityTypeReducer_closure13, A.filterClearedAtReducer_closure, A.filterClearedAtReducer_closure0, A.currentRouteReducer_closure, A.selectedCompanyIndexReducer_closure, A.previewStackReducer_closure, A.previewStackReducer_closure0, A.previewStackReducer_closure1, A.filterStackReducer_closure, A.filterStackReducer_closure0, A.filterStackReducer_closure1, A.handleUserAction_closure10, A.handleUserAction_closure12, A.handleUserAction_closure14, A.handleUserAction__closure, A.handleUserAction_closure18, A.forceSelectedReducer_closure76, A.forceSelectedReducer_closure77, A.forceSelectedReducer_closure78, A.forceSelectedReducer_closure79, A.forceSelectedReducer_closure80, A.forceSelectedReducer_closure81, A.forceSelectedReducer_closure82, A.forceSelectedReducer_closure83, A.selectedIdReducer_closure146, A.selectedIdReducer_closure147, A.selectedIdReducer_closure148, A.selectedIdReducer_closure149, A.selectedIdReducer_closure150, A.selectedIdReducer_closure151, A.selectedIdReducer_closure152, A.selectedIdReducer_closure153, A.selectedIdReducer_closure154, A.selectedIdReducer_closure155, A.selectedIdReducer_closure156, A.selectedIdReducer_closure157, A.selectedIdReducer_closure158, A.selectedIdReducer_closure159, A.selectedIdReducer_closure160, A.selectedIdReducer_closure161, A.editingReducer_closure45, A.editingReducer_closure46, A.editingReducer_closure47, A.editingReducer_closure48, A.userListReducer_closure, A.filteredUsersSelector_closure0, A.userList_closure0, A.forceSelectedReducer_closure34, A.forceSelectedReducer_closure35, A.forceSelectedReducer_closure36, A.forceSelectedReducer_closure37, A.forceSelectedReducer_closure38, A.forceSelectedReducer_closure39, A.forceSelectedReducer_closure40, A.forceSelectedReducer_closure41, A.tabIndexReducer_closure7, A.tabIndexReducer_closure8, A.saveCompleterReducer_closure0, A.cancelCompleterReducer_closure0, A.selectedIdReducer_closure65, A.selectedIdReducer_closure66, A.selectedIdReducer_closure67, A.selectedIdReducer_closure68, A.selectedIdReducer_closure69, A.selectedIdReducer_closure70, A.selectedIdReducer_closure71, A.selectedIdReducer_closure72, A.selectedIdReducer_closure73, A.selectedIdReducer_closure74, A.selectedIdReducer_closure75, A.selectedIdReducer_closure76, A.selectedIdReducer_closure77, A.selectedIdReducer_closure78, A.selectedIdReducer_closure79, A.editingReducer_closure24, A.editingReducer_closure25, A.editingReducer_closure26, A.editingReducer_closure27, A.vendorListReducer_closure, A.dropdownVendorsSelector_closure0, A.filteredVendorsSelector_closure0, A.memoizedVendorStatsForUser_closure, A.vendorStatsForUser_closure, A.forceSelectedReducer_closure117, A.forceSelectedReducer_closure118, A.forceSelectedReducer_closure119, A.forceSelectedReducer_closure120, A.forceSelectedReducer_closure121, A.forceSelectedReducer_closure122, A.forceSelectedReducer_closure123, A.forceSelectedReducer_closure124, A.selectedIdReducer_closure224, A.selectedIdReducer_closure225, A.selectedIdReducer_closure226, A.selectedIdReducer_closure227, A.selectedIdReducer_closure228, A.selectedIdReducer_closure229, A.selectedIdReducer_closure230, A.selectedIdReducer_closure231, A.selectedIdReducer_closure232, A.selectedIdReducer_closure233, A.selectedIdReducer_closure234, A.selectedIdReducer_closure235, A.selectedIdReducer_closure236, A.selectedIdReducer_closure237, A.selectedIdReducer_closure238, A.editingReducer_closure72, A.editingReducer_closure73, A.editingReducer_closure74, A.editingReducer_closure75, A.webhookListReducer_closure, A.filteredWebhooksSelector_closure0, A.FieldGrid_build_closure, A.FieldGrid_build_closure0, A._AppBottomBarState_build___closure7, A._AppBottomBarState_build___closure5, A._AppBottomBarState_build___closure, A._AppBottomBarState_build_closure, A.CustomFieldSelector_build_closure, A.ConfirmEmail_build__closure, A.ConfirmEmailBuilder_build_closure, A.MultiSelectListState_build_closure1, A.MultiSelectListState_build_closure5, A._DocumentGridState_build_closure0, A._DocumentGridState_build_closure1, A.EditScaffold_build_closure2, A._EntityListTileState_build_closure, A._EntityDropdownState__showOptions__closure0, A._EntityDropdownState_build__closure, A._EntityDropdownDialogState_build__createList_closure1, A.EntityTopFilter_build_closure5, A.EntityTopFilterHeader_build_closure3, A.AppToggleButtons_build_closure, A._CustomFieldState_build_closure0, A.ProjectPicker_build_closure, A._TimePickerState__showTimePicker_closure, A.VendorPicker_build_closure, A.HistoryDrawerBuilder_build_closure, A._InvoiceEmailViewState__buildHistory_closure, A.FilterListTile_build_closure, A.MainScreen_build_closure, A.MenuDrawerBuilder_build_closure, A._DropDownMultiSelectState_build_closure, A._DropDownMultiSelectState_build___closure4, A._SystemLogViewerState_build_closure2, A._SystemLogViewerState_build__closure0, A.AppPaginatedDataTableState_build_closure0, A.EntityDataTableSource_getRow_closure2, A._EntityListState_build__closure2, A._EntityListState_build__closure1, A._EntityListState_build___closure1, A._EntityListState_build_closure3, A._UpgradeDialogState__buildProductList_closure0, A._VariableGrid_build_closure, A._VariableGrid_build_closure0, A.ViewScaffold_build_closure5, A.InitScreen_build_closure, A.LoginScreen_build_closure, A.LoginVM_fromStore__closure6, A.LoginVM_fromStore__closure5, A.LoginVM_fromStore__closure3, A.LoginVM_fromStore__closure1, A.BankAccountListBuilder_build_closure, A.BankAccountListBuilder_build__closure, A.BankAccountScreen_build_closure13, A.BankAccountScreen_build_closure10, A.BankAccountScreenBuilder_build_closure, A._BankAccountEditState_build_closure1, A.BankAccountEditScreen_build_closure, A.BankAccountViewScreen_build_closure, A.ClientListItem_build_closure, A.ClientListItem_build__closure0, A.ClientListBuilder_build_closure, A.ClientListBuilder_build__closure, A._ClientPdfViewState_build_closure10, A._ClientPdfViewState_build_closure11, A.ClientPdfScreen_build_closure, A.ClientScreen_build_closure8, A.ClientScreen_build_closure5, A.ClientScreenBuilder_build_closure, A.ClientEditContactsScreen_build_closure, A.ClientEditContactsVM_ClientEditContactsVM$fromStore_closure2, A.ClientEditScreen_build_closure, A._ClientViewActivityState_build_closure0, A._ClientViewActivityState_build_closure, A.ClientViewDocuments_build_closure, A._ClientViewFullwidthState_build_closure0, A._ClientViewLedgerState_build_closure1, A._ClientViewLedgerState_build_closure0, A.ClientViewPaymentMethods_build_closure0, A.ClientViewPaymentMethods_build_closure, A.ClientViewScreen_build_closure, A._CompanyGatewayListState_build_closure0, A.CompanyGatewayListBuilder_build_closure, A.CompanyGatewayListVM_fromStore_closure0, A.CompanyGatewayScreen_build_closure8, A.CompanyGatewayScreenBuilder_build_closure, A.CompanyGatewayEditScreen_build_closure, A.CompanyGatewayViewScreen_build_closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure, A.CompanyGatewayViewVM_CompanyGatewayViewVM$fromStore__closure0, A.CreditEmailScreen_build_closure, A.CreditListItem_build_closure, A.CreditListItem_build__closure0, A.CreditListBuilder_build_closure, A.CreditListBuilder_build__closure, A.CreditPdfScreen_build_closure, A.CreditScreen_build_closure8, A.CreditScreen_build_closure5, A.CreditScreenBuilder_build_closure, A._CreditEditState_build_closure0, A.CreditEditDetailsScreen_build_closure, A.CreditEditDetailsVM_CreditEditDetailsVM$fromStore_closure1, A.CreditEditItemsScreen_build_closure, A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure1, A.CreditEditItemsVM_CreditEditItemsVM$fromStore_closure2, A.CreditEditNotesScreen_build_closure, A.CreditEditPDFScreen_build_closure, A.CreditEditScreen_build_closure, A.CreditViewScreen_build_closure, A.DashboardActivity_build_closure0, A.DashboardActivity_build_closure, A._DashboardDateRangePickerState_build_closure3, A._DashboardDateRangePickerState_build_closure4, A._DashboardDateRangePickerState_build_closure7, A._DashboardDateRangePickerState_build_closure8, A.DashboardPanels__header_closure, A.DashboardPanels__runningTasks__closure, A.DashboardPanels_build_closure4, A.DashboardPanels_build__closure3, A.DashboardPanels_build__closure5, A.DashboardPanels_build__closure7, A.DashboardPanels_build__closure9, A.DashboardPanels_build__closure11, A.__DashboardPanelState_build__closure0, A.__DashboardPanelState_build__closure1, A.__DashboardPanelState_build__closure, A.__DashboardPanelState_build__closure2, A.__DashboardPanelState_build__closure4, A.__DashboardPanelState_build__closure5, A.__DashboardPanelState_build__closure3, A.__DashboardPanelState_build__closure6, A.__OverviewPanelState_build__closure0, A.__OverviewPanelState_build__closure1, A.__OverviewPanelState_build__closure, A.__OverviewPanelState_build__closure2, A.__OverviewPanelState_build__closure4, A.__OverviewPanelState_build__closure5, A.__OverviewPanelState_build__closure3, A.__OverviewPanelState_build__closure6, A.__OverviewPanelState_build__closure8, A.__OverviewPanelState_build__closure9, A.__OverviewPanelState_build__closure7, A.__OverviewPanelState_build__closure10, A.__DashboardSettingsState_build_closure6, A._DashboardFieldState_build_closure, A._CustomTabBarView_build_closure, A.DashboardScreenBuilder_build_closure, A.DashboardVM_fromStore_closure1, A.InvoiceSidebar_build_closure, A.InvoiceSidebar_build_closure0, A.InvoiceSidebar_build_closure1, A.InvoiceSidebar_build_closure2, A.InvoiceSidebar_build_closure3, A.InvoiceSidebar_build_closure4, A.PaymentSidebar_build_closure, A.PaymentSidebar_build_closure0, A.PaymentSidebar_build_closure1, A.PaymentSidebar_build_closure2, A.QuoteSidebar_build_closure, A.QuoteSidebar_build_closure0, A.QuoteSidebar_build_closure1, A.QuoteSidebar_build_closure2, A.QuoteSidebar_build_closure3, A.QuoteSidebar_build_closure4, A.TaskSidebar_build_closure, A.TaskSidebar_build_closure0, A.TaskSidebar_build_closure1, A.TaskSidebar_build_closure2, A.TaskSidebar_build_closure3, A.TaskSidebar_build_closure4, A.ExpenseSidbar_build_closure, A.ExpenseSidbar_build_closure0, A.ExpenseSidbar_build_closure1, A.ExpenseSidbar_build_closure2, A.DesignListBuilder_build_closure, A.DesignListBuilder_build__closure, A.DesignScreen_build_closure8, A.DesignScreen_build_closure5, A.DesignScreenBuilder_build_closure, A.DesignEditScreen_build_closure, A.DesignViewScreen_build_closure, A.DocumentListItem_build_closure, A.DocumentListItem_build__closure0, A.DocumentListBuilder_build_closure, A.DocumentListBuilder_build__closure0, A.DocumentListVM_fromStore__handleRefresh, A.DocumentListVM_fromStore_closure, A.DocumentScreen_build_closure5, A.DocumentScreen_build_closure12, A.DocumentScreenBuilder_build_closure, A.DocumentEditScreen_build_closure, A.DocumentViewScreen_build_closure, A._ExpenseEditState_build_closure0, A.ExpenseEditDetailsState_build_closure0, A.ExpenseEditDetailsState_build_closure5, A.ExpenseEditDetailsState_build_closure18, A.ExpenseEditDetailsState_build_closure21, A.ExpenseEditNotesState_build_closure, A.ExpenseEditSettingsState_build_closure2, A.ExpenseEditScreen_build_closure, A.ExpenseEditVM_ExpenseEditVM$fromStore_closure2, A.ExpenseEditVM_ExpenseEditVM$fromStore_closure3, A.ExpenseListItem_build_closure, A.ExpenseListItem_build__closure0, A.ExpenseListBuilder_build_closure, A.ExpenseListBuilder_build__closure, A.ExpenseScreen_build_closure16, A.ExpenseScreen_build_closure15, A.ExpenseScreen_build_closure11, A.ExpenseScreen_build_closure12, A.ExpenseScreenBuilder_build_closure, A.ExpenseViewDocuments_build_closure, A.ExpenseViewScreen_build_closure, A.ExpenseCategoryEditScreen_build_closure, A.ExpenseCategoryListBuilder_build_closure, A.ExpenseCategoryListBuilder_build__closure, A.ExpenseCategoryScreen_build_closure8, A.ExpenseCategoryScreen_build_closure5, A.ExpenseCategoryScreenBuilder_build_closure, A.ExpenseCategoryViewScreen_build_closure, A.GroupEditScreen_build_closure, A.GroupListBuilder_build_closure, A.GroupListBuilder_build__closure, A.GroupSettingsScreen_build_closure4, A.GroupSettingsScreen_build_closure1, A.GroupScreenBuilder_build_closure, A._GroupViewState_build_closure0, A.GroupViewScreen_build_closure, A._InvoiceEditState_build_closure0, A.InvoiceEditContacts_build_closure, A.InvoiceEditContacts_build_closure1, A.InvoiceEditContactsScreen_build_closure, A.InvoiceEditDesktopState_build_closure9, A.InvoiceEditDesktopState_build_closure14, A.InvoiceEditDesktopState_build_closure16, A.InvoiceEditDesktopState_build_closure18, A.InvoiceEditDesktopState_build_closure27, A.InvoiceEditDesktopState_build__closure4, A.InvoiceEditDesktopState_build_closure28, A.InvoiceEditDetailsState_build_closure7, A.InvoiceEditDetailsState_build_closure12, A.InvoiceEditDetailsState_build_closure14, A.InvoiceEditDetailsState_build_closure16, A.InvoiceEditDetailsState_build_closure27, A.InvoiceEditDetailsScreen_build_closure, A.InvoiceEditDetailsVM_InvoiceEditDetailsVM$fromStore_closure1, A._InvoiceEditItemsDesktopState_build_closure2, A._InvoiceEditItemsDesktopState_build_closure3, A._InvoiceEditItemsDesktopState_build___closure12, A.InvoiceEditItemsScreen_build_closure, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure2, A.InvoiceEditItemsVM_InvoiceEditItemsVM$fromStore_closure3, A.InvoiceEditNotesScreen_build_closure, A.InvoiceEditPDFScreen_build_closure, A.InvoiceEditScreen_build_closure, A._InvoiceItemSelectorState_build__productList_closure, A._InvoiceItemSelectorState_build__taskList_closure, A._InvoiceItemSelectorState_build__expenseList_closure, A.InvoiceEmailScreen_build_closure, A.InvoiceListItem_build_closure, A.InvoiceListItem_build__closure0, A.InvoiceListBuilder_build_closure, A.InvoiceListBuilder_build__closure, A.InvoicePdfScreen_build_closure, A.InvoiceScreen_build_closure18, A.InvoiceScreen_build_closure17, A.InvoiceScreen_build_closure13, A.InvoiceScreen_build_closure14, A.InvoiceScreenBuilder_build_closure, A._InvoiceViewActivityState_build_closure0, A._InvoiceViewActivityState_build_closure, A.InvoiceViewDocuments_build_closure, A._InvoiceViewHistoryState_build_closure1, A._InvoiceViewHistoryState_build_closure2, A._InvoiceViewHistoryState_build_closure3, A.InvoiceOverview_build_surchargeRow, A.InvoiceOverview_build_closure3, A.InvoiceViewScreen_build_closure, A.InvoiceViewVM_InvoiceViewVM$fromStore_closure2, A._PaymentEditState_build_closure7, A.PaymentEditScreen_build_closure, A.PaymentListItem_build_closure, A.PaymentListItem_build__closure0, A.PaymentListBuilder_build_closure, A.PaymentListBuilder_build__closure, A.PaymentScreen_build_closure19, A.PaymentScreen_build_closure18, A.PaymentScreen_build_closure14, A.PaymentScreen_build_closure15, A.PaymentScreenBuilder_build_closure, A._PaymentRefundState_build_closure0, A.PaymentRefundScreen_build_closure, A.PaymentRefundVM_PaymentRefundVM$fromStore_closure0, A.PaymentViewScreen_build_closure, A.PaymentTermEditScreen_build_closure, A.PaymentTermListBuilder_build_closure, A.PaymentTermListBuilder_build__closure, A.PaymentTermScreen_build_closure8, A.PaymentTermScreen_build_closure5, A.PaymentTermScreenBuilder_build_closure, A.PaymentTermViewScreen_build_closure, A.ProductEditScreen_build_closure, A.ProductListItem_build_closure, A.ProductListItem_build__closure0, A.ProductListBuilder_build_closure, A.ProductListBuilder_build__closure, A.ProductScreen_build_closure9, A.ProductScreen_build_closure6, A.ProductScreenBuilder_build_closure, A.ProductViewDocuments_build_closure, A.ProductViewScreen_build_closure, A._ProjectEditState_build__closure3, A.ProjectEditScreen_build_closure, A.ProjectEditVM_ProjectEditVM$fromStore_closure2, A.ProjectListItem_build_closure, A.ProjectListItem_build__closure0, A.ProjectListBuilder_build_closure, A.ProjectListBuilder_build__closure, A.ProjectScreen_build_closure8, A.ProjectScreen_build_closure5, A.ProjectScreenBuilder_build_closure, A.ProjectViewDocuments_build_closure, A.ProjectViewScreen_build_closure, A._PurchaseOrderEditState_build_closure0, A.PurchaseOrderEditDetailsScreen_build_closure, A.PurchaseOrderEditDetailsVM_PurchaseOrderEditDetailsVM$fromStore_closure1, A.PurchaseOrderEditItemsScreen_build_closure, A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure1, A.PurchaseOrderEditItemsVM_PurchaseOrderEditItemsVM$fromStore_closure2, A.PurchaseOrderEditNotesScreen_build_closure, A.PurchaseOrderEditPDFScreen_build_closure, A.PurchaseOrderEditScreen_build_closure, A.PurchaseOrderEmailScreen_build_closure, A.PurchaseOrderListItem_build_closure, A.PurchaseOrderListItem_build__closure0, A.PurchaseOrderListBuilder_build_closure, A.PurchaseOrderListBuilder_build__closure, A.PurchaseOrderPdfScreen_build_closure, A.PurchaseOrderScreen_build_closure14, A.PurchaseOrderScreen_build_closure13, A.PurchaseOrderScreen_build_closure9, A.PurchaseOrderScreen_build_closure10, A.PurchaseOrderScreenBuilder_build_closure, A.PurchaseOrderViewScreen_build_closure, A._QuoteEditState_build_closure0, A.QuoteEditDetailsScreen_build_closure, A.QuoteEditDetailsVM_QuoteEditDetailsVM$fromStore_closure1, A.QuoteEditItemsScreen_build_closure, A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure1, A.QuoteEditItemsVM_QuoteEditItemsVM$fromStore_closure2, A.QuoteEditNotesScreen_build_closure, A.QuoteEditPDFScreen_build_closure, A.QuoteEditScreen_build_closure, A.QuoteEmailScreen_build_closure, A.QuoteListItem_build_closure, A.QuoteListItem_build__closure0, A.QuoteListBuilder_build_closure, A.QuoteListBuilder_build__closure, A.QuotePdfScreen_build_closure, A.QuoteScreen_build_closure16, A.QuoteScreen_build_closure15, A.QuoteScreen_build_closure11, A.QuoteScreen_build_closure12, A.QuoteScreenBuilder_build_closure, A.QuoteViewScreen_build_closure, A.RecurringExpenseEditScreen_build_closure, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure2, A.RecurringExpenseEditVM_RecurringExpenseEditVM$fromStore_closure3, A.RecurringExpenseListItem_build_closure, A.RecurringExpenseListItem_build__closure0, A.RecurringExpenseListBuilder_build_closure, A.RecurringExpenseListBuilder_build__closure, A.RecurringExpenseScreen_build_closure14, A.RecurringExpenseScreen_build_closure15, A.RecurringExpenseScreen_build_closure11, A.RecurringExpenseScreen_build_closure10, A.RecurringExpenseScreenBuilder_build_closure, A.RecurringExpenseViewScreen_build_closure, A._RecurringInvoiceEditState_build_closure0, A.RecurringInvoiceEditDetailsScreen_build_closure, A.RecurringInvoiceEditDetailsVM_RecurringInvoiceEditDetailsVM$fromStore_closure1, A.RecurringInvoiceEditItemsScreen_build_closure, A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure1, A.RecurringInvoiceEditItemsVM_RecurringInvoiceEditItemsVM$fromStore_closure2, A.RecurringInvoiceEditNotesScreen_build_closure, A.RecurringInvoiceEditPDFScreen_build_closure, A.RecurringInvoiceEditScreen_build_closure, A.RecurringInvoiceListItem_build_closure, A.RecurringInvoiceListItem_build__closure0, A.RecurringInvoiceListBuilder_build_closure, A.RecurringInvoiceListBuilder_build__closure, A.RecurringInvoicePdfScreen_build_closure, A.RecurringInvoiceScreen_build_closure14, A.RecurringInvoiceScreen_build_closure15, A.RecurringInvoiceScreen_build_closure11, A.RecurringInvoiceScreen_build_closure10, A.RecurringInvoiceScreenBuilder_build_closure, A.RecurringInvoiceViewScreen_build_closure, A.clientReport_closure1, A.contactReport_closure1, A.lineItemReport_closure13, A.creditReport_closure1, A.documentReport_closure2, A.expenseReport_closure1, A.lineItemReport_closure19, A.invoiceReport_closure0, A.invoiceReport_closure2, A.taxReport_closure0, A.paymentReport_closure1, A.paymentTaxReport_closure0, A.productReport_closure1, A.profitAndLossReport_closure0, A.lineItemReport_closure1, A.purchaseOrderReport_closure1, A.lineItemReport_closure7, A.quoteReport_closure1, A.recurringExpenseReport_closure1, A.recurringInvoiceReport_closure1, A.ReportCharts_build_closure, A.ReportCharts_build_closure1, A.ReportCharts_build_closure2, A.ReportCharts_build_closure4, A.ReportCharts_build_closure5, A.ReportCharts_build_closure7, A.ReportCharts_build_closure8, A.ReportsScreen_build_closure1, A.ReportsScreen_build_closure15, A.ReportsScreen_build_closure16, A.ReportsScreen_build_closure22, A._ReportDataTableState_initState_closure, A._ReportDataTableState_build_closure, A.TotalsDataTable_build_closure, A.ReportDataTableSource_getRow_closure, A.ReportResult_tableFilters__closure2, A.ReportResult_totalColumns_closure0, A.ReportResult_totalRows_closure, A.ReportResult_totalRows__closure0, A.ReportResult_totalRows_closure1, A.ReportsScreenBuilder_build_closure, A.ReportsScreenVM_fromStore_closure2, A.ReportsScreenVM_fromStore_closure3, A.ReportsScreenVM_fromStore_closure1, A.ReportsScreenVM_fromStore_closure, A.ReportsScreenVM_fromStore__closure3, A.calculateReportTotals_closure, A.taskItemReport_closure1, A.taskReport_closure1, A.transactionReport_closure4, A.vendorReport_closure1, A._ScheduleEditState_build__closure1, A.ScheduleEditScreen_build_closure, A.ScheduleListBuilder_build_closure, A.ScheduleListBuilder_build__closure, A.ScheduleScreen_build_closure8, A.ScheduleScreen_build_closure5, A.ScheduleScreenBuilder_build_closure, A.ScheduleViewScreen_build_closure, A._AccountOverview_build___closure0, A._AccountOverview_build___closure, A.AccountManagementScreen_build_closure, A.ClientPortalScreen_build_closure, A._CompanyDetailsState_build_closure16, A.CompanyDetailsScreen_build_closure, A.CompanyDetailsVM_fromStore_closure2, A.CreditCardsAndBanksScreen_build_closure, A.CustomFieldsScreen_build_closure, A.DataVisualizationsScreen_build_closure, A._DeviceSettingsState_build_closure9, A.DeviceSettingsScreen_build_closure, A.DeviceSettingsVM_fromStore_closure1, A.DeviceSettingsVM_fromStore_closure7, A.DeviceSettingsVM_fromStore_closure4, A.DeviceSettingsVM_fromStore_closure5, A.DeviceSettingsVM_fromStore_closure8, A.DeviceSettingsVM_fromStore_closure19, A.DeviceSettingsVM_fromStore_closure15, A.DeviceSettingsVM_fromStore_closure12, A.DeviceSettingsVM_fromStore_closure13, A.DeviceSettingsVM_fromStore_closure14, A.DeviceSettingsVM_fromStore_closure18, A.DeviceSettingsVM_fromStore_closure16, A.DeviceSettingsVM_fromStore_closure17, A.DeviceSettingsVM_fromStore_closure6, A.DeviceSettingsVM_fromStore_closure9, A.DeviceSettingsVM_fromStore_closure3, A.DeviceSettingsVM_fromStore_closure10, A.DeviceSettingsVM_fromStore_closure2, A.DeviceSettingsVM_fromStore_closure11, A.EmailSettingsScreen_build_closure, A.ExpenseSettingsScreen_build_closure, A._GeneratedNumbersState_build_closure2, A._GeneratedNumbersState_build_closure4, A._GeneratedNumbersState_build_closure7, A._GeneratedNumbersState_build_closure8, A._GeneratedNumbersState_build_closure9, A._GeneratedNumbersState_build_closure10, A._GeneratedNumbersState_build_closure11, A._GeneratedNumbersState_build_closure12, A._GeneratedNumbersState_build_closure13, A._GeneratedNumbersState_build_closure14, A._GeneratedNumbersState_build_closure15, A._GeneratedNumbersState_build_closure16, A._GeneratedNumbersState_build_closure17, A._GeneratedNumbersState_build_closure18, A.GeneratedNumbersScreen_build_closure, A._ImportExportState_build_closure10, A._ImportExportState_build_closure11, A.__FileMapperState_build_closure4, A._FieldMapper_build_closure, A.ImportExportScreen_build_closure, A.InvoiceDesignScreen_build_closure, A.InvoiceDesignVM_fromStore_closure0, A._LocalizationSettingsState_build_closure0, A._LocalizationSettingsState_build_closure8, A.LocalizationScreen_build_closure, A.PaymentsSettingsScreen_build_closure, A.ProductSettingsScreen_build_closure, A.SettingsSearch_build_closure, A.SettingsListBuilder_build_closure, A.SettingsScreenBuilder_build_closure, A._SettingsWizardState__onSavePressed_closure, A._SettingsWizardState_build_closure6, A.TaskSettingsScreen_build_closure, A.TaxSettingsScreen_build_closure, A._TemplatesAndRemindersState_build_closure6, A.TemplatesAndRemindersScreen_build_closure, A.TemplatesAndRemindersVM_fromStore_closure1, A._UserDetailsState_build_closure14, A.UserDetailsScreen_build_closure, A.UserDetailsVM_fromStore___closure2, A.UserDetailsVM_fromStore___closure1, A.UserDetailsVM_fromStore___closure0, A.UserDetailsVM_fromStore___closure6, A.UserDetailsVM_fromStore__closure6, A.UserDetailsVM_fromStore___closure7, A.UserDetailsVM_fromStore___closure3, A.UserDetailsVM_fromStore___closure, A.UserDetailsVM_fromStore__closure4, A.UserDetailsVM_fromStore___closure4, A.UserDetailsVM_fromStore____closure0, A.WorkflowSettingsScreen_build_closure, A.SubscriptionEditScreen_build_closure, A.SubscriptionListBuilder_build_closure, A.SubscriptionListBuilder_build__closure, A.SubscriptionScreen_build_closure8, A.SubscriptionScreen_build_closure5, A.SubscriptionScreenBuilder_build_closure, A.SubscriptionViewScreen_build_closure, A._UpdateDialogState_updateApp_closure, A._TaskEditState_build_closure0, A._TaskEditDesktopState_build__closure, A._TaskEditDesktopState_build__closure1, A.TaskEditDetailsScreen_build_closure, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure0, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure2, A.TaskEditDetailsVM_TaskEditDetailsVM$fromStore_closure1, A.TimeEditDetailsState_build_closure, A.TimeEditDetailsState_build_closure1, A.TaskEditTimesScreen_build_closure, A.TaskEditTimesVM_TaskEditTimesVM$fromStore_closure1, A.TaskEditScreen_build_closure, A.KanbanViewState__initBoard_closure0, A.KanbanViewState__initBoard__closure, A.KanbanViewState_build__closure5, A.KanbanViewState_build__closure, A.KanbanViewState_build__closure1, A.KanbanViewState_build___closure1, A._KanbanViewBuilderState_build_closure, A.TaskListItem_build_closure0, A.TaskListItem_build__closure0, A.TaskListBuilder_build_closure, A.TaskListBuilder_build__closure, A.TaskScreen_build_closure19, A.TaskScreen_build_closure18, A.TaskScreen_build_closure15, A.TaskScreen_build_closure14, A.TaskScreenBuilder_build_closure, A.TaskViewDocuments_build_closure, A.TaskViewScreen_build_closure, A.TaskStatusEditScreen_build_closure, A._TaskStatusListState_build_closure0, A.TaskStatusListBuilder_build_closure, A.TaskStatusListVM_fromStore_closure0, A.TaskStatusScreen_build_closure9, A.TaskStatusScreen_build_closure6, A.TaskStatusScreenBuilder_build_closure, A.TaskStatusViewScreen_build_closure, A.TaxRateEditScreen_build_closure, A.TaxRateListBuilder_build_closure, A.TaxRateListBuilder_build__closure, A.TaxRateSettingsScreen_build_closure4, A.TaxRateSettingsScreen_build_closure1, A.TaxRateScreenBuilder_build_closure, A.TaxRateViewScreen_build_closure, A.TokenEditScreen_build_closure, A.TokenEditVM_TokenEditVM$fromStore___closure, A.TokenListBuilder_build_closure, A.TokenListBuilder_build__closure, A.TokenScreen_build_closure8, A.TokenScreen_build_closure5, A.TokenScreenBuilder_build_closure, A.TokenViewScreen_build_closure, A._TransactionEditState_build__closure0, A._TransactionEditState_build__closure5, A.TransactionEditScreen_build_closure, A.TransactionEditVM_TransactionEditVM$fromStore_closure2, A.TransactionListItem_build_closure, A.TransactionListItem_build__closure0, A.TransactionListBuilder_build_closure, A.TransactionListBuilder_build__closure, A.TransactionScreen_build_closure15, A.TransactionScreen_build_closure14, A.TransactionScreen_build_closure11, A.TransactionScreenBuilder_build_closure, A._MatchDepositsState_updateInvoiceList_closure0, A._MatchDepositsState_updatePaymentList_closure0, A._MatchDepositsState_build_closure10, A._MatchDepositsState_build_closure11, A._MatchDepositsState_build_closure13, A._MatchDepositsState_build_closure12, A._MatchDepositsState_build_closure15, A._MatchDepositsState_build_closure14, A._MatchWithdrawalsState_updateCategoryList_closure0, A._MatchWithdrawalsState_updateVendorList_closure0, A._MatchWithdrawalsState_updateExpenseList_closure0, A._MatchWithdrawalsState_build_closure7, A._MatchWithdrawalsState_build_closure8, A._MatchWithdrawalsState_build_closure10, A._MatchWithdrawalsState_build_closure9, A._MatchWithdrawalsState_build_closure15, A._MatchWithdrawalsState_build_closure14, A._MatchWithdrawalsState_build_closure20, A._MatchWithdrawalsState_build_closure19, A.TransactionViewScreen_build_closure, A.TransactionViewVM_TransactionViewVM$fromStore_closure2, A.TransactionViewVM_TransactionViewVM$fromStore_closure3, A.TransactionViewVM_TransactionViewVM$fromStore_closure0, A._TransactionRuleEditState_build__closure6, A._TransactionRuleEditState_build__closure8, A.TransactionRuleEditScreen_build_closure, A.TransactionRuleListBuilder_build_closure, A.TransactionRuleListBuilder_build__closure, A.TransactionRuleScreen_build_closure8, A.TransactionRuleScreen_build_closure5, A.TransactionRuleScreenBuilder_build_closure, A.TransactionRuleViewScreen_build_closure, A._UserEditState_build_closure2, A.UserEditScreen_build_closure, A.UserEditVM_UserEditVM$fromStore___closure, A.UserListBuilder_build_closure, A.UserListBuilder_build__closure, A.UserScreen_build_closure8, A.UserScreen_build_closure5, A.UserScreenBuilder_build_closure, A.UserViewScreen_build_closure, A.VendorEditContactsScreen_build_closure, A.VendorEditContactsVM_VendorEditContactsVM$fromStore_closure2, A.VendorEditScreen_build_closure, A.VendorListItem_build_closure, A.VendorListItem_build__closure0, A.VendorListBuilder_build_closure, A.VendorListBuilder_build__closure, A.VendorScreen_build_closure8, A.VendorScreen_build_closure5, A.VendorScreenBuilder_build_closure, A._VendorViewActivityState_build_closure0, A._VendorViewActivityState_build_closure, A.VendorViewDocuments_build_closure, A._VendorViewFullwidthState_build_closure, A.VendorViewScreen_build_closure, A.WebhookEditScreen_build_closure, A.WebhookViewScreen_build_closure, A.WebhookListBuilder_build_closure, A.WebhookListBuilder_build__closure, A.WebhookScreen_build_closure8, A.WebhookScreen_build_closure5, A.WebhookScreenBuilder_build_closure, A.passwordCallback_closure1, A.passwordCallback_closure2, A._ExampleEditorState__buildImageToolbar_closure, A._darkModeStyles_closure, A._darkModeStyles_closure0, A._darkModeStyles_closure1, A.memo2_closure, A.RenderOverflowView_performFlexibleLayout_closure, A.RenderOverflowView_paint_defaultPaint, A.RenderOverflowView_hitTestChildren__closure, A.OverflowView$_all_closure, A.RenderPopover_paint_closure, A.RenderPopover_hitTestChildren_closure, A._CupertinoPopoverToolbarState__buildContent_closure, A._RenderIosPagedMenu__hitTestChild_closure, A._PinputState__buildPinput__closure, A._PinputState__buildFields_closure, A.__PinputState_State_RestorationMixin_dispose_closure, A.PdfPreviewCustomState__createPreview_closure, A._QrImageViewState_build_closure, A.combineReducers_closure, A.RoundedLoadingButtonState_build_closure, A.RouteObserverBreadcrumb__formatArgs_closure, A.Highlighter__collateLines_closure0, A.ReactiveModelImp__handleAsyncState_closure1, A.ImageUrlConversionReaction_react_closure0, A.LinkifyReaction__extractUpstreamWordAndLinkify_closure0, A.CaretDocumentOverlayState_doBuild_closure, A._KeyboardEditingToolbarState__buildToolbarOverlay_closure, A._KeyboardEditingToolbarState__buildToolbar_closure, A._KeyboardEditingToolbarState__buildToolbar__closure, A._SingleColumnDocumentLayoutState__buildDocComponents_closure, A._SingleColumnDocumentLayoutState__buildDocComponents_closure0, A.defaultStylesheet_closure, A.defaultStylesheet_closure0, A.defaultStylesheet_closure1, A.defaultStylesheet_closure2, A.defaultStylesheet_closure3, A.defaultStylesheet_closure4, A.defaultStylesheet_closure5, A.defaultStylesheet_closure6, A.defaultStylesheet_closure7, A.defaultStylesheet_closure8, A.defaultStylesheet_closure9, A.taskStyles_closure, A.TextComponentState_build_closure, A.GroupedOverlayPortalController__visibleControllers_closure, A.AndroidControlsDocumentLayerState__buildCaret_closure, A._IosFloatingToolbarOverlayState_build_closure, A._PopoverScaffoldState__buildPopover_closure, A.SuperAndroidTextFieldState__buildTextField_closure, A.SuperAndroidTextFieldState__buildSelectableText_closure0, A.SuperAndroidTextFieldState__buildSelectableText_closure, A.SuperAndroidTextFieldState__buildPopoverToolbar_closure, A.SuperDesktopTextFieldState__buildSelectableText_closure0, A.SuperDesktopTextFieldState__buildSelectableText_closure, A.IOSFloatingCursor_build_closure, A.SuperIOSTextFieldState__buildTextField_closure, A.SuperIOSTextFieldState__buildSelectableText_closure0, A.SuperIOSTextFieldState__buildSelectableText_closure, A.SuperIOSTextFieldState__buildPopoverToolbar_closure, A.SuperTextState_build_closure, A.SuperTextState_build_closure0]); _inheritMany(A.Error, [A.CanvasKitError, A.FontLoadError, A.LateError, A.TypeError, A.JsNoSuchMethodError, A.UnknownJsTypeError, A._CyclicInitializationError, A.RuntimeError, A._Error, A.JsonUnsupportedObjectError, A.AssertionError, A.ArgumentError, A.NoSuchMethodError, A.UnsupportedError, A.UnimplementedError, A.StateError, A.ConcurrentModificationError, A.BuiltValueNullFieldError, A.BuiltValueNestedFieldError, A.DeserializationError, A._FlutterError_Error_DiagnosticableTreeMixin, A.StoreProviderError, A.ConverterError, A.ValueStreamError]); _inherit(A.EngineFlutterDisplay, A.Display); _inheritMany(A.FontLoadError, [A.FontNotFoundError, A.FontDownloadError, A.FontInvalidDataError]); @@ -623435,9 +624786,9 @@ _inherit(A.DiagnosticableTree, A._DiagnosticableTree_Object_Diagnosticable); _inheritMany(A.DiagnosticableTree, [A.Widget, A.Element0, A.InlineSpan, A.SemanticsHintOverrides, A.SemanticsProperties]); _inheritMany(A.Widget, [A.StatefulWidget, A.RenderObjectWidget, A.StatelessWidget, A._NullWidget, A.ProxyWidget, A._NullWidget0, A.RootWidget, A._NullWidget3, A._NullWidget5]); - _inheritMany(A.StatefulWidget, [A.BoardItem, A.BoardList, A.BoardView, A.BaseChart, A.DropTarget, A.CupertinoActivityIndicator, A.CupertinoButton, A.CupertinoCheckbox, A.CupertinoDesktopTextSelectionToolbarButton, A.CupertinoTextMagnifier, A.CupertinoRadio, A._CupertinoBackGestureDetector, A.RawScrollbar, A.CupertinoSwitch, A._CupertinoTextSelectionToolbarContent, A.CupertinoTextSelectionToolbarButton, A.LicensePage, A._PackagesView, A._PackageLicensePage, A._MasterDetailFlow, A._MasterDetailScaffold, A.MaterialApp, A.AppBar, A.SliverAppBar, A.BottomAppBar, A.BottomSheet, A.RawMaterialButton, A.ButtonStyleButton, A.CalendarDatePicker, A._DatePickerModeToggleButton, A._MonthPicker, A._DayPicker, A._Day, A.YearPicker, A.Checkbox, A._SortArrow, A.DatePickerDialog, A.DrawerController, A._DropdownMenuItemButton, A._DropdownMenu, A._DropdownRoutePage, A.DropdownButton, A.FormField, A.ExpandIcon, A.ExpansionPanelList, A._SelectableIconButton, A.Ink, A._InkResponseStateWidget, A.InputDatePickerFormField, A._BorderContainer, A.AnimatedWidget, A._HelperError, A.InputDecorator, A.TextMagnifier, A.Material, A.ImplicitlyAnimatedWidget, A.MergeableMaterial, A._ZoomEnterTransition, A._ZoomExitTransition, A.PopupMenuEntry, A.PopupMenuButton, A.ProgressIndicator, A.Radio, A.RefreshIndicator, A.ReorderableListView, A.ScaffoldMessenger, A._FloatingActionButtonTransition, A.Scaffold, A._StandardBottomSheet, A.SelectableText, A._MaterialSwitch, A.DefaultTabController, A.TabBar, A.TabBarView, A.TextField, A._TextSelectionToolbarOverflowable, A._Dial, A._TimePickerInput, A._HourMinuteTextField, A.TimePickerDialog, A._TimePicker, A.Tooltip, A.Actions, A.FocusableActionDetector, A.AnimatedCrossFade, A.AnimatedSize, A.AnimatedSwitcher, A.WidgetsApp, A.StreamBuilderBase, A.FutureBuilder, A.RawAutocomplete, A.AutofillGroup, A.AutomaticKeepAlive, A.StatefulBuilder, A.DraggableScrollableSheet, A.DualTransitionBuilder, A.EditableText, A._ScribbleFocusable, A.Focus, A.FocusTraversalGroup, A.Form, A.RawGestureDetector, A.Hero, A.Image, A.InteractiveViewer, A.Localizations, A._MediaQueryFromView, A.Navigator, A.NavigatorPopHandler, A._OverlayEntryWidget, A.Overlay, A.OverlayPortal, A.GlowingOverscrollIndicator, A.StretchingOverscrollIndicator, A.PageView, A.PlatformViewLink, A.PopScope, A.SliverReorderableList, A._ReorderableItem, A.RestorationScope, A.RootRestorationScope, A.Router, A._ModalScope, A._SelectionKeepAlive, A.ScrollNotificationObserver, A.Scrollable, A._ScrollableSelectionHandler, A.SelectionContainer, A.SharedAppData, A.Shortcuts, A.ShortcutRegistrar, A._FloatingHeader, A._SelectionToolbarWrapper, A._SelectionHandleOverlay, A.TextSelectionGestureDetector, A.TickerMode, A.UndoHistory, A.ValueListenableBuilder, A.WillPopScope, A.BlockPicker, A.JsonViewer, A.JsonObjectViewer, A.JsonArrayViewer, A._StoreStreamListener, A.SlidableAutoCloseBarrierNotificationSender, A.SlidableAutoCloseBarrierBehaviorListener, A._SlidableNotificationSender, A.SlidableDismissal, A.SlidableGestureDetector, A.SlidableGroupBehaviorListener, A.SlidableNotificationSender, A.SlidableScrollingBehavior, A.ActionPane, A.Slidable, A.StyledToast, A._StyledToastWidget, A.CountryPickerDialog, A.IntlPhoneField, A.InvoiceNinjaApp, A._MergClientPicker, A.AppBottomBar, A.AppBuilder, A.ChangeLayoutBanner, A.DesktopSessionTimeout, A.HealthCheckDialog, A.MultiSelectList, A.DocumentGrid, A.EntityListTile, A.EntitiesListTile, A.EntityDropdown, A.EntityDropdownDialog, A.FormColorPicker, A.CustomField, A.DatePicker, A.DecoratedFormField, A.DurationPicker, A.GrowableFormField, A.PasswordFormField, A.TimePicker, A.HistoryListTile, A.InvoiceEmailView, A.TaxRateDropdown, A.LinkTextRelatedEntity, A.ListFilter, A.LiveText, A.MenuDrawer, A.DrawerTile, A.ContactUsDialog, A.DropDownMultiSelect, A.ReviewApp, A.ScrollableListView, A.ScrollableListViewBuilder, A.AccountSmsVerification, A.UserSmsVerification, A.SystemLogViewer, A.AppPaginatedDataTable, A.EntityList, A.UpgradeDialog, A.VariablesHelp, A.WebSessionTimeout, A.WebSocketRefresh, A.WindowManager, A.LoginView, A.BankAccountEdit, A.BankAccountView, A.ClientPdfView, A.ClientEdit, A.ClientEditBillingAddress, A.ClientEditContacts, A.ContactEditDetails, A.ClientEditDetails, A.ClientEditNotes, A.ClientEditSettings, A.ClientEditShippingAddress, A.ClientView, A.ClientViewActivity, A.ClientViewDetails, A.ClientViewFullwidth, A.ClientViewLedger, A.ClientViewSystemLogs, A.CompanyGatewayList, A.CompanyGatewayEdit, A.GatewayConfigField, A.LimitEditor, A.FeesEditor, A.CompanyGatewayView, A._CompanyGatewaySystemLog, A.CreditEdit, A.DashboardChart, A.DashboardDateRangePicker, A._DashboardPanel, A._OverviewPanel, A._DashboardSettings, A._DashboardField, A.DashboardScreen, A.DesignEdit, A.DesignSettings, A.PdfDesignPreview, A._DesignImportDialog, A.DesignView, A.DocumentEdit0, A.DocumentView, A.ExpenseEdit, A.ExpenseEditDetails, A.ExpenseEditNotes, A.ExpenseEditSettings, A.ExpenseView, A.ExpenseViewSchedule, A.ExpenseCategoryEdit, A.ExpenseCategoryView, A.GroupEdit, A.GroupView, A.InvoiceEdit, A._ContactListTile, A.InvoiceEditDesktop, A._PdfPreview0, A.InvoiceEditDetails, A.InvoiceEditItems, A.ItemEditDetails, A.InvoiceEditItemsDesktop, A.InvoiceEditNotes, A.InvoiceEditPDF, A.InvoiceItemSelector, A.InvoicePdfView, A.InvoiceView, A.InvoiceViewActivity, A.InvoiceViewHistory, A.InvoiceViewSchedule, A.PaymentEdit, A.PaymentableEditor, A.PaymentRefund, A.PaymentableEditor0, A.PaymentView, A.PaymentTermEdit, A.PaymentTermView, A.ProductEdit, A.ProductView, A.ProductOverview, A.ProjectEdit, A.ProjectView, A.ProjectOverview, A.PurchaseOrderEdit, A.QuoteEdit, A.RecurringInvoiceEdit, A.ReportDataTable, A.ScheduleEdit, A.ScheduleView, A.AccountManagement, A.ClientPortal, A.CompanyDetails, A.CreditCardsAndBanks, A.CustomFields, A.CustomFormField, A.DataVisualizations, A.DeviceSettings, A.EmailSettings, A.ExpenseSettings, A.GeneratedNumbers, A.EntityNumberSettings, A.ImportExport, A._FileImport, A._FileMapper, A.InvoiceDesign, A._PdfPreview, A.LocalizationSettings, A._AddCompanyDialog, A.PaymentSettings, A.ProductSettings, A.SettingsList, A.SettingsListTile, A.SettingsWizard, A.TaskSettings, A.TaxSettings, A._EditSubregionDialog, A.TemplatesAndReminders, A.ReminderSettings, A.UserDetails, A._EnableTwoFactor, A.WorkflowSettings, A.SubscriptionEdit, A.SubscriptionView, A.UpdateDialog, A.TaskEdit, A.TaskEditDesktop, A.TaskEditDetails, A.TaskEditTimes, A.TimeEditDetails, A.KanbanTaskCard, A.KanbanStatusCard, A.KanbanView, A.KanbanViewBuilder, A.TaskView, A.TaskOverview, A.TaskStatusEdit, A.TaskStatusList, A.TaskStatusView, A.TaxRateEdit, A.TaxRateView, A.TokenEdit, A.TokenView, A.TransactionEdit, A.TransactionView, A._MatchDeposits, A._MatchWithdrawals, A.TransactionRuleEdit, A._RuleCriteria, A.TransactionRuleView, A.UserEdit, A.VendorEdit, A.VendorEditAddress, A.VendorEditContacts, A.VendorContactEditDetails, A.VendorEditDetails, A.VendorEditNotes, A.VendorEditSettings, A.VendorView, A.VendorViewActivity, A.VendorViewDetails, A.VendorViewFullwidth, A.WebhookEdit, A.WebhookView, A.PasswordConfirmation, A.FieldConfirmation, A.RunTemplateDialog, A.ExampleEditor, A.EditorToolbar, A.ImageFormatToolbar, A.CupertinoPopoverToolbar, A.PinchZoom, A.Pinput, A._PinputAnimatedCursor, A.PdfPreviewCustom, A.PdfPreview, A.QrImageView, A.RoundedLoadingButton, A.IStatefulWidget, A.BoxComponent, A.ContentLayerStatefulWidget, A.EditorSelectionAndFocusPolicy, A.DocumentMouseInteractor, A.AndroidDocumentTouchInteractor, A.SuperEditorAndroidControlsOverlayManager, A.IosDocumentTouchInteractor, A.SuperEditorIosToolbarOverlayManager, A.SuperEditorIosMagnifierOverlayManager, A.EditorFloatingCursor, A.SuperEditorHardwareKeyHandler, A.ImeFocusPolicy, A.DocumentSelectionOpenAndCloseImePolicy, A.SoftwareKeyboardOpener, A.KeyboardEditingToolbar, A.KeyboardHeightBuilder, A.SuperEditorImeInteractor, A.DocumentScrollable, A.SingleColumnDocumentLayout, A._PresenterComponentBuilder, A.SuperEditor, A.TaskComponent, A.TextComponent, A.DocumentScaffold, A.RawScrollbarWithCustomPhysics, A.NonReparentingFocus, A.FocusWithCustomParent, A.MultiListenableBuilder, A.IosFloatingToolbarOverlay, A.AndroidEditingOverlayControls, A.AndroidTextFieldTouchInteractor, A.SuperAndroidTextField, A.SuperDesktopTextField, A.SuperTextFieldGestureInteractor, A.SuperTextFieldKeyboardInteractor, A.SuperTextFieldImeInteractor, A.SuperTextFieldScrollview, A.TextScrollView, A.IOSEditingControls, A.IOSTextFieldTouchInteractor, A.SuperIOSTextField, A.SuperTextField, A.TextLayoutCaret, A.SuperText, A.TextUnderlineLayer, A.VsScrollbar]); + _inheritMany(A.StatefulWidget, [A.BoardItem, A.BoardList, A.BoardView, A.BaseChart, A.DropTarget, A.CupertinoActivityIndicator, A.CupertinoButton, A.CupertinoCheckbox, A.CupertinoDesktopTextSelectionToolbarButton, A.CupertinoTextMagnifier, A.CupertinoRadio, A._CupertinoBackGestureDetector, A.RawScrollbar, A.CupertinoSwitch, A._CupertinoTextSelectionToolbarContent, A.CupertinoTextSelectionToolbarButton, A.LicensePage, A._PackagesView, A._PackageLicensePage, A._MasterDetailFlow, A._MasterDetailScaffold, A.MaterialApp, A.AppBar, A.SliverAppBar, A.BottomAppBar, A.BottomSheet, A.RawMaterialButton, A.ButtonStyleButton, A.CalendarDatePicker, A._DatePickerModeToggleButton, A._MonthPicker, A._DayPicker, A._Day, A.YearPicker, A.Checkbox, A._SortArrow, A.DatePickerDialog, A.DrawerController, A._DropdownMenuItemButton, A._DropdownMenu, A._DropdownRoutePage, A.DropdownButton, A.FormField, A.ExpandIcon, A.ExpansionPanelList, A._SelectableIconButton, A.Ink, A._InkResponseStateWidget, A.InputDatePickerFormField, A._BorderContainer, A.AnimatedWidget, A._HelperError, A.InputDecorator, A.TextMagnifier, A.Material, A.ImplicitlyAnimatedWidget, A.MergeableMaterial, A._ZoomEnterTransition, A._ZoomExitTransition, A.PopupMenuEntry, A.PopupMenuButton, A.ProgressIndicator, A.Radio, A.RefreshIndicator, A.ReorderableListView, A.ScaffoldMessenger, A._FloatingActionButtonTransition, A.Scaffold, A._StandardBottomSheet, A.SelectableText, A._MaterialSwitch, A.DefaultTabController, A.TabBar, A.TabBarView, A.TextField, A._TextSelectionToolbarOverflowable, A._Dial, A._TimePickerInput, A._HourMinuteTextField, A.TimePickerDialog, A._TimePicker, A.Tooltip, A.Actions, A.FocusableActionDetector, A.AnimatedCrossFade, A.AnimatedSize, A.AnimatedSwitcher, A.WidgetsApp, A.StreamBuilderBase, A.FutureBuilder, A.RawAutocomplete, A.AutofillGroup, A.AutomaticKeepAlive, A.StatefulBuilder, A.DraggableScrollableSheet, A.DualTransitionBuilder, A.EditableText, A._ScribbleFocusable, A.Focus, A.FocusTraversalGroup, A.Form, A.RawGestureDetector, A.Hero, A.Image, A.InteractiveViewer, A.Localizations, A._MediaQueryFromView, A.Navigator, A.NavigatorPopHandler, A._OverlayEntryWidget, A.Overlay, A.OverlayPortal, A.GlowingOverscrollIndicator, A.StretchingOverscrollIndicator, A.PageView, A.PlatformViewLink, A.PopScope, A.SliverReorderableList, A._ReorderableItem, A.RestorationScope, A.RootRestorationScope, A.Router, A._ModalScope, A._SelectionKeepAlive, A.ScrollNotificationObserver, A.Scrollable, A._ScrollableSelectionHandler, A.SelectionContainer, A.SharedAppData, A.Shortcuts, A.ShortcutRegistrar, A._FloatingHeader, A._SelectionToolbarWrapper, A._SelectionHandleOverlay, A.TextSelectionGestureDetector, A.TickerMode, A.UndoHistory, A.ValueListenableBuilder, A.WillPopScope, A.BlockPicker, A.JsonViewer, A.JsonObjectViewer, A.JsonArrayViewer, A._StoreStreamListener, A.SlidableAutoCloseBarrierNotificationSender, A.SlidableAutoCloseBarrierBehaviorListener, A._SlidableNotificationSender, A.SlidableDismissal, A.SlidableGestureDetector, A.SlidableGroupBehaviorListener, A.SlidableNotificationSender, A.SlidableScrollingBehavior, A.ActionPane, A.Slidable, A.StyledToast, A._StyledToastWidget, A.CountryPickerDialog, A.IntlPhoneField, A.InvoiceNinjaApp, A._MergClientPicker, A.AppBottomBar, A.AppBuilder, A.ChangeLayoutBanner, A.DesktopSessionTimeout, A.HealthCheckDialog, A.MultiSelectList, A.DocumentGrid, A.EntityListTile, A.EntitiesListTile, A.EntityDropdown, A.EntityDropdownDialog, A.FormColorPicker, A.CustomField, A.DatePicker, A.DecoratedFormField, A.DurationPicker, A.GrowableFormField, A.PasswordFormField, A.TimePicker, A.HistoryListTile, A.InvoiceEmailView, A.TaxRateDropdown, A.LinkTextRelatedEntity, A.ListFilter, A.LiveText, A.MenuDrawer, A.DrawerTile, A.ContactUsDialog, A.DropDownMultiSelect, A.ReviewApp, A.ScrollableListView, A.ScrollableListViewBuilder, A.AccountSmsVerification, A.UserSmsVerification, A.SystemLogViewer, A.AppPaginatedDataTable, A.EntityList, A.UpgradeDialog, A.VariablesHelp, A.WebSessionTimeout, A.WebSocketRefresh, A.WindowManager, A.LoginView, A.BankAccountEdit, A.BankAccountView, A.ClientPdfView, A.ClientEdit, A.ClientEditBillingAddress, A.ClientEditContacts, A.ContactEditDetails, A.ClientEditDetails, A.ClientEditNotes, A.ClientEditSettings, A.ClientEditShippingAddress, A.ClientView, A.ClientViewActivity, A.ClientViewDetails, A.ClientViewFullwidth, A.ClientViewLedger, A.ClientViewSystemLogs, A.CompanyGatewayList, A.CompanyGatewayEdit, A.GatewayConfigField, A.LimitEditor, A.FeesEditor, A.CompanyGatewayView, A._CompanyGatewaySystemLog, A.CreditEdit, A.DashboardChart, A.DashboardDateRangePicker, A._DashboardPanel, A._OverviewPanel, A._DashboardSettings, A._DashboardField, A.DashboardScreen, A.DesignEdit, A.DesignSettings, A.PdfDesignPreview, A._DesignImportDialog, A.DesignView, A.DocumentEdit0, A.DocumentView, A.ExpenseEdit, A.ExpenseEditDetails, A.ExpenseEditNotes, A.ExpenseEditSettings, A.ExpenseView, A.ExpenseViewSchedule, A.ExpenseCategoryEdit, A.ExpenseCategoryView, A.GroupEdit, A.GroupView, A.InvoiceEdit, A._ContactListTile, A.InvoiceEditDesktop, A._PdfPreview0, A.InvoiceEditDetails, A.InvoiceEditItems, A.ItemEditDetails, A.InvoiceEditItemsDesktop, A.InvoiceEditNotes, A.InvoiceEditPDF, A.InvoiceItemSelector, A.InvoicePdfView, A.InvoiceView, A.InvoiceViewActivity, A.InvoiceViewHistory, A.InvoiceViewSchedule, A.PaymentEdit, A.PaymentableEditor, A.PaymentRefund, A.PaymentableEditor0, A.PaymentView, A.PaymentTermEdit, A.PaymentTermView, A.ProductEdit, A.ProductView, A.ProductOverview, A.ProjectEdit, A.ProjectView, A.ProjectOverview, A.PurchaseOrderEdit, A.QuoteEdit, A.RecurringInvoiceEdit, A.ReportDataTable, A.ScheduleEdit, A.ScheduleView, A.AccountManagement, A.ClientPortal, A.CompanyDetails, A.CreditCardsAndBanks, A.CustomFields, A.CustomFormField, A.DataVisualizations, A.DeviceSettings, A.EmailSettings, A.ExpenseSettings, A.GeneratedNumbers, A.EntityNumberSettings, A.ImportExport, A._FileImport, A._FileMapper, A.InvoiceDesign, A._PdfPreview, A.LocalizationSettings, A._AddCompanyDialog, A.PaymentSettings, A.ProductSettings, A.SettingsList, A.SettingsListTile, A.SettingsWizard, A.TaskSettings, A.TaxSettings, A._EditSubregionDialog, A.TemplatesAndReminders, A.ReminderSettings, A.UserDetails, A._EnableTwoFactor, A.WorkflowSettings, A.SubscriptionEdit, A.SubscriptionView, A.UpdateDialog, A.TaskEdit, A.TaskEditDesktop, A.TaskEditDetails, A.TaskEditTimes, A.TimeEditDetails, A.KanbanTaskCard, A.KanbanStatusCard, A.KanbanView, A.KanbanViewBuilder, A.TaskView, A.TaskOverview, A.TaskStatusEdit, A.TaskStatusList, A.TaskStatusView, A.TaxRateEdit, A.TaxRateView, A.TokenEdit, A.TokenView, A.TransactionEdit, A.TransactionView, A._MatchDeposits, A._MatchWithdrawals, A.TransactionRuleEdit, A._RuleCriteria, A.TransactionRuleView, A.UserEdit, A.VendorEdit, A.VendorEditAddress, A.VendorEditContacts, A.VendorContactEditDetails, A.VendorEditDetails, A.VendorEditNotes, A.VendorEditSettings, A.VendorView, A.VendorViewActivity, A.VendorViewDetails, A.VendorViewFullwidth, A.WebhookEdit, A.WebhookView, A.PasswordConfirmation, A.FieldConfirmation, A.RunTemplateDialog, A.ExampleEditor, A.SuperEditorDemoTextItemSelector, A.EditorToolbar, A.ImageFormatToolbar, A.CupertinoPopoverToolbar, A.PinchZoom, A.Pinput, A._PinputAnimatedCursor, A.PdfPreviewCustom, A.PdfPreview, A.QrImageView, A.RoundedLoadingButton, A.IStatefulWidget, A.BoxComponent, A.ContentLayerStatefulWidget, A.EditorSelectionAndFocusPolicy, A.DocumentMouseInteractor, A.AndroidDocumentTouchInteractor, A.SuperEditorAndroidControlsOverlayManager, A.IosDocumentTouchInteractor, A.SuperEditorIosToolbarOverlayManager, A.SuperEditorIosMagnifierOverlayManager, A.EditorFloatingCursor, A.SuperEditorHardwareKeyHandler, A.ImeFocusPolicy, A.DocumentSelectionOpenAndCloseImePolicy, A.SoftwareKeyboardOpener, A.KeyboardEditingToolbar, A.KeyboardHeightBuilder, A.SuperEditorImeInteractor, A.DocumentScrollable, A.SingleColumnDocumentLayout, A._PresenterComponentBuilder, A.SuperEditor, A.TaskComponent, A.TextComponent, A.RoundedRectanglePopoverAppearance, A.DocumentScaffold, A.RawScrollbarWithCustomPhysics, A.NonReparentingFocus, A.FocusWithCustomParent, A.MultiListenableBuilder, A.IosFloatingToolbarOverlay, A.PopoverScaffold, A.ItemSelectionList, A.AndroidEditingOverlayControls, A.AndroidTextFieldTouchInteractor, A.SuperAndroidTextField, A.SuperDesktopTextField, A.SuperTextFieldGestureInteractor, A.SuperTextFieldKeyboardInteractor, A.SuperTextFieldImeInteractor, A.SuperTextFieldScrollview, A.TextScrollView, A.IOSEditingControls, A.IOSTextFieldTouchInteractor, A.SuperIOSTextField, A.SuperTextField, A.TextLayoutCaret, A.SuperText, A.TextUnderlineLayer, A.VsScrollbar]); _inherit(A.State, A._State_Object_Diagnosticable); - _inheritMany(A.State, [A._BoardItemState_State_AutomaticKeepAliveClientMixin, A._BoardListState_State_AutomaticKeepAliveClientMixin, A._BoardViewState_State_AutomaticKeepAliveClientMixin, A._BaseChartState_State_TickerProviderStateMixin, A._DropTargetState, A.__CupertinoActivityIndicatorState_State_SingleTickerProviderStateMixin, A.__CupertinoButtonState_State_SingleTickerProviderStateMixin, A.__CupertinoCheckboxState_State_TickerProviderStateMixin, A._CupertinoDesktopTextSelectionToolbarButtonState, A.__CupertinoTextMagnifierState_State_SingleTickerProviderStateMixin, A.__CupertinoRadioState_State_TickerProviderStateMixin, A._CupertinoBackGestureDetectorState, A._RawScrollbarState_State_TickerProviderStateMixin, A.__CupertinoSwitchState_State_TickerProviderStateMixin, A.__CupertinoTextSelectionToolbarContentState_State_TickerProviderStateMixin, A._CupertinoTextSelectionToolbarButtonState, A._LicensePageState, A._PackagesViewState, A._PackageLicensePageState, A._MasterDetailFlowState, A._MasterDetailScaffoldState, A._MaterialAppState, A._AppBarState, A.__SliverAppBarState_State_TickerProviderStateMixin, A._BottomAppBarState, A._BottomSheetState, A.__RawMaterialButtonState_State_MaterialStateMixin, A.__ButtonStyleState_State_TickerProviderStateMixin, A._CalendarDatePickerState, A.__DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin, A._MonthPickerState, A._DayPickerState, A._DayState, A._YearPickerState, A.__CheckboxState_State_TickerProviderStateMixin, A.__SortArrowState_State_TickerProviderStateMixin, A.__DatePickerDialogState_State_RestorationMixin, A._DrawerControllerState_State_SingleTickerProviderStateMixin, A._DropdownMenuItemButtonState, A._DropdownMenuState, A._DropdownRoutePageState, A.__DropdownButtonState_State_WidgetsBindingObserver, A._FormFieldState_State_RestorationMixin, A.__ExpandIconState_State_SingleTickerProviderStateMixin, A._ExpansionPanelListState, A._SelectableIconButtonState, A._InkState, A.__InkResponseState_State_AutomaticKeepAliveClientMixin, A._InputDatePickerFormFieldState, A.__BorderContainerState_State_TickerProviderStateMixin, A.__HelperErrorState_State_SingleTickerProviderStateMixin, A.__InputDecoratorState_State_TickerProviderStateMixin, A._TextMagnifierState, A.__MaterialState_State_TickerProviderStateMixin, A._ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin, A.__MergeableMaterialState_State_TickerProviderStateMixin, A.__ZoomEnterTransitionState_State__ZoomTransitionBase, A.__ZoomExitTransitionState_State__ZoomTransitionBase, A._PopupMenuDividerState, A.PopupMenuItemState, A.PopupMenuButtonState, A.__LinearProgressIndicatorState_State_SingleTickerProviderStateMixin, A.__CircularProgressIndicatorState_State_SingleTickerProviderStateMixin, A.__RadioState_State_TickerProviderStateMixin, A._RefreshIndicatorState_State_TickerProviderStateMixin, A._ReorderableListViewState, A._ScaffoldMessengerState_State_TickerProviderStateMixin, A.__FloatingActionButtonTransitionState_State_TickerProviderStateMixin, A._ScaffoldState_State_TickerProviderStateMixin, A._StandardBottomSheetState, A._SelectableTextState, A.__MaterialSwitchState_State_TickerProviderStateMixin, A.__DefaultTabControllerState_State_SingleTickerProviderStateMixin, A._TabBarState, A._TabBarViewState, A.__TextFieldState_State_RestorationMixin, A.__TextSelectionToolbarOverflowableState_State_TickerProviderStateMixin, A.__DialState_State_SingleTickerProviderStateMixin, A.__TimePickerInputState_State_RestorationMixin, A.__HourMinuteTextFieldState_State_RestorationMixin, A.__TimePickerDialogState_State_RestorationMixin, A.__TimePickerState_State_RestorationMixin, A._TooltipState_State_SingleTickerProviderStateMixin, A._ActionsState, A._FocusableActionDetectorState, A.__AnimatedCrossFadeState_State_TickerProviderStateMixin, A.__AnimatedSizeState_State_SingleTickerProviderStateMixin, A.__AnimatedSwitcherState_State_TickerProviderStateMixin, A.__WidgetsAppState_State_WidgetsBindingObserver, A._StreamBuilderBaseState, A._FutureBuilderState, A._RawAutocompleteState, A._AutofillGroupState_State_AutofillScopeMixin, A._AutomaticKeepAliveState, A._StatefulBuilderState, A._DraggableScrollableSheetState, A._DualTransitionBuilderState, A._EditableTextState_State_AutomaticKeepAliveClientMixin, A._ScribbleFocusableState, A._FocusState, A._FocusTraversalGroupState, A.FormState, A.RawGestureDetectorState, A._HeroState, A.__ImageState_State_WidgetsBindingObserver, A.__InteractiveViewerState_State_TickerProviderStateMixin, A._LocalizationsState, A.__MediaQueryFromViewState_State_WidgetsBindingObserver, A._NavigatorState_State_TickerProviderStateMixin, A._NavigatorPopHandlerState, A._OverlayEntryWidgetState, A._OverlayState_State_TickerProviderStateMixin, A._OverlayPortalState, A.__GlowingOverscrollIndicatorState_State_TickerProviderStateMixin, A.__StretchingOverscrollIndicatorState_State_TickerProviderStateMixin, A._PageViewState, A._PlatformViewLinkState, A._PopScopeState, A._SliverReorderableListState_State_TickerProviderStateMixin, A._ReorderableItemState, A.__RestorationScopeState_State_RestorationMixin, A._RootRestorationScopeState, A.__RouterState_State_RestorationMixin, A._ModalScopeState, A.__SelectionKeepAliveState_State_AutomaticKeepAliveClientMixin, A.ScrollNotificationObserverState, A._ScrollableState_State_TickerProviderStateMixin, A._ScrollableSelectionHandlerState, A.__SelectionContainerState_State_Selectable, A._SharedAppDataState, A._ShortcutsState, A._ShortcutRegistrarState, A._FloatingHeaderState, A.__SelectionToolbarWrapperState_State_SingleTickerProviderStateMixin, A.__SelectionHandleOverlayState_State_SingleTickerProviderStateMixin, A._TextSelectionGestureDetectorState, A._TickerModeState, A._AnimatedState, A._UndoHistoryState_State_UndoManagerClient, A._ValueListenableBuilderState, A._WillPopScopeState, A._BlockPickerState, A._JsonViewerState, A.JsonObjectViewerState, A._JsonArrayViewerState, A._StoreStreamListenerState, A._SlidableAutoCloseBarrierNotificationSenderState, A._SlidableAutoCloseBarrierBehaviorListenerState, A._SlidableNotificationSenderState0, A.__SlidableDismissalState_State_SingleTickerProviderStateMixin, A._SlidableGestureDetectorState, A._SlidableGroupBehaviorListenerState, A._SlidableNotificationSenderState, A._SlidableScrollingBehaviorState, A._ActionPaneState, A.__SlidableState_State_TickerProviderStateMixin, A._StyledToastState, A._StyledToastWidgetState_State_TickerProviderStateMixin, A._CountryPickerDialogState, A._IntlPhoneFieldState, A.InvoiceNinjaAppState, A.__MergClientPickerState, A._AppBottomBarState, A.AppBuilderState, A._ChangeLayoutBannerState, A._DesktopSessionTimeoutState, A._HealthCheckDialogState, A.MultiSelectListState, A._DocumentGridState, A._EntityListTileState, A._EntitiesListTileState, A._EntityDropdownState, A._EntityDropdownDialogState, A._FormColorPickerState, A._CustomFieldState, A._DatePickerState, A._DecoratedFormFieldState, A._DurationPickerState, A._GrowableFormFieldState, A._PasswordFormFieldState, A._TimePickerState, A._HistoryListTileState, A.__InvoiceEmailViewState_State_SingleTickerProviderStateMixin, A._TaxRateDropdownState, A._LinkTextRelatedEntityState, A._ListFilterState, A._LiveTextState, A._MenuDrawerState, A._DrawerTileState, A._ContactUsDialogState, A._DropDownMultiSelectState, A._ReviewAppState, A._ScrollableListViewState, A._ScrollableListViewBuilderState, A._AccountSmsVerificationState, A._UserSmsVerificationState, A._SystemLogViewerState, A.AppPaginatedDataTableState, A._EntityListState, A._UpgradeDialogState, A.__VariablesHelpState_State_SingleTickerProviderStateMixin, A._WebSessionTimeoutState, A._WebSocketRefreshState, A.__WindowManagerState_State_WindowListener, A._LoginState, A._BankAccountEditState, A._BankAccountViewState, A._ClientPdfViewState, A.__ClientEditState_State_SingleTickerProviderStateMixin, A.ClientEditBillingAddressState, A._ClientEditContactsState, A.ContactEditDetailsState, A.ClientEditDetailsState, A.ClientEditNotesState, A.ClientEditSettingsState, A.ClientEditShippingAddressState, A.__ClientViewState_State_SingleTickerProviderStateMixin, A._ClientViewActivityState, A._ClientViewDetailsState, A.__ClientViewFullwidthState_State_TickerProviderStateMixin, A._ClientViewLedgerState, A._ClientViewSystemLogsState, A._CompanyGatewayListState, A.__CompanyGatewayEditState_State_SingleTickerProviderStateMixin, A._GatewayConfigFieldState, A._LimitEditorState, A._FeesEditorState, A.__CompanyGatewayViewState_State_SingleTickerProviderStateMixin, A.__CompanyGatewaySystemLogState, A.__CreditEditState_State_SingleTickerProviderStateMixin, A._DashboardChartState, A._DashboardDateRangePickerState, A.__DashboardPanelState, A.__OverviewPanelState, A.__DashboardSettingsState, A._DashboardFieldState, A.__DashboardScreenState_State_TickerProviderStateMixin, A.__DesignEditState_State_SingleTickerProviderStateMixin, A._DesignSettingsState, A._PdfDesignPreviewState, A.__DesignImportDialogState, A._DesignViewState, A._DocumentEditState, A._DocumentViewState, A.__ExpenseEditState_State_SingleTickerProviderStateMixin, A.ExpenseEditDetailsState, A.ExpenseEditNotesState, A.ExpenseEditSettingsState, A.__ExpenseViewState_State_SingleTickerProviderStateMixin, A._ExpenseViewScheduleState, A._ExpenseCategoryEditState, A._ExpenseCategoryViewState, A._GroupEditState, A.__GroupViewState_State_SingleTickerProviderStateMixin, A.__InvoiceEditState_State_SingleTickerProviderStateMixin, A._ContactListTileState, A._InvoiceEditDesktopState_State_TickerProviderStateMixin, A.__PdfPreviewState, A.InvoiceEditDetailsState, A._InvoiceEditItemsState, A.ItemEditDetailsState, A._InvoiceEditItemsDesktopState, A.InvoiceEditNotesState, A.InvoiceEditPDFState, A.__InvoiceItemSelectorState_State_SingleTickerProviderStateMixin, A._InvoicePdfViewState, A.__InvoiceViewState_State_SingleTickerProviderStateMixin, A._InvoiceViewActivityState, A._InvoiceViewHistoryState, A._InvoiceViewScheduleState, A._PaymentEditState, A._PaymentableEditorState, A._PaymentRefundState, A._PaymentableEditorState0, A._PaymentViewState, A._PaymentTermEditState, A._PaymentTermViewState, A._ProductEditState, A.__ProductViewState_State_SingleTickerProviderStateMixin, A._ProductOverviewState, A._ProjectEditState, A.__ProjectViewState_State_SingleTickerProviderStateMixin, A._ProjectOverviewState, A.__PurchaseOrderEditState_State_SingleTickerProviderStateMixin, A.__QuoteEditState_State_SingleTickerProviderStateMixin, A.__RecurringInvoiceEditState_State_SingleTickerProviderStateMixin, A._ReportDataTableState, A._ScheduleEditState, A._ScheduleViewState, A.__AccountManagementState_State_SingleTickerProviderStateMixin, A.__ClientPortalState_State_SingleTickerProviderStateMixin, A.__CompanyDetailsState_State_SingleTickerProviderStateMixin, A.__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin, A.__CustomFieldsState_State_SingleTickerProviderStateMixin, A._CustomFormFieldState, A._DataVisualizationsState, A.__DeviceSettingsState_State_SingleTickerProviderStateMixin, A._EmailSettingsState, A._ExpenseSettingsState, A.__GeneratedNumbersState_State_SingleTickerProviderStateMixin, A._EntityNumberSettingsState, A._ImportExportState, A._FileImportState, A.__FileMapperState, A.__InvoiceDesignState_State_SingleTickerProviderStateMixin, A._PdfPreviewState, A.__LocalizationSettingsState_State_SingleTickerProviderStateMixin, A._AddCompanyDialogState, A._PaymentSettingsState, A._ProductSettingsState, A._SettingsListState, A._SettingsListTileState, A._SettingsWizardState, A._TaskSettingsState, A._TaxSettingsState, A.__EditSubregionDialogState, A.__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin, A._ReminderSettingsState, A.__UserDetailsState_State_SingleTickerProviderStateMixin, A._EnableTwoFactorState, A.__WorkflowSettingsState_State_SingleTickerProviderStateMixin, A.__SubscriptionEditState_State_SingleTickerProviderStateMixin, A._SubscriptionViewState, A._UpdateDialogState, A.__TaskEditState_State_SingleTickerProviderStateMixin, A._TaskEditDesktopState, A._TaskEditDetailsState, A._TaskEditTimesState, A.TimeEditDetailsState, A._KanbanTaskCardState, A._KanbanStatusCardState, A.KanbanViewState, A._KanbanViewBuilderState, A.__TaskViewState_State_SingleTickerProviderStateMixin, A._TaskOverviewState, A._TaskStatusEditState, A._TaskStatusListState, A._TaskStatusViewState, A._TaxRateEditState, A._TaxRateViewState, A._TokenEditState, A._TokenViewState, A._TransactionEditState, A._TransactionViewState, A._MatchDepositsState, A._MatchWithdrawalsState, A._TransactionRuleEditState, A.__RuleCriteriaState, A._TransactionRuleViewState, A.__UserEditState_State_SingleTickerProviderStateMixin, A.__VendorEditState_State_SingleTickerProviderStateMixin, A.VendorEditAddressState, A._VendorEditContactsState, A.VendorContactEditDetailsState, A.VendorEditDetailsState, A.VendorEditNotesState, A.VendorEditSettingsState, A.__VendorViewState_State_SingleTickerProviderStateMixin, A._VendorViewActivityState, A._VendorViewDetailsState, A.__VendorViewFullwidthState_State_TickerProviderStateMixin, A._WebhookEditState, A._WebhookViewState, A._PasswordConfirmationState, A._FieldConfirmationState, A._RunTemplateDialogState, A._ExampleEditorState, A._EditorToolbarState, A._ImageFormatToolbarState, A._CupertinoPopoverToolbarState, A.__PinchZoomState_State_SingleTickerProviderStateMixin, A.__PinputState_State_RestorationMixin, A.__PinputAnimatedCursorState_State_SingleTickerProviderStateMixin, A._PdfPreviewCustomState_State_PdfPreviewRaster, A.PdfPreviewState, A._QrImageViewState, A._RoundedLoadingButtonState_State_TickerProviderStateMixin, A.ExtendedState, A.__BoxComponentState_State_DocumentComponent, A.ContentLayerState, A._EditorSelectionAndFocusPolicyState, A.__DocumentMouseInteractorState_State_SingleTickerProviderStateMixin, A.__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver, A.SuperEditorAndroidControlsOverlayManagerState, A.__IosDocumentTouchInteractorState_State_WidgetsBindingObserver, A.SuperEditorIosToolbarOverlayManagerState, A.SuperEditorIosMagnifierOverlayManagerState, A._EditorFloatingCursorState, A._SuperEditorHardwareKeyHandlerState, A._ImeFocusPolicyState, A._DocumentSelectionOpenAndCloseImePolicyState, A._SoftwareKeyboardOpenerState, A.__KeyboardEditingToolbarState_State_WidgetsBindingObserver, A.__KeyboardHeightBuilderState_State_WidgetsBindingObserver, A.SuperEditorImeInteractorState, A.__DocumentScrollableState_State_SingleTickerProviderStateMixin, A._SingleColumnDocumentLayoutState, A._PresenterComponentBuilderState, A.SuperEditorState, A.__TaskComponentState_State_ProxyDocumentComponent, A._TextComponentState_State_DocumentComponent, A._DocumentScaffoldState, A._RawScrollbarWithCustomPhysicsState_State_TickerProviderStateMixin, A._NonReparentingFocusState, A._FocusWithCustomParentState, A._MultiListenableBuilderState, A.__IosFloatingToolbarOverlayState_State_SingleTickerProviderStateMixin, A.__AndroidEditingOverlayControlsState_State_WidgetsBindingObserver, A._AndroidTextFieldTouchInteractorState_State_TickerProviderStateMixin, A._SuperAndroidTextFieldState_State_TickerProviderStateMixin, A.SuperDesktopTextFieldState, A._SuperTextFieldGestureInteractorState, A._SuperTextFieldKeyboardInteractorState, A._SuperTextFieldImeInteractorState, A._SuperTextFieldScrollviewState_State_SingleTickerProviderStateMixin, A.__TextScrollViewState_State_SingleTickerProviderStateMixin, A.__IOSEditingControlsState_State_WidgetsBindingObserver, A._IOSTextFieldTouchInteractorState_State_TickerProviderStateMixin, A._SuperIOSTextFieldState_State_TickerProviderStateMixin, A.SuperTextFieldState, A._TextLayoutCaretState_State_TickerProviderStateMixin, A._ProseTextState_State_ProseTextBlock, A._TextUnderlineLayerState_State_TickerProviderStateMixin, A._ScrollbarState]); + _inheritMany(A.State, [A._BoardItemState_State_AutomaticKeepAliveClientMixin, A._BoardListState_State_AutomaticKeepAliveClientMixin, A._BoardViewState_State_AutomaticKeepAliveClientMixin, A._BaseChartState_State_TickerProviderStateMixin, A._DropTargetState, A.__CupertinoActivityIndicatorState_State_SingleTickerProviderStateMixin, A.__CupertinoButtonState_State_SingleTickerProviderStateMixin, A.__CupertinoCheckboxState_State_TickerProviderStateMixin, A._CupertinoDesktopTextSelectionToolbarButtonState, A.__CupertinoTextMagnifierState_State_SingleTickerProviderStateMixin, A.__CupertinoRadioState_State_TickerProviderStateMixin, A._CupertinoBackGestureDetectorState, A._RawScrollbarState_State_TickerProviderStateMixin, A.__CupertinoSwitchState_State_TickerProviderStateMixin, A.__CupertinoTextSelectionToolbarContentState_State_TickerProviderStateMixin, A._CupertinoTextSelectionToolbarButtonState, A._LicensePageState, A._PackagesViewState, A._PackageLicensePageState, A._MasterDetailFlowState, A._MasterDetailScaffoldState, A._MaterialAppState, A._AppBarState, A.__SliverAppBarState_State_TickerProviderStateMixin, A._BottomAppBarState, A._BottomSheetState, A.__RawMaterialButtonState_State_MaterialStateMixin, A.__ButtonStyleState_State_TickerProviderStateMixin, A._CalendarDatePickerState, A.__DatePickerModeToggleButtonState_State_SingleTickerProviderStateMixin, A._MonthPickerState, A._DayPickerState, A._DayState, A._YearPickerState, A.__CheckboxState_State_TickerProviderStateMixin, A.__SortArrowState_State_TickerProviderStateMixin, A.__DatePickerDialogState_State_RestorationMixin, A._DrawerControllerState_State_SingleTickerProviderStateMixin, A._DropdownMenuItemButtonState, A._DropdownMenuState, A._DropdownRoutePageState, A.__DropdownButtonState_State_WidgetsBindingObserver, A._FormFieldState_State_RestorationMixin, A.__ExpandIconState_State_SingleTickerProviderStateMixin, A._ExpansionPanelListState, A._SelectableIconButtonState, A._InkState, A.__InkResponseState_State_AutomaticKeepAliveClientMixin, A._InputDatePickerFormFieldState, A.__BorderContainerState_State_TickerProviderStateMixin, A.__HelperErrorState_State_SingleTickerProviderStateMixin, A.__InputDecoratorState_State_TickerProviderStateMixin, A._TextMagnifierState, A.__MaterialState_State_TickerProviderStateMixin, A._ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin, A.__MergeableMaterialState_State_TickerProviderStateMixin, A.__ZoomEnterTransitionState_State__ZoomTransitionBase, A.__ZoomExitTransitionState_State__ZoomTransitionBase, A._PopupMenuDividerState, A.PopupMenuItemState, A.PopupMenuButtonState, A.__LinearProgressIndicatorState_State_SingleTickerProviderStateMixin, A.__CircularProgressIndicatorState_State_SingleTickerProviderStateMixin, A.__RadioState_State_TickerProviderStateMixin, A._RefreshIndicatorState_State_TickerProviderStateMixin, A._ReorderableListViewState, A._ScaffoldMessengerState_State_TickerProviderStateMixin, A.__FloatingActionButtonTransitionState_State_TickerProviderStateMixin, A._ScaffoldState_State_TickerProviderStateMixin, A._StandardBottomSheetState, A._SelectableTextState, A.__MaterialSwitchState_State_TickerProviderStateMixin, A.__DefaultTabControllerState_State_SingleTickerProviderStateMixin, A._TabBarState, A._TabBarViewState, A.__TextFieldState_State_RestorationMixin, A.__TextSelectionToolbarOverflowableState_State_TickerProviderStateMixin, A.__DialState_State_SingleTickerProviderStateMixin, A.__TimePickerInputState_State_RestorationMixin, A.__HourMinuteTextFieldState_State_RestorationMixin, A.__TimePickerDialogState_State_RestorationMixin, A.__TimePickerState_State_RestorationMixin, A._TooltipState_State_SingleTickerProviderStateMixin, A._ActionsState, A._FocusableActionDetectorState, A.__AnimatedCrossFadeState_State_TickerProviderStateMixin, A.__AnimatedSizeState_State_SingleTickerProviderStateMixin, A.__AnimatedSwitcherState_State_TickerProviderStateMixin, A.__WidgetsAppState_State_WidgetsBindingObserver, A._StreamBuilderBaseState, A._FutureBuilderState, A._RawAutocompleteState, A._AutofillGroupState_State_AutofillScopeMixin, A._AutomaticKeepAliveState, A._StatefulBuilderState, A._DraggableScrollableSheetState, A._DualTransitionBuilderState, A._EditableTextState_State_AutomaticKeepAliveClientMixin, A._ScribbleFocusableState, A._FocusState, A._FocusTraversalGroupState, A.FormState, A.RawGestureDetectorState, A._HeroState, A.__ImageState_State_WidgetsBindingObserver, A.__InteractiveViewerState_State_TickerProviderStateMixin, A._LocalizationsState, A.__MediaQueryFromViewState_State_WidgetsBindingObserver, A._NavigatorState_State_TickerProviderStateMixin, A._NavigatorPopHandlerState, A._OverlayEntryWidgetState, A._OverlayState_State_TickerProviderStateMixin, A._OverlayPortalState, A.__GlowingOverscrollIndicatorState_State_TickerProviderStateMixin, A.__StretchingOverscrollIndicatorState_State_TickerProviderStateMixin, A._PageViewState, A._PlatformViewLinkState, A._PopScopeState, A._SliverReorderableListState_State_TickerProviderStateMixin, A._ReorderableItemState, A.__RestorationScopeState_State_RestorationMixin, A._RootRestorationScopeState, A.__RouterState_State_RestorationMixin, A._ModalScopeState, A.__SelectionKeepAliveState_State_AutomaticKeepAliveClientMixin, A.ScrollNotificationObserverState, A._ScrollableState_State_TickerProviderStateMixin, A._ScrollableSelectionHandlerState, A.__SelectionContainerState_State_Selectable, A._SharedAppDataState, A._ShortcutsState, A._ShortcutRegistrarState, A._FloatingHeaderState, A.__SelectionToolbarWrapperState_State_SingleTickerProviderStateMixin, A.__SelectionHandleOverlayState_State_SingleTickerProviderStateMixin, A._TextSelectionGestureDetectorState, A._TickerModeState, A._AnimatedState, A._UndoHistoryState_State_UndoManagerClient, A._ValueListenableBuilderState, A._WillPopScopeState, A._BlockPickerState, A._JsonViewerState, A.JsonObjectViewerState, A._JsonArrayViewerState, A._StoreStreamListenerState, A._SlidableAutoCloseBarrierNotificationSenderState, A._SlidableAutoCloseBarrierBehaviorListenerState, A._SlidableNotificationSenderState0, A.__SlidableDismissalState_State_SingleTickerProviderStateMixin, A._SlidableGestureDetectorState, A._SlidableGroupBehaviorListenerState, A._SlidableNotificationSenderState, A._SlidableScrollingBehaviorState, A._ActionPaneState, A.__SlidableState_State_TickerProviderStateMixin, A._StyledToastState, A._StyledToastWidgetState_State_TickerProviderStateMixin, A._CountryPickerDialogState, A._IntlPhoneFieldState, A.InvoiceNinjaAppState, A.__MergClientPickerState, A._AppBottomBarState, A.AppBuilderState, A._ChangeLayoutBannerState, A._DesktopSessionTimeoutState, A._HealthCheckDialogState, A.MultiSelectListState, A._DocumentGridState, A._EntityListTileState, A._EntitiesListTileState, A._EntityDropdownState, A._EntityDropdownDialogState, A._FormColorPickerState, A._CustomFieldState, A._DatePickerState, A._DecoratedFormFieldState, A._DurationPickerState, A._GrowableFormFieldState, A._PasswordFormFieldState, A._TimePickerState, A._HistoryListTileState, A.__InvoiceEmailViewState_State_SingleTickerProviderStateMixin, A._TaxRateDropdownState, A._LinkTextRelatedEntityState, A._ListFilterState, A._LiveTextState, A._MenuDrawerState, A._DrawerTileState, A._ContactUsDialogState, A._DropDownMultiSelectState, A._ReviewAppState, A._ScrollableListViewState, A._ScrollableListViewBuilderState, A._AccountSmsVerificationState, A._UserSmsVerificationState, A._SystemLogViewerState, A.AppPaginatedDataTableState, A._EntityListState, A._UpgradeDialogState, A.__VariablesHelpState_State_SingleTickerProviderStateMixin, A._WebSessionTimeoutState, A._WebSocketRefreshState, A.__WindowManagerState_State_WindowListener, A._LoginState, A._BankAccountEditState, A._BankAccountViewState, A._ClientPdfViewState, A.__ClientEditState_State_SingleTickerProviderStateMixin, A.ClientEditBillingAddressState, A._ClientEditContactsState, A.ContactEditDetailsState, A.ClientEditDetailsState, A.ClientEditNotesState, A.ClientEditSettingsState, A.ClientEditShippingAddressState, A.__ClientViewState_State_SingleTickerProviderStateMixin, A._ClientViewActivityState, A._ClientViewDetailsState, A.__ClientViewFullwidthState_State_TickerProviderStateMixin, A._ClientViewLedgerState, A._ClientViewSystemLogsState, A._CompanyGatewayListState, A.__CompanyGatewayEditState_State_SingleTickerProviderStateMixin, A._GatewayConfigFieldState, A._LimitEditorState, A._FeesEditorState, A.__CompanyGatewayViewState_State_SingleTickerProviderStateMixin, A.__CompanyGatewaySystemLogState, A.__CreditEditState_State_SingleTickerProviderStateMixin, A._DashboardChartState, A._DashboardDateRangePickerState, A.__DashboardPanelState, A.__OverviewPanelState, A.__DashboardSettingsState, A._DashboardFieldState, A.__DashboardScreenState_State_TickerProviderStateMixin, A.__DesignEditState_State_SingleTickerProviderStateMixin, A._DesignSettingsState, A._PdfDesignPreviewState, A.__DesignImportDialogState, A._DesignViewState, A._DocumentEditState, A._DocumentViewState, A.__ExpenseEditState_State_SingleTickerProviderStateMixin, A.ExpenseEditDetailsState, A.ExpenseEditNotesState, A.ExpenseEditSettingsState, A.__ExpenseViewState_State_SingleTickerProviderStateMixin, A._ExpenseViewScheduleState, A._ExpenseCategoryEditState, A._ExpenseCategoryViewState, A._GroupEditState, A.__GroupViewState_State_SingleTickerProviderStateMixin, A.__InvoiceEditState_State_SingleTickerProviderStateMixin, A._ContactListTileState, A._InvoiceEditDesktopState_State_TickerProviderStateMixin, A.__PdfPreviewState, A.InvoiceEditDetailsState, A._InvoiceEditItemsState, A.ItemEditDetailsState, A._InvoiceEditItemsDesktopState, A.InvoiceEditNotesState, A.InvoiceEditPDFState, A.__InvoiceItemSelectorState_State_SingleTickerProviderStateMixin, A._InvoicePdfViewState, A.__InvoiceViewState_State_SingleTickerProviderStateMixin, A._InvoiceViewActivityState, A._InvoiceViewHistoryState, A._InvoiceViewScheduleState, A._PaymentEditState, A._PaymentableEditorState, A._PaymentRefundState, A._PaymentableEditorState0, A._PaymentViewState, A._PaymentTermEditState, A._PaymentTermViewState, A._ProductEditState, A.__ProductViewState_State_SingleTickerProviderStateMixin, A._ProductOverviewState, A._ProjectEditState, A.__ProjectViewState_State_SingleTickerProviderStateMixin, A._ProjectOverviewState, A.__PurchaseOrderEditState_State_SingleTickerProviderStateMixin, A.__QuoteEditState_State_SingleTickerProviderStateMixin, A.__RecurringInvoiceEditState_State_SingleTickerProviderStateMixin, A._ReportDataTableState, A._ScheduleEditState, A._ScheduleViewState, A.__AccountManagementState_State_SingleTickerProviderStateMixin, A.__ClientPortalState_State_SingleTickerProviderStateMixin, A.__CompanyDetailsState_State_SingleTickerProviderStateMixin, A.__CreditCardsAndBanksState_State_SingleTickerProviderStateMixin, A.__CustomFieldsState_State_SingleTickerProviderStateMixin, A._CustomFormFieldState, A._DataVisualizationsState, A.__DeviceSettingsState_State_SingleTickerProviderStateMixin, A._EmailSettingsState, A._ExpenseSettingsState, A.__GeneratedNumbersState_State_SingleTickerProviderStateMixin, A._EntityNumberSettingsState, A._ImportExportState, A._FileImportState, A.__FileMapperState, A.__InvoiceDesignState_State_SingleTickerProviderStateMixin, A._PdfPreviewState, A.__LocalizationSettingsState_State_SingleTickerProviderStateMixin, A._AddCompanyDialogState, A._PaymentSettingsState, A._ProductSettingsState, A._SettingsListState, A._SettingsListTileState, A._SettingsWizardState, A._TaskSettingsState, A._TaxSettingsState, A.__EditSubregionDialogState, A.__TemplatesAndRemindersState_State_SingleTickerProviderStateMixin, A._ReminderSettingsState, A.__UserDetailsState_State_SingleTickerProviderStateMixin, A._EnableTwoFactorState, A.__WorkflowSettingsState_State_SingleTickerProviderStateMixin, A.__SubscriptionEditState_State_SingleTickerProviderStateMixin, A._SubscriptionViewState, A._UpdateDialogState, A.__TaskEditState_State_SingleTickerProviderStateMixin, A._TaskEditDesktopState, A._TaskEditDetailsState, A._TaskEditTimesState, A.TimeEditDetailsState, A._KanbanTaskCardState, A._KanbanStatusCardState, A.KanbanViewState, A._KanbanViewBuilderState, A.__TaskViewState_State_SingleTickerProviderStateMixin, A._TaskOverviewState, A._TaskStatusEditState, A._TaskStatusListState, A._TaskStatusViewState, A._TaxRateEditState, A._TaxRateViewState, A._TokenEditState, A._TokenViewState, A._TransactionEditState, A._TransactionViewState, A._MatchDepositsState, A._MatchWithdrawalsState, A._TransactionRuleEditState, A.__RuleCriteriaState, A._TransactionRuleViewState, A.__UserEditState_State_SingleTickerProviderStateMixin, A.__VendorEditState_State_SingleTickerProviderStateMixin, A.VendorEditAddressState, A._VendorEditContactsState, A.VendorContactEditDetailsState, A.VendorEditDetailsState, A.VendorEditNotesState, A.VendorEditSettingsState, A.__VendorViewState_State_SingleTickerProviderStateMixin, A._VendorViewActivityState, A._VendorViewDetailsState, A.__VendorViewFullwidthState_State_TickerProviderStateMixin, A._WebhookEditState, A._WebhookViewState, A._PasswordConfirmationState, A._FieldConfirmationState, A._RunTemplateDialogState, A._ExampleEditorState, A._SuperEditorDemoTextItemSelectorState, A._EditorToolbarState, A._ImageFormatToolbarState, A._CupertinoPopoverToolbarState, A.__PinchZoomState_State_SingleTickerProviderStateMixin, A.__PinputState_State_RestorationMixin, A.__PinputAnimatedCursorState_State_SingleTickerProviderStateMixin, A._PdfPreviewCustomState_State_PdfPreviewRaster, A.PdfPreviewState, A._QrImageViewState, A._RoundedLoadingButtonState_State_TickerProviderStateMixin, A.ExtendedState, A.__BoxComponentState_State_DocumentComponent, A.ContentLayerState, A._EditorSelectionAndFocusPolicyState, A.__DocumentMouseInteractorState_State_SingleTickerProviderStateMixin, A.__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver, A.SuperEditorAndroidControlsOverlayManagerState, A.__IosDocumentTouchInteractorState_State_WidgetsBindingObserver, A.SuperEditorIosToolbarOverlayManagerState, A.SuperEditorIosMagnifierOverlayManagerState, A._EditorFloatingCursorState, A._SuperEditorHardwareKeyHandlerState, A._ImeFocusPolicyState, A._DocumentSelectionOpenAndCloseImePolicyState, A._SoftwareKeyboardOpenerState, A.__KeyboardEditingToolbarState_State_WidgetsBindingObserver, A.__KeyboardHeightBuilderState_State_WidgetsBindingObserver, A.SuperEditorImeInteractorState, A.__DocumentScrollableState_State_SingleTickerProviderStateMixin, A._SingleColumnDocumentLayoutState, A._PresenterComponentBuilderState, A.SuperEditorState, A.__TaskComponentState_State_ProxyDocumentComponent, A._TextComponentState_State_DocumentComponent, A.__RoundedRectanglePopoverAppearanceState_State_SingleTickerProviderStateMixin, A._DocumentScaffoldState, A._RawScrollbarWithCustomPhysicsState_State_TickerProviderStateMixin, A._NonReparentingFocusState, A._FocusWithCustomParentState, A._MultiListenableBuilderState, A.__IosFloatingToolbarOverlayState_State_SingleTickerProviderStateMixin, A._PopoverScaffoldState, A._ItemSelectionListState_State_SingleTickerProviderStateMixin, A.__AndroidEditingOverlayControlsState_State_WidgetsBindingObserver, A._AndroidTextFieldTouchInteractorState_State_TickerProviderStateMixin, A._SuperAndroidTextFieldState_State_TickerProviderStateMixin, A.SuperDesktopTextFieldState, A._SuperTextFieldGestureInteractorState, A._SuperTextFieldKeyboardInteractorState, A._SuperTextFieldImeInteractorState, A._SuperTextFieldScrollviewState_State_SingleTickerProviderStateMixin, A.__TextScrollViewState_State_SingleTickerProviderStateMixin, A.__IOSEditingControlsState_State_WidgetsBindingObserver, A._IOSTextFieldTouchInteractorState_State_TickerProviderStateMixin, A._SuperIOSTextFieldState_State_TickerProviderStateMixin, A.SuperTextFieldState, A._TextLayoutCaretState_State_TickerProviderStateMixin, A._ProseTextState_State_ProseTextBlock, A._TextUnderlineLayerState_State_TickerProviderStateMixin, A._ScrollbarState]); _inherit(A.BoardItemState, A._BoardItemState_State_AutomaticKeepAliveClientMixin); _inherit(A.BoardListState, A._BoardListState_State_AutomaticKeepAliveClientMixin); _inherit(A.BoardViewState, A._BoardViewState_State_AutomaticKeepAliveClientMixin); @@ -623555,7 +624906,7 @@ _inheritMany(A.TextSelectionControls, [A.CupertinoDesktopTextSelectionControls, A.CupertinoTextSelectionControls, A.DesktopTextSelectionControls, A.MaterialTextSelectionControls]); _inherit(A.__CupertinoDesktopTextSelectionHandleControls_CupertinoDesktopTextSelectionControls_TextSelectionHandleControls, A.CupertinoDesktopTextSelectionControls); _inherit(A._CupertinoDesktopTextSelectionHandleControls, A.__CupertinoDesktopTextSelectionHandleControls_CupertinoDesktopTextSelectionControls_TextSelectionHandleControls); - _inheritMany(A.StatelessWidget, [A.CupertinoDesktopTextSelectionToolbar, A.CupertinoMagnifier, A.CupertinoPageTransition, A.CupertinoTextSelectionToolbar, A.CupertinoTheme, A._AboutProgram, A._PackageListTile, A._PackageLicensePageTitle, A._MasterPage, A._DetailView, A._ActionButton, A._ActionIcon, A.BackButtonIcon, A.DrawerButtonIcon, A.EndDrawerButtonIcon, A.AdaptiveTextSelectionToolbar, A._DragHandle, A._BottomSheetGestureDetector, A.Card, A.CheckboxListTile, A.DataTable, A.InkResponse, A._DatePickerHeader, A.DesktopTextSelectionToolbar, A.DesktopTextSelectionToolbarButton, A.Dialog, A.AlertDialog, A.SimpleDialogOption, A.SimpleDialog, A.Divider, A.VerticalDivider, A.Drawer, A._DropdownMenuItemContainer, A.FloatingActionButton, A.IconButton, A.ListTile, A.Magnifier, A._ShapeBorderPaint, A._FadeUpwardsPageTransition, A._ZoomPageTransition, A._PopupMenu, A.RadioListTile, A._BodyBuilder, A.Scrollbar, A.Switch, A.SwitchListTile, A.Tab, A.TextSelectionToolbar, A._TextSelectionToolbarContainer, A._TextSelectionToolbarOverflowButton, A.TextSelectionToolbarTextButton, A.Theme, A._TimePickerHeader, A._HourMinuteControl, A._HourControl, A._StringFragment, A._MinuteControl, A._DayPeriodControl, A._AmPmButton, A._HourTextField, A._MinuteTextField, A.ToggleButtons, A._TooltipOverlay, A._NullWidget1, A.IndexedStack, A.PositionedDirectional, A.KeyedSubtree, A.Builder, A.Container, A._NullWidget2, A.DefaultTextEditingShortcuts, A.DisplayFeatureSubScreen, A.ExcludeFocus, A.GestureDetector, A.Icon, A._CaptureAll, A._InteractiveViewerBuilt, A.RawMagnifier, A._MagnifierStyle, A.ModalBarrier, A._ModalBarrierGestureDetector, A.NavigationToolbar, A.PageStorage, A.Placeholder, A.HtmlElementView, A.PreferredSize, A.ReorderableDragStartListener, A._DragItemProxy, A.SafeArea, A.ScrollView, A.CallbackShortcuts, A.SingleChildScrollView, A.SliverFillViewport, A.SliverPersistentHeader, A.Spacer, A._NullWidget4, A.Text, A.Title, A.View, A.Visibility, A.StoreConnector, A.StoreBuilder, A.DrawerMotion, A.CustomSlidableAction, A.SlidableAction, A.SlidableAutoCloseBehaviorInteractor, A.SlidableAutoCloseInteractor, A.SlidableAutoCloseBehaviorListener, A.SlidableAutoCloseNotificationSender, A.SlidableAutoCloseBarrierInteractor, A.FollowerFadeOutBeyondBoundary, A.FieldGrid, A.ActionMenuButton, A.ViewActionMenuButton, A.AppBorder, A.CustomFieldSelector, A.AppHeader, A.AppWebView, A._WebWebView, A.AutobillDropdownMenuItem, A.BlankScreen, A.AppTextButton, A.BottomButtons, A.AppButton, A.ConfirmEmail, A.ConfirmEmailBuilder, A.CopyToClipboard, A.DashedRect, A.MessageDialog, A.ErrorDialog, A._HealthListTile, A.LoadingDialog, A.DismissibleEntity, A.DocumentTile, A.DocumentPreview, A.EditScaffold, A.EntityActionListTile, A.EntityStatusChip, A.EntityAutocompleteListTile, A.EntityHeader, A.EntityStateLabel, A.EntityTopFilter, A.EntityTopFilterHeader, A.FormCard, A.AppDropdownButton, A.AppForm, A.AppTabForm, A.AppTabBar, A.AppToggleButtons, A.BoolDropdownButton, A.ClientPicker, A.CustomSurcharges, A.DesignPicker, A.DiscountField, A.DynamicSelector, A.LearnMoreUrl, A.NotificationSettings, A._NotificationSelector, A.ProjectPicker, A.SaveCancelButtons, A.UserPicker, A.VendorPicker, A.TokenMeta, A.HelpText, A.HistoryDrawer, A.HistoryDrawerBuilder, A.IconMessage, A.IconText, A.InvoiceItemListTile, A.TaxRateField, A.ListScaffold, A.ActivityListTile, A.AppListTile, A.ListDivider, A.ListFilterMessage, A.FilterListTile, A.SelectedIndicator, A.LoadingIndicator, A.MainScreen, A.EntityScreens, A.SettingsScreens, A.SidebarFooter, A.SidebarFooterCollapsed, A.MenuDrawerBuilder, A._SelectRow, A.AppPinput, A.PortalLinks, A.TableTooltip, A.CachedImage, A.ResponsivePadding, A.SearchText, A._VariableGrid, A.ViewScaffold, A.InitScreen, A.LockScreen, A.RuledText, A.LoginScreen, A.BankAccountListItem, A.BankAccountListBuilder, A.BankAccountScreen, A.BankAccountScreenBuilder, A.BankAccountEditScreen, A.BankAccountViewScreen, A.ClientListItem, A.ClientListBuilder, A.ClientPdfScreen, A.ClientScreen, A.ClientScreenBuilder, A.ContactListTile0, A.ClientEditContactsScreen, A.ClientEditDesktop, A.ClientEditFooter, A.ClientEditScreen, A.ClientViewDocuments, A.ClientOverview, A.ClientViewPaymentMethods, A.ClientViewScreen, A.CompanyGatewayListItem, A.CompanyGatewayListBuilder, A.CompanyGatewayScreen, A.CompanyGatewayScreenBuilder, A.GatewayConfigSettings, A.CompanyGatewayEditScreen, A._CompanyGatewayOverview, A.CompanyGatewayViewScreen, A.CreditEmailScreen, A.CreditListItem, A.CreditListBuilder, A.CreditPdfScreen, A.CreditScreen, A.CreditScreenBuilder, A.CreditEditDetailsScreen, A.CreditEditItemsScreen, A.CreditEditNotesScreen, A.CreditEditPDFScreen, A.CreditEditScreen, A.CreditViewScreen, A.DashboardActivity, A.DashboardPanels, A._CustomTabBarView, A.DashboardScreenBuilder, A.SidebarScaffold, A.InvoiceSidebar, A.PaymentSidebar, A.QuoteSidebar, A.TaskSidebar, A.ExpenseSidbar, A._DashboardSidebar, A.DashboardSystemLogs, A.DesignListItem, A.DesignListBuilder, A.DesignScreen, A.DesignScreenBuilder, A.DesignSection, A.HtmlDesignPreview, A.DesignEditScreen, A.DesignViewScreen, A.DocumentListItem, A.DocumentListBuilder, A.DocumentScreen, A.DocumentScreenBuilder, A.DocumentEditScreen, A.DocumentViewScreen, A.ExpenseEditDesktop, A.ExpenseEditScreen, A.ExpenseListItem, A.ExpenseListBuilder, A.ExpenseScreen, A.ExpenseScreenBuilder, A.ExpenseViewDocuments, A.ExpenseOverview, A.ExpenseViewScreen, A.ExpenseCategoryEditScreen, A.ExpenseCategoryListItem, A.ExpenseCategoryListBuilder, A.ExpenseCategoryScreen, A.ExpenseCategoryScreenBuilder, A.ExpenseCategoryViewScreen, A.GroupEditScreen, A.GroupListItem, A.GroupListBuilder, A.GroupSettingsScreen, A.GroupScreenBuilder, A.SettingsViewer, A.GroupViewScreen, A.InvoiceEditContacts, A.InvoiceEditContactsScreen, A.InvoiceEditDetailsScreen, A.InvoiceEditFooter, A.TableHeader, A.InvoiceEditItemsScreen, A.InvoiceEditNotesScreen, A.InvoiceEditPDFScreen, A.InvoiceEditScreen, A.InvoiceTaxDetails, A.InvoiceEmailScreen, A.InvoiceListItem, A.InvoiceListBuilder, A.InvoicePdfScreen, A.InvoiceScreen, A.InvoiceScreenBuilder, A.InvoiceViewContacts, A._InvitationListTile, A.InvoiceViewDocuments, A.InvoiceOverview, A.InvoiceViewScreen, A.PaymentEditFooter, A.PaymentEditScreen, A.PaymentListItem, A.PaymentListBuilder, A.PaymentScreen, A.PaymentScreenBuilder, A.PaymentRefundScreen, A.PaymentViewScreen, A.PaymentTermEditScreen, A.PaymentTermListItem, A.PaymentTermListBuilder, A.PaymentTermScreen, A.PaymentTermScreenBuilder, A.PaymentTermViewScreen, A.ProductEditScreen, A.ProductListItem, A.ProductListBuilder, A.ProductScreen, A.ProductScreenBuilder, A.ProductViewDocuments, A.ProductViewScreen, A.ProjectEditScreen, A.ProjectListItem, A.ProjectListBuilder, A.ProjectScreen, A.ProjectScreenBuilder, A.ProjectViewDocuments, A.ProjectViewScreen, A.PurchaseOrderEditDetailsScreen, A.PurchaseOrderEditItemsScreen, A.PurchaseOrderEditNotesScreen, A.PurchaseOrderEditPDFScreen, A.PurchaseOrderEditScreen, A.PurchaseOrderEmailScreen, A.PurchaseOrderListItem, A.PurchaseOrderListBuilder, A.PurchaseOrderPdfScreen, A.PurchaseOrderScreen, A.PurchaseOrderScreenBuilder, A.PurchaseOrderViewScreen, A.QuoteEditDetailsScreen, A.QuoteEditItemsScreen, A.QuoteEditNotesScreen, A.QuoteEditPDFScreen, A.QuoteEditScreen, A.QuoteEmailScreen, A.QuoteListItem, A.QuoteListBuilder, A.QuotePdfScreen, A.QuoteScreen, A.QuoteScreenBuilder, A.QuoteViewScreen, A.RecurringExpenseEditScreen, A.RecurringExpenseListItem, A.RecurringExpenseListBuilder, A.RecurringExpenseScreen, A.RecurringExpenseScreenBuilder, A.RecurringExpenseViewScreen, A.RecurringInvoiceEditDetailsScreen, A.RecurringInvoiceEditItemsScreen, A.RecurringInvoiceEditNotesScreen, A.RecurringInvoiceEditPDFScreen, A.RecurringInvoiceEditScreen, A.RecurringInvoiceListItem, A.RecurringInvoiceListBuilder, A.RecurringInvoicePdfScreen, A.RecurringInvoiceScreen, A.RecurringInvoiceScreenBuilder, A.RecurringInvoiceViewScreen, A.ReportCharts, A.ReportsScreen, A.TotalsDataTable, A.ReportsScreenBuilder, A.ScheduleEditScreen, A.ScheduleListItem, A.ScheduleListBuilder, A.ScheduleScreen, A.ScheduleScreenBuilder, A.ScheduleViewScreen, A._AccountOverview, A.AccountManagementScreen, A.ClientPortalScreen, A.CompanyDetailsScreen, A.CreditCardsAndBanksScreen, A.CustomFieldsSettings, A.CustomFieldsScreen, A.DataVisualizationsScreen, A.DeviceSettingsScreen, A.EmailSettingsScreen, A.ExpenseSettingsScreen, A.HelpPanel, A.GeneratedNumbersScreen, A._FieldMapper, A.ImportExportScreen, A.InvoiceDesignScreen, A.LocalizationScreen, A.PaymentsSettingsScreen, A.ProductSettingsScreen, A.SettingsSearch, A.SettingsListBuilder, A.SettingsScreen, A.SettingsScreenBuilder, A.TaskSettingsScreen, A.NumberOfRatesSelector, A.TaxSettingsScreen, A.EmailPreview, A.TemplatesAndRemindersScreen, A.UserDetailsScreen, A.WorkflowSettingsScreen, A.SubscriptionEditScreen, A.SubscriptionListItem, A.SubscriptionListBuilder, A.SubscriptionScreen, A.SubscriptionScreenBuilder, A.SubscriptionViewScreen, A._BottomBar, A.TaskEditDetailsScreen, A.TaskEditTimesScreen, A.TaskEditScreen, A.TaskListItem, A.TaskListBuilder, A.TaskScreen, A.TaskScreenBuilder, A.TaskTimeListTile, A.TaskViewDocuments, A.TaskViewScreen, A.TaskStatusEditScreen, A.TaskStatusListItem, A.TaskStatusListBuilder, A.TaskStatusScreen, A.TaskStatusScreenBuilder, A.TaskStatusViewScreen, A.TaxRateEditScreen, A.TaxRateListItem, A.TaxRateListBuilder, A.TaxRateSettingsScreen, A.TaxRateScreenBuilder, A.TaxRateViewScreen, A.TokenEditScreen, A.TokenListItem, A.TokenListBuilder, A.TokenScreen, A.TokenScreenBuilder, A._TokenListTile, A.TokenViewScreen, A.TransactionEditScreen, A.TransactionListItem, A.TransactionListBuilder, A.TransactionScreen, A.TransactionScreenBuilder, A.TransactionViewScreen, A.TransactionRuleEditScreen, A.TransactionRuleListItem, A.TransactionRuleListBuilder, A.TransactionRuleScreen, A.TransactionRuleScreenBuilder, A.TransactionRuleViewScreen, A._PermissionCheckbox, A.UserEditScreen, A.UserListItem, A.UserListBuilder, A.UserScreen, A.UserScreenBuilder, A.UserView, A.UserViewScreen, A.ContactListTile, A.VendorEditContactsScreen, A.VendorEditDesktop, A.VendorEditFooter, A.VendorEditScreen, A.VendorListItem, A.VendorListBuilder, A.VendorScreen, A.VendorScreenBuilder, A.VendorViewDocuments, A.VendorOverview, A.VendorViewScreen, A.WebhookEditScreen, A.TargetListTile, A.WebhookViewScreen, A.WebhookListItem, A.WebhookListBuilder, A.WebhookScreen, A.WebhookScreenBuilder, A._PositionedToolbar, A._PinItem, A._SeparatedRaw, A._PinputCursor, A.PointerInterceptor, A.PdfPreviewAction, A.PdfPrintAction, A._PdfShareAction_StatelessWidget_PdfPreviewActionBounds, A.PdfPreviewPage, A._QrContentView, A.SignInWithAppleButton, A.BlockquoteComponent, A.SelectableBox, A.SuperEditorFocusDebugVisuals, A.SuperEditorImeDebugVisuals, A.HorizontalRuleComponent, A.ImageComponent, A._Component, A.UnorderedListItemComponent, A.OrderedListItemComponent, A.DefaultAndroidEditorToolbar, A.ContentLayerStatelessWidget, A.ScrollbarWithCustomPhysics, A.AndroidFollowingMagnifier, A.AndroidMagnifyingGlass, A.AndroidSelectionHandle, A.AndroidTextEditingFloatingToolbar, A.IOSFollowingMagnifier, A.IOSRoundedRectangleMagnifyingGlass, A.IOSSelectionHandle, A.IOSTextEditingFloatingToolbar, A.SuperEditorPopover, A.MagnifyingGlass, A.IOSFloatingCursor, A.TextLayoutSelectionHighlight, A.TextLayoutEmptyHighlight]); + _inheritMany(A.StatelessWidget, [A.CupertinoDesktopTextSelectionToolbar, A.CupertinoMagnifier, A.CupertinoPageTransition, A.CupertinoTextSelectionToolbar, A.CupertinoTheme, A._AboutProgram, A._PackageListTile, A._PackageLicensePageTitle, A._MasterPage, A._DetailView, A._ActionButton, A._ActionIcon, A.BackButtonIcon, A.DrawerButtonIcon, A.EndDrawerButtonIcon, A.AdaptiveTextSelectionToolbar, A._DragHandle, A._BottomSheetGestureDetector, A.Card, A.CheckboxListTile, A.DataTable, A.InkResponse, A._DatePickerHeader, A.DesktopTextSelectionToolbar, A.DesktopTextSelectionToolbarButton, A.Dialog, A.AlertDialog, A.SimpleDialogOption, A.SimpleDialog, A.Divider, A.VerticalDivider, A.Drawer, A._DropdownMenuItemContainer, A.FloatingActionButton, A.IconButton, A.ListTile, A.Magnifier, A._ShapeBorderPaint, A._FadeUpwardsPageTransition, A._ZoomPageTransition, A._PopupMenu, A.RadioListTile, A._BodyBuilder, A.Scrollbar, A.Switch, A.SwitchListTile, A.Tab, A.TextSelectionToolbar, A._TextSelectionToolbarContainer, A._TextSelectionToolbarOverflowButton, A.TextSelectionToolbarTextButton, A.Theme, A._TimePickerHeader, A._HourMinuteControl, A._HourControl, A._StringFragment, A._MinuteControl, A._DayPeriodControl, A._AmPmButton, A._HourTextField, A._MinuteTextField, A.ToggleButtons, A._TooltipOverlay, A._NullWidget1, A.IndexedStack, A.PositionedDirectional, A.KeyedSubtree, A.Builder, A.Container, A._NullWidget2, A.DefaultTextEditingShortcuts, A.DisplayFeatureSubScreen, A.ExcludeFocus, A.GestureDetector, A.Icon, A._CaptureAll, A._InteractiveViewerBuilt, A.RawMagnifier, A._MagnifierStyle, A.ModalBarrier, A._ModalBarrierGestureDetector, A.NavigationToolbar, A.PageStorage, A.Placeholder, A.HtmlElementView, A.PreferredSize, A.ReorderableDragStartListener, A._DragItemProxy, A.SafeArea, A.ScrollView, A.CallbackShortcuts, A.SingleChildScrollView, A.SliverFillViewport, A.SliverPersistentHeader, A.Spacer, A._NullWidget4, A.Text, A.Title, A.View, A.Visibility, A.StoreConnector, A.StoreBuilder, A.DrawerMotion, A.CustomSlidableAction, A.SlidableAction, A.SlidableAutoCloseBehaviorInteractor, A.SlidableAutoCloseInteractor, A.SlidableAutoCloseBehaviorListener, A.SlidableAutoCloseNotificationSender, A.SlidableAutoCloseBarrierInteractor, A.FollowerFadeOutBeyondBoundary, A.FieldGrid, A.ActionMenuButton, A.ViewActionMenuButton, A.AppBorder, A.CustomFieldSelector, A.AppHeader, A.AppWebView, A._WebWebView, A.AutobillDropdownMenuItem, A.BlankScreen, A.AppTextButton, A.BottomButtons, A.AppButton, A.ConfirmEmail, A.ConfirmEmailBuilder, A.CopyToClipboard, A.DashedRect, A.MessageDialog, A.ErrorDialog, A._HealthListTile, A.LoadingDialog, A.DismissibleEntity, A.DocumentTile, A.DocumentPreview, A.EditScaffold, A.EntityActionListTile, A.EntityStatusChip, A.EntityAutocompleteListTile, A.EntityHeader, A.EntityStateLabel, A.EntityTopFilter, A.EntityTopFilterHeader, A.FormCard, A.AppDropdownButton, A.AppForm, A.AppTabForm, A.AppTabBar, A.AppToggleButtons, A.BoolDropdownButton, A.ClientPicker, A.CustomSurcharges, A.DesignPicker, A.DiscountField, A.DynamicSelector, A.LearnMoreUrl, A.NotificationSettings, A._NotificationSelector, A.ProjectPicker, A.SaveCancelButtons, A.UserPicker, A.VendorPicker, A.TokenMeta, A.HelpText, A.HistoryDrawer, A.HistoryDrawerBuilder, A.IconMessage, A.IconText, A.InvoiceItemListTile, A.TaxRateField, A.ListScaffold, A.ActivityListTile, A.AppListTile, A.ListDivider, A.ListFilterMessage, A.FilterListTile, A.SelectedIndicator, A.LoadingIndicator, A.MainScreen, A.EntityScreens, A.SettingsScreens, A.SidebarFooter, A.SidebarFooterCollapsed, A.MenuDrawerBuilder, A._SelectRow, A.AppPinput, A.PortalLinks, A.TableTooltip, A.CachedImage, A.ResponsivePadding, A.SearchText, A._VariableGrid, A.ViewScaffold, A.InitScreen, A.LockScreen, A.RuledText, A.LoginScreen, A.BankAccountListItem, A.BankAccountListBuilder, A.BankAccountScreen, A.BankAccountScreenBuilder, A.BankAccountEditScreen, A.BankAccountViewScreen, A.ClientListItem, A.ClientListBuilder, A.ClientPdfScreen, A.ClientScreen, A.ClientScreenBuilder, A.ContactListTile0, A.ClientEditContactsScreen, A.ClientEditDesktop, A.ClientEditFooter, A.ClientEditScreen, A.ClientViewDocuments, A.ClientOverview, A.ClientViewPaymentMethods, A.ClientViewScreen, A.CompanyGatewayListItem, A.CompanyGatewayListBuilder, A.CompanyGatewayScreen, A.CompanyGatewayScreenBuilder, A.GatewayConfigSettings, A.CompanyGatewayEditScreen, A._CompanyGatewayOverview, A.CompanyGatewayViewScreen, A.CreditEmailScreen, A.CreditListItem, A.CreditListBuilder, A.CreditPdfScreen, A.CreditScreen, A.CreditScreenBuilder, A.CreditEditDetailsScreen, A.CreditEditItemsScreen, A.CreditEditNotesScreen, A.CreditEditPDFScreen, A.CreditEditScreen, A.CreditViewScreen, A.DashboardActivity, A.DashboardPanels, A._CustomTabBarView, A.DashboardScreenBuilder, A.SidebarScaffold, A.InvoiceSidebar, A.PaymentSidebar, A.QuoteSidebar, A.TaskSidebar, A.ExpenseSidbar, A._DashboardSidebar, A.DashboardSystemLogs, A.DesignListItem, A.DesignListBuilder, A.DesignScreen, A.DesignScreenBuilder, A.DesignSection, A.HtmlDesignPreview, A.DesignEditScreen, A.DesignViewScreen, A.DocumentListItem, A.DocumentListBuilder, A.DocumentScreen, A.DocumentScreenBuilder, A.DocumentEditScreen, A.DocumentViewScreen, A.ExpenseEditDesktop, A.ExpenseEditScreen, A.ExpenseListItem, A.ExpenseListBuilder, A.ExpenseScreen, A.ExpenseScreenBuilder, A.ExpenseViewDocuments, A.ExpenseOverview, A.ExpenseViewScreen, A.ExpenseCategoryEditScreen, A.ExpenseCategoryListItem, A.ExpenseCategoryListBuilder, A.ExpenseCategoryScreen, A.ExpenseCategoryScreenBuilder, A.ExpenseCategoryViewScreen, A.GroupEditScreen, A.GroupListItem, A.GroupListBuilder, A.GroupSettingsScreen, A.GroupScreenBuilder, A.SettingsViewer, A.GroupViewScreen, A.InvoiceEditContacts, A.InvoiceEditContactsScreen, A.InvoiceEditDetailsScreen, A.InvoiceEditFooter, A.TableHeader, A.InvoiceEditItemsScreen, A.InvoiceEditNotesScreen, A.InvoiceEditPDFScreen, A.InvoiceEditScreen, A.InvoiceTaxDetails, A.InvoiceEmailScreen, A.InvoiceListItem, A.InvoiceListBuilder, A.InvoicePdfScreen, A.InvoiceScreen, A.InvoiceScreenBuilder, A.InvoiceViewContacts, A._InvitationListTile, A.InvoiceViewDocuments, A.InvoiceOverview, A.InvoiceViewScreen, A.PaymentEditFooter, A.PaymentEditScreen, A.PaymentListItem, A.PaymentListBuilder, A.PaymentScreen, A.PaymentScreenBuilder, A.PaymentRefundScreen, A.PaymentViewScreen, A.PaymentTermEditScreen, A.PaymentTermListItem, A.PaymentTermListBuilder, A.PaymentTermScreen, A.PaymentTermScreenBuilder, A.PaymentTermViewScreen, A.ProductEditScreen, A.ProductListItem, A.ProductListBuilder, A.ProductScreen, A.ProductScreenBuilder, A.ProductViewDocuments, A.ProductViewScreen, A.ProjectEditScreen, A.ProjectListItem, A.ProjectListBuilder, A.ProjectScreen, A.ProjectScreenBuilder, A.ProjectViewDocuments, A.ProjectViewScreen, A.PurchaseOrderEditDetailsScreen, A.PurchaseOrderEditItemsScreen, A.PurchaseOrderEditNotesScreen, A.PurchaseOrderEditPDFScreen, A.PurchaseOrderEditScreen, A.PurchaseOrderEmailScreen, A.PurchaseOrderListItem, A.PurchaseOrderListBuilder, A.PurchaseOrderPdfScreen, A.PurchaseOrderScreen, A.PurchaseOrderScreenBuilder, A.PurchaseOrderViewScreen, A.QuoteEditDetailsScreen, A.QuoteEditItemsScreen, A.QuoteEditNotesScreen, A.QuoteEditPDFScreen, A.QuoteEditScreen, A.QuoteEmailScreen, A.QuoteListItem, A.QuoteListBuilder, A.QuotePdfScreen, A.QuoteScreen, A.QuoteScreenBuilder, A.QuoteViewScreen, A.RecurringExpenseEditScreen, A.RecurringExpenseListItem, A.RecurringExpenseListBuilder, A.RecurringExpenseScreen, A.RecurringExpenseScreenBuilder, A.RecurringExpenseViewScreen, A.RecurringInvoiceEditDetailsScreen, A.RecurringInvoiceEditItemsScreen, A.RecurringInvoiceEditNotesScreen, A.RecurringInvoiceEditPDFScreen, A.RecurringInvoiceEditScreen, A.RecurringInvoiceListItem, A.RecurringInvoiceListBuilder, A.RecurringInvoicePdfScreen, A.RecurringInvoiceScreen, A.RecurringInvoiceScreenBuilder, A.RecurringInvoiceViewScreen, A.ReportCharts, A.ReportsScreen, A.TotalsDataTable, A.ReportsScreenBuilder, A.ScheduleEditScreen, A.ScheduleListItem, A.ScheduleListBuilder, A.ScheduleScreen, A.ScheduleScreenBuilder, A.ScheduleViewScreen, A._AccountOverview, A.AccountManagementScreen, A.ClientPortalScreen, A.CompanyDetailsScreen, A.CreditCardsAndBanksScreen, A.CustomFieldsSettings, A.CustomFieldsScreen, A.DataVisualizationsScreen, A.DeviceSettingsScreen, A.EmailSettingsScreen, A.ExpenseSettingsScreen, A.HelpPanel, A.GeneratedNumbersScreen, A._FieldMapper, A.ImportExportScreen, A.InvoiceDesignScreen, A.LocalizationScreen, A.PaymentsSettingsScreen, A.ProductSettingsScreen, A.SettingsSearch, A.SettingsListBuilder, A.SettingsScreen, A.SettingsScreenBuilder, A.TaskSettingsScreen, A.NumberOfRatesSelector, A.TaxSettingsScreen, A.EmailPreview, A.TemplatesAndRemindersScreen, A.UserDetailsScreen, A.WorkflowSettingsScreen, A.SubscriptionEditScreen, A.SubscriptionListItem, A.SubscriptionListBuilder, A.SubscriptionScreen, A.SubscriptionScreenBuilder, A.SubscriptionViewScreen, A._BottomBar, A.TaskEditDetailsScreen, A.TaskEditTimesScreen, A.TaskEditScreen, A.TaskListItem, A.TaskListBuilder, A.TaskScreen, A.TaskScreenBuilder, A.TaskTimeListTile, A.TaskViewDocuments, A.TaskViewScreen, A.TaskStatusEditScreen, A.TaskStatusListItem, A.TaskStatusListBuilder, A.TaskStatusScreen, A.TaskStatusScreenBuilder, A.TaskStatusViewScreen, A.TaxRateEditScreen, A.TaxRateListItem, A.TaxRateListBuilder, A.TaxRateSettingsScreen, A.TaxRateScreenBuilder, A.TaxRateViewScreen, A.TokenEditScreen, A.TokenListItem, A.TokenListBuilder, A.TokenScreen, A.TokenScreenBuilder, A._TokenListTile, A.TokenViewScreen, A.TransactionEditScreen, A.TransactionListItem, A.TransactionListBuilder, A.TransactionScreen, A.TransactionScreenBuilder, A.TransactionViewScreen, A.TransactionRuleEditScreen, A.TransactionRuleListItem, A.TransactionRuleListBuilder, A.TransactionRuleScreen, A.TransactionRuleScreenBuilder, A.TransactionRuleViewScreen, A._PermissionCheckbox, A.UserEditScreen, A.UserListItem, A.UserListBuilder, A.UserScreen, A.UserScreenBuilder, A.UserView, A.UserViewScreen, A.ContactListTile, A.VendorEditContactsScreen, A.VendorEditDesktop, A.VendorEditFooter, A.VendorEditScreen, A.VendorListItem, A.VendorListBuilder, A.VendorScreen, A.VendorScreenBuilder, A.VendorViewDocuments, A.VendorOverview, A.VendorViewScreen, A.WebhookEditScreen, A.TargetListTile, A.WebhookViewScreen, A.WebhookListItem, A.WebhookListBuilder, A.WebhookScreen, A.WebhookScreenBuilder, A.SuperEditorPopoverButton, A._PositionedToolbar, A._PinItem, A._SeparatedRaw, A._PinputCursor, A.PointerInterceptor, A.PdfPreviewAction, A.PdfPrintAction, A._PdfShareAction_StatelessWidget_PdfPreviewActionBounds, A.PdfPreviewPage, A._QrContentView, A.SignInWithAppleButton, A.BlockquoteComponent, A.SelectableBox, A.SuperEditorFocusDebugVisuals, A.SuperEditorImeDebugVisuals, A.HorizontalRuleComponent, A.ImageComponent, A._Component, A.UnorderedListItemComponent, A.OrderedListItemComponent, A.DefaultAndroidEditorToolbar, A.ContentLayerStatelessWidget, A.ScrollbarWithCustomPhysics, A.AndroidFollowingMagnifier, A.AndroidMagnifyingGlass, A.AndroidSelectionHandle, A.AndroidTextEditingFloatingToolbar, A.IOSFollowingMagnifier, A.IOSRoundedRectangleMagnifyingGlass, A.IOSSelectionHandle, A.IOSTextEditingFloatingToolbar, A.SuperEditorPopover, A.MagnifyingGlass, A.IOSFloatingCursor, A.TextLayoutSelectionHighlight, A.TextLayoutEmptyHighlight]); _inherit(A.IconThemeData, A._IconThemeData_Object_Diagnosticable); _inherit(A._CupertinoIconThemeData_IconThemeData_Diagnosticable, A.IconThemeData); _inherit(A.CupertinoIconThemeData, A._CupertinoIconThemeData_IconThemeData_Diagnosticable); @@ -624649,6 +626000,7 @@ _inherit(A._VendorViewFullwidthState, A.__VendorViewFullwidthState_State_TickerProviderStateMixin); _inherit(A._AppLocalization_LocaleCodeAware_LocalizationsProvider, A.LocaleCodeAware); _inherit(A.AppLocalization, A._AppLocalization_LocaleCodeAware_LocalizationsProvider); + _inherit(A.AttributedTextMarkdownSerializer, A.AttributionVisitor); _inheritMany(A.BlockSyntax, [A._EmptyParagraphSyntax, A.EmptyBlockSyntax, A.SetextHeaderSyntax, A.HeaderSyntax, A.BlockquoteSyntax, A.CodeBlockSyntax, A.FencedCodeBlockSyntax, A.HorizontalRuleSyntax, A.BlockHtmlSyntax, A.ListSyntax, A.ParagraphSyntax]); _inherit(A.AttributedTextEditingController, A._AttributedTextEditingController_Object_ChangeNotifier); _inheritMany(A.AttributedTextEditingController, [A.SingleLineAttributedTextEditingController, A._ImeAttributedTextEditingController_AttributedTextEditingController_TextInputClient]); @@ -624732,8 +626084,8 @@ _inherit(A.DocumentLayoutLayerStatefulWidget, A.ContentLayerStatefulWidget); _inheritMany(A.DocumentLayoutLayerStatefulWidget, [A.CaretDocumentOverlay, A.SelectionLeadersDocumentLayer, A.AndroidToolbarFocalPointDocumentLayer, A.AndroidHandlesDocumentLayer]); _inherit(A.DocumentLayoutLayerState, A.ContentLayerState); - _inheritMany(A.DocumentLayoutLayerState, [A.__CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin, A.__SelectionLeadersDocumentLayerState_DocumentLayoutLayerState_SingleTickerProviderStateMixin, A._AndroidToolbarFocalPointDocumentLayerState, A._AndroidControlsDocumentLayerState_DocumentLayoutLayerState_SingleTickerProviderStateMixin]); - _inherit(A._CaretDocumentOverlayState, A.__CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin); + _inheritMany(A.DocumentLayoutLayerState, [A._CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin, A.__SelectionLeadersDocumentLayerState_DocumentLayoutLayerState_SingleTickerProviderStateMixin, A._AndroidToolbarFocalPointDocumentLayerState, A._AndroidControlsDocumentLayerState_DocumentLayoutLayerState_SingleTickerProviderStateMixin]); + _inherit(A.CaretDocumentOverlayState, A._CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin); _inherit(A._DocumentMouseInteractorState, A.__DocumentMouseInteractorState_State_SingleTickerProviderStateMixin); _inherit(A.__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin, A.__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver); _inherit(A._AndroidDocumentTouchInteractorState, A.__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin); @@ -624769,6 +626121,7 @@ _inheritMany(A.NodeChangeEvent, [A.TextInsertionEvent, A.TextDeletedEvent]); _inheritMany(A._IndexedSlot, [A._UnderlaySlot, A._OverlaySlot]); _inherit(A.ContentLayerProxyWidget, A.ContentLayerStatelessWidget); + _inherit(A._RoundedRectanglePopoverAppearanceState, A.__RoundedRectanglePopoverAppearanceState_State_SingleTickerProviderStateMixin); _inherit(A._SelectionLeadersDocumentLayerState, A.__SelectionLeadersDocumentLayerState_DocumentLayoutLayerState_SingleTickerProviderStateMixin); _inheritMany(A.RawScrollbarWithCustomPhysics, [A.CupertinoScrollbarWithCustomPhysics, A._MaterialScrollbar0]); _inherit(A.RawScrollbarWithCustomPhysicsState, A._RawScrollbarWithCustomPhysicsState_State_TickerProviderStateMixin); @@ -624777,6 +626130,8 @@ _inherit(A.AndroidControlsDocumentLayerState, A._AndroidControlsDocumentLayerState_DocumentLayoutLayerState_SingleTickerProviderStateMixin); _inherit(A._IosFloatingToolbarOverlayState, A.__IosFloatingToolbarOverlayState_State_SingleTickerProviderStateMixin); _inherit(A.MagnifierAndToolbarController, A._MagnifierAndToolbarController_Object_ChangeNotifier); + _inherit(A.PopoverController, A._PopoverController_Object_ChangeNotifier); + _inherit(A.ItemSelectionListState, A._ItemSelectionListState_State_SingleTickerProviderStateMixin); _inherit(A._AndroidEditingOverlayControlsState, A.__AndroidEditingOverlayControlsState_State_WidgetsBindingObserver); _inherit(A.AndroidEditingOverlayController, A._AndroidEditingOverlayController_Object_ChangeNotifier); _inherit(A.AndroidTextFieldTouchInteractorState, A._AndroidTextFieldTouchInteractorState_State_TickerProviderStateMixin); @@ -625438,7 +626793,7 @@ _mixin(A._DocumentComposer_Object_ChangeNotifier, A.ChangeNotifier); _mixinHard(A._BlockquoteComponentViewModel_SingleColumnLayoutComponentViewModel_TextComponentViewModel, A.TextComponentViewModel); _mixin(A.__BoxComponentState_State_DocumentComponent, A.DocumentComponent); - _mixinHard(A.__CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); + _mixinHard(A._CaretDocumentOverlayState_DocumentLayoutLayerState_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__DocumentMouseInteractorState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixin(A.__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver, A.WidgetsBindingObserver); _mixinHard(A.__AndroidDocumentTouchInteractorState_State_WidgetsBindingObserver_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); @@ -625461,12 +626816,15 @@ _mixin(A.__TaskComponentState_State_ProxyDocumentComponent_ProxyTextComposable, A.ProxyTextComposable); _mixin(A._TextComponentState_State_DocumentComponent, A.DocumentComponent); _mixin(A._TextNode_DocumentNode_ChangeNotifier, A.ChangeNotifier); + _mixinHard(A.__RoundedRectanglePopoverAppearanceState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixin(A._ContentTapDelegate_Object_ChangeNotifier, A.ChangeNotifier); _mixinHard(A.__SelectionLeadersDocumentLayerState_DocumentLayoutLayerState_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A._RawScrollbarWithCustomPhysicsState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); _mixinHard(A._AndroidControlsDocumentLayerState_DocumentLayoutLayerState_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixinHard(A.__IosFloatingToolbarOverlayState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixin(A._MagnifierAndToolbarController_Object_ChangeNotifier, A.ChangeNotifier); + _mixin(A._PopoverController_Object_ChangeNotifier, A.ChangeNotifier); + _mixinHard(A._ItemSelectionListState_State_SingleTickerProviderStateMixin, A.SingleTickerProviderStateMixin); _mixin(A._AndroidEditingOverlayController_Object_ChangeNotifier, A.ChangeNotifier); _mixin(A.__AndroidEditingOverlayControlsState_State_WidgetsBindingObserver, A.WidgetsBindingObserver); _mixinHard(A._AndroidTextFieldTouchInteractorState_State_TickerProviderStateMixin, A.TickerProviderStateMixin); @@ -625498,7 +626856,7 @@ typeUniverse: {eC: new Map(), tR: {}, eT: {}, tPV: {}, sEA: []}, mangledGlobalNames: {int: "int", double: "double", num: "num", String: "String", bool: "bool", Null: "Null", List: "List"}, mangledNames: {}, - types: ["~()", "ListUIStateBuilder(ListUIStateBuilder)", "Null(Store,@,@(@))", "Null(Object)", "Null()", "@(String)", "double(double)", "Null(@)", "InvoiceEntityBuilder(InvoiceEntityBuilder)", "SettingsEntityBuilder(SettingsEntityBuilder)", "~(@)", "bool(String)", "~(Duration)", "~(bool)", "@()", "~(String)", "Null(BuildContext)", "~(bool?)", "bool()", "Future(BuildContext)", "Future<~>()", "~(BuildContext)", "CompanyEntityBuilder(CompanyEntityBuilder)", "ErrorDialog(BuildContext)", "~(TextEditingController)", "Color(Set)", "int(String,String)", "Null(String?)", "String(@)", "~(JavaScriptObject)", "@(bool?)", "String(String)", "String?(String)", "@(@)", "Future(Store,@,@(@))", "Null(Object?)", "DocumentEntityBuilder(DocumentEntityBuilder)", "ExpenseEntityBuilder(ExpenseEntityBuilder)", "ExecutionInstruction({editContext!SuperEditorContext,keyEvent!RawKeyEvent})", "Null(List)", "Null(String)", "DropdownMenuItem(String)", "~(DocumentEntity)", "ListBuilder()", "~(Object?)", "~(SuperEditorContext)", "Widget(BuildContext)", "~(AnimationStatus)", "bool(Route<@>)", "Null(String,bool)", "~(TapDownDetails)", "String(BaseEntity)", "Null(SelectableEntity?)", "@(BuildContext)", "ClientEntityBuilder(ClientEntityBuilder)", "InvoiceItemEntityBuilder(InvoiceItemEntityBuilder)", "PluralCase()", "String?(String?,PreviewEntity)", "ListUIState(ListUIState,FilterByEntity)", "bool(SpanMarker)", "String(String?,ClearEntityFilter)", "String?(String?,SelectCompany)", "PaymentEntityBuilder(PaymentEntityBuilder)", "~(RenderObject)", "Null(EntityState,bool?)", "Future()", "CompanyGatewayEntityBuilder(CompanyGatewayEntityBuilder)", "@(SelectableEntity?)", "Null(EntityState,bool)", "~(DragUpdateDetails)", "Future()", "~(String,InvoiceEntity)", "bool(BoxHitTestResult,Offset)", "~(DragStartDetails)", "~(BuildContext,EntityAction)", "~(int)", "TaskEntityBuilder(TaskEntityBuilder)", "SubscriptionEntityBuilder(SubscriptionEntityBuilder)", "ListDivider(BuildContext,int)", "Null(String?,String?)", "Null(List)", "~({textFieldContext!SuperTextFieldContext})", "String?(String?,@)", "InvoiceStatusEntityBuilder(InvoiceStatusEntityBuilder)", "int(List,List)", "Color?(Set)", "bool(InvoiceItemEntity)", "Null(InvoiceEntity)", "ScheduleEntityBuilder(ScheduleEntityBuilder)", "String(String,Node)", "~(PaintingContext,Offset)", "String?(String?,FilterByEntity)", "SettingsUIStateBuilder(SettingsUIStateBuilder)", "InvoiceEntity?(String)", "~(DragEndDetails)", "VendorEntityBuilder(VendorEntityBuilder)", "String()", "UserEntityBuilder(UserEntityBuilder)", "bool(bool,UpdateUserPreferences)", "~(String?)", "TextFieldKeyboardHandlerResult({keyEvent!RawKeyEvent,textFieldContext!SuperTextFieldContext})", "UserCompanyEntityBuilder(UserCompanyEntityBuilder)", "EntityStats(String,BuiltMap)", "Future?(Object?)", "Widget(BuildContext,int)", "int(int?,PreviewEntity)", "Null(SelectableEntity)", "Uint8List(PdfPageFormat)", "~(Element0)", "~(PointerEvent)", "~(PointerExitEvent)", "Null(~)", "Null(BuildContext,List,bool)", "~(TapUpDetails)", "double(RenderBox)", "Null(bool?)", "InvoiceEntity(@)", "bool(String?)", "String(Match)", "@(TaxRateEntity)", "Map(Document2,DocumentNode)", "StatelessWidget(BuildContext,BoxConstraints)", "TextStyle(Set)", "Null(List)", "double()", "Null(JavaScriptObject)", "bool(Element0)", "Null(BuildContext,Completer)", "bool(Object?)", "~(RestorableProperty,~())", "~(String,ExpenseEntity)", "UserStateBuilder(UserStateBuilder)", "~(PointerEnterEvent)", "int(int)", "@(CompanyEntity)", "@(int?,String)", "Future?()", "TransactionEntityBuilder(TransactionEntityBuilder)", "bool(FocusNode)", "~(PaymentableEntity)", "Palette()", "Widget()", "ScrollableListView(BuildContext)", "List()", "@(List,bool)", "DocumentLayout()", "bool(int)", "Null(DesignEntity?)", "bool(@)", "~(InvoiceEntity)", "String?(String?)", "int(String?,String?)", "~(ByteData?)", "~(BaseEntity)", "@(InvoiceEntity)", "~(Object,StackTrace)", "Null(int)", "Null(ExpenseEntity)", "DashboardUISettingsBuilder(DashboardUISettingsBuilder)", "ListBuilder()", "ExpenseStatusEntityBuilder(ExpenseStatusEntityBuilder)", "TaskStatusEntityBuilder(TaskStatusEntityBuilder)", "~(String,@)", "Null(TaxRateEntity)", "Null(Completer,String)", "~(String,TaskEntity)", "PurchaseOrderStateBuilder(PurchaseOrderStateBuilder)", "AlertDialog(BuildContext)", "Null(EntityStatus,bool)", "String(InvoiceEntityBuilder)", "Null(String,String)", "bool(ScrollNotification)", "~(ForcePressDetails)", "DocumentStateBuilder(DocumentStateBuilder)", "int()", "Null(Object,StackTrace)", "bool(NotoFont)", "TransactionRuleEntityBuilder(TransactionRuleEntityBuilder)", "EntityStats(String,BuiltMap)", "~(LayoutView)", "Future<@>(MethodCall0)", "Tween(@)", "SimpleDialog(BuildContext)", "String?(String?,ClearEntitySelection)", "AuthStateBuilder(AuthStateBuilder)", "ProductEntityBuilder(ProductEntityBuilder)", "Null(EntityStatus,bool?)", "Null(UserEntity)", "Null(bool)", "~(String,String)", "~(PointerDownEvent)", "DropdownMenuItem(int)", "bool(ClientContactEntity)", "QuoteStateBuilder(QuoteStateBuilder)", "bool(VendorContactEntity)", "PaymentStatusEntityBuilder(PaymentStatusEntityBuilder)", "ProjectEntityBuilder(ProjectEntityBuilder)", "bool(InvoiceEntity)", "~(String,PaymentEntity)", "@(String?)", "Null(BuildContext[EntityAction?])", "Null(List)", "Object?(@)", "bool(FlutterHtmlKeyboardEvent)", "Null(PaymentEntity)", "TextStyle(Set)", "Null(SettingsEntity)", "TaxRateStateBuilder(TaxRateStateBuilder)", "FeesAndLimitsSettingsBuilder(FeesAndLimitsSettingsBuilder)", "ListTile(String)", "MapBuilder()", "ListBuilder()", "InvitationEntity(ClientContactEntity)", "bool(Attribution)", "CompanyGatewayStateBuilder(CompanyGatewayStateBuilder)", "bool(TaskTime)", "double(double,double)", "~(@,@)", "String?(@)", "Color0(int?)", "~(TaskTime)", "GroupStateBuilder(GroupStateBuilder)", "Null(TransactionEntity)", "Null(BuildContext,bool)", "Null(int,int)", "Widget(BuildContext,Widget?)", "ExpenseEntity?(String)", "Future(BuildContext,bool)", "int(FocusNode,FocusNode)", "~(Timer)", "Null(Completer)", "MapEntry(@,@)", "~(int,int)", "~(LongPressStartDetails)", "bool(BaseEntity)", "SystemMouseCursor(Set)", "TransactionStateBuilder(TransactionStateBuilder)", "Widget(BuildContext,BoxConstraints)", "KeyEventResult(FocusNode,RawKeyEvent)", "WebhookEntityBuilder(WebhookEntityBuilder)", "MapBuilder(MapBuilder)", "double(RenderBox,double)", "PanGestureRecognizer()", "~(PanGestureRecognizer)", "Null(LoginResponse)", "~(PointerSignalEvent)", "~(Selectable)", "~(PointerHoverEvent)", "bool(Node)", "DesignEntityBuilder(DesignEntityBuilder)", "Null(InvoiceStateBuilder)", "bool(PaymentableEntity)", "ClientStateBuilder(ClientStateBuilder)", "String?(PaymentableEntity)", "PaymentTermStateBuilder(PaymentTermStateBuilder)", "bool(DateRange)", "int(Object?)", "~(~())", "Null(RecurringInvoiceStateBuilder)", "~(SelectableEntity)", "TaskTimeBuilder(TaskTimeBuilder)", "TapSequenceGestureRecognizer()", "Null(TaskEntity)", "Null(TaskStateBuilder)", "~(TapSequenceGestureRecognizer)", "Future<@>()", "BankAccountEntityBuilder(BankAccountEntityBuilder)", "bool(EntityType)", "~(EntityType)", "InvoiceEntity(InvoiceEntity?,@)", "Column(BuildContext)", "String(InvoiceEntity)", "~(Store)", "~(LongPressEndDetails)", "double?(ChartMoneyData,int?)", "DateTime(ChartMoneyData,int?)", "Null(int,String)", "Null(BuildContext,InvoiceEntity[String?])", "Null(BuildContext[int?])", "Null(BuildContext,List,bool?)", "Null(List,String?,String?)", "~(TextInputAction)", "Null(InvoiceItemEntity,int)", "Null(List[String?,String?])", "BaseEntity?(InvoiceItemEntity)", "InvoiceItemSelector(BuildContext)", "~(SpanMarker)", "Future>(Map)", "~(InvoiceItemEntity)", "Text(String)", "List(BuildContext)", "TransactionStatusEntityBuilder(TransactionStatusEntityBuilder)", "List()", "DropdownMenuItem(DateRange)", "@(String,bool)", "VerticalDragGestureRecognizer()", "~(VerticalDragGestureRecognizer)", "Null(List)", "MaterialStateProperty?(ButtonStyle?)", "~(DateTime)", "ActivityListTile(BuildContext,int)", "MapBuilder()", "BorderSide(Set)", "AppStateBuilder(AppStateBuilder)", "Color0(ChartMoneyData,int?)", "~(String,NumericAxis)", "~(Object?,Object?)", "~(LongPressMoveUpdateDetails)", "~(TapDragUpDetails)", "bool(GestureListener)", "RunTemplateDialog(BuildContext)", "Null(ClientEntity)", "bool(InlineSpan)", "UpgradeDialog(BuildContext)", "List>(BuildContext)", "Null(BuiltList)", "@(DesignEntity?)", "CreditStateBuilder(CreditStateBuilder)", "@(Completer)", "bool(InheritedElement)", "DropdownMenuItem(MapEntry)", "TaxRateEntity?(String)", "Future>(Map)", "Future<~>(bool)", "Null(DocumentEntity)", "TextBoundary()", "~(ExpenseEntity)", "double(ChartMoneyData,int?)", "DocumentStatusEntityBuilder(DocumentStatusEntityBuilder)", "ExpenseStateBuilder(ExpenseStateBuilder)", "Null(VendorEntity)", "ExpenseCategoryEntityBuilder(ExpenseCategoryEntityBuilder)", "Null(GroupEntity)", "InvoiceStateBuilder(InvoiceStateBuilder)", "PaymentEntity?(String)", "PaymentStateBuilder(PaymentStateBuilder)", "Null(ProductEntity)", "Null(ProjectEntity)", "ProjectStateBuilder(ProjectStateBuilder)", "RecurringExpenseStateBuilder(RecurringExpenseStateBuilder)", "Null(RecurringExpenseStateBuilder)", "RecurringInvoiceStateBuilder(RecurringInvoiceStateBuilder)", "TaskEntity?(String)", "Null(List)", "TaskStateBuilder(TaskStateBuilder)", "Null(TaskStatusEntity)", "bool(_RouteEntry)", "~(EntityAction)", "~({curve:Curve,descendant:RenderObject?,duration:Duration,rect:Rect?})", "~(TapDragDownDetails)", "Null(BuildContext,InvoiceEntity,ClientEntity?)", "UserSmsVerification(BuildContext)", "Future()", "String(ProfitAndLossReportFields)", "MaterialStateProperty?(DatePickerThemeData?)", "String(TaxRateReportFields)", "MouseCursor0(Set)", "BankAccountEntity?(String)", "VendorContactEntityBuilder(VendorContactEntityBuilder)", "Null(BuildContext,EmailTemplate,String,String,String)", "AppTextButton(BuildContext)", "Rect()", "MessageDialog(BuildContext)", "String(TaxRateReportFields0)", "ClientContactEntityBuilder(ClientContactEntityBuilder)", "bool({textFieldContext!SuperTextFieldContext})", "Widget(BuildContext,EditableTextState)", "String(int)", "ColorTween(@)", "Null(BankAccountEntity)", "BankAccountStateBuilder(BankAccountStateBuilder)", "~(SelectableEntity?)", "bool(ActivityEntity)", "Future<~>(String)", "String(SelectableEntity?)", "~(String,ClientEntity)", "double?()", "ScrollPosition()", "Null(CompanyGatewayEntity)", "SubscriptionStateBuilder(SubscriptionStateBuilder)", "Null(ScheduleEntity)", "ExpenseListItem(BuildContext,int)", "Null(TaskStatusStateBuilder)", "Null(@,@)", "TokenStateBuilder(TokenStateBuilder)", "TransactionRuleStateBuilder(TransactionRuleStateBuilder)", "Null(DateTime?)", "EntityStats(String,BuiltMap)", "Object?(Object?)", "MapBuilder(MapBuilder)", "String(String,UpdateUserPreferences)", "Stack(BuildContext,TextLayout)", "ListBuilder(ListBuilder)", "@(int)", "InvoiceEntity?(InvoiceEntity?,@)", "ProductStateBuilder(ProductStateBuilder)", "RenderBox()", "Null(ProductStateBuilder)", "Null(TokenEntity)", "Null(List)", "ProductEntity?(String)", "TaskStatusStateBuilder(TaskStatusStateBuilder)", "@([String?,String?])", "Null(List)", "Null(PaymentTermEntity)", "bool(InvoiceEntity?)", "Null(List)", "~(String,TransactionEntity)", "EntityStats(String,BuiltMap)", "ExpenseCategoryStateBuilder(ExpenseCategoryStateBuilder)", "Null(ExpenseCategoryEntity)", "double(Set)", "bool(ScrollMetricsNotification)", "~([Intent?])", "String(ExpenseEntity)", "@(SettingsEntity)", "~(MouseEvent)", "VendorStateBuilder(VendorStateBuilder)", "Null(TransactionRuleEntity)", "Null(WebhookEntity)", "Color(Color)", "int(RenderObject,RenderObject)", "@(bool)", "ListBuilder()", "DesignStateBuilder(DesignStateBuilder)", "InvoiceListItem(BuildContext,int)", "DesignEntity?(String)", "WebhookStateBuilder(WebhookStateBuilder)", "Offset()", "~(NavigatorObserver)", "int(InvoiceEntity?,InvoiceEntity?)", "Null(SubscriptionEntity)", "List(BuiltMap,BuiltMap)", "GridView(BuildContext,BoxConstraints)", "CustomFieldSelector(BuildContext)", "TaskListItem(BuildContext,int)", "String(InvitationEntity)", "bool(String,InvoiceEntity)", "DropdownMenuItem(String?)", "String?(SelectableEntity)", "Size(RenderBox,BoxConstraints)", "Future<~>(MethodCall0)", "ScheduleStateBuilder(ScheduleStateBuilder)", "Future()", "Null(CompanyGatewayStateBuilder)", "InvitationEntity(VendorContactEntity)", "Null(List)", "Widget(BuildContext,Offset?,Widget?)", "CompanyGatewayEntity?(String)", "~(TaxRateEntity)", "~(SliverConstraints)", "~(List)", "bool(SemanticsNode)", "Future(BuildContext,Completer{oneTimePassword:String,secret:String,url:String})", "int(SemanticsNode,SemanticsNode)", "PasswordConfirmation(BuildContext)", "TransactionRuleCriteriaEntityBuilder(TransactionRuleCriteriaEntityBuilder)", "OutlinedButton(EntityAction)", "ClientContactEntity()", "String(TaskItemReportFields)", "PopupMenuButton(BuildContext,int)", "bool(InvitationEntity)", "Null(CreditStateBuilder)", "bool(PaymentEntity)", "String(Object?)", "~(ScaleStartDetails)", "DateTime()", "bool(FocusableActionDetector)", "bool(NavigationNotification)", "List(BuiltMap,CompanyEntity?,DashboardUISettings,BuiltMap,BuiltMap)", "~(Object[StackTrace?])", "InvoiceEntity(String)", "Widget(BuildContext,bool,Widget?)", "@(double?)", "Future(BuildContext,String)", "List>(BuildContext)", "PopupMenuItem(EntityAction)", "PaymentableEntityBuilder(PaymentableEntityBuilder)", "TextBox(TextBox)", "int(ExpenseEntity?,ExpenseEntity?)", "String(RecurringInvoiceReportFields)", "Null(ClientStateBuilder)", "Null(List)", "Null(DesignEntity)", "Null(DesignStateBuilder)", "MapEntry>(String,String)", "String(RecurringExpenseReportFields)", "Null(WebhookStateBuilder)", "~(ScaleEndDetails)", "String(ClientReportFields)", "~(Size)", "bool(Object?,Object?)", "Null(List)", "ClientEntity?(String)", "bool(KeyData)", "DocumentEntity(@)", "String(QuoteReportFields)", "Null(List)", "~(ProductEntity)", "WebhookEntity?(String)", "Future()", "Null(VendorStateBuilder)", "TextScaler?()", "~(TimeOfDay)", "ListBuilder()", "String(TaskReportFields)", "Future<~>(~)", "bool(ExpenseEntity)", "String(SelectableEntity)", "String(ContactReportFields)", "Null(BankAccountStateBuilder)", "Null(ExpenseStateBuilder)", "Null(List)", "~(ProgressEvent)", "VendorEntity?(String)", "ExpenseCategoryEntity?(String)", "Null(List)", "~(TextSelection,SelectionChangedCause?)", "ListTile(BuildContext,int)", "Null(ExpenseCategoryStateBuilder)", "int(int,int)", "String(TransactionReportFields)", "String(VendorReportFields)", "GroupEntity?(String)", "Null(List)", "Row(BuildContext,BoxConstraints)", "GroupEntityBuilder(GroupEntityBuilder)", "Null(GroupStateBuilder)", "LongPressGestureRecognizer()", "Null(TransactionStateBuilder)", "~(LongPressGestureRecognizer)", "HorizontalDragGestureRecognizer()", "int(@,@)", "~(HorizontalDragGestureRecognizer)", "DropdownMenuItem(int)", "@(int?)", "String(String,String)", "Widget(Widget,Animation0)", "Null(PaymentStateBuilder)", "Null(UserStateBuilder)", "bool(_Highlight)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,StaticState)", "PaymentTermEntity?(String)", "Null(List)", "TaxConfigRegionEntityBuilder(TaxConfigRegionEntityBuilder)", "String(CreditItemReportFields)", "Null(PaymentTermStateBuilder)", "~(Event)", "UserEntity?(String)", "String(CreditReportFields)", "Null(List)", "String(DocumentReportFields)", "Widget(BuildContext)?(ActionIconThemeData?)", "bool(Point)", "String(ExpenseReportFields)", "ProjectEntity?(String)", "Null(List)", "IconData(BuildContext)", "DecoratedFormField(BuildContext,TextEditingController,FocusNode,~())", "Null(ProjectStateBuilder)", "String(InvoiceItemReportFields)", "String(InvoiceReportFields)", "bool(bool,DismissTwoYearReviewAppPermanently)", "~(PointerPanZoomStartEvent)", "Null(PurchaseOrderStateBuilder)", "Iterable(Iterable)", "Null(bool?,int?,String?,double?,double?)", "MediaQuery(BuildContext,Widget?)", "Null(QuoteStateBuilder)", "Set()", "String(MaterialLocalizations)", "~(DragDownDetails)", "Future(String?,String?)", "String(PaymentReportFields)", "ReportsUIStateBuilder(ReportsUIStateBuilder)", "ScheduleEntity?(String)", "Null(List)", "bool(DataRow)", "Null(ScheduleStateBuilder)", "PrefStateBuilder(PrefStateBuilder)", "Null(CompanyEntity)", "Set<0^>()", "EdgeInsetsGeometryTween(@)", "SubscriptionEntity?(String)", "Null(List)", "VendorContactEntity()", "QuoteListItem(BuildContext,int)", "Null(SubscriptionStateBuilder)", "String(ProductReportFields)", "bool(Node0)", "ListBuilder()", "IconButton(BuildContext)", "MapBuilder>()", "PaymentListItem(BuildContext,int)", "Null(TransactionRuleStateBuilder)", "~(Object,String)", "TaskStatusEntity?(String)", "Null(List)", "ListBuilder()", "String(PurchaseOrderReportFields)", "~(List<@>)", "Text(@)", "InkWell(BuildContext)", "Future(BuildContext,Completer,String)", "Null(List)", "JavaScriptObject()", "Future(@)", "Null(TaxRateStateBuilder)", "Widget(BuildContext,TextLayout)", "Future(String?)", "TokenEntity?(String)", "MaterialStateProperty?(ButtonStyle?)", "Future(BillingClient)", "Null(List)", "Null(TokenStateBuilder)", "String(PurchaseOrderItemReportFields)", "TransactionEntity?(String)", "ContentLayerWidget(BuildContext)", "ListBuilder(ListBuilder)", "TransactionRuleEntity?(String)", "List(BuiltMap)", "String(QuoteItemReportFields)", "Null(List)", "ListBuilder()", "TaxRateEntity(@)", "TaxRateEntityBuilder(TaxRateEntityBuilder)", "List(SelectionState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltList,ListUIState)", "InvoiceEntity(InvoiceEntity?,AddRecurringInvoiceItem)", "InvoiceEntity(InvoiceEntity?,AddQuoteItem)", "List(SelectionState,BuiltMap,BuiltList,BuiltMap,BuiltMap,ListUIState,BuiltMap)", "bool(bool,DismissOneYearReviewAppPermanently)", "InvoiceEntity(InvoiceEntity?,AddPurchaseOrderItem)", "AppSidebarMode(AppSidebarMode,UpdateUserPreferences)", "EntityStats(String,BuiltMap)", "BuiltMap(BuiltMap,UpdateUserPreferences)", "String(InvoiceItemEntityBuilder)", "InvoiceItemEntity(String)", "PaymentTermEntity(@)", "PaymentTermEntityBuilder(PaymentTermEntityBuilder)", "bool(PaymentEntity?)", "List(String,BuiltMap,BuiltList)", "InvoiceEntity(InvoiceEntity?,AddInvoiceItem)", "UserEntity(@)", "GroupEntity(@)", "ExpenseEntity(@)", "List(SelectionState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,ListUIState,BuiltMap,BuiltMap,StaticState)", "bool(String,ExpenseEntity)", "Null(BuiltList)", "~(VendorEntity)", "~(TaskEntity)", "~(ProjectEntity)", "~(GroupEntity)", "Null(DocumentStateBuilder)", "DocumentEntity?(String)", "~(~)", "int(TaskEntity,TaskEntity)", "List(BuiltMap,CompanyEntity?,DashboardUISettings,BuiltMap,BuiltMap)", "List>(BuildContext)", "List(BuiltMap,CompanyEntity?,DashboardUISettings,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap)", "InkWell(String)", "List(BuiltMap,CompanyEntity?,DashboardUISettings,BuiltMap,BuiltMap,BuiltMap)", "List(BuiltMap,CompanyEntity?,DashboardUISettings,BuiltMap,BuiltMap,BuiltMap)", "UserSettingsEntityBuilder(UserSettingsEntityBuilder)", "MapBuilder>(MapBuilder>)", "InvoiceEntity(InvoiceEntity?,AddCreditItem)", "PaymentableEntity(BaseEntity)", "~(DropEventDetails)", "CompanyGatewayEntity(@)", "bool(TaskEntity)", "TaskEntity(String)", "bool(ProjectEntity)", "bool(ProductEntity)", "ReportSettingsEntityBuilder(ReportSettingsEntityBuilder)", "bool(GatewayTokenEntity)", "EntityStats(String,BuiltMap)", "~(ClientEntity)", "bool(SelectableEntity)", "String(ProjectEntityBuilder)", "String(PaymentEntityBuilder)", "bool(HistoryRecord)", "bool(CompanyEntity)", "ToggleButtons(BuildContext,BoxConstraints)", "bool(bool,DismissNativeWarningPermanently)", "~(PersistenceRepository)", "UIStateBuilder(UIStateBuilder)", "PaymentRefundScreen(BuildContext)", "PaymentEditScreen(BuildContext)", "MainScreen(BuildContext)", "LoginScreen(BuildContext)", "MapBuilder()", "Null(String?,String?,String?,String?,String?)", "MapBuilder()", "bool(TaxRateEntity?)", "TaxRateEntity()", "ListBuilder()", "ListBuilder()", "Align(List<@>)", "ListBuilder()", "Widget(CompanyEntity)", "bool(UserCompanyState)", "AccountSmsVerification(BuildContext)", "ListBuilder()", "ListBuilder()", "PointerInterceptor(BuildContext)", "ListBuilder()", "ListBuilder()", "DropdownMenuItem<@>(@)", "bool(SystemLogEntity)", "~(int,bool)", "ListBuilder()", "BaseEntity(String?)", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "MapBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "TokenEntityBuilder(TokenEntityBuilder)", "MapBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "Widget(BuildContext,AsyncSnapshot)", "ListBuilder()", "ListBuilder()", "~(GatewayTokenEntity)", "ListBuilder()", "TokenMeta(GatewayTokenEntity)", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "MapBuilder>(MapBuilder>)", "bool(GatewayOptionsEntity)", "bool(Country)", "int(Country,Country)", "List(PurchaseWrapper)", "Future(BillingClient)", "ProductWrapper(String)", "Future(BillingClient)", "~(String,IfdDirectory)", "Null(ProgressEvent)", "bool(Rule)", "List()", "~(Object,StackTrace,Object?)", "~(TapDragEndDetails)", "~(TapDragUpdateDetails)", "~(TapDragStartDetails)", "~(ChartDataGroup)", "_SelectionToolbarWrapper(BuildContext)", "bool(Selectable)", "bool(ScrollMetrics?)", "~(String,Object?)", "bool(Selectable,double)", "VelocityTracker(PointerEvent)", "~(_DragInfo)", "MediaQuery(BuildContext)", "DecorationTween(@)", "AlignmentGeometryTween(@)", "Tween<@>?(Tween<@>?,@,Tween<@>(@))", "Positioned(BuildContext,Widget?)", "Future(Response?)", "~(ForcePressGestureRecognizer)", "ForcePressGestureRecognizer()", "~(TapGestureRecognizer)", "TapGestureRecognizer()", "int(_ReadingOrderSortData,_ReadingOrderSortData)", "TextPosition(TextPosition,bool,TextBoundary)", "~([Duration?])", "bool(DisplayFeature)", "Object?(DismissIntent)", "Route<@>(RouteSettings)", "Map()", "ExpenseCategoryListItem(BuildContext,int)", "~(RestorationBucket)", "InvoiceTaxDetails(BuildContext)", "Future(ByteData?)", "Container(BuildContext,int)", "List(_SemanticsSortGroup)", "bool(BoxHitTestResult)", "List>(BuildContext)", "PopupMenuItem(String)", "ProductListItem(BuildContext,int)", "_InterestingSemanticsFragment(SemanticsConfiguration)", "RefreshIndicator(BuildContext)", "~(MapEntry)", "~([String?])", "~(SemanticsUpdate0)", "TextDirection()", "Padding(InvoiceEntity)", "~(ImageStreamListener)", "ImageStreamCompleter()", "bool(_TappableLabel)", "Semantics(BuildContext,Widget?)", "bool(Set)", "_ZoomExitTransition(BuildContext,Animation0,Widget?)", "_ZoomEnterTransition(BuildContext,Animation0,Widget?)", "LocalKey(MergeableMaterialItem)", "~(RenderBox?)", "ChildSemanticsConfigurationsResult(List)", "~(FocusHighlightMode)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "CustomSingleChildLayout(BuildContext)", "bool(BuildContext)", "Color?(DatePickerThemeData?)", "0^?(MaterialStateProperty<0^>?(DatePickerThemeData?),Set)", "0^?(0^?(DatePickerThemeData?))", "MaterialStateProperty?(ButtonStyle?)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "bool(DraggableScrollableNotification)", "LicenseEntry(int)", "Widget(BuildContext,bool)", "Null(BuiltList)", "double(_PointerPanZoomData)", "Color0(@,int?)", "num?(@,int?)", "Map(String?)", "Drag?(Offset)", "@(int,bool)", "Null(BuildContext,List)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "~(DiagnosticsNode)", "TargetPlatform()", "~([TapUpDetails?])", "Color?(Color?)", "Color()", "Null(BuildContext,String,String)", "XFile(String)", "bool(RenderBox)", "String(MapBuilder)", "~(ScaleUpdateDetails)", "Future(BuildContext,AppSidebarMode)", "~(ChartBehavior<@>)", "bool(ChartBehavior<@>)", "num?(int?)", "~(GestureListener)", "DropdownMenuItem(ImportType)", "bool(LayoutView)", "int(LayoutView,LayoutView)", "TaxConfigEntityBuilder(TaxConfigEntityBuilder)", "TaxConfigSubregionEntityBuilder(TaxConfigSubregionEntityBuilder)", "String(num?)", "Future(Object?)", "_EnableTwoFactor(BuildContext)", "Null(String,List)", "List()", "List?(int?)", "bool?(SubscriptionEntityBuilder)", "~(bool(String))", "Null(Duration)", "Null(Completer,String)", "String?()", "~(int?)", "VendorListItem(BuildContext,int)", "Null(BuildContext,String)", "_RuleCriteria(BuildContext)", "~(int?,int?)", "SpanMarker(SpanMarker)", "Null(GoogleSignInAuthentication)", "~(Attribution,int)", "_Channel()", "Future(RandomAccessFile)", "_RandomAccessFile(Object?)", "~(RandomAccessFile)", "bool(BlockSyntax)", "bool(InlineSyntax)", "bool(Delimiter)", "List()", "Null(Uint8List)", "Future<~>(BuildContext,Uint8List/(PdfPageFormat),PdfPageFormat)", "Null(PrintingInfo)", "~([~])", "~([Future<@>?])", "bool(EditEvent)", "ChangeSelectionCommand?(EditRequest)", "InsertTextCommand?(EditRequest)", "ConvertListItemToParagraphCommand?(EditRequest)", "int(int,LinkifyElement)", "~(Uint8List,String,int)", "int(String?)", "~(DocumentSelection)", "~(Symbol0,@)", "~([Future<~>?])", "SingleChildRenderObjectWidget(BuildContext,bool,Widget?)", "~([Object?])", "~(MapEntry)", "Widget(BuildContext,Rect?,Widget?)", "DeltaTextInputClientDecorator()", "~({addedComponents!List,changedComponents!List,movedComponents!List,removedComponents!List})", "bool(DocumentNode)", "~(SemanticsObject)", "Widget(BuildContext,Key,LeaderLink)", "~(GestureMode)", "Stack(BuildContext)", "CompositedTransformTarget(BuildContext,Widget?)", "KeyData()", "JSObject([JavaScriptObject?])", "DateTime(int[int,int,int,int,int,int,int])", "Future(String,Map)", "Matrix40(double)", "~(RenderBox,BoxConstraints{parentUsesSize:bool})", "~(Codec)", "~(double)", "~(Uint8List)", "ExpenseEntity(ExpenseEntity?,@)", "ExpenseEntity?(ExpenseEntity?,@)", "List()", "ViewListDiffResult?(int)", "Future([JavaScriptObject?])", "TextFieldKeyboardHandlerResult({keyEvent!RawKeyEvent,textFieldContext!SuperTextFieldContext,textLayout:ProseTextLayout?})", "Widget(BuildContext,Object?,ScrollController?)", "String(String?,DeleteDocumentSuccess)", "MapBuilder()", "MapBuilder()", "MapBuilder()", "MapBuilder()", "MapBuilder>()", "MapBuilder()", "MapBuilder()", "int(int?)", "bool(Color?)", "BorderSide?(Set)", "Rect()?(RenderBox)", "~(Intent?)", "int(TaskTime,TaskTime)", "Null(JSObject)", "bool(BankAccountEntity?)", "bool(InkHighlight?)", "Color(_HighlightType)", "Null(@,StackTrace)", "~(int,@)", "Map(String)", "Null(String,@)", "bool(Point[double?])", "Material(FlutterErrorDetails)", "bool(Point,double,double)", "String(int?)", "StyledToast(BuildContext)", "Locale(String)", "ChangeLayoutBanner(BuildContext)", "ProductScreenBuilder(BuildContext)", "ProductViewScreen(BuildContext)", "ProductEditScreen(BuildContext)", "ClientScreenBuilder(BuildContext)", "ClientViewScreen(BuildContext)", "ClientEditScreen(BuildContext)", "ClientPdfScreen(BuildContext)", "InvoiceScreenBuilder(BuildContext)", "InvoiceViewScreen(BuildContext)", "InvoiceEditScreen(BuildContext)", "InvoiceEmailScreen(BuildContext)", "InvoicePdfScreen(BuildContext)", "DocumentScreenBuilder(BuildContext)", "DocumentViewScreen(BuildContext)", "DocumentEditScreen(BuildContext)", "ExpenseScreenBuilder(BuildContext)", "ExpenseViewScreen(BuildContext)", "ExpenseEditScreen(BuildContext)", "VendorScreenBuilder(BuildContext)", "VendorViewScreen(BuildContext)", "VendorEditScreen(BuildContext)", "TaskScreenBuilder(BuildContext)", "TaskViewScreen(BuildContext)", "TaskEditScreen(BuildContext)", "ProjectScreenBuilder(BuildContext)", "ProjectViewScreen(BuildContext)", "ProjectEditScreen(BuildContext)", "PaymentScreenBuilder(BuildContext)", "PaymentViewScreen(BuildContext)", "Color?(Color?,Color?,Color?[Color?])", "ListTileTheme(BuildContext)", "QuoteScreenBuilder(BuildContext)", "QuoteViewScreen(BuildContext)", "QuoteEditScreen(BuildContext)", "QuoteEmailScreen(BuildContext)", "QuotePdfScreen(BuildContext)", "ScheduleScreenBuilder(BuildContext)", "ScheduleViewScreen(BuildContext)", "ScheduleEditScreen(BuildContext)", "TransactionRuleScreenBuilder(BuildContext)", "TransactionRuleViewScreen(BuildContext)", "TransactionRuleEditScreen(BuildContext)", "TransactionScreenBuilder(BuildContext)", "TransactionViewScreen(BuildContext)", "TransactionEditScreen(BuildContext)", "BankAccountScreenBuilder(BuildContext)", "BankAccountViewScreen(BuildContext)", "BankAccountEditScreen(BuildContext)", "PurchaseOrderScreenBuilder(BuildContext)", "PurchaseOrderViewScreen(BuildContext)", "PurchaseOrderEditScreen(BuildContext)", "PurchaseOrderEmailScreen(BuildContext)", "PurchaseOrderPdfScreen(BuildContext)", "RecurringExpenseScreenBuilder(BuildContext)", "RecurringExpenseViewScreen(BuildContext)", "RecurringExpenseEditScreen(BuildContext)", "SubscriptionScreenBuilder(BuildContext)", "SubscriptionViewScreen(BuildContext)", "SubscriptionEditScreen(BuildContext)", "TaskStatusScreenBuilder(BuildContext)", "TaskStatusViewScreen(BuildContext)", "TaskStatusEditScreen(BuildContext)", "ExpenseCategoryScreenBuilder(BuildContext)", "ExpenseCategoryViewScreen(BuildContext)", "ExpenseCategoryEditScreen(BuildContext)", "RecurringInvoiceScreenBuilder(BuildContext)", "RecurringInvoiceViewScreen(BuildContext)", "RecurringInvoiceEditScreen(BuildContext)", "RecurringInvoicePdfScreen(BuildContext)", "WebhookScreenBuilder(BuildContext)", "WebhookViewScreen(BuildContext)", "WebhookEditScreen(BuildContext)", "TokenScreenBuilder(BuildContext)", "TokenViewScreen(BuildContext)", "TokenEditScreen(BuildContext)", "PaymentTermScreenBuilder(BuildContext)", "PaymentTermEditScreen(BuildContext)", "PaymentTermViewScreen(BuildContext)", "DesignScreenBuilder(BuildContext)", "DesignViewScreen(BuildContext)", "DesignEditScreen(BuildContext)", "CreditScreenBuilder(BuildContext)", "CreditViewScreen(BuildContext)", "CreditEditScreen(BuildContext)", "CreditEmailScreen(BuildContext)", "CreditPdfScreen(BuildContext)", "UserScreenBuilder(BuildContext)", "UserViewScreen(BuildContext)", "UserEditScreen(BuildContext)", "GroupScreenBuilder(BuildContext)", "GroupViewScreen(BuildContext)", "GroupEditScreen(BuildContext)", "SettingsScreenBuilder(BuildContext)", "ReportsScreenBuilder(BuildContext)", "CompanyDetailsScreen(BuildContext)", "UserDetailsScreen(BuildContext)", "LocalizationScreen(BuildContext)", "PaymentsSettingsScreen(BuildContext)", "CompanyGatewayScreenBuilder(BuildContext)", "CompanyGatewayViewScreen(BuildContext)", "CompanyGatewayEditScreen(BuildContext)", "TaxSettingsScreen(BuildContext)", "TaxRateScreenBuilder(BuildContext)", "TaxRateViewScreen(BuildContext)", "TaxRateEditScreen(BuildContext)", "ProductSettingsScreen(BuildContext)", "ExpenseSettingsScreen(BuildContext)", "TaskSettingsScreen(BuildContext)", "ImportExportScreen(BuildContext)", "DeviceSettingsScreen(BuildContext)", "AccountManagementScreen(BuildContext)", "CustomFieldsScreen(BuildContext)", "GeneratedNumbersScreen(BuildContext)", "WorkflowSettingsScreen(BuildContext)", "InvoiceDesignScreen(BuildContext)", "ClientPortalScreen(BuildContext)", "EmailSettingsScreen(BuildContext)", "TemplatesAndRemindersScreen(BuildContext)", "CreditCardsAndBanksScreen(BuildContext)", "DataVisualizationsScreen(BuildContext)", "StatefulWidget?(BuildContext,MagnifierController,ValueNotifier)", "bool(LayoutChangedNotification)", "_Future<@>?()", "JSObject()", "ShapeBorderTween(@)", "Color0?(int?)", "Future(SharedPreferences)", "~(_LineRendererElement)", "Null(Function,Function)", "String(String,ClearLastError)", "String(String,LoadClientsFailure)", "String(String,LoadProductsFailure)", "String(String,LoadInvoicesFailure)", "String(String,LoadPaymentsFailure)", "String(String,LoadQuotesFailure)", "String(String,LoadProjectsFailure)", "String(String,LoadTasksFailure)", "String(String,LoadVendorsFailure)", "String(String,LoadExpensesFailure)", "String(String,LoadSchedulesFailure)", "String(String,LoadTransactionRulesFailure)", "String(String,LoadTransactionsFailure)", "String(String,LoadBankAccountsFailure)", "String(String,LoadPurchaseOrdersFailure)", "String(String,LoadRecurringExpensesFailure)", "String(String,LoadSubscriptionsFailure)", "String(String,LoadTaskStatusesFailure)", "String(String,LoadRecurringInvoicesFailure)", "String(String,LoadWebhooksFailure)", "String(String,LoadTokensFailure)", "String(String,LoadPaymentTermsFailure)", "String(String,LoadDesignsFailure)", "String(String,LoadCreditsFailure)", "String(String,RefreshDataFailure)", "bool(bool,DismissNativeWarning)", "PageTransitionsBuilder?(TargetPlatform)", "UserCompanyState(int)", "FadeTransition(BuildContext,Widget?)", "~(double,double)", "Palette(Palette())", "SelectableEntity?(@)", "bool(OverscrollIndicatorNotification)", "Widget(Widget,int,Animation0)", "Material(BuildContext,Widget?)", "~(UserCompanyEntity)", "~(UserCompanyState)", "Actions(BuildContext,Widget?)", "~(DragEndDetails{isClosing:bool?})", "Align(BuildContext,Widget?)", "ViewClipChain()", "Null(BuiltList)", "BankAccountUIStateBuilder(BankAccountUIStateBuilder)", "bool(bool?,ViewBankAccount)", "bool(bool?,ViewBankAccountList)", "bool(bool?,FilterBankAccountsByState)", "bool(bool?,FilterBankAccounts)", "bool(bool?,FilterBankAccountsByCustom1)", "bool(bool?,FilterBankAccountsByCustom2)", "bool(bool?,FilterBankAccountsByCustom3)", "bool(bool?,FilterBankAccountsByCustom4)", "int?(int?,UpdateBankAccountTab)", "Null(List,JavaScriptObject)", "String(String?,ArchiveBankAccountsSuccess)", "String(String?,DeleteBankAccountsSuccess)", "bool(SurfaceFrame,CkCanvas)", "_Future<@>(@)", "~(SelectionModelType)", "~(Size?)", "String(String?,SortBankAccounts)", "String(String?,FilterBankAccounts)", "String(String?,FilterBankAccountsByState)", "String(String?,FilterBankAccountsByCustom1)", "String(String?,FilterBankAccountsByCustom2)", "String(String?,FilterBankAccountsByCustom3)", "String(String?,FilterBankAccountsByCustom4)", "Animation0(bool)", "BankAccountEntity(BankAccountEntity?,UpdateBankAccount)", "~(List,TextDirection,double)", "BankAccountEntity(BankAccountEntity?,RestoreBankAccountsSuccess)", "BankAccountEntity(BankAccountEntity?,ArchiveBankAccountsSuccess)", "BankAccountEntity(BankAccountEntity?,DeleteBankAccountsSuccess)", "GlobalKey>(Widget)", "Center(int)", "InputDecorator(BuildContext,Widget?)", "~(String,ChartBehavior0<@>)", "List(BuiltMap,BuiltList,StaticState,BuiltMap,String?)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "BankAccountEntity(@)", "UnmanagedRestorationScope(FormFieldState)", "ThemeDataTween(@)", "ThemeData()", "MapEntry>(Object,ThemeExtension<@>)", "_MergClientPicker(BuildContext)", "bool(MapEntry>)", "TimeOfDay(int)", "Offset(double,double)", "~(List<_TappableLabel>,double)", "~(List<_TappableLabel>?)", "Null(BuiltList)", "~(ChartStateBehavior>,AnimationController)", "~({animation!Animation0,controller!AnimationController,max!double,min!double,target!double,tween!Tween})", "TimeOfDay()", "ClientUIStateBuilder(ClientUIStateBuilder)", "bool(bool?,ViewClient)", "bool(bool?,ViewClientList)", "bool(bool?,FilterClientsByState)", "bool(bool?,FilterClients)", "bool(bool?,FilterClientsByCustom1)", "bool(bool?,FilterClientsByCustom2)", "bool(bool?,FilterClientsByCustom3)", "bool(bool?,FilterClientsByCustom4)", "int?(int?,UpdateClientTab)", "Completer?(Completer?,EditClient)", "Completer?(Completer?,EditClient)", "ClientContactEntity(ClientContactEntity?,EditClient)", "ClientContactEntity(ClientContactEntity?,EditContact)", "String(String?,ArchiveClientsSuccess)", "String(String?,DeleteClientsSuccess)", "String?(String?,ViewClient)", "String(String?,AddClientSuccess)", "String(String?,ShowPdfClient)", "String(String?,SortClients)", "String(String?,FilterClients)", "String(String?,FilterClientsByState)", "String(String?,FilterClientsByCustom1)", "String(String?,FilterClientsByCustom2)", "String(String?,FilterClientsByCustom3)", "String(String?,FilterClientsByCustom4)", "Widget(LegendEntry<@>)", "ClientEntity(ClientEntity?,SaveClientSuccess)", "ClientEntity(ClientEntity?,AddClientSuccess)", "ClientEntity(ClientEntity?,RestoreClientSuccess)", "ClientEntity(ClientEntity?,ArchiveClientsSuccess)", "ClientEntity(ClientEntity?,DeleteClientsSuccess)", "ClientEntity(ClientEntity?,EditClient)", "ClientEntity(ClientEntity?,UpdateClient)", "ClientEntity(ClientEntity?,AddContact)", "ClientEntity(ClientEntity?,DeleteContact)", "ClientEntity(ClientEntity?,UpdateContact)", "ClientEntity(ClientEntity?,ViewClient)", "ClientEntity(ClientEntity?,ViewClientList)", "ClientEntity(ClientEntity?,SelectCompany)", "ClientEntity(ClientEntity?,DiscardChanges)", "~(TimePickerEntryMode)", "SingleChildScrollView(BuildContext,BoxConstraints)", "List(BuiltMap,BuiltList,BuiltMap,StaticState)", "~(_HourMinuteMode)", "MergeSemantics(int)", "List(SelectionState,BuiltMap,BuiltList,BuiltMap,ListUIState,BuiltMap,StaticState)", "TextStyle()", "ClientEntity(@)", "UserCompanyStateBuilder(UserCompanyStateBuilder)", "UserCompanyEntity(UserCompanyEntity?,SaveEInvoiceCertificateSuccess)", "BoxDecoration()", "UserCompanyEntity(UserCompanyEntity?,UpdateReportSettings)", "Brightness()", "UserCompanyEntity(UserCompanyEntity?,SaveAuthUserSuccess)", "UserCompanyEntity(UserCompanyEntity?,ConnectOAuthUserSuccess)", "UserCompanyEntity(UserCompanyEntity?,ConnecGmailUserSuccess)", "UserCompanyEntity(UserCompanyEntity?,DisconnectOAuthUserSuccess)", "UserCompanyEntity(UserCompanyEntity?,DisconnectOAuthMailerSuccess)", "UserCompanyEntity(UserCompanyEntity?,DisableTwoFactorSuccess)", "UserCompanyEntity(UserCompanyEntity?,SaveUserSettingsSuccess)", "UserCompanyEntity(UserCompanyEntity?,UpdateCompanyLanguage)", "UserCompanyEntity(UserCompanyEntity?,UpdateDashboardFields)", "UserCompanyEntity?(UserCompanyEntity?,UpdateDashboardFieldSettingss)", "CompanyEntityBuilder(UserCompanyEntityBuilder)", "int(int,LoadCompanySuccess)", "int(int,LoadExpensesSuccess)", "List(BuiltMap,BuiltList)", "bool(CompanyEntity?,BuiltMap,BuiltMap)", "List(CompanyEntity?,BuiltMap,BuiltMap)", "List(String?,UserCompanyState)", "ProductEntity(String)", "TextTheme()", "ClientEntity(String)", "bool(ClientEntity)", "~(JSObject)", "~(Surface)", "PaymentEntity(String)", "Future(ImmutableBuffer{allowUpscaling:bool,cacheHeight:int?,cacheWidth:int?})", "ProjectEntity(String)", "Future(ImmutableBuffer{getTargetSize:TargetImageSize(int,int)?})", "EdgeInsetsGeometry(EdgeInsetsGeometry,ShapeBorder)", "ShapeBorder(ShapeBorder)", "int(BaseEntity?,BaseEntity?)", "bool(ShapeBorder)", "String(ShapeBorder)", "double(double,FlutterView)", "Null(BuiltList)", "CompanyGatewayUIStateBuilder(CompanyGatewayUIStateBuilder)", "bool(bool?,ViewCompanyGateway)", "bool(bool?,ViewCompanyGatewayList)", "bool(bool?,FilterCompanyGatewaysByState)", "bool(bool?,FilterCompanyGateways)", "bool(bool?,FilterCompanyGatewaysByCustom1)", "bool(bool?,FilterCompanyGatewaysByCustom2)", "bool(bool?,FilterCompanyGatewaysByCustom3)", "bool(bool?,FilterCompanyGatewaysByCustom4)", "String(String?,ArchiveCompanyGatewaySuccess)", "String(String?,DeleteCompanyGatewaySuccess)", "String?(String?,ViewCompanyGateway)", "String(String?,AddCompanyGatewaySuccess)", "String(String?,SortCompanyGateways)", "String(String?,FilterCompanyGateways)", "String(String?,FilterCompanyGatewaysByState)", "String(String?,FilterCompanyGatewaysByCustom1)", "String(String?,FilterCompanyGatewaysByCustom2)", "String(String?,FilterCompanyGatewaysByCustom3)", "String(String?,FilterCompanyGatewaysByCustom4)", "CompanyGatewayEntity(CompanyGatewayEntity?,RestoreCompanyGatewaySuccess)", "CompanyGatewayEntity(CompanyGatewayEntity?,ArchiveCompanyGatewaySuccess)", "CompanyGatewayEntity(CompanyGatewayEntity?,DeleteCompanyGatewaySuccess)", "CompanyGatewayEntity(CompanyGatewayEntity?,UpdateCompanyGateway)", "bool(double)", "Color(double)", "_LiveImage()", "List(BuiltMap,BuiltList,ListUIState,String?,bool)", "double(String,BuiltMap)", "~(ImageInfo?,bool)", "EntityStats(String,BuiltMap)", "~(String,CompanyGatewayEntity)", "Future<~>(Object,StackTrace?)", "Padding(Widget)", "Null(AssetManifest)", "int(TableRow)", "~(ImageChunkEvent)", "~(Object,StackTrace?)?(ImageStreamListener)", "~(ImageChunkEvent)?(ImageStreamListener)", "Padding(int)", "Paint(BoxShadow)", "Rect(BoxShadow)", "CreditUIStateBuilder(CreditUIStateBuilder)", "bool(bool?,ViewCredit)", "bool(bool?,ViewCreditList)", "bool(bool?,FilterCreditsByState)", "bool(bool?,FilterCreditsByStatus)", "bool(bool?,FilterCredits)", "bool(bool?,FilterCreditsByCustom1)", "bool(bool?,FilterCreditsByCustom2)", "bool(bool?,FilterCreditsByCustom3)", "bool(bool?,FilterCreditsByCustom4)", "int?(int?,UpdateCreditTab)", "String?(String?,ShowPdfCredit)", "int?(int?,EditCredit)", "int?(int?,EditCreditItem)", "String(String?,ArchiveCreditsSuccess)", "String(String?,DeleteCreditsSuccess)", "String?(String?,ViewCredit)", "String(String?,AddCreditSuccess)", "String(String?,ShowEmailCredit)", "String(String?,ShowPdfCredit)", "String(String?,SortCredits)", "String(String?,FilterCredits)", "String(String?,FilterCreditsByState)", "String(String?,FilterCreditsByStatus)", "String(String?,FilterCreditsByCustom1)", "String(String?,FilterCreditsByCustom2)", "String(String?,FilterCreditsByCustom3)", "String(String?,FilterCreditsByCustom4)", "InvoiceEntity(InvoiceEntity?,UpdateCredit)", "Path(BoxShadow)", "InvoiceEntity(InvoiceEntity?,MoveCreditItem)", "InvoiceEntity(InvoiceEntity?,DeleteCreditItem)", "InvoiceEntity(InvoiceEntity?,UpdateCreditItem)", "InvoiceEntity(InvoiceEntity?,UpdateCreditClient)", "InvoiceEntity(InvoiceEntity?,RestoreCreditsSuccess)", "InvoiceEntity(InvoiceEntity?,ArchiveCreditsSuccess)", "InvoiceEntity(InvoiceEntity?,DeleteCreditsSuccess)", "InvoiceEntity(InvoiceEntity?,AddCreditContact)", "InvoiceEntity(InvoiceEntity?,RemoveCreditContact)", "bool(int,bool)", "List(Size)", "TextAlign()", "~(@,StackTrace)", "LineMetrics(LineMetrics)", "DiagnosticsNode(InlineSpan)", "List(BuiltMap,BuiltMap,BuiltMap,BuiltList,String,BuiltMap,List)", "List(SelectionState,BuiltMap,BuiltList,BuiltMap,BuiltMap,BuiltMap,ListUIState,BuiltMap)", "Paint?()", "Color?()", "Future()", "DashboardUIStateBuilder(DashboardUIStateBuilder)", "BuiltMap>(BuiltMap>,UpdateDashboardSelection)", "HitTestResult(Offset,int)", "BuiltMap>(BuiltMap>,SelectCompany)", "EntityType?(EntityType?,UpdateDashboardEntityType)", "bool?(bool?,UpdateDashboardSidebar)", "String(double,double,String)", "Size()", "~(int,bool(FlutterHtmlKeyboardEvent))", "~(TextSelection)", "bool(InlineSpanSemanticsInformation)", "Rect(Rect?,TextBox)", "~(String,Duration)", "ChartContainerRenderObject<@>()", "MouseCursor0(MouseTrackerAnnotation)", "List(BuiltMap,String)", "~(MouseTrackerAnnotation,Matrix40)", "bool(MouseTrackerAnnotation)", "List(BuiltMap,BuiltMap)", "int(PaymentEntity?,PaymentEntity?)", "List(BuiltMap,BuiltMap)", "bool(int,int)", "List(BuiltMap,BuiltMap)", "List(BuiltMap,BuiltMap)", "~(List<_InterestingSemanticsFragment>{isMergeUp:bool})", "~(List,JavaScriptObject)", "Future(JavaScriptObject)", "~(_SelectableFragment)", "bool(_SelectableFragment)", "Null(BuiltList)", "DesignUIStateBuilder(DesignUIStateBuilder)", "bool(bool?,ViewDesign)", "bool(bool?,ViewDesignList)", "bool(bool?,FilterDesignsByState)", "bool(bool?,FilterDesigns)", "bool(bool?,FilterDesignsByCustom1)", "bool(bool?,FilterDesignsByCustom2)", "bool(bool?,FilterDesignsByCustom3)", "bool(bool?,FilterDesignsByCustom4)", "String(String?,ArchiveDesignsSuccess)", "String(String?,DeleteDesignsSuccess)", "String(String?,SortDesigns)", "String(String?,FilterDesigns)", "String(String?,FilterDesignsByState)", "String(String?,FilterDesignsByCustom1)", "String(String?,FilterDesignsByCustom2)", "String(String?,FilterDesignsByCustom3)", "String(String?,FilterDesignsByCustom4)", "DesignEntity(DesignEntity?,RestoreDesignsSuccess)", "DesignEntity(DesignEntity?,ArchiveDesignsSuccess)", "DesignEntity(DesignEntity?,DeleteDesignsSuccess)", "DesignEntity(DesignEntity?,UpdateDesign)", "~(Iterable)", "OneSequenceGestureRecognizer(Factory)", "List(BuiltMap,BuiltList,ListUIState)", "DesignEntity(@)", "TransformLayer?(PaintingContext,Offset)", "bool(SliverHitTestResult{crossAxisPosition!double,mainAxisPosition!double})", "_ButtonSanitizer()", "Map(WebDropItem)", "bool(RenderSliver)", "CkCanvas(CkPictureRecorder)", "Null(Uint8List?)", "DocumentUIStateBuilder(DocumentUIStateBuilder)", "bool(bool?,ViewDocument)", "bool(bool?,ViewDocumentList)", "bool(bool?,FilterDocumentsByState)", "bool(bool?,FilterDocumentsByStatus)", "bool(bool?,FilterDocuments)", "bool(bool?,FilterDocumentsByCustom1)", "bool(bool?,FilterDocumentsByCustom2)", "bool(bool?,FilterDocumentsByCustom3)", "bool(bool?,FilterDocumentsByCustom4)", "String(String?,ArchiveDocumentSuccess)", "~(FrameTiming)", "String?(String?,ViewDocument)", "String(String?,SortDocuments)", "String(String?,FilterDocuments)", "String(String?,FilterDocumentsByState)", "String(String?,FilterDocumentsByStatus)", "String(String?,FilterDocumentsByCustom1)", "String(String?,FilterDocumentsByCustom2)", "String(String?,FilterDocumentsByCustom3)", "String(String?,FilterDocumentsByCustom4)", "DocumentEntity(DocumentEntity?,UpdateDocument)", "~(int,_FrameCallbackEntry)", "~(SemanticsActionEvent)", "~(SemanticsNode)", "_PointerState()", "SemanticsNode(_TraversalSortNode)", "DiagnosticsNode(SemanticsNode)", "WebDropItem(Map<@,@>)", "XFile(WebDropItem)", "int(SemanticsNode)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "SemanticsNode(int)", "InvoiceItemEntity(BaseEntity)", "~(SemanticsTag)", "~(SemanticsAction,~(Object?))", "ByteData(ByteData?)", "Future<_AssetManifestBin>(String)", "ExpenseUIStateBuilder(ExpenseUIStateBuilder)", "bool(bool?,ViewExpense)", "bool(bool?,ViewExpenseList)", "bool(bool?,FilterExpensesByState)", "bool(bool?,FilterExpensesByStatus)", "bool(bool?,FilterExpenses)", "bool(bool?,FilterExpensesByCustom1)", "bool(bool?,FilterExpensesByCustom2)", "bool(bool?,FilterExpensesByCustom3)", "bool(bool?,FilterExpensesByCustom4)", "int?(int?,UpdateExpenseTab)", "String(String?,ArchiveExpenseSuccess)", "String(String?,DeleteExpenseSuccess)", "String?(String?,ViewExpense)", "String(String?,AddExpenseSuccess)", "String(String?,SortExpenses)", "String(String?,FilterExpenses)", "String(String?,FilterExpensesByState)", "String(String?,FilterExpensesByStatus)", "String(String?,FilterExpensesByCustom1)", "String(String?,FilterExpensesByCustom2)", "String(String?,FilterExpensesByCustom3)", "String(String?,FilterExpensesByCustom4)", "ExpenseEntity(ExpenseEntity?,RestoreExpenseSuccess)", "ExpenseEntity(ExpenseEntity?,ArchiveExpenseSuccess)", "ExpenseEntity(ExpenseEntity?,DeleteExpenseSuccess)", "ExpenseEntity(ExpenseEntity?,UpdateExpense)", "AssetMetadata(Map)", "Map(TextInputConfiguration)", "TextInputConfiguration(AutofillClient)", "Stream()", "Future(String?)", "InvoiceEntity?(ExpenseEntity,BuiltMap)", "Future<~>(ByteData?,~(ByteData?))", "Future>(@)", "List(BuiltMap,String?)", "~(RawKeyEvent)", "~(DropEvent)", "RawKeyEventData()", "~(File,Uint8List?,String?,Stream>?)", "Null(BuiltList)", "ExpenseCategoryUIStateBuilder(ExpenseCategoryUIStateBuilder)", "Completer?(Completer?,EditExpenseCategory)", "Completer?(Completer?,EditExpenseCategory)", "bool(bool?,ViewExpenseCategory)", "bool(bool?,ViewExpenseCategoryList)", "bool(bool?,FilterExpenseCategoriesByState)", "bool(bool?,FilterExpenseCategories)", "bool(bool?,FilterExpenseCategoriesByCustom1)", "bool(bool?,FilterExpenseCategoriesByCustom2)", "bool(bool?,FilterExpenseCategoriesByCustom3)", "bool(bool?,FilterExpenseCategoriesByCustom4)", "String(String?,ArchiveExpenseCategoriesSuccess)", "String(String?,DeleteExpenseCategoriesSuccess)", "String(String?,SortExpenseCategories)", "String(String?,FilterExpenseCategories)", "String(String?,FilterExpenseCategoriesByState)", "String(String?,FilterExpenseCategoriesByCustom1)", "String(String?,FilterExpenseCategoriesByCustom2)", "String(String?,FilterExpenseCategoriesByCustom3)", "String(String?,FilterExpenseCategoriesByCustom4)", "ExpenseCategoryEntity(ExpenseCategoryEntity?,RestoreExpenseCategoriesSuccess)", "ExpenseCategoryEntity(ExpenseCategoryEntity?,ArchiveExpenseCategoriesSuccess)", "ExpenseCategoryEntity(ExpenseCategoryEntity?,DeleteExpenseCategoriesSuccess)", "ExpenseCategoryEntity(ExpenseCategoryEntity?,UpdateExpenseCategory)", "Map(Map,String)", "List()", "List(List)", "List(BuiltMap,BuiltList,StaticState,BuiltMap,String)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "double(String,BuiltMap)", "double(num)", "List<@>(String)", "ExpenseCategoryEntity(@)", "List(SelectionRect)", "PlatformViewSurface(BuildContext,PlatformViewController)", "_HtmlElementViewController(PlatformViewCreationParams)", "Null(BuiltList)", "GroupUIStateBuilder(GroupUIStateBuilder)", "bool(bool?,ViewGroup)", "bool(bool?,ViewGroupList)", "bool(bool?,FilterGroupsByState)", "bool(bool?,FilterGroups)", "String(String?,ArchiveGroupSuccess)", "String(String?,DeleteGroupSuccess)", "String?(String?,ViewGroup)", "String(String?,AddGroupSuccess)", "String(String?,SortGroups)", "String(String?,FilterGroups)", "String(String?,FilterGroupsByState)", "GroupEntity(GroupEntity?,RestoreGroupSuccess)", "GroupEntity(GroupEntity?,ArchiveGroupSuccess)", "GroupEntity(GroupEntity?,DeleteGroupSuccess)", "GroupEntity(GroupEntity?,UpdateGroup)", "Future<~>(PointerEvent)", "~(String,int)", "Future(String)", "~(Action)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "EntityStats(BuiltMap,String)", "TickerFuture({from:double?})", "SimpleDialogOption(EmailTemplate)", "InvoiceUIStateBuilder(InvoiceUIStateBuilder)", "bool(bool?,ViewInvoice)", "bool(bool?,ViewInvoiceList)", "bool(bool?,FilterInvoicesByState)", "bool(bool?,FilterInvoicesByStatus)", "bool(bool?,FilterInvoices)", "bool(bool?,FilterInvoicesByCustom1)", "bool(bool?,FilterInvoicesByCustom2)", "bool(bool?,FilterInvoicesByCustom3)", "bool(bool?,FilterInvoicesByCustom4)", "int?(int?,UpdateInvoiceTab)", "String?(String?,ShowPdfInvoice)", "int?(int?,EditInvoice)", "int?(int?,EditInvoiceItem)", "String(String?,ArchiveInvoicesSuccess)", "String(String?,DeleteInvoicesSuccess)", "String?(String?,ViewInvoice)", "String(String?,AddInvoiceSuccess)", "String(String?,ShowEmailInvoice)", "String(String?,ShowPdfInvoice)", "String(String?,SortInvoices)", "String(String?,FilterInvoices)", "String(String?,FilterInvoicesByState)", "String(String?,FilterInvoicesByStatus)", "String(String?,FilterInvoicesByCustom1)", "String(String?,FilterInvoicesByCustom2)", "String(String?,FilterInvoicesByCustom3)", "String(String?,FilterInvoicesByCustom4)", "InvoiceEntity(InvoiceEntity?,UpdateInvoice)", "~(_ChildEntry)", "InvoiceEntity(InvoiceEntity?,MoveInvoiceItem)", "InvoiceEntity(InvoiceEntity?,DeleteInvoiceItem)", "InvoiceEntity(InvoiceEntity?,UpdateInvoiceItem)", "InvoiceEntity(InvoiceEntity?,UpdateInvoiceClient)", "InvoiceEntity(InvoiceEntity?,RestoreInvoicesSuccess)", "InvoiceEntity(InvoiceEntity?,ArchiveInvoicesSuccess)", "InvoiceEntity(InvoiceEntity?,DeleteInvoicesSuccess)", "InvoiceEntity(InvoiceEntity?,AddInvoiceContact)", "InvoiceEntity(InvoiceEntity?,RemoveInvoiceContact)", "Widget(_ChildEntry)", "bool(Widget)", "bool(String,BuiltMap)", "InvoiceEntity?(InvoiceEntity,BuiltMap)", "List(BuiltMap,BuiltMap,BuiltMap,BuiltList,String,BuiltMap,List,String?)", "List(SelectionState,BuiltMap,BuiltList,BuiltMap,BuiltMap,BuiltMap,ListUIState,BuiltMap,String?)", "~(_AnimationDirection)", "Route<@>?(RouteSettings)", "~(String,int?)", "Null(BuiltList)", "PaymentUIStateBuilder(PaymentUIStateBuilder)", "bool(bool?,ViewPayment)", "bool(bool?,ViewPaymentList)", "bool(bool?,FilterPaymentsByState)", "bool(bool?,FilterPaymentsByStatus)", "bool(bool?,FilterPayments)", "bool(bool?,FilterPaymentsByCustom1)", "bool(bool?,FilterPaymentsByCustom2)", "bool(bool?,FilterPaymentsByCustom3)", "bool(bool?,FilterPaymentsByCustom4)", "int?(int?,UpdatePaymentTab)", "String(String?,ArchivePaymentsSuccess)", "String(String?,DeletePaymentsSuccess)", "String?(String?,ViewPayment)", "String(String?,AddPaymentSuccess)", "String(String?,SortPayments)", "String(String?,FilterPayments)", "String(String?,FilterPaymentsByState)", "String(String?,FilterPaymentsByStatus)", "String(String?,FilterPaymentsByCustom1)", "String(String?,FilterPaymentsByCustom2)", "String(String?,FilterPaymentsByCustom3)", "String(String?,FilterPaymentsByCustom4)", "PaymentEntity(PaymentEntity?,RestorePaymentsSuccess)", "PaymentEntity(PaymentEntity?,ArchivePaymentsSuccess)", "PaymentEntity(PaymentEntity?,DeletePaymentsSuccess)", "PaymentEntity(PaymentEntity?,UpdatePayment)", "String(PaymentEntity)", "~(AutocompletePreviousOptionIntent)", "bool(String,PaymentEntity)", "~(AutocompleteNextOptionIntent)", "~(String,String?)", "CompositedTransformFollower(BuildContext)", "bool(AutofillClient)", "List(SelectionState,BuiltMap,BuiltList,BuiltMap,BuiltMap,BuiltMap,BuiltMap,ListUIState)", "EntityStats(String,BuiltMap,BuiltMap)", "PaymentEntity(@)", "AutofillClient()", "bool(KeepAliveNotification)", "String(String,Color)", "Null(BuiltList)", "PaymentTermUIStateBuilder(PaymentTermUIStateBuilder)", "bool(bool?,ViewPaymentTerm)", "bool(bool?,ViewPaymentTermList)", "bool(bool?,FilterPaymentTermsByState)", "bool(bool?,FilterPaymentTerms)", "bool(bool?,FilterPaymentTermsByCustom1)", "bool(bool?,FilterPaymentTermsByCustom2)", "bool(bool?,FilterPaymentTermsByCustom3)", "bool(bool?,FilterPaymentTermsByCustom4)", "String(String?,ArchivePaymentTermsSuccess)", "String(String?,DeletePaymentTermsSuccess)", "String(String?,SortPaymentTerms)", "String(String?,FilterPaymentTerms)", "String(String?,FilterPaymentTermsByState)", "String(String?,FilterPaymentTermsByCustom1)", "String(String?,FilterPaymentTermsByCustom2)", "String(String?,FilterPaymentTermsByCustom3)", "String(String?,FilterPaymentTermsByCustom4)", "PaymentTermEntity(PaymentTermEntity?,RestorePaymentTermsSuccess)", "PaymentTermEntity(PaymentTermEntity?,ArchivePaymentTermsSuccess)", "PaymentTermEntity(PaymentTermEntity?,DeletePaymentTermsSuccess)", "PaymentTermEntity(PaymentTermEntity?,UpdatePaymentTerm)", "ClipPath(BuildContext)", "TextScaler()", "~(int,int,int)", "Uint8List(@,@)", "List(BuiltMap,BuiltList)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "Future()", "SimpleDialogOption(String)", "Future<~>(double)", "Future<~>(@)", "DefaultSelectionStyle(BuildContext)", "Null(BuiltList)", "ProductUIStateBuilder(ProductUIStateBuilder)", "bool(bool?,ViewProduct)", "bool(bool?,ViewProductList)", "bool(bool?,FilterProductsByState)", "bool(bool?,FilterProducts)", "bool(bool?,FilterProductsByCustom1)", "bool(bool?,FilterProductsByCustom2)", "bool(bool?,FilterProductsByCustom3)", "bool(bool?,FilterProductsByCustom4)", "int?(int?,UpdateProductTab)", "ProductEntity(ProductEntity?,UpdateProduct)", "ProductEntity(ProductEntity?,RestoreProductsSuccess)", "ProductEntity(ProductEntity?,ArchiveProductsSuccess)", "ProductEntity(ProductEntity?,DeleteProductsSuccess)", "String(String?,ArchiveProductsSuccess)", "String(String?,DeleteProductsSuccess)", "String?(String?,ViewProduct)", "String(String?,AddProductSuccess)", "String(String?,SortProducts)", "String(String?,FilterProducts)", "String(String?,FilterProductsByState)", "String(String?,FilterProductsByCustom1)", "String(String?,FilterProductsByCustom2)", "String(String?,FilterProductsByCustom3)", "String(String?,FilterProductsByCustom4)", "UnregisteredFont()", "Rect(DisplayFeature)", "List(BuiltMap,BuiltList,BuiltMap)", "List(BuiltMap)", "List(SelectionState,BuiltMap,BuiltList,ListUIState,BuiltMap)", "ProductEntity(@)", "LayoutBuilder(BuildContext,double,Widget?)", "_DraggableSheetExtent()", "~(Layer0)", "Null(BuiltList)", "ProjectUIStateBuilder(ProjectUIStateBuilder)", "bool(bool?,ViewProject)", "bool(bool?,ViewProjectList)", "bool(bool?,FilterProjectsByState)", "bool(bool?,FilterProjects)", "bool(bool?,FilterProjectsByCustom1)", "bool(bool?,FilterProjectsByCustom2)", "bool(bool?,FilterProjectsByCustom3)", "bool(bool?,FilterProjectsByCustom4)", "int?(int?,UpdateProjectTab)", "Completer?(Completer?,EditProject)", "Completer?(Completer?,EditProject)", "String(String?,ArchiveProjectSuccess)", "String(String?,DeleteProjectSuccess)", "String?(String?,ViewProject)", "String(String?,AddProjectSuccess)", "String(String?,SortProjects)", "String(String?,FilterProjects)", "String(String?,FilterProjectsByState)", "String(String?,FilterProjectsByCustom1)", "String(String?,FilterProjectsByCustom2)", "String(String?,FilterProjectsByCustom3)", "String(String?,FilterProjectsByCustom4)", "ProjectEntity(ProjectEntity?,RestoreProjectSuccess)", "ProjectEntity(ProjectEntity?,ArchiveProjectSuccess)", "ProjectEntity(ProjectEntity?,DeleteProjectSuccess)", "ProjectEntity(ProjectEntity?,UpdateProject)", "String(ProjectEntity)", "~(Blob?)", "bool(String,ProjectEntity)", "bool(Element2)", "int(TaskEntity?,TaskEntity?)", "~(NotoFont)", "List(BuiltMap,BuiltList,BuiltMap,BuiltMap,String?)", "List(SelectionState,BuiltMap,BuiltList,ListUIState,BuiltMap,BuiltMap)", "~(TransposeCharactersIntent)", "~(String,ProjectEntity)", "ProjectEntity(@)", "PurchaseOrderUIStateBuilder(PurchaseOrderUIStateBuilder)", "bool(bool?,ViewPurchaseOrder)", "bool(bool?,ViewPurchaseOrderList)", "bool(bool?,FilterPurchaseOrdersByState)", "bool(bool?,FilterPurchaseOrdersByStatus)", "bool(bool?,FilterPurchaseOrders)", "bool(bool?,FilterPurchaseOrdersByCustom1)", "bool(bool?,FilterPurchaseOrdersByCustom2)", "bool(bool?,FilterPurchaseOrdersByCustom3)", "bool(bool?,FilterPurchaseOrdersByCustom4)", "int?(int?,UpdatePurchaseOrderTab)", "String?(String?,ShowPdfPurchaseOrder)", "int?(int?,EditPurchaseOrder)", "int?(int?,EditPurchaseOrderItem)", "String(String?,ArchivePurchaseOrdersSuccess)", "String(String?,DeletePurchaseOrdersSuccess)", "String?(String?,ViewPurchaseOrder)", "String(String?,AddPurchaseOrderSuccess)", "String(String?,ShowEmailPurchaseOrder)", "String(String?,ShowPdfPurchaseOrder)", "String(String?,SortPurchaseOrders)", "String(String?,FilterPurchaseOrders)", "String(String?,FilterPurchaseOrdersByState)", "String(String?,FilterPurchaseOrdersByStatus)", "String(String?,FilterPurchaseOrdersByCustom1)", "String(String?,FilterPurchaseOrdersByCustom2)", "String(String?,FilterPurchaseOrdersByCustom3)", "String(String?,FilterPurchaseOrdersByCustom4)", "InvoiceEntity(InvoiceEntity?,UpdatePurchaseOrder)", "~(ReplaceTextIntent)", "InvoiceEntity(InvoiceEntity?,MovePurchaseOrderItem)", "InvoiceEntity(InvoiceEntity?,DeletePurchaseOrderItem)", "InvoiceEntity(InvoiceEntity?,UpdatePurchaseOrderItem)", "InvoiceEntity(InvoiceEntity?,UpdatePurchaseOrderVendor)", "InvoiceEntity(InvoiceEntity?,RestorePurchaseOrdersSuccess)", "InvoiceEntity(InvoiceEntity?,ArchivePurchaseOrdersSuccess)", "InvoiceEntity(InvoiceEntity?,DeletePurchaseOrdersSuccess)", "InvoiceEntity(InvoiceEntity?,AddPurchaseOrderContact)", "InvoiceEntity(InvoiceEntity?,RemovePurchaseOrderContact)", "~(ScrollToDocumentBoundaryIntent)", "~(ScrollIntent)", "List(BuiltMap,BuiltList,StaticState,BuiltMap,BuiltMap,BuiltMap,String)", "~(ExtendSelectionByPageIntent)", "QuoteUIStateBuilder(QuoteUIStateBuilder)", "bool(bool?,ViewQuote)", "bool(bool?,ViewQuoteList)", "bool(bool?,FilterQuotesByState)", "bool(bool?,FilterQuotesByStatus)", "bool(bool?,FilterQuotes)", "bool(bool?,FilterQuotesByCustom1)", "bool(bool?,FilterQuotesByCustom2)", "bool(bool?,FilterQuotesByCustom3)", "bool(bool?,FilterQuotesByCustom4)", "int?(int?,UpdateQuoteTab)", "String?(String?,ShowPdfQuote)", "int?(int?,EditQuote)", "int?(int?,EditQuoteItem)", "String(String?,ArchiveQuotesSuccess)", "String(String?,DeleteQuotesSuccess)", "String?(String?,ViewQuote)", "String(String?,AddQuoteSuccess)", "String(String?,ShowEmailQuote)", "String(String?,ShowPdfQuote)", "String(String?,SortQuotes)", "String(String?,FilterQuotes)", "String(String?,FilterQuotesByState)", "String(String?,FilterQuotesByStatus)", "String(String?,FilterQuotesByCustom1)", "String(String?,FilterQuotesByCustom2)", "String(String?,FilterQuotesByCustom3)", "String(String?,FilterQuotesByCustom4)", "InvoiceEntity(InvoiceEntity?,UpdateQuote)", "~(UpdateSelectionIntent)", "InvoiceEntity(InvoiceEntity?,MoveQuoteItem)", "InvoiceEntity(InvoiceEntity?,DeleteQuoteItem)", "InvoiceEntity(InvoiceEntity?,UpdateQuoteItem)", "InvoiceEntity(InvoiceEntity?,UpdateQuoteClient)", "InvoiceEntity(InvoiceEntity?,RestoreQuotesSuccess)", "InvoiceEntity(InvoiceEntity?,ArchiveQuotesSuccess)", "InvoiceEntity(InvoiceEntity?,DeleteQuotesSuccess)", "InvoiceEntity(InvoiceEntity?,AddQuoteContact)", "InvoiceEntity(InvoiceEntity?,RemoveQuoteContact)", "TextEditingValue(TextEditingValue,TextInputFormatter)", "~(List)", "List(BuiltMap,BuiltMap,BuiltMap,BuiltList,String,BuiltMap,List)", "RecurringExpenseUIStateBuilder(RecurringExpenseUIStateBuilder)", "bool(bool?,ViewRecurringExpense)", "bool(bool?,ViewRecurringExpenseList)", "bool(bool?,FilterRecurringExpensesByState)", "bool(bool?,FilterRecurringExpensesByStatus)", "bool(bool?,FilterRecurringExpenses)", "bool(bool?,FilterRecurringExpensesByCustom1)", "bool(bool?,FilterRecurringExpensesByCustom2)", "bool(bool?,FilterRecurringExpensesByCustom3)", "bool(bool?,FilterRecurringExpensesByCustom4)", "int?(int?,UpdateRecurringExpenseTab)", "String(String?,ArchiveRecurringExpensesSuccess)", "String(String?,DeleteRecurringExpensesSuccess)", "String(String?,SortRecurringExpenses)", "String(String?,FilterRecurringExpenses)", "String(String?,FilterRecurringExpensesByState)", "String(String?,FilterRecurringExpensesByStatus)", "String(String?,FilterRecurringExpensesByCustom1)", "String(String?,FilterRecurringExpensesByCustom2)", "String(String?,FilterRecurringExpensesByCustom3)", "String(String?,FilterRecurringExpensesByCustom4)", "ExpenseEntity(ExpenseEntity?,RestoreRecurringExpensesSuccess)", "ExpenseEntity(ExpenseEntity?,ArchiveRecurringExpensesSuccess)", "ExpenseEntity(ExpenseEntity?,DeleteRecurringExpensesSuccess)", "ExpenseEntity(ExpenseEntity?,UpdateRecurringExpense)", "EngineLineMetrics(ParagraphLine)", "Future<~>(PasteTextIntent)", "RecurringInvoiceUIStateBuilder(RecurringInvoiceUIStateBuilder)", "bool(bool?,ViewRecurringInvoice)", "bool(bool?,ViewRecurringInvoiceList)", "bool(bool?,FilterRecurringInvoicesByState)", "bool(bool?,FilterRecurringInvoicesByStatus)", "bool(bool?,FilterRecurringInvoices)", "bool(bool?,FilterRecurringInvoicesByCustom1)", "bool(bool?,FilterRecurringInvoicesByCustom2)", "bool(bool?,FilterRecurringInvoicesByCustom3)", "bool(bool?,FilterRecurringInvoicesByCustom4)", "int?(int?,UpdateRecurringInvoiceTab)", "String?(String?,ShowPdfRecurringInvoice)", "int?(int?,EditRecurringInvoice)", "int?(int?,EditRecurringInvoiceItem)", "String(String?,ArchiveRecurringInvoicesSuccess)", "String(String?,DeleteRecurringInvoicesSuccess)", "String?(String?,ViewRecurringInvoice)", "String(String?,AddRecurringInvoiceSuccess)", "String(String?,ShowEmailRecurringInvoice)", "String(String?,ShowPdfRecurringInvoice)", "String(String?,SortRecurringInvoices)", "String(String?,FilterRecurringInvoices)", "String(String?,FilterRecurringInvoicesByState)", "String(String?,FilterRecurringInvoicesByStatus)", "String(String?,FilterRecurringInvoicesByCustom1)", "String(String?,FilterRecurringInvoicesByCustom2)", "String(String?,FilterRecurringInvoicesByCustom3)", "String(String?,FilterRecurringInvoicesByCustom4)", "InvoiceEntity(InvoiceEntity?,UpdateRecurringInvoice)", "~(TextEditingValue)", "InvoiceEntity(InvoiceEntity?,MoveRecurringInvoiceItem)", "InvoiceEntity(InvoiceEntity?,DeleteRecurringInvoiceItem)", "InvoiceEntity(InvoiceEntity?,UpdateRecurringInvoiceItem)", "InvoiceEntity(InvoiceEntity?,UpdateRecurringInvoiceClient)", "InvoiceEntity(InvoiceEntity?,RestoreRecurringInvoicesSuccess)", "InvoiceEntity(InvoiceEntity?,ArchiveRecurringInvoicesSuccess)", "InvoiceEntity(InvoiceEntity?,DeleteRecurringInvoicesSuccess)", "InvoiceEntity(InvoiceEntity?,AddRecurringInvoiceContact)", "InvoiceEntity(InvoiceEntity?,RemoveRecurringInvoiceContact)", "bool(TextEditingValue?,TextEditingValue)", "CompositedTransformTarget(BuildContext,ViewportOffset)", "List(SelectionState,BuiltMap,BuiltMap,BuiltMap,BuiltList,ListUIState,BuiltMap)", "bool(HitTestEntry)", "@(@,@)", "DiagnosticsNode(FocusNode)", "bool(KeyMessage)", "Null(BuiltList)", "ScheduleUIStateBuilder(ScheduleUIStateBuilder)", "bool(bool?,ViewSchedule)", "bool(bool?,ViewScheduleList)", "bool(bool?,FilterSchedulesByState)", "bool(bool?,FilterSchedules)", "bool(bool?,FilterSchedulesByCustom1)", "bool(bool?,FilterSchedulesByCustom2)", "bool(bool?,FilterSchedulesByCustom3)", "bool(bool?,FilterSchedulesByCustom4)", "int?(int?,UpdateScheduleTab)", "String(String?,ArchiveSchedulesSuccess)", "String(String?,DeleteSchedulesSuccess)", "String(String?,SortSchedules)", "String(String?,FilterSchedules)", "String(String?,FilterSchedulesByState)", "String(String?,FilterSchedulesByCustom1)", "String(String?,FilterSchedulesByCustom2)", "String(String?,FilterSchedulesByCustom3)", "String(String?,FilterSchedulesByCustom4)", "ScheduleEntity(ScheduleEntity?,RestoreSchedulesSuccess)", "ScheduleEntity(ScheduleEntity?,ArchiveSchedulesSuccess)", "ScheduleEntity(ScheduleEntity?,DeleteSchedulesSuccess)", "ScheduleEntity(ScheduleEntity?,UpdateSchedule)", "~(_FocusTraversalGroupInfo)", "bool(_DirectionalPolicyDataEntry)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "ScheduleEntity(@)", "bool(Node1)", "bool(TraversalDirection)", "Null(UserCompanyEntity)", "Null(BaseEntity)", "SettingsUIState(SettingsUIState,ViewSettings)", "Set(_ReadingOrderSortData)", "SettingsUIState(SettingsUIState,UpdateCompany)", "SettingsUIState(SettingsUIState,UpdateSettings)", "SettingsUIState(SettingsUIState,UpdateUserSettings)", "SettingsUIState(SettingsUIState,ResetSettings)", "SettingsUIState(SettingsUIState,SaveCompanySuccess)", "SettingsUIState(SettingsUIState,DeleteDocumentSuccess)", "SettingsUIState(SettingsUIState,SaveGroupSuccess)", "SettingsUIState(SettingsUIState,SaveClientSuccess)", "SettingsUIState(SettingsUIState,SaveAuthUserSuccess)", "SettingsUIState(SettingsUIState,ConnectOAuthUserSuccess)", "SettingsUIState(SettingsUIState,DisconnectOAuthUserSuccess)", "SettingsUIState(SettingsUIState,DisconnectOAuthMailerSuccess)", "SettingsUIState(SettingsUIState,FilterSettings)", "SettingsUIState(SettingsUIState,ClearSettingsFilter)", "SettingsUIState(SettingsUIState,UpdateSettingsTab)", "SettingsUIState(SettingsUIState,UpdateSettingsTemplate)", "SettingsUIState(SettingsUIState,UpdatedSettingUI)", "SettingsUIState(SettingsUIState,ToggleShowNewSettings)", "SettingsUIState(SettingsUIState,ToggleShowPdfPreview)", "StaticStateBuilder(StaticStateBuilder)", "CurrencyEntity(@)", "SizeEntity(@)", "IndustryEntity(@)", "TimezoneEntity(@)", "DateFormatEntity(@)", "LanguageEntity(@)", "PaymentTypeEntity(@)", "CountryEntity(@)", "GatewayEntity(@)", "List(BuiltMap)", "Map(BuiltMap)", "List(BuiltMap)", "List(BuiltMap)", "List(BuiltMap)", "List(BuiltMap)", "List(BuiltMap)", "List(BuiltMap)", "List(BuiltMap)", "List(BuiltMap,bool)", "List(BuiltMap)", "BuiltMap(List<@>)", "FontEntity(@)", "Element2(Node1)", "List(BuildContext)", "Rect(_ReadingOrderSortData)", "Null(BuiltList)", "SubscriptionUIStateBuilder(SubscriptionUIStateBuilder)", "bool(bool?,ViewSubscription)", "bool(bool?,ViewSubscriptionList)", "bool(bool?,FilterSubscriptionsByState)", "bool(bool?,FilterSubscriptions)", "bool(bool?,FilterSubscriptionsByCustom1)", "bool(bool?,FilterSubscriptionsByCustom2)", "bool(bool?,FilterSubscriptionsByCustom3)", "bool(bool?,FilterSubscriptionsByCustom4)", "int?(int?,UpdateSubscriptionTab)", "String(String?,ArchiveSubscriptionsSuccess)", "String(String?,DeleteSubscriptionsSuccess)", "String(String?,SortSubscriptions)", "String(String?,FilterSubscriptions)", "String(String?,FilterSubscriptionsByState)", "String(String?,FilterSubscriptionsByCustom1)", "String(String?,FilterSubscriptionsByCustom2)", "String(String?,FilterSubscriptionsByCustom3)", "String(String?,FilterSubscriptionsByCustom4)", "SubscriptionEntity(SubscriptionEntity?,RestoreSubscriptionsSuccess)", "SubscriptionEntity(SubscriptionEntity?,ArchiveSubscriptionsSuccess)", "SubscriptionEntity(SubscriptionEntity?,DeleteSubscriptionsSuccess)", "SubscriptionEntity(SubscriptionEntity?,UpdateSubscription)", "int(_ReadingOrderDirectionalGroupData,_ReadingOrderDirectionalGroupData)", "List<_ReadingOrderSortData>(_ReadingOrderSortData,Iterable<_ReadingOrderSortData>)", "bool(_ReadingOrderSortData)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "SubscriptionEntity(@)", "int(BaseEntity,BaseEntity)", "bool(FormFieldState<@>)", "DiagnosticsProperty(Element0)", "Element0?(Element0)", "Null(BuiltList)", "TaskUIStateBuilder(TaskUIStateBuilder)", "bool(bool?,ViewTask)", "bool(bool?,ViewTaskList)", "bool(bool?,FilterTasksByState)", "bool(bool?,FilterTasksByStatus)", "bool(bool?,FilterTasks)", "bool(bool?,FilterTasksByCustom1)", "bool(bool?,FilterTasksByCustom2)", "bool(bool?,FilterTasksByCustom3)", "bool(bool?,FilterTasksByCustom4)", "int?(int?,UpdateTaskTab)", "int(int?,UpdateKanban)", "int?(int?,EditTask)", "int?(int?,EditTaskTime)", "String(String?,ArchiveTaskSuccess)", "String(String?,DeleteTaskSuccess)", "String?(String?,ViewTask)", "String(String?,AddTaskSuccess)", "String(String?,SortTasks)", "String(String?,FilterTasks)", "String(String?,FilterTasksByState)", "String(String?,FilterTasksByStatus)", "String(String?,FilterTasksByCustom1)", "String(String?,FilterTasksByCustom2)", "String(String?,FilterTasksByCustom3)", "String(String?,FilterTasksByCustom4)", "TaskEntity(TaskEntity?,RestoreTaskSuccess)", "TaskEntity(TaskEntity?,ArchiveTaskSuccess)", "TaskEntity(TaskEntity?,StartTasksSuccess)", "TaskEntity(TaskEntity?,StopTasksSuccess)", "TaskEntity(TaskEntity?,DeleteTaskSuccess)", "TaskEntity(TaskEntity?,UpdateTask)", "String(TaskEntity)", "Object?(int,Element0?)", "bool(String,TaskEntity)", "~(Element2)", "List(BuiltMap,String?,BuiltMap,BuiltMap,BuiltMap)", "Transaction(@,String)", "DoubleTapGestureRecognizer()", "TaskEntity(@)", "~(DoubleTapGestureRecognizer)", "Future<+(String,FontLoadError?)>()", "Radius()", "Null(BuiltList)", "TaskStatusUIStateBuilder(TaskStatusUIStateBuilder)", "bool(bool?,ViewTaskStatus)", "bool(bool?,ViewTaskStatusList)", "bool(bool?,FilterTaskStatusesByState)", "bool(bool?,FilterTaskStatuses)", "bool(bool?,FilterTaskStatusesByCustom1)", "bool(bool?,FilterTaskStatusesByCustom2)", "bool(bool?,FilterTaskStatusesByCustom3)", "bool(bool?,FilterTaskStatusesByCustom4)", "String(String?,ArchiveTaskStatusesSuccess)", "String(String?,DeleteTaskStatusesSuccess)", "String(String?,SortTaskStatuses)", "String(String?,FilterTaskStatuses)", "String(String?,FilterTaskStatusesByState)", "String(String?,FilterTaskStatusesByCustom1)", "String(String?,FilterTaskStatusesByCustom2)", "String(String?,FilterTaskStatusesByCustom3)", "String(String?,FilterTaskStatusesByCustom4)", "TaskStatusEntity(TaskStatusEntity?,RestoreTaskStatusesSuccess)", "TaskStatusEntity(TaskStatusEntity?,ArchiveTaskStatusesSuccess)", "TaskStatusEntity(TaskStatusEntity?,DeleteTaskStatusesSuccess)", "TaskStatusEntity(TaskStatusEntity?,UpdateTaskStatus)", "Center(Widget)", "FontLoadError?()", "~(ParagraphLine)", "List(BuiltList,BuiltMap)", "List(BuiltMap,BuiltList,StaticState,BuiltMap)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "int(String,BuiltMap)", "~(LayoutFragment)", "TaskStatusEntity(@)", "ScaleGestureRecognizer()", "~(ScaleGestureRecognizer)", "~(LineBreakType,int)", "Null(BuiltList)", "TaxRateUIStateBuilder(TaxRateUIStateBuilder)", "bool(bool?,ViewTaxRate)", "bool(bool?,ViewTaxRateList)", "bool(bool?,FilterTaxRatesByState)", "bool(bool?,FilterTaxRates)", "String(String?,ArchiveTaxRatesSuccess)", "String(String?,DeleteTaxRatesSuccess)", "String?(String?,ViewTaxRate)", "String(String?,AddTaxRateSuccess)", "String(String?,SortTaxRates)", "String(String?,FilterTaxRates)", "String(String?,FilterTaxRatesByState)", "TaxRateEntity(TaxRateEntity?,RestoreTaxRatesSuccess)", "TaxRateEntity(TaxRateEntity?,ArchiveTaxRatesSuccess)", "TaxRateEntity(TaxRateEntity?,DeleteTaxRatesSuccess)", "TaxRateEntity(TaxRateEntity?,UpdateTaxRate)", "TargetPlatform?()", "FontFamily(@)", "~(RenderSemanticsGestureHandler)", "~(StatefulElement,Object)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "bool(DiagnosticsNode?)", "~(_HeroFlight)", "Widget(BuildContext,Animation0,HeroFlightDirection,BuildContext,BuildContext)", "Null(BuiltList)", "TokenUIStateBuilder(TokenUIStateBuilder)", "bool(bool?,ViewToken)", "bool(bool?,ViewTokenList)", "bool(bool?,FilterTokensByState)", "bool(bool?,FilterTokens)", "bool(bool?,FilterTokensByCustom1)", "bool(bool?,FilterTokensByCustom2)", "bool(bool?,FilterTokensByCustom3)", "bool(bool?,FilterTokensByCustom4)", "String(String?,ArchiveTokensSuccess)", "String(String?,DeleteTokensSuccess)", "String(String?,SortTokens)", "String(String?,FilterTokens)", "String(String?,FilterTokensByState)", "String(String?,FilterTokensByCustom1)", "String(String?,FilterTokensByCustom2)", "String(String?,FilterTokensByCustom3)", "String(String?,FilterTokensByCustom4)", "TokenEntity(TokenEntity?,RestoreTokensSuccess)", "TokenEntity(TokenEntity?,ArchiveTokensSuccess)", "TokenEntity(TokenEntity?,DeleteTokensSuccess)", "TokenEntity(TokenEntity?,UpdateToken)", "bool(_HeroFlight)", "bool(StackFrame)", "IconTheme(BuildContext)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "TokenEntity(@)", "~(ImageInfo,bool)", "ErrorDescription(String)", "String(DiagnosticsNode)", "Future(RandomAccessFile,int)", "TransactionUIStateBuilder(TransactionUIStateBuilder)", "bool(bool?,ViewTransaction)", "bool(bool?,ViewTransactionList)", "bool(bool?,FilterTransactionsByState)", "bool(bool?,FilterTransactionsByStatus)", "bool(bool?,FilterTransactions)", "bool(bool?,FilterTransactionsByCustom1)", "bool(bool?,FilterTransactionsByCustom2)", "bool(bool?,FilterTransactionsByCustom3)", "bool(bool?,FilterTransactionsByCustom4)", "int?(int?,UpdateTransactionTab)", "String(String?,ArchiveTransactionsSuccess)", "String(String?,DeleteTransactionsSuccess)", "String(String?,SortTransactions)", "String(String?,FilterTransactions)", "String(String?,FilterTransactionsByState)", "String(String?,FilterTransactionsByStatus)", "String(String?,FilterTransactionsByCustom1)", "String(String?,FilterTransactionsByCustom2)", "String(String?,FilterTransactionsByCustom3)", "String(String?,FilterTransactionsByCustom4)", "TransactionEntity(TransactionEntity?,RestoreTransactionsSuccess)", "TransactionEntity(TransactionEntity?,ArchiveTransactionsSuccess)", "TransactionEntity(TransactionEntity?,DeleteTransactionsSuccess)", "TransactionEntity(TransactionEntity?,UpdateTransaction)", "~(String,JavaScriptObject)", "BoxConstraintsTween(@)", "List(SelectionState,BuiltMap,BuiltList,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,ListUIState)", "TransactionEntity(@)", "Matrix4Tween(@)", "TextStyleTween(@)", "BorderRadiusTween(@)", "Null(BuiltList)", "TransactionRuleUIStateBuilder(TransactionRuleUIStateBuilder)", "bool(bool?,ViewTransactionRule)", "bool(bool?,ViewTransactionRuleList)", "bool(bool?,FilterTransactionRulesByState)", "bool(bool?,FilterTransactionRules)", "bool(bool?,FilterTransactionRulesByCustom1)", "bool(bool?,FilterTransactionRulesByCustom2)", "bool(bool?,FilterTransactionRulesByCustom3)", "bool(bool?,FilterTransactionRulesByCustom4)", "int?(int?,UpdateTransactionRuleTab)", "String(String?,ArchiveTransactionRulesSuccess)", "String(String?,DeleteTransactionRulesSuccess)", "String(String?,SortTransactionRules)", "String(String?,FilterTransactionRules)", "String(String?,FilterTransactionRulesByState)", "String(String?,FilterTransactionRulesByCustom1)", "String(String?,FilterTransactionRulesByCustom2)", "String(String?,FilterTransactionRulesByCustom3)", "String(String?,FilterTransactionRulesByCustom4)", "TransactionRuleEntity(TransactionRuleEntity?,RestoreTransactionRulesSuccess)", "TransactionRuleEntity(TransactionRuleEntity?,ArchiveTransactionRulesSuccess)", "TransactionRuleEntity(TransactionRuleEntity?,DeleteTransactionRulesSuccess)", "TransactionRuleEntity(TransactionRuleEntity?,UpdateTransactionRule)", "Future(int)", "Future<@>(_Pending)", "Map(List<@>)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "TransactionRuleEntity(@)", "PrefStateSortFieldBuilder(PrefStateSortFieldBuilder)", "MapBuilder(MapBuilder)", "BuiltMap(BuiltMap,SortClients)", "BuiltMap(BuiltMap,SortProducts)", "BuiltMap(BuiltMap,SortInvoices)", "BuiltMap(BuiltMap,SortPayments)", "BuiltMap(BuiltMap,SortRecurringInvoices)", "BuiltMap(BuiltMap,SortQuotes)", "BuiltMap(BuiltMap,SortCredits)", "BuiltMap(BuiltMap,SortProjects)", "BuiltMap(BuiltMap,SortTasks)", "BuiltMap(BuiltMap,SortVendors)", "BuiltMap(BuiltMap,SortExpenses)", "BuiltMap(BuiltMap,SortPaymentTerms)", "BuiltMap(BuiltMap,SortTaxRates)", "BuiltMap(BuiltMap,SortCompanyGateways)", "BuiltMap(BuiltMap,SortUsers)", "BuiltMap(BuiltMap,SortGroups)", "BuiltMap(BuiltMap,SortDesigns)", "BuiltMap(BuiltMap,SortTokens)", "BuiltMap(BuiltMap,SortWebhooks)", "BuiltMap(BuiltMap,SortExpenseCategories)", "BuiltMap(BuiltMap,SortTaskStatuses)", "BuiltMap(BuiltMap,SortSubscriptions)", "BuiltMap(BuiltMap,ToggleEditorLayout)", "Map(Map)", "BuiltMap(BuiltMap,ToggleViewerLayout)", "Null(Map)", "double(double,UpdateUserPreferences)", "bool(bool,DismissTaskExtensionBanner)", "bool(bool,DismissGatewayWarningPermanently)", "bool(bool,DismissReviewAppPermanently)", "Null(BuildContext,MagnifierController,ValueNotifier)", "Uint8List(Object?)", "AppLayout(AppLayout,UpdateUserPreferences)", "ModuleLayout?(ModuleLayout?,UpdateUserPreferences)", "ModuleLayout(ModuleLayout?,SwitchListTableLayout)", "int(int,UpdateUserPreferences)", "bool(Route<@>?)", "bool(OverlayEntry)", "BuiltList(BuiltList,UpdateUserPreferences)", "bool(bool,TogglePreviewSidebar)", "bool(bool,StartClientMultiselect)", "bool(bool,StartProductMultiselect)", "bool(bool,StartInvoiceMultiselect)", "bool(bool,StartRecurringInvoiceMultiselect)", "bool(bool,StartPaymentMultiselect)", "bool(bool,StartQuoteMultiselect)", "bool(bool,StartCreditMultiselect)", "bool(bool,StartProjectMultiselect)", "bool(bool,StartTaskMultiselect)", "bool(bool,StartVendorMultiselect)", "bool(bool,StartPurchaseOrderMultiselect)", "bool(bool,StartExpenseMultiselect)", "bool(bool,StartRecurringExpenseMultiselect)", "bool(bool,StartTransactionMultiselect)", "JsFunction(@)", "CompanyPrefStateBuilder(CompanyPrefStateBuilder)", "BuiltList(BuiltList,PurgeDataSuccess)", "BuiltList(BuiltList,PopLastHistory)", "JsArray<@>(@)", "BuiltList(BuiltList,UpdateLastHistory)", "int(HistoryRecordBuilder)", "BuiltList(BuiltList,ViewDashboard)", "BuiltList(BuiltList,ViewReports)", "BuiltList(BuiltList,ViewSettings)", "BuiltList(BuiltList,ViewClient)", "BuiltList(BuiltList,ViewClientList)", "BuiltList(BuiltList,EditClient)", "BuiltList(BuiltList,ViewProduct)", "BuiltList(BuiltList,ViewProductList)", "BuiltList(BuiltList,EditProduct)", "BuiltList(BuiltList,ViewInvoice)", "BuiltList(BuiltList,ViewInvoiceList)", "BuiltList(BuiltList,EditInvoice)", "BuiltList(BuiltList,ViewPayment)", "BuiltList(BuiltList,ViewPaymentList)", "BuiltList(BuiltList,EditPayment)", "BuiltList(BuiltList,ViewQuote)", "BuiltList(BuiltList,ViewQuoteList)", "BuiltList(BuiltList,EditQuote)", "BuiltList(BuiltList,ViewTask)", "BuiltList(BuiltList,ViewTaskList)", "BuiltList(BuiltList,EditTask)", "BuiltList(BuiltList,ViewProject)", "BuiltList(BuiltList,ViewProjectList)", "BuiltList(BuiltList,EditProject)", "BuiltList(BuiltList,ViewVendor)", "BuiltList(BuiltList,ViewVendorList)", "BuiltList(BuiltList,EditVendor)", "BuiltList(BuiltList,ViewExpense)", "BuiltList(BuiltList,ViewExpenseList)", "BuiltList(BuiltList,EditExpense)", "BuiltList(BuiltList,ViewCompanyGateway)", "BuiltList(BuiltList,ViewCompanyGatewayList)", "BuiltList(BuiltList,EditCompanyGateway)", "BuiltList(BuiltList,ViewUser)", "BuiltList(BuiltList,ViewUserList)", "BuiltList(BuiltList,EditUser)", "BuiltList(BuiltList,ViewGroup)", "BuiltList(BuiltList,ViewGroupList)", "BuiltList(BuiltList,EditGroup)", "BuiltList(BuiltList,ViewSchedule)", "BuiltList(BuiltList,ViewScheduleList)", "BuiltList(BuiltList,EditSchedule)", "BuiltList(BuiltList,ViewTransactionRule)", "BuiltList(BuiltList,ViewTransactionRuleList)", "BuiltList(BuiltList,EditTransactionRule)", "BuiltList(BuiltList,ViewTransaction)", "BuiltList(BuiltList,ViewTransactionList)", "BuiltList(BuiltList,EditTransaction)", "BuiltList(BuiltList,ViewBankAccount)", "BuiltList(BuiltList,ViewBankAccountList)", "BuiltList(BuiltList,ViewPurchaseOrder)", "BuiltList(BuiltList,ViewPurchaseOrderList)", "BuiltList(BuiltList,EditPurchaseOrder)", "BuiltList(BuiltList,ViewRecurringExpense)", "BuiltList(BuiltList,ViewRecurringExpenseList)", "BuiltList(BuiltList,EditRecurringExpense)", "BuiltList(BuiltList,ViewSubscription)", "BuiltList(BuiltList,ViewSubscriptionList)", "BuiltList(BuiltList,EditSubscription)", "BuiltList(BuiltList,ViewTaskStatus)", "BuiltList(BuiltList,ViewTaskStatusList)", "BuiltList(BuiltList,EditTaskStatus)", "BuiltList(BuiltList,ViewExpenseCategory)", "BuiltList(BuiltList,ViewExpenseCategoryList)", "BuiltList(BuiltList,EditExpenseCategory)", "BuiltList(BuiltList,ViewRecurringInvoice)", "BuiltList(BuiltList,ViewRecurringInvoiceList)", "BuiltList(BuiltList,EditRecurringInvoice)", "BuiltList(BuiltList,ViewWebhook)", "BuiltList(BuiltList,ViewWebhookList)", "BuiltList(BuiltList,EditWebhook)", "BuiltList(BuiltList,ViewToken)", "BuiltList(BuiltList,ViewTokenList)", "BuiltList(BuiltList,EditToken)", "BuiltList(BuiltList,ViewPaymentTerm)", "BuiltList(BuiltList,ViewPaymentTermList)", "BuiltList(BuiltList,EditPaymentTerm)", "BuiltList(BuiltList,EditDesign)", "BuiltList(BuiltList,ViewCredit)", "BuiltList(BuiltList,ViewCreditList)", "BuiltList(BuiltList,EditCredit)", "BuiltList(BuiltList,ViewDocument)", "BuiltList(BuiltList,ViewDocumentList)", "BuiltList(BuiltList,EditDocument)", "BuiltList(BuiltList,FilterByEntity)", "int(int,UpdateCurrentRoute)", "String?(String?,FilterCompany)", "String?(String?,ViewDashboard)", "Null(EntityType?,StopLoading)", "EntityType(EntityType?,LoadClientsRequest)", "EntityType(EntityType?,LoadProductsRequest)", "EntityType(EntityType?,LoadInvoicesRequest)", "EntityType(EntityType?,LoadRecurringInvoicesRequest)", "EntityType(EntityType?,LoadPaymentsRequest)", "EntityType(EntityType?,LoadQuotesRequest)", "EntityType(EntityType?,LoadCreditsRequest)", "EntityType(EntityType?,LoadProjectsRequest)", "EntityType(EntityType?,LoadTasksRequest)", "EntityType(EntityType?,LoadVendorsRequest)", "EntityType(EntityType?,LoadPurchaseOrdersRequest)", "EntityType(EntityType?,LoadExpensesRequest)", "EntityType(EntityType?,LoadRecurringExpensesRequest)", "EntityType(EntityType?,LoadTransactionsRequest)", "int(int,FilterCompany)", "int(int,ViewDashboard)", "String(String,UpdateCurrentRoute)", "int(int,SelectCompany)", "BuiltList(BuiltList,PreviewEntity)", "BuiltList(BuiltList,ClearPreviewStack)", "BuiltList(BuiltList,PopPreviewStack)", "BuiltList(BuiltList,ClearEntityFilter)", "BuiltList(BuiltList,FilterByEntity)", "BuiltList(BuiltList,PopFilterStack)", "String(ClientEntityBuilder)", "String(ExpenseEntityBuilder)", "String(TaskEntityBuilder)", "String(VendorEntityBuilder)", "_RouteEntry(Route<@>)", "MapEntry>(@,@)", "RenderBox?()", "Null(List?)", "Null(BuiltList)", "UserUIStateBuilder(UserUIStateBuilder)", "bool(bool?,ViewUser)", "bool(bool?,ViewUserList)", "bool(bool?,FilterUsersByState)", "bool(bool?,FilterUsers)", "bool(bool?,FilterUsersByCustom1)", "bool(bool?,FilterUsersByCustom2)", "bool(bool?,FilterUsersByCustom3)", "bool(bool?,FilterUsersByCustom4)", "String(String?,ArchiveUserSuccess)", "String(String?,DeleteUserSuccess)", "String?(String?,ViewUser)", "String(String?,AddUserSuccess)", "String(String?,SortUsers)", "String(String?,FilterUsers)", "String(String?,FilterUsersByState)", "String(String?,FilterUsersByCustom1)", "String(String?,FilterUsersByCustom2)", "String(String?,FilterUsersByCustom3)", "String(String?,FilterUsersByCustom4)", "UserEntity(UserEntity?,RestoreUserSuccess)", "UserEntity(UserEntity?,ArchiveUserSuccess)", "UserEntity(UserEntity?,DeleteUserSuccess)", "UserEntity(UserEntity?,UpdateUser)", "_RenderTheaterMarker()", "RenderBox(int)", "~(BoxConstraints)", "ClipRect(BuildContext,Widget?)", "List(SelectionState,BuiltMap,BuiltList,ListUIState,String)", "Viewport(BuildContext,ViewportOffset)", "~(Size,Offset)", "~(_DragInfo,Offset,Offset)", "bool(DiagnosticsNode)", "Null(BuiltList)", "VendorUIStateBuilder(VendorUIStateBuilder)", "bool(bool?,ViewVendor)", "bool(bool?,ViewVendorList)", "bool(bool?,FilterVendorsByState)", "bool(bool?,FilterVendors)", "bool(bool?,FilterVendorsByCustom1)", "bool(bool?,FilterVendorsByCustom2)", "bool(bool?,FilterVendorsByCustom3)", "bool(bool?,FilterVendorsByCustom4)", "int?(int?,UpdateVendorTab)", "Completer?(Completer?,EditVendor)", "Completer?(Completer?,EditVendor)", "String(String?,ArchiveVendorSuccess)", "String(String?,DeleteVendorSuccess)", "String?(String?,ViewVendor)", "String(String?,AddVendorSuccess)", "String(String?,SortVendors)", "String(String?,FilterVendors)", "String(String?,FilterVendorsByState)", "String(String?,FilterVendorsByCustom1)", "String(String?,FilterVendorsByCustom2)", "String(String?,FilterVendorsByCustom3)", "String(String?,FilterVendorsByCustom4)", "VendorEntity(VendorEntity?,RestoreVendorSuccess)", "VendorEntity(VendorEntity?,ArchiveVendorSuccess)", "VendorEntity(VendorEntity?,DeleteVendorSuccess)", "VendorEntity(VendorEntity?,UpdateVendor)", "Null(RestorationBucket?)", "~(RestorableProperty)", "SynchronousFuture(bool)", "List(BuiltMap,BuiltList,BuiltMap,StaticState)", "List(SelectionState,BuiltMap,BuiltList,ListUIState,BuiltMap,StaticState)", "EntityStats(String,BuiltMap)", "~(String,VendorEntity)", "double(String,String,BuiltMap,BuiltList)", "VendorEntity(@)", "RestorationScope(BuildContext,Widget?)", "Actions(BuildContext)", "IgnorePointer(BuildContext,Widget?)", "Null(BuiltList)", "WebhookUIStateBuilder(WebhookUIStateBuilder)", "bool(bool?,ViewWebhook)", "bool(bool?,ViewWebhookList)", "bool(bool?,FilterWebhooksByState)", "bool(bool?,FilterWebhooks)", "bool(bool?,FilterWebhooksByCustom1)", "bool(bool?,FilterWebhooksByCustom2)", "bool(bool?,FilterWebhooksByCustom3)", "bool(bool?,FilterWebhooksByCustom4)", "String(String?,ArchiveWebhooksSuccess)", "String(String?,DeleteWebhooksSuccess)", "String(String?,SortWebhooks)", "String(String?,FilterWebhooks)", "String(String?,FilterWebhooksByState)", "String(String?,FilterWebhooksByCustom1)", "String(String?,FilterWebhooksByCustom2)", "String(String?,FilterWebhooksByCustom3)", "String(String?,FilterWebhooksByCustom4)", "WebhookEntity(WebhookEntity?,RestoreWebhooksSuccess)", "WebhookEntity(WebhookEntity?,ArchiveWebhooksSuccess)", "WebhookEntity(WebhookEntity?,DeleteWebhooksSuccess)", "WebhookEntity(WebhookEntity?,UpdateWebhook)", "bool(PopEntry)", "IOSScrollViewFlingVelocityTracker(PointerEvent)", "MacOSScrollViewFlingVelocityTracker(PointerEvent)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "WebhookEntity(@)", "~(String?,String?)", "LicenseParagraph()", "~(EntityAction?)", "String(GestureArenaMember)", "_GestureArena()", "StoreConnector>(BuildContext)", "BuiltList(Store)", "Container(BuildContext,BuiltList)", "CheckboxListTile(EntityState)", "StoreConnector>(BuildContext)", "BuiltList(Store)", "Container(BuildContext,BuiltList)", "CheckboxListTile(EntityStatus)", "StoreConnector(BuildContext)", "ListUIState(Store)", "Container(BuildContext,ListUIState)", "Widget(BuildContext,ViewportOffset)", "bool(ScrollUpdateNotification)", "BottomAppBar(BuildContext,Store)", "Widget?(BuildContext,int)", "int?(Widget,int)", "BuiltList?(Store)", "Container(BuildContext,BuiltList?)", "CheckboxListTile(String)", "Null(List<~>)", "ConfirmEmail(BuildContext,ConfirmEmailVM)", "Null(BuildContext,String,String?,String?)", "Padding(TextButton)", "MultiSelectList(BuildContext)", "@(List)", "~(PointerDataPacket)", "Padding(MapEntry)", "double?(int)", "Future<~>(DropDoneDetails)", "JsObject(@)", "DocumentTile(DocumentEntity)", "_ThumbPressGestureRecognizer()", "~(_ThumbPressGestureRecognizer)", "bool(PointerData)", "_TrackTapGestureRecognizer()", "~(_TrackTapGestureRecognizer)", "_PointerEventDescription?(PointerData)", "int(Selectable,Selectable)", "StatefulWidget(EntityAction?)", "StatelessWidget(EntityAction?)", "Rect(Rect)", "EntityDropdownDialog(BuildContext)", "Null(SelectableEntity[bool])", "@(BuildContext,Completer<@>)", "bool(Rect)", "List(TextEditingValue)", "SelectableEntity?(String?)", "String(double)", "List(LogicalKeyboardKey)", "~(ShortcutActivator,Intent)", "List<_ActivatorIntentPair>()", "Widget(BuildContext,~(SelectableEntity),Iterable)", "Builder(BuildContext,int)", "Container(BuildContext)", "EntityAutocompleteListTile(BuildContext,int)", "PopupMenuButton(BuildContext,int)", "Object?()", "List>(BuildContext)", "PopupMenuItem(EntityType)", "_SingleChildViewport(BuildContext,ViewportOffset)", "Container(String?)", "~(Color)", "~(RenderBox)", "Element0?()", "bool(TableRow)", "List>(BuildContext)", "PopupMenuItem(int)", "Decoration?(TableRow)", "DataRow(String)", "_TableElementRow(TableRow)", "Element0(Widget)", "bool(_TableElementRow)", "bool(List)", "HistoryDrawer(BuildContext,AppDrawerVM)", "Iterable(_TableElementRow)", "BaseEntity?(InvitationEntity)", "~(EmailTemplate?)", "RenderBox(Element0)", "List(_TableElementRow)", "~(EditingState?,TextEditingDeltaState?)", "~(TaxRateEntity?)", "DropdownMenuItem(TaxRateEntity?)", "Drag?()", "~(_TapTracker)", "Map<~(PointerEvent),Matrix40?>()", "String(EntityStatus)", "~(~(PointerEvent),Matrix40?)", "Padding(BuildContext)", "ListTile(BuildContext,BoxConstraints)", "Future<~>(Timer)", "Widget(BuildContext,Store)", "TapAndHorizontalDragGestureRecognizer()", "~(TapAndHorizontalDragGestureRecognizer)", "Widget(CompanyEntity{showAccentColor:bool})", "PopupMenuItem(CompanyEntity)", "List(BuildContext)", "DropdownMenuItem(CompanyEntity)", "TapAndPanGestureRecognizer()", "~(TapAndPanGestureRecognizer)", "~(UndoTextIntent)", "ContactUsDialog(BuildContext)", "UpdateDialog(BuildContext)", "~(RedoTextIntent)", "HealthCheckDialog(BuildContext)", "_ViewScope(BuildContext,PipelineOwner)", "MenuDrawer(BuildContext,MenuDrawerVM)", "Widget(Color)", "Null(BuildContext,int,CompanyEntity)", "_TheState()", "Stack(BuildContext,BoxConstraints)", "Widget(@)", "List>(BuildContext)", "SynchronousFuture()", "_SelectRow()", "~(PhoneNumber)", "String?(PhoneNumber?)", "SynchronousFuture()", "~(String,DateSymbols)", "ExpansionPanel(SystemLogEntity)", "ListTile(BuildContext,bool)", "DataCell(DataColumn)", "DataRow?()", "SynchronousFuture()", "Column(BuildContext,BoxConstraints)", "DataCell(String)", "Column()", "FontAsset(@)", "DataColumn(String)", "BaseEntity(String)", "_CombiningGestureArenaMember()", "~(SlidableAutoCloseNotification)", "~(List)", "MapEntry(PurchaseDetails)", "int(ProductDetails,ProductDetails)", "ListTile(ProductDetails)", "TextButton(String)", "~(SlidableAutoCloseBarrierNotification)", "Container(BuildContext,Store)", "LoginView(BuildContext,LoginVM)", "Null({context!BuildContext,isSignUp:bool})", "int(StaggeredGridParentData,int)", "IgnorePointer(BuildContext)", "~(ToastFuture)", "Future(BuildContext,Completer{email!String,password!String})", "Future(BuildContext,Completer{email!String,secret!String,url!String})", "Future(BuildContext,Completer{email!String,oneTimePassword!String,password!String,secret!String,url!String})", "Future(BuildContext,Completer{token!String})", "EntityList(BuildContext,BankAccountListVM)", "BankAccountListItem(BuildContext,int)", "Future<~>(String,ByteData?,~(ByteData?)?)", "AnimatedOpacity(BuildContext,Widget?)", "BankAccountScreen(BuildContext,BankAccountScreenVM)", "GoogleSignInAccount?/(~)", "BankAccountEditVM(Store)", "BankAccountEdit(BuildContext,BankAccountEditVM)", "BankAccountViewVM(Store)", "BankAccountView(BuildContext,BankAccountViewVM)", "LicensePage(BuildContext)", "EntityList(BuildContext,ClientListVM)", "ClientListItem(BuildContext,int)", "Null(Response?)", "GoogleSignInTokenData(Map?)", "Null(GoogleAuth)", "ClientPdfVM(Store)", "ClientPdfView(BuildContext,ClientPdfVM)", "String(ClientContactEntity)", "ClientScreen(BuildContext,ClientScreenVM)", "ContactEditDetails(BuildContext)", "ContactListTile0(ClientContactEntity)", "ClientEditContactsVM(Store)", "ClientEditContacts(BuildContext,ClientEditContactsVM)", "Null(GoogleAuthInitFailureError)", "Null(ClientContactEntity,int)", "ClientEditVM(Store)", "ClientEdit(BuildContext,ClientEditVM)", "@(ClientEntity)", "Future<~>([JavaScriptObject?])", "~(Object)", "~(Element)", "String(StringToken)", "bool(Set)", "~(ClientContactEntity)", "bool(Selector)", "Map>()", "_LicenseData(_LicenseData,LicenseEntry)", "Row(ClientContactEntity)", "bool(LedgerEntity)", "_LicenseData(_LicenseData)", "~(Rule)", "ClientViewVM(Store)", "ClientView(BuildContext,ClientViewVM)", "LayoutBuilder(BuildContext,AsyncSnapshot<_LicenseData>)", "CompanyGatewayListItem(String)", "CompanyGatewayList(BuildContext,CompanyGatewayListVM)", "double(@)", "CompanyGatewayEntity(String)", "CompanyGatewayScreen(BuildContext,CompanyGatewayScreenVM)", "Rule()", "Center(BuildContext,int?,Widget?)", "RegisteredFont?(ByteBuffer,String,String)", "GatewayConfigField(String)", "String?(RegExpMatch)", "Future(Client0)", "CompanyGatewayEditVM(Store)", "CompanyGatewayEdit(BuildContext,CompanyGatewayEditVM)", "Future(String)", "CompanyGatewayViewVM(Store)", "CompanyGatewayView(BuildContext,CompanyGatewayViewVM)", "EmailCreditVM(Store)", "InvoiceEmailView(BuildContext,EmailCreditVM)", "bool(String,String)", "EntityList(BuildContext,CreditListVM)", "CreditListItem(BuildContext,int)", "CreditPdfVM(Store)", "InvoicePdfView(BuildContext,CreditPdfVM)", "CreditScreen(BuildContext,CreditScreenVM)", "int(String)", "Null(FrameInfo)", "~(List)", "CreditEditDetailsVM(Store)", "StatefulWidget(BuildContext,CreditEditDetailsVM)", "String(List)", "MediaType()", "Localizations(BuildContext,int)", "CreditEditItemsVM(Store)", "StatefulWidget(BuildContext,CreditEditItemsVM)", "~(int,IfdValue)", "CreditEditNotesVM(Store)", "InvoiceEditNotes(BuildContext,CreditEditNotesVM)", "CreditEditPDFVM(Store)", "InvoiceEditPDF(BuildContext,CreditEditPDFVM)", "CreditEditVM(Store)", "CreditEdit(BuildContext,CreditEditVM)", "~(PurchasesResultWrapper)", "Map(ProductWrapper)", "SubscriptionOfferDetailsWrapper(@)", "CreditViewVM(Store)", "InvoiceView(BuildContext,CreditViewVM)", "List>(NavigatorState,String)", "ProductDetailsWrapper(@)", "~(SelectionModel<@>)", "bool(SeriesDatum<@>)", "~(SeriesDatum<@>)", "InkWell(ChartDataGroup)", "~(DateRange?)", "DropdownMenuItem(DateRangeComparison)", "~(DateRangeComparison?)", "DashboardDateRangePicker(BuildContext)", "Material(BuildContext,BoxConstraints)", "List>(BuildContext)", "PopupMenuItem(DateRange)", "~(DateRange)", "_DashboardSettings(BuildContext)", "Card(TaskEntity?)", "FormCard(DashboardField)", "MaterialPageRoute<~>(RouteSettings)", "PurchaseWrapper(@)", "PricingPhaseWrapper(@)", "Future>(PurchasesResultWrapper)", "Future(BillingClient)", "BlockSemantics(BuildContext)", "PopScope(BuildContext)", "_DashboardField(BuildContext)", "~(EntityType,List)", "bool(DashboardField)", "SettingsWizard(BuildContext)", "AccountEntityBuilder(AccountEntityBuilder)", "Widget(BuildContext,DashboardVM)", "@(DashboardSettings)", "List(ProductDetailsResponseWrapper)", "Null(EntityType,List?)", "List(ProductDetailsWrapper)", "String(ProductDetails)", "List(BuildContext,_ActionLevel)", "AnimatedSwitcher(BuildContext,Object?,Widget?)", "bool(PurchasesResultWrapper)", "EntityList(BuildContext,DesignListVM)", "DesignListItem(BuildContext,int)", "DesignScreen(BuildContext,DesignScreenVM)", "~({debounce:bool})", "~(DesignEntity)", "String(PurchasesResultWrapper)", "List(PurchasesResultWrapper)", "~(List,JavaScriptObject)", "CheckboxListTile(EntityType)", "_DesignImportDialog(BuildContext)", "DesignEditVM(Store)", "DesignEdit(BuildContext,DesignEditVM)", "GooglePlayPurchaseDetails(GooglePlayPurchaseDetails)", "DesignViewVM(Store)", "DesignView(BuildContext,DesignViewVM)", "Widget(BuildContext,DocumentListVM)", "DocumentListItem(BuildContext,int)", "Future(GooglePlayPurchaseDetails)", "GooglePlayPurchaseDetails(String)", "AppStoreProductDetails(SKProductWrapper)", "bool(SKPaymentTransactionWrapper)", "DocumentScreen(BuildContext,DocumentScreenVM)", "AppStorePurchaseDetails(SKPaymentTransactionWrapper)", "DocumentEditVM(Store)", "DocumentEdit0(BuildContext,DocumentEditVM)", "DocumentViewVM(Store)", "DocumentView(BuildContext,DocumentViewVM)", "SKPaymentTransactionWrapper(@)", "SKProductWrapper(@)", "SKProductDiscountWrapper(@)", "ExpenseEditVM(Store)", "ExpenseEdit(BuildContext,ExpenseEditVM)", "EntityList(BuildContext,ExpenseListVM)", "RegExp()", "ExpenseScreen(BuildContext,ExpenseScreenVM)", "Padding(ExpenseScheduleEntity)", "ExpenseViewVM(Store)", "ExpenseView(BuildContext,ExpenseViewVM)", "ExpenseCategoryEditVM(Store)", "ExpenseCategoryEdit(BuildContext,ExpenseCategoryEditVM)", "EntityList(BuildContext,ExpenseCategoryListVM)", "DateTime(int,int,int,int,int,int,int,bool)", "ExpenseCategoryScreen(BuildContext,ExpenseCategoryScreenVM)", "ExpenseCategoryViewVM(Store)", "ExpenseCategoryView(BuildContext,ExpenseCategoryViewVM)", "GroupEditVM(Store)", "GroupEdit(BuildContext,GroupEditVM)", "EntityList(BuildContext,GroupListVM)", "GroupListItem(BuildContext,int)", "GroupSettingsScreen(BuildContext,GroupScreenVM)", "GroupViewVM(Store)", "GroupView(BuildContext,GroupViewVM)", "int(VendorContactEntity,VendorContactEntity)", "_ContactListTile(VendorContactEntity)", "int(ClientContactEntity,ClientContactEntity)", "_ContactListTile(ClientContactEntity)", "InvoiceEditContactsVM(Store)", "InvoiceEditContacts(BuildContext,InvoiceEditContactsVM)", "Null(ClientContactEntity)", "Null(VendorContactEntity)", "Null(InvitationEntity)", "bool(_DateFormatField)", "Uint8List({seed:int})", "_DateFormatQuotedField(String,DateFormat)", "_DateFormatPatternField(String,DateFormat)", "InvoiceEditDetailsVM(Store)", "StatefulWidget(BuildContext,InvoiceEditDetailsVM)", "ItemEditDetails(BuildContext)", "Future<~>(Duration)", "Expanded(Widget)", "Text?(String)", "Expanded(Text?)", "Widget(String)", "List(TextEditingValue)", "String(ProductEntity)", "Theme(BuildContext,~(ProductEntity),Iterable)", "_DateFormatLiteralField(String,DateFormat)", "String?(NumberSymbols)", "String(NumberSymbols)", "MouseRegion(BuildContext,ScrollController)", "Column(BuildContext,int)", "InvoiceEditItemsVM(Store)", "StatefulWidget(BuildContext,InvoiceEditItemsVM)", "Null([int?])", "InvoiceEditNotesVM(Store)", "InvoiceEditNotes(BuildContext,InvoiceEditNotesVM)", "InvoiceEditPDFVM(Store)", "InvoiceEditPDF(BuildContext,InvoiceEditPDFVM)", "InvoiceEditVM(Store)", "InvoiceEdit(BuildContext,InvoiceEditVM)", "Size(JavaScriptObject)", "EmailInvoiceVM(Store)", "InvoiceEmailView(BuildContext,EmailInvoiceVM)", "EntityList(BuildContext,InvoiceListVM)", "DropdownMenuItem(InvoiceHistoryEntity)", "InvoicePdfVM(Store)", "InvoicePdfView(BuildContext,InvoicePdfVM)", "Country()", "InvoiceScreen(BuildContext,InvoiceScreenVM)", "StatefulBuilder(BuildContext)", "_InvitationListTile(InvitationEntity)", "@(DocumentEntity)", "int(ActivityEntity,ActivityEntity)", "~(PaymentEntity?)", "CountryPickerDialog(BuildContext,~(~()))", "InvoiceItemListTile(BuildContext)", "Widget(String,double)", "~(String,double)", "Padding(InvoiceScheduleEntity)", "InvoiceViewVM(Store)", "InvoiceView(BuildContext,InvoiceViewVM)", "Null(BuildContext,DocumentEntity)", "~(BuildContext)(BuildContext)", "~(Country)", "SurfaceScene()", "bool(Color)", "PaymentEditVM(Store)", "PaymentEdit(BuildContext,PaymentEditVM)", "EntityList(BuildContext,PaymentListVM)", "InvoiceEntity?(PaymentableEntity)", "CupertinoTextSelectionToolbarButton(ContextMenuButtonItem)", "String(PaymentableEntity)", "DesktopTextSelectionToolbarButton(ContextMenuButtonItem)", "PaymentScreen(BuildContext,PaymentScreenVM)", "PaymentRefundVM(Store)", "PaymentRefund(BuildContext,PaymentRefundVM)", "Future(BuildContext,Completer)", "PaymentViewVM(Store)", "PaymentView(BuildContext,PaymentViewVM)", "PaymentTermEditVM(Store)", "PaymentTermEdit(BuildContext,PaymentTermEditVM)", "EntityList(BuildContext,PaymentTermListVM)", "PaymentTermListItem(BuildContext,int)", "PaymentTermScreen(BuildContext,PaymentTermScreenVM)", "PaymentTermViewVM(Store)", "PaymentTermView(BuildContext,PaymentTermViewVM)", "ProductEditVM(Store)", "ProductEdit(BuildContext,ProductEditVM)", "EntityList(BuildContext,ProductListVM)", "ProductScreen(BuildContext,ProductScreenVM)", "ProductViewVM(Store)", "ProductView(BuildContext,ProductViewVM)", "ProjectEditVM(Store)", "ProjectEdit(BuildContext,ProjectEditVM)", "EntityList(BuildContext,ProjectListVM)", "ProjectListItem(BuildContext,int)", "ProjectScreen(BuildContext,ProjectScreenVM)", "ProjectViewVM(Store)", "ProjectView(BuildContext,ProjectViewVM)", "PurchaseOrderEditDetailsVM(Store)", "StatefulWidget(BuildContext,PurchaseOrderEditDetailsVM)", "Null(BuildContext,InvoiceEntity,VendorEntity?)", "PurchaseOrderEditItemsVM(Store)", "StatefulWidget(BuildContext,PurchaseOrderEditItemsVM)", "PurchaseOrderEditNotesVM(Store)", "InvoiceEditNotes(BuildContext,PurchaseOrderEditNotesVM)", "PurchaseOrderEditPDFVM(Store)", "InvoiceEditPDF(BuildContext,PurchaseOrderEditPDFVM)", "PurchaseOrderEditVM(Store)", "PurchaseOrderEdit(BuildContext,PurchaseOrderEditVM)", "EmailPurchaseOrderVM(Store)", "InvoiceEmailView(BuildContext,EmailPurchaseOrderVM)", "EntityList(BuildContext,PurchaseOrderListVM)", "PurchaseOrderListItem(BuildContext,int)", "PurchaseOrderPdfVM(Store)", "InvoicePdfView(BuildContext,PurchaseOrderPdfVM)", "PurchaseOrderScreen(BuildContext,PurchaseOrderScreenVM)", "PurchaseOrderViewVM(Store)", "InvoiceView(BuildContext,PurchaseOrderViewVM)", "QuoteEditDetailsVM(Store)", "StatefulWidget(BuildContext,QuoteEditDetailsVM)", "QuoteEditItemsVM(Store)", "StatefulWidget(BuildContext,QuoteEditItemsVM)", "QuoteEditNotesVM(Store)", "InvoiceEditNotes(BuildContext,QuoteEditNotesVM)", "QuoteEditPDFVM(Store)", "InvoiceEditPDF(BuildContext,QuoteEditPDFVM)", "QuoteEditVM(Store)", "QuoteEdit(BuildContext,QuoteEditVM)", "EmailQuoteVM(Store)", "InvoiceEmailView(BuildContext,EmailQuoteVM)", "EntityList(BuildContext,QuoteListVM)", "QuotePdfVM(Store)", "InvoicePdfView(BuildContext,QuotePdfVM)", "QuoteScreen(BuildContext,QuoteScreenVM)", "QuoteViewVM(Store)", "InvoiceView(BuildContext,QuoteViewVM)", "RecurringExpenseEditVM(Store)", "ExpenseEdit(BuildContext,RecurringExpenseEditVM)", "EntityList(BuildContext,RecurringExpenseListVM)", "RecurringExpenseListItem(BuildContext,int)", "RecurringExpenseScreen(BuildContext,RecurringExpenseScreenVM)", "RecurringExpenseViewVM(Store)", "ExpenseView(BuildContext,RecurringExpenseViewVM)", "RecurringInvoiceEditDetailsVM(Store)", "StatefulWidget(BuildContext,RecurringInvoiceEditDetailsVM)", "RecurringInvoiceEditItemsVM(Store)", "StatefulWidget(BuildContext,RecurringInvoiceEditItemsVM)", "RecurringInvoiceEditNotesVM(Store)", "InvoiceEditNotes(BuildContext,RecurringInvoiceEditNotesVM)", "RecurringInvoiceEditPDFVM(Store)", "InvoiceEditPDF(BuildContext,RecurringInvoiceEditPDFVM)", "RecurringInvoiceEditVM(Store)", "RecurringInvoiceEdit(BuildContext,RecurringInvoiceEditVM)", "EntityList(BuildContext,RecurringInvoiceListVM)", "RecurringInvoiceListItem(BuildContext,int)", "RecurringInvoicePdfVM(Store)", "InvoicePdfView(BuildContext,RecurringInvoicePdfVM)", "RecurringInvoiceScreen(BuildContext,RecurringInvoiceScreenVM)", "RecurringInvoiceViewVM(Store)", "InvoiceView(BuildContext,RecurringInvoiceViewVM)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,StaticState)", "ClientReportFields?(String)", "CupertinoDesktopTextSelectionToolbarButton(ContextMenuButtonItem)", "MaterialRectArcTween(Rect?,Rect?)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,StaticState)", "ContactReportFields?(String)", "~(String,GatewayOptionsEntity)", "Widget(BuildContext,~())", "CreditItemReportFields?(String)", "bool(Pattern[int])", "bool(CreditItemReportFields)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,StaticState)", "CreditReportFields?(String)", "Object()", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap)", "DocumentReportFields?(String)", "MaterialPageRoute<0^>(RouteSettings,Widget(BuildContext))", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "ExpenseReportFields?(String)", "~(PointerMoveEvent)", "InvoiceItemReportFields?(String)", "~(ScrollNotification)", "bool(InvoiceItemReportFields)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "InvoiceReportFields?(String)", "double(_Diagonal)", "int(PaintRequest,PaintRequest)", "TaxRateReportFields0?(String)", "InvoiceItemEntity(InvoiceItemEntity)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "PaymentReportFields?(String)", "~(PointerUpEvent)", "TaxRateReportFields?(String)", "InvitationEntity(InvitationEntity)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,StaticState)", "ProductReportFields?(String)", "InvoiceHistoryEntity?(ActivityEntity)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "ProfitAndLossReportFields?(String)", "int(int,@)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "PurchaseOrderItemReportFields?(String)", "Map()", "bool(PurchaseOrderItemReportFields)", "0^?(0^?(ButtonStyle?))", "PurchaseOrderReportFields?(String)", "0^?(MaterialStateProperty<0^>?(ButtonStyle?))", "QuoteItemReportFields?(String)", "IndentingBuiltValueToStringHelper(String)", "bool(QuoteItemReportFields)", "QuoteReportFields?(String)", "MaterialStateProperty?(ButtonStyle?)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "RecurringExpenseReportFields?(String)", "ListBuilder()", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "RecurringInvoiceReportFields?(String)", "ListBuilder()", "MaterialStateProperty?(ButtonStyle?)", "String(@,int?)", "ListBuilder()", "ListMultimapBuilder()", "DateTime?(@,int?)", "MaterialStateProperty?(ButtonStyle?)", "Null(BuildContext,EntityAction)", "Expanded(BuildContext)", "MaterialStateProperty?(ButtonStyle?)", "ReportColumnType(String)", "@(String,String)", "List(TextEditingValue)", "bool(List)", "String?(List)", "Theme(BuildContext,~(String),Iterable)", "ReportsScreen(BuildContext,ReportsScreenVM)", "Null(String?,bool)", "Null(int,bool)", "Null(BuildContext,BuiltMap)", "MouseCursor0?(Set)", "Null({chart:String?,customEndDate:String?,customStartDate:String?,group:String?,report:String?,selectedGroup:String?,subgroup:String?})", "~(List)", "GroupTotals(ReportResult?,ReportsUIState,ReportSettingsEntity?,BuiltMap,CompanyEntity?)", "MouseCursor0?(ButtonStyle?)", "TaskItemReportFields?(String)", "MapBuilder()", "TaskReportFields?(String)", "Color?(ButtonStyle?)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "TransactionReportFields?(String)", "VisualDensity?(ButtonStyle?)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,StaticState)", "VendorReportFields?(String)", "MaterialTapTargetSize?(ButtonStyle?)", "DropdownMenuItem(EntityType)", "ScheduleEditVM(Store)", "ScheduleEdit(BuildContext,ScheduleEditVM)", "EntityList(BuildContext,ScheduleListVM)", "ScheduleListItem(BuildContext,int)", "ScheduleScreen(BuildContext,ScheduleScreenVM)", "ScheduleViewVM(Store)", "ScheduleView(BuildContext,ScheduleViewVM)", "CheckboxListTile(int)", "bool?(CompanyEntityBuilder)", "AccountManagement(BuildContext,AccountManagementVM)", "Duration?(ButtonStyle?)", "Null(BuildContext,String,String,String)", "ListBuilder()", "Row(RegistrationFieldEntity)", "RegistrationFieldEntityBuilder(RegistrationFieldEntityBuilder)", "ClientPortal(BuildContext,ClientPortalVM)", "bool?(ButtonStyle?)", "Row(BuildContext)", "CompanyDetails(BuildContext,CompanyDetailsVM)", "Null(BuildContext,MultipartFile)", "CreditCardsAndBanks(BuildContext,CreditCardsAndBanksVM)", "AlignmentGeometry?(ButtonStyle?)", "CustomFields(BuildContext,CustomFieldsVM)", "DataVisualizations(BuildContext,DataVisualizationsVM)", "Widget(BuildContext,AsyncSnapshot<@>)", "ListTile(BuildContext)", "~(MapBuilder)", "FormColorPicker(String)", "InteractiveInkFeatureFactory?(ButtonStyle?)", "DeviceSettings(BuildContext,DeviceSettingsVM)", "SetBuilder()", "ListBuilder()", "~(NextFocusIntent)", "Null(BuildContext,double)", "Future(BuildContext,AppLayout)", "Null(BuildContext,BuiltMap)", "EmailSettings(BuildContext,EmailSettingsVM)", "~(PreviousFocusIntent)", "Null(MultipartFile)", "ExpenseSettings(BuildContext,ExpenseSettingsVM)", "ListBuilder()", "ListBuilder()", "GeneratedNumbers(BuildContext,GeneratedNumbersVM)", "Set>(PreImportResponse?)", "~(ImportType?)", "ListBuilder()", "DropdownMenuItem(ExportType)", "ImportExport(BuildContext,ImportExportVM)", "Tab(String)", "InvoiceDesign(BuildContext,InvoiceDesignVM)", "Null(BuildContext,List)", "_AddCompanyDialog(BuildContext)", "LocalizationSettings(BuildContext,LocalizationSettingsVM)", "PaymentSettings(BuildContext,PaymentSettingsVM)", "ProductSettings(BuildContext,ProductSettingsVM)", "List(String)", "SettingsList(BuildContext,SettingsListVM)", "Null(BuildContext,String,int?)", "SettingsScreen(BuildContext,SettingsScreenVM)", "TaskSettings(BuildContext,TaskSettingsVM)", "~(DirectionalFocusIntent)", "Column(String)", "ListBuilder()", "Row(String)", "ListBuilder()", "SetMultimapBuilder()", "_EditSubregionDialog(BuildContext)", "TaxSettings(BuildContext,TaxSettingsVM)", "bool(EmailTemplate)", "DropdownMenuItem(EmailTemplate)", "int(_PersistedSurfaceMatch,_PersistedSurfaceMatch)", "TemplatesAndReminders(BuildContext,TemplatesAndRemindersVM)", "Null(EmailTemplate)", "@(@,String)", "Future(GroupEntity)", "Future(ClientEntity)", "int(OverlayGroup)", "Map()", "UserDetails(BuildContext,UserDetailsVM)", "@(UserEntity)", "num(int?)", "WorkflowSettings(BuildContext,WorkflowSettingsVM)", "String?(int)", "Set(Set,Set)", "SubscriptionEditVM(Store)", "SubscriptionEdit(BuildContext,SubscriptionEditVM)", "EntityList(BuildContext,SubscriptionListVM)", "SubscriptionListItem(BuildContext,int)", "SubscriptionScreen(BuildContext,SubscriptionScreenVM)", "SubscriptionViewVM(Store)", "SubscriptionView(BuildContext,SubscriptionViewVM)", "~(BuildContext[EntityAction?])", "Row(TaskTime)", "TableRow(int)", "Rect()(RenderBox)", "TaskEditDetailsVM(Store)", "StatefulWidget(BuildContext,TaskEditDetailsVM)", "Null(TaskTime,int)", "TimeEditDetails(BuildContext)", "TaskEditTimesVM(Store)", "TaskEditTimes(BuildContext,TaskEditTimesVM)", "Null(TaskTime?,int)", "TaskEditVM(Store)", "TaskEdit(BuildContext,TaskEditVM)", "~(String,List)", "BoardList(String)", "Null(Completer,String)", "MapEntry(MapEntry)", "BoardItem(TaskEntity)", "~(int?,int?,BoardItemState)", "~(int?,int?,int?,int?,BoardItemState)", "KanbanView(BuildContext,KanbanVM)", "Null(Completer,List?,Map>?)", "Null(Completer,String,String,int)", "Null(Completer,String,String,String,int)", "~(String?,List)", "EntityList(BuildContext,TaskListVM)", "TaskScreen(BuildContext,TaskScreenVM)", "TaskViewVM(Store)", "TaskView(BuildContext,TaskViewVM)", "Null(BuildContext[TaskTime?])", "TaskStatusEditVM(Store)", "TaskStatusEdit(BuildContext,TaskStatusEditVM)", "TaskStatusListItem(String)", "TaskStatusList(BuildContext,TaskStatusListVM)", "TaskStatusEntity(String)", "TaskStatusScreen(BuildContext,TaskStatusScreenVM)", "TaskStatusViewVM(Store)", "TaskStatusView(BuildContext,TaskStatusViewVM)", "TaxRateEditVM(Store)", "TaxRateEdit(BuildContext,TaxRateEditVM)", "EntityList(BuildContext,TaxRateListVM)", "TaxRateListItem(BuildContext,int)", "TaxRateSettingsScreen(BuildContext,TaxRateScreenVM)", "TaxRateViewVM(Store)", "TaxRateView(BuildContext,TaxRateViewVM)", "TokenEditVM(Store)", "TokenEdit(BuildContext,TokenEditVM)", "EntityList(BuildContext,TokenListVM)", "TokenListItem(BuildContext,int)", "TokenScreen(BuildContext,TokenScreenVM)", "TokenViewVM(Store)", "TokenView(BuildContext,TokenViewVM)", "String(TransactionEntityBuilder)", "TransactionEditVM(Store)", "TransactionEdit(BuildContext,TransactionEditVM)", "EntityList(BuildContext,TransactionListVM)", "TransactionListItem(BuildContext,int)", "Padding(ExpenseEntity)", "CalendarDatePicker()", "TransactionScreen(BuildContext,TransactionScreenVM)", "bool(TransactionEntity)", "EntityListTile(InvoiceEntity)", "int(InvoiceEntity,InvoiceEntity)", "int(PaymentEntity,PaymentEntity)", "bool(ExpenseCategoryEntity)", "int(ExpenseCategoryEntity?,ExpenseCategoryEntity?)", "bool(VendorEntity)", "int(VendorEntity?,VendorEntity?)", "Form()", "TransactionViewVM(Store)", "TransactionView(BuildContext,TransactionViewVM)", "String(TransactionEntity)", "Flex(BuildContext,BoxConstraints)", "TextElement2(String)", "Widget(BuildContext,Animation0,Animation0)", "TransactionRuleEditVM(Store)", "TransactionRuleEdit(BuildContext,TransactionRuleEditVM)", "EntityList(BuildContext,TransactionRuleListVM)", "TransactionRuleListItem(BuildContext,int)", "TransactionRuleScreen(BuildContext,TransactionRuleScreenVM)", "TransactionRuleViewVM(Store)", "TransactionRuleView(BuildContext,TransactionRuleViewVM)", "DataRow(EntityType)", "UserEditVM(Store)", "UserEdit(BuildContext,UserEditVM)", "EntityList(BuildContext,UserListVM)", "UserListItem(BuildContext,int)", "UserScreen(BuildContext,UserScreenVM)", "UserViewVM(Store)", "UserView(BuildContext,UserViewVM)", "VendorContactEditDetails(BuildContext)", "ContactListTile(VendorContactEntity)", "VendorEditContactsVM(Store)", "VendorEditContacts(BuildContext,VendorEditContactsVM)", "Null(VendorContactEntity,int)", "VendorEditVM(Store)", "VendorEdit(BuildContext,VendorEditVM)", "EntityList(BuildContext,VendorListVM)", "String(VendorContactEntity)", "VendorScreen(BuildContext,VendorScreenVM)", "~(VendorContactEntity)", "Row(VendorContactEntity)", "VendorViewVM(Store)", "VendorView(BuildContext,VendorViewVM)", "WebhookEditVM(Store)", "WebhookEdit(BuildContext,WebhookEditVM)", "WebhookViewVM(Store)", "WebhookView(BuildContext,WebhookViewVM)", "EntityList(BuildContext,WebhookListVM)", "WebhookListItem(BuildContext,int)", "WebhookScreen(BuildContext,WebhookScreenVM)", "double(TextElement2)", "FieldConfirmation(BuildContext)", "SimpleDialogOption(InvoiceEntity)", "Text(BaseEntity)", "Null(~())", "~(ActivateIntent)", "Theme(BuildContext,Brightness,Widget?)", "OverlayPortal(BuildContext)", "~(String,double?)", "ListBuilder()", "~(ButtonActivateIntent)", "ListBuilder()", "Text(BuildContext)", "ListBuilder()", "Widget(BuildContext,DocumentSelection?,Widget?)", "SizedBox(BuildContext,Offset?,Widget?)", "IFrameElement(int)", "Null(AuthenticationResult)", "Logger()", "String(Node2?)", "ListBuilder()", "~(ListItem)", "bool(RegExp)", "LinkReference()", "ListBuilder()", "RenderObjectWidget(Widget)", "bool(Node2)", "ListBuilder>()", "Null(String[String?])", "String(Node2)", "Offset(int)", "double(double,RenderBox)", "Widget(BuildContext,BoxValueConstraints)", "SizedBox(BuildContext,Widget?)", "String(String?)", "String?([String?])", "MouseRegion(FormFieldState)", "_PinItem(int)", "Widget(int)", "Element2(int)", "ListBuilder()", "Null(Event)", "ListBuilder()", "ListBuilder()", "GestureDetector(BuildContext,int)", "PdfPageFormat()", "PdfPreviewCustom(BuildContext)", "~(Image1)", "@(Object?,@,@(@))", "AnimatedSwitcher(BuildContext,AsyncSnapshot)", "~(ButtonState)", "ListBuilder()", "Map(SentryPackage)", "MapEntry(String,@)", "String(AppleIDAuthorizationScopes)", "int(_Line)", "DropdownButtonHideUnderline(BuildContext)", "Object(_Line)", "Object(_Highlight)", "int(_Highlight,_Highlight)", "List<_Line>(MapEntry>)", "SourceSpanWithContext()", "String(String{color:Object?})", "List>(BuildContext)", "~(ReactiveModelImp<@>)", "~(StateStatus,Object?)", "TextAffinity()", "DocumentChange(DocumentEdit)", "ParagraphNode(AttributedText)", "MapBuilder()", "MapBuilder()", "ChangeComposingRegionCommand?(EditRequest)", "ChangeInteractionModeCommand?(EditRequest)", "MapBuilder()", "InsertNodeAtIndexCommand?(EditRequest)", "InsertNodeBeforeNodeCommand?(EditRequest)", "InsertNodeAfterNodeCommand?(EditRequest)", "InsertNodeAtCaretCommand?(EditRequest)", "MoveNodeCommand?(EditRequest)", "CombineParagraphsCommand?(EditRequest)", "ReplaceNodeCommand?(EditRequest)", "ReplaceNodeWithEmptyParagraphWithCaretCommand?(EditRequest)", "DeleteContentCommand?(EditRequest)", "InputBorder?()", "DeleteUpstreamAtBeginningOfParagraphCommand?(EditRequest)", "DeleteUpstreamAtBeginningOfBlockNodeCommand?(EditRequest)", "DeleteNodeCommand?(EditRequest)", "DeleteUpstreamCharacterCommand?(EditRequest)", "DeleteDownstreamCharacterCommand?(EditRequest)", "InsertCharacterAtCaretCommand?(EditRequest)", "ChangeParagraphBlockTypeCommand?(EditRequest)", "SplitParagraphCommand?(EditRequest)", "ConvertParagraphToTaskCommand?(EditRequest)", "ConvertTaskToParagraphCommand?(EditRequest)", "ChangeTaskCompletionCommand?(EditRequest)", "SplitExistingTaskCommand?(EditRequest)", "SplitListItemCommand?(EditRequest)", "IndentListItemCommand?(EditRequest)", "UnIndentListItemCommand?(EditRequest)", "ChangeListItemTypeCommand?(EditRequest)", "ConvertParagraphToListItemCommand?(EditRequest)", "AddTextAttributionsCommand?(EditRequest)", "ToggleTextAttributionsCommand?(EditRequest)", "RemoveTextAttributionsCommand?(EditRequest)", "ConvertTextNodeToParagraphCommand?(EditRequest)", "PasteEditorCommand?(EditRequest)", "Attribution()", "MapBuilder()", "bool(LinkifyElement)", "Container(BuildContext,Widget?)", "~(DocumentSelectionChange)", "MouseRegion(BuildContext,MouseCursor0,Widget?)", "ListBuilder()", "MapBuilder()", "MapBuilder()", "MapBuilder()", "MapBuilder()", "Follower(BuildContext,bool,Widget?)", "MapBuilder()", "MapBuilder()", "MapBuilder()", "~(Offset?)", "MapBuilder()", "bool(TextEditingDelta)", "Padding(BuildContext,double)", "Row(BuildContext,Widget?)", "MapBuilder()", "MapBuilder()", "String(GlobalKey>)", "_Component(BuildContext,SingleColumnLayoutComponentViewModel)", "~(String,GlobalKey>)", "MapBuilder()", "SuperEditorFocusDebugVisuals(BuildContext)", "MapBuilder()", "MapBuilder()", "~(DocumentSelection?)", "MapBuilder()", "SpanRange()", "TextSpan(MultiAttributionSpan)", "SingleColumnDocumentLayout(~())", "int(GroupedOverlayPortalController,GroupedOverlayPortalController)", "_ThumbPressGestureRecognizer0()", "~(_ThumbPressGestureRecognizer0)", "_TrackTapGestureRecognizer0()", "~(_TrackTapGestureRecognizer0)", "~(_TapTracker0)", "ColoredBox(BuildContext,Widget?)", "Padding(BuildContext,Widget?)", "bool(Intent)", "BorderRadius?()", "TapRegion(BuildContext)", "MapBuilder()", "MapBuilder()", "AndroidEditingOverlayControls(BuildContext,Widget?)", "ProseTextLayout()", "Stack(BuildContext,Widget?)", "~(RawFloatingCursorPoint)", "IOSEditingControls(BuildContext,Widget?)", "bool(bool?)", "~(AppLifecycleState)", "JavaScriptObject(int{params:Object?})", "MapBuilder()", "int(Comparable<@>,Comparable<@>)", "~(CkCanvas)", "List(String,List)", "0^(0^,0^)", "Size?(Size?,Size?,double)", "double?(num?,num?,double)", "Color?(Color?,Color?,double)", "Widget(BuildContext,Offset,Offset,Widget)", "~(FlutterErrorDetails{forceReport:bool})", "DiagnosticsNode(String)", "StackFrame?(String)", "double(double,double,double)", "Widget(BuildContext,Animation0,Animation0,Widget)", "bool?(bool?,bool?,double)", "MapBuilder()", "Widget(BuildContext,Widget)", "OutlinedBorder?(OutlinedBorder?,OutlinedBorder?,double)", "EdgeInsetsGeometry?(EdgeInsetsGeometry?,EdgeInsetsGeometry?,double)", "TextStyle?(TextStyle?,TextStyle?,double)", "int(_TaskEntry<@>,_TaskEntry<@>)", "bool({priority!int,scheduler!SchedulerBinding})", "List(String)", "Widget(Widget,Key,Widget,Key)", "Widget(Widget?,List)", "~(FocusNode{alignment:double?,alignmentPolicy:ScrollPositionAlignmentPolicy?,curve:Curve?,duration:Duration?})", "int(Element0,Element0)", "Widget(FlutterErrorDetails)", "IconThemeData(IconThemeData?,IconThemeData?,double)", "List>(NavigatorState,String)", "int(Widget,int)", "MapBuilder()", "Widget(BuildContext,List,Widget(Color))", "Widget(Color,bool,~())", "Store<0^>(Store<0^>)", "MapBuilder()", "MapBuilder()", "~({isTesting:bool})", "AppState(AppState,@)", "AuthState(AuthState,UserLoadUrl)", "AuthState(AuthState,UserSignUpRequest)", "AuthState(AuthState,UserLoginRequest)", "AuthState(AuthState,OAuthLoginRequest)", "AuthState(AuthState,OAuthSignUpRequest)", "AuthState(AuthState,UserLoginSuccess)", "AuthState(AuthState,UserVerifiedPassword)", "AuthState(AuthState,UserUnverifiedPassword)", "BankAccountEntity(BankAccountEntity?,@)", "BankAccountEntity?(BankAccountEntity?,@)", "ListUIState(ListUIState,ViewBankAccountList)", "ListUIState(ListUIState,FilterBankAccountsByCustom1)", "ListUIState(ListUIState,FilterBankAccountsByCustom2)", "ListUIState(ListUIState,FilterBankAccountsByState)", "ListUIState(ListUIState,FilterBankAccounts)", "ListUIState(ListUIState,SortBankAccounts)", "ListUIState(ListUIState,StartBankAccountMultiselect)", "ListUIState(ListUIState,AddToBankAccountMultiselect)", "ListUIState(ListUIState,RemoveFromBankAccountMultiselect)", "ListUIState(ListUIState,ClearBankAccountMultiselect)", "BankAccountState(BankAccountState,ArchiveBankAccountsSuccess)", "BankAccountState(BankAccountState,DeleteBankAccountsSuccess)", "BankAccountState(BankAccountState,RestoreBankAccountsSuccess)", "BankAccountState(BankAccountState,AddBankAccountSuccess)", "BankAccountState(BankAccountState,SaveBankAccountSuccess)", "BankAccountState(BankAccountState,LoadBankAccountSuccess)", "BankAccountState(BankAccountState,LoadBankAccountsSuccess)", "BankAccountState(BankAccountState,LoadCompanySuccess)", "ListUIState(ListUIState,ViewClientList)", "ListUIState(ListUIState,FilterClientsByCustom1)", "ListUIState(ListUIState,FilterClientsByCustom2)", "ListUIState(ListUIState,FilterClientsByCustom3)", "ListUIState(ListUIState,FilterClientsByCustom4)", "ListUIState(ListUIState,FilterClientsByState)", "ListUIState(ListUIState,FilterClients)", "ListUIState(ListUIState,SortClients)", "ListUIState(ListUIState,StartClientMultiselect)", "ListUIState(ListUIState,AddToClientMultiselect)", "ListUIState(ListUIState,RemoveFromClientMultiselect)", "ListUIState(ListUIState,ClearClientMultiselect)", "ClientState(ClientState,ArchiveClientsSuccess)", "ClientState(ClientState,DeleteClientsSuccess)", "ClientState(ClientState,RestoreClientSuccess)", "ClientState(ClientState,AddClientSuccess)", "ClientState(ClientState,SaveClientSuccess)", "ClientState(ClientState,LoadClientSuccess)", "ClientState(ClientState,MergeClientsSuccess)", "ClientState(ClientState,PurgeClientSuccess)", "ClientState(ClientState,LoadClientsSuccess)", "ClientState(ClientState,LoadCompanySuccess)", "UserCompanyEntity(UserCompanyEntity?,LoadCompanySuccess)", "UserCompanyEntity(UserCompanyEntity?,SaveCompanySuccess)", "CompanyGatewayEntity(CompanyGatewayEntity?,@)", "CompanyGatewayEntity?(CompanyGatewayEntity?,@)", "ListUIState(ListUIState,FilterCompanyGatewaysByCustom1)", "ListUIState(ListUIState,FilterCompanyGatewaysByCustom2)", "ListUIState(ListUIState,FilterCompanyGatewaysByState)", "ListUIState(ListUIState,FilterCompanyGateways)", "ListUIState(ListUIState,SortCompanyGateways)", "ListUIState(ListUIState,StartCompanyGatewayMultiselect)", "ListUIState(ListUIState,AddToCompanyGatewayMultiselect)", "ListUIState(ListUIState,RemoveFromCompanyGatewayMultiselect)", "ListUIState(ListUIState,ClearCompanyGatewayMultiselect)", "CompanyGatewayState(CompanyGatewayState,ArchiveCompanyGatewaySuccess)", "CompanyGatewayState(CompanyGatewayState,DeleteCompanyGatewaySuccess)", "CompanyGatewayState(CompanyGatewayState,RestoreCompanyGatewaySuccess)", "CompanyGatewayState(CompanyGatewayState,AddCompanyGatewaySuccess)", "CompanyGatewayState(CompanyGatewayState,SaveCompanyGatewaySuccess)", "CompanyGatewayState(CompanyGatewayState,LoadCompanyGatewaySuccess)", "CompanyGatewayState(CompanyGatewayState,LoadCompanySuccess)", "CompanyGatewayState(CompanyGatewayState,LoadCompanyGatewaysSuccess)", "MapBuilder()", "MapBuilder()", "InvoiceEntity(InvoiceEntity?,AddCreditItems)", "InvoiceEntity?(InvoiceEntity?,DeleteCreditItem)", "InvoiceEntity?(InvoiceEntity?,UpdateCreditItem)", "ListUIState(ListUIState,ViewCreditList)", "ListUIState(ListUIState,FilterCreditsByCustom1)", "ListUIState(ListUIState,FilterCreditsByCustom2)", "ListUIState(ListUIState,FilterCreditsByCustom3)", "ListUIState(ListUIState,FilterCreditsByCustom4)", "ListUIState(ListUIState,FilterCreditsByState)", "ListUIState(ListUIState,FilterCreditsByStatus)", "ListUIState(ListUIState,FilterCredits)", "ListUIState(ListUIState,SortCredits)", "ListUIState(ListUIState,StartCreditMultiselect)", "ListUIState(ListUIState,AddToCreditMultiselect)", "ListUIState(ListUIState,RemoveFromCreditMultiselect)", "ListUIState(ListUIState,ClearCreditMultiselect)", "CreditState(CreditState,PurgeClientSuccess)", "CreditState(CreditState,MarkSentCreditSuccess)", "CreditState(CreditState,ArchiveCreditsSuccess)", "CreditState(CreditState,DeleteCreditsSuccess)", "CreditState(CreditState,RestoreCreditsSuccess)", "CreditState(CreditState,AddCreditSuccess)", "CreditState(CreditState,@)", "CreditState(CreditState,LoadCreditsSuccess)", "CreditState(CreditState,LoadCompanySuccess)", "DesignEntity(DesignEntity?,@)", "DesignEntity?(DesignEntity?,@)", "ListUIState(ListUIState,ViewDesignList)", "ListUIState(ListUIState,FilterDesignsByCustom1)", "ListUIState(ListUIState,FilterDesignsByCustom2)", "ListUIState(ListUIState,FilterDesignsByState)", "ListUIState(ListUIState,FilterDesigns)", "ListUIState(ListUIState,SortDesigns)", "ListUIState(ListUIState,StartDesignMultiselect)", "ListUIState(ListUIState,AddToDesignMultiselect)", "ListUIState(ListUIState,RemoveFromDesignMultiselect)", "ListUIState(ListUIState,ClearDesignMultiselect)", "DesignState(DesignState,ArchiveDesignsSuccess)", "DesignState(DesignState,DeleteDesignsSuccess)", "DesignState(DesignState,RestoreDesignsSuccess)", "DesignState(DesignState,AddDesignSuccess)", "DesignState(DesignState,SaveDesignSuccess)", "DesignState(DesignState,LoadDesignSuccess)", "DesignState(DesignState,LoadDesignsSuccess)", "DesignState(DesignState,LoadCompanySuccess)", "DocumentEntity?(DocumentEntity?,@)", "ListUIState(ListUIState,ViewDocumentList)", "ListUIState(ListUIState,FilterDocumentsByCustom1)", "ListUIState(ListUIState,FilterDocumentsByCustom2)", "ListUIState(ListUIState,FilterDocumentsByState)", "ListUIState(ListUIState,FilterDocumentsByStatus)", "ListUIState(ListUIState,FilterDocuments)", "ListUIState(ListUIState,SortDocuments)", "ListUIState(ListUIState,StartDocumentMultiselect)", "ListUIState(ListUIState,AddToDocumentMultiselect)", "ListUIState(ListUIState,RemoveFromDocumentMultiselect)", "ListUIState(ListUIState,ClearDocumentMultiselect)", "DocumentState(DocumentState,ArchiveDocumentSuccess)", "DocumentState(DocumentState,DeleteDocumentSuccess)", "DocumentState(DocumentState,RestoreDocumentSuccess)", "DocumentState(DocumentState,AddDocumentSuccess)", "DocumentState(DocumentState,SaveDocumentSuccess)", "DocumentState(DocumentState,LoadDocumentSuccess)", "DocumentState(DocumentState,LoadDocumentsSuccess)", "DocumentState(DocumentState,LoadCompanySuccess)", "MapBuilder()", "MapBuilder()", "ListUIState(ListUIState,ViewExpenseList)", "ListUIState(ListUIState,FilterExpensesByCustom1)", "ListUIState(ListUIState,FilterExpensesByCustom2)", "ListUIState(ListUIState,FilterExpensesByCustom3)", "ListUIState(ListUIState,FilterExpensesByCustom4)", "ListUIState(ListUIState,FilterExpensesByState)", "ListUIState(ListUIState,FilterExpensesByStatus)", "ListUIState(ListUIState,FilterExpenses)", "ListUIState(ListUIState,SortExpenses)", "ListUIState(ListUIState,StartExpenseMultiselect)", "ListUIState(ListUIState,AddToExpenseMultiselect)", "ListUIState(ListUIState,RemoveFromExpenseMultiselect)", "ListUIState(ListUIState,ClearExpenseMultiselect)", "ExpenseState(ExpenseState,PurgeClientSuccess)", "ExpenseState(ExpenseState,ArchiveExpenseSuccess)", "ExpenseState(ExpenseState,DeleteExpenseSuccess)", "ExpenseState(ExpenseState,RestoreExpenseSuccess)", "ExpenseState(ExpenseState,AddExpenseSuccess)", "ExpenseState(ExpenseState,SaveExpenseSuccess)", "ExpenseState(ExpenseState,LoadExpenseSuccess)", "ExpenseState(ExpenseState,LoadExpensesSuccess)", "ExpenseState(ExpenseState,LoadCompanySuccess)", "ExpenseCategoryEntity(ExpenseCategoryEntity?,@)", "ExpenseCategoryEntity?(ExpenseCategoryEntity?,@)", "ListUIState(ListUIState,FilterExpenseCategoriesByCustom1)", "ListUIState(ListUIState,FilterExpenseCategoriesByCustom2)", "ListUIState(ListUIState,FilterExpenseCategoriesByState)", "ListUIState(ListUIState,FilterExpenseCategories)", "ListUIState(ListUIState,SortExpenseCategories)", "ListUIState(ListUIState,StartExpenseCategoryMultiselect)", "ListUIState(ListUIState,AddToExpenseCategoryMultiselect)", "ListUIState(ListUIState,RemoveFromExpenseCategoryMultiselect)", "ListUIState(ListUIState,ClearExpenseCategoryMultiselect)", "ExpenseCategoryState(ExpenseCategoryState,ArchiveExpenseCategoriesSuccess)", "ExpenseCategoryState(ExpenseCategoryState,DeleteExpenseCategoriesSuccess)", "ExpenseCategoryState(ExpenseCategoryState,RestoreExpenseCategoriesSuccess)", "ExpenseCategoryState(ExpenseCategoryState,AddExpenseCategorySuccess)", "ExpenseCategoryState(ExpenseCategoryState,SaveExpenseCategorySuccess)", "ExpenseCategoryState(ExpenseCategoryState,LoadExpenseCategorySuccess)", "ExpenseCategoryState(ExpenseCategoryState,LoadExpenseCategoriesSuccess)", "ExpenseCategoryState(ExpenseCategoryState,LoadCompanySuccess)", "GroupEntity(GroupEntity?,@)", "GroupEntity?(GroupEntity?,@)", "ListUIState(ListUIState,ViewGroupList)", "ListUIState(ListUIState,FilterGroupsByState)", "ListUIState(ListUIState,FilterGroups)", "ListUIState(ListUIState,SortGroups)", "ListUIState(ListUIState,StartGroupMultiselect)", "ListUIState(ListUIState,AddToGroupMultiselect)", "ListUIState(ListUIState,RemoveFromGroupMultiselect)", "ListUIState(ListUIState,ClearGroupMultiselect)", "GroupState(GroupState,ArchiveGroupSuccess)", "GroupState(GroupState,DeleteGroupSuccess)", "GroupState(GroupState,RestoreGroupSuccess)", "GroupState(GroupState,AddGroupSuccess)", "GroupState(GroupState,SaveGroupSuccess)", "GroupState(GroupState,LoadGroupSuccess)", "GroupState(GroupState,LoadGroupsSuccess)", "GroupState(GroupState,LoadCompanySuccess)", "InvoiceEntity(InvoiceEntity?,AddInvoiceItems)", "InvoiceEntity?(InvoiceEntity?,DeleteInvoiceItem)", "InvoiceEntity?(InvoiceEntity?,UpdateInvoiceItem)", "ListUIState(ListUIState,ViewInvoiceList)", "ListUIState(ListUIState,FilterInvoicesByCustom1)", "ListUIState(ListUIState,FilterInvoicesByCustom2)", "ListUIState(ListUIState,FilterInvoicesByCustom3)", "ListUIState(ListUIState,FilterInvoicesByCustom4)", "ListUIState(ListUIState,FilterInvoicesByState)", "ListUIState(ListUIState,FilterInvoicesByStatus)", "ListUIState(ListUIState,FilterInvoices)", "ListUIState(ListUIState,SortInvoices)", "ListUIState(ListUIState,StartInvoiceMultiselect)", "ListUIState(ListUIState,AddToInvoiceMultiselect)", "ListUIState(ListUIState,RemoveFromInvoiceMultiselect)", "ListUIState(ListUIState,ClearInvoiceMultiselect)", "InvoiceState(InvoiceState,PurgeClientSuccess)", "InvoiceState(InvoiceState,MarkInvoicesSentSuccess)", "InvoiceState(InvoiceState,MarkInvoicesPaidSuccess)", "InvoiceState(InvoiceState,CancelInvoicesSuccess)", "InvoiceState(InvoiceState,ArchiveInvoicesSuccess)", "InvoiceState(InvoiceState,DeleteInvoicesSuccess)", "InvoiceState(InvoiceState,EmailInvoiceSuccess)", "InvoiceState(InvoiceState,RestoreInvoicesSuccess)", "InvoiceState(InvoiceState,AddInvoiceSuccess)", "InvoiceState(InvoiceState,@)", "InvoiceState(InvoiceState,LoadInvoicesSuccess)", "InvoiceState(InvoiceState,LoadCompanySuccess)", "PaymentEntity(PaymentEntity?,@)", "PaymentEntity?(PaymentEntity?,@)", "ListUIState(ListUIState,ViewPaymentList)", "ListUIState(ListUIState,FilterPaymentsByCustom1)", "ListUIState(ListUIState,FilterPaymentsByCustom2)", "ListUIState(ListUIState,FilterPaymentsByCustom3)", "ListUIState(ListUIState,FilterPaymentsByCustom4)", "ListUIState(ListUIState,FilterPaymentsByState)", "ListUIState(ListUIState,FilterPaymentsByStatus)", "ListUIState(ListUIState,FilterPayments)", "ListUIState(ListUIState,SortPayments)", "ListUIState(ListUIState,StartPaymentMultiselect)", "ListUIState(ListUIState,AddToPaymentMultiselect)", "ListUIState(ListUIState,RemoveFromPaymentMultiselect)", "ListUIState(ListUIState,ClearPaymentMultiselect)", "PaymentState(PaymentState,PurgeClientSuccess)", "PaymentState(PaymentState,ArchivePaymentsSuccess)", "PaymentState(PaymentState,DeletePaymentsSuccess)", "PaymentState(PaymentState,RestorePaymentsSuccess)", "PaymentState(PaymentState,AddPaymentSuccess)", "PaymentState(PaymentState,SavePaymentSuccess)", "PaymentState(PaymentState,LoadPaymentSuccess)", "PaymentState(PaymentState,LoadPaymentsSuccess)", "PaymentState(PaymentState,LoadCompanySuccess)", "PaymentTermEntity(PaymentTermEntity?,@)", "PaymentTermEntity?(PaymentTermEntity?,@)", "ListUIState(ListUIState,ViewPaymentTermList)", "ListUIState(ListUIState,FilterPaymentTermsByCustom1)", "ListUIState(ListUIState,FilterPaymentTermsByCustom2)", "ListUIState(ListUIState,FilterPaymentTermsByState)", "ListUIState(ListUIState,FilterPaymentTerms)", "ListUIState(ListUIState,SortPaymentTerms)", "ListUIState(ListUIState,StartPaymentTermMultiselect)", "ListUIState(ListUIState,AddToPaymentTermMultiselect)", "ListUIState(ListUIState,RemoveFromPaymentTermMultiselect)", "ListUIState(ListUIState,ClearPaymentTermMultiselect)", "PaymentTermState(PaymentTermState,ArchivePaymentTermsSuccess)", "PaymentTermState(PaymentTermState,DeletePaymentTermsSuccess)", "PaymentTermState(PaymentTermState,RestorePaymentTermsSuccess)", "PaymentTermState(PaymentTermState,AddPaymentTermSuccess)", "PaymentTermState(PaymentTermState,SavePaymentTermSuccess)", "PaymentTermState(PaymentTermState,LoadPaymentTermSuccess)", "PaymentTermState(PaymentTermState,LoadPaymentTermsSuccess)", "PaymentTermState(PaymentTermState,LoadCompanySuccess)", "ProductEntity(ProductEntity?,@)", "ProductEntity?(ProductEntity?,@)", "ListUIState(ListUIState,ViewProductList)", "ListUIState(ListUIState,FilterProductsByState)", "ListUIState(ListUIState,FilterProductsByCustom1)", "ListUIState(ListUIState,FilterProductsByCustom2)", "ListUIState(ListUIState,FilterProductsByCustom3)", "ListUIState(ListUIState,FilterProductsByCustom4)", "ListUIState(ListUIState,FilterProducts)", "ListUIState(ListUIState,SortProducts)", "ListUIState(ListUIState,StartProductMultiselect)", "ListUIState(ListUIState,AddToProductMultiselect)", "ListUIState(ListUIState,RemoveFromProductMultiselect)", "ListUIState(ListUIState,ClearProductMultiselect)", "ProductState(ProductState,ArchiveProductsSuccess)", "ProductState(ProductState,DeleteProductsSuccess)", "ProductState(ProductState,RestoreProductsSuccess)", "ProductState(ProductState,SetTaxCategoryProductsSuccess)", "ProductState(ProductState,AddProductSuccess)", "ProductState(ProductState,SaveProductSuccess)", "ProductState(ProductState,LoadProductSuccess)", "ProductState(ProductState,LoadProductsSuccess)", "ProductState(ProductState,LoadCompanySuccess)", "ProjectEntity(ProjectEntity?,@)", "ProjectEntity?(ProjectEntity?,@)", "ListUIState(ListUIState,ViewProjectList)", "ListUIState(ListUIState,FilterProjectsByCustom1)", "ListUIState(ListUIState,FilterProjectsByCustom2)", "ListUIState(ListUIState,FilterProjectsByCustom3)", "ListUIState(ListUIState,FilterProjectsByCustom4)", "ListUIState(ListUIState,FilterProjectsByState)", "ListUIState(ListUIState,FilterProjects)", "ListUIState(ListUIState,SortProjects)", "ListUIState(ListUIState,StartProjectMultiselect)", "ListUIState(ListUIState,AddToProjectMultiselect)", "ListUIState(ListUIState,RemoveFromProjectMultiselect)", "ListUIState(ListUIState,ClearProjectMultiselect)", "ProjectState(ProjectState,PurgeClientSuccess)", "ProjectState(ProjectState,ArchiveProjectSuccess)", "ProjectState(ProjectState,DeleteProjectSuccess)", "ProjectState(ProjectState,RestoreProjectSuccess)", "ProjectState(ProjectState,AddProjectSuccess)", "ProjectState(ProjectState,SaveProjectSuccess)", "ProjectState(ProjectState,LoadProjectSuccess)", "ProjectState(ProjectState,LoadProjectsSuccess)", "ProjectState(ProjectState,LoadCompanySuccess)", "InvoiceEntity(InvoiceEntity?,AddPurchaseOrderItems)", "InvoiceEntity?(InvoiceEntity?,DeletePurchaseOrderItem)", "InvoiceEntity?(InvoiceEntity?,UpdatePurchaseOrderItem)", "ListUIState(ListUIState,ViewPurchaseOrderList)", "ListUIState(ListUIState,FilterPurchaseOrdersByCustom1)", "ListUIState(ListUIState,FilterPurchaseOrdersByCustom2)", "ListUIState(ListUIState,FilterPurchaseOrdersByCustom3)", "ListUIState(ListUIState,FilterPurchaseOrdersByCustom4)", "ListUIState(ListUIState,FilterPurchaseOrdersByState)", "ListUIState(ListUIState,FilterPurchaseOrdersByStatus)", "ListUIState(ListUIState,FilterPurchaseOrders)", "ListUIState(ListUIState,SortPurchaseOrders)", "ListUIState(ListUIState,StartPurchaseOrderMultiselect)", "ListUIState(ListUIState,AddToPurchaseOrderMultiselect)", "ListUIState(ListUIState,RemoveFromPurchaseOrderMultiselect)", "ListUIState(ListUIState,ClearPurchaseOrderMultiselect)", "PurchaseOrderState(PurchaseOrderState,MarkPurchaseOrderSentSuccess)", "PurchaseOrderState(PurchaseOrderState,ConvertPurchaseOrdersToExpensesSuccess)", "PurchaseOrderState(PurchaseOrderState,AddPurchaseOrdersToInventorySuccess)", "PurchaseOrderState(PurchaseOrderState,AcceptPurchaseOrderSuccess)", "PurchaseOrderState(PurchaseOrderState,CancelPurchaseOrderSuccess)", "PurchaseOrderState(PurchaseOrderState,ArchivePurchaseOrdersSuccess)", "PurchaseOrderState(PurchaseOrderState,DeletePurchaseOrdersSuccess)", "PurchaseOrderState(PurchaseOrderState,RestorePurchaseOrdersSuccess)", "PurchaseOrderState(PurchaseOrderState,EmailPurchaseOrderSuccess)", "PurchaseOrderState(PurchaseOrderState,ApprovePurchaseOrderSuccess)", "PurchaseOrderState(PurchaseOrderState,AddPurchaseOrderSuccess)", "PurchaseOrderState(PurchaseOrderState,@)", "PurchaseOrderState(PurchaseOrderState,LoadPurchaseOrdersSuccess)", "PurchaseOrderState(PurchaseOrderState,LoadCompanySuccess)", "InvoiceEntity(InvoiceEntity?,AddQuoteItems)", "InvoiceEntity?(InvoiceEntity?,DeleteQuoteItem)", "InvoiceEntity?(InvoiceEntity?,UpdateQuoteItem)", "ListUIState(ListUIState,ViewQuoteList)", "ListUIState(ListUIState,FilterQuotesByCustom1)", "ListUIState(ListUIState,FilterQuotesByCustom2)", "ListUIState(ListUIState,FilterQuotesByCustom3)", "ListUIState(ListUIState,FilterQuotesByCustom4)", "ListUIState(ListUIState,FilterQuotesByState)", "ListUIState(ListUIState,FilterQuotesByStatus)", "ListUIState(ListUIState,FilterQuotes)", "ListUIState(ListUIState,SortQuotes)", "ListUIState(ListUIState,StartQuoteMultiselect)", "ListUIState(ListUIState,AddToQuoteMultiselect)", "ListUIState(ListUIState,RemoveFromQuoteMultiselect)", "ListUIState(ListUIState,ClearQuoteMultiselect)", "QuoteState(QuoteState,PurgeClientSuccess)", "QuoteState(QuoteState,MarkSentQuoteSuccess)", "QuoteState(QuoteState,ArchiveQuotesSuccess)", "QuoteState(QuoteState,DeleteQuotesSuccess)", "QuoteState(QuoteState,RestoreQuotesSuccess)", "QuoteState(QuoteState,EmailQuoteSuccess)", "QuoteState(QuoteState,ConvertQuotesToInvoicesSuccess)", "QuoteState(QuoteState,ConvertQuotesToProjectsSuccess)", "QuoteState(QuoteState,AddQuoteSuccess)", "QuoteState(QuoteState,@)", "QuoteState(QuoteState,LoadQuotesSuccess)", "QuoteState(QuoteState,LoadCompanySuccess)", "ListUIState(ListUIState,ViewRecurringExpenseList)", "ListUIState(ListUIState,FilterRecurringExpensesByCustom1)", "ListUIState(ListUIState,FilterRecurringExpensesByCustom2)", "ListUIState(ListUIState,FilterRecurringExpensesByState)", "ListUIState(ListUIState,FilterRecurringExpensesByStatus)", "ListUIState(ListUIState,FilterRecurringExpenses)", "ListUIState(ListUIState,SortRecurringExpenses)", "ListUIState(ListUIState,StartRecurringExpenseMultiselect)", "ListUIState(ListUIState,AddToRecurringExpenseMultiselect)", "ListUIState(ListUIState,RemoveFromRecurringExpenseMultiselect)", "ListUIState(ListUIState,ClearRecurringExpenseMultiselect)", "RecurringExpenseState(RecurringExpenseState,PurgeClientSuccess)", "RecurringExpenseState(RecurringExpenseState,ArchiveRecurringExpensesSuccess)", "RecurringExpenseState(RecurringExpenseState,DeleteRecurringExpensesSuccess)", "RecurringExpenseState(RecurringExpenseState,RestoreRecurringExpensesSuccess)", "RecurringExpenseState(RecurringExpenseState,AddRecurringExpenseSuccess)", "RecurringExpenseState(RecurringExpenseState,SaveRecurringExpenseSuccess)", "RecurringExpenseState(RecurringExpenseState,StartRecurringExpensesSuccess)", "RecurringExpenseState(RecurringExpenseState,StopRecurringExpensesSuccess)", "RecurringExpenseState(RecurringExpenseState,LoadRecurringExpenseSuccess)", "RecurringExpenseState(RecurringExpenseState,LoadRecurringExpensesSuccess)", "RecurringExpenseState(RecurringExpenseState,LoadCompanySuccess)", "InvoiceEntity(InvoiceEntity?,AddRecurringInvoiceItems)", "InvoiceEntity?(InvoiceEntity?,DeleteRecurringInvoiceItem)", "InvoiceEntity?(InvoiceEntity?,UpdateRecurringInvoiceItem)", "ListUIState(ListUIState,FilterRecurringInvoicesByCustom1)", "ListUIState(ListUIState,FilterRecurringInvoicesByCustom2)", "ListUIState(ListUIState,FilterRecurringInvoicesByCustom3)", "ListUIState(ListUIState,FilterRecurringInvoicesByCustom4)", "ListUIState(ListUIState,FilterRecurringInvoicesByState)", "ListUIState(ListUIState,FilterRecurringInvoicesByStatus)", "ListUIState(ListUIState,FilterRecurringInvoices)", "ListUIState(ListUIState,SortRecurringInvoices)", "ListUIState(ListUIState,StartRecurringInvoiceMultiselect)", "ListUIState(ListUIState,AddToRecurringInvoiceMultiselect)", "ListUIState(ListUIState,RemoveFromRecurringInvoiceMultiselect)", "ListUIState(ListUIState,ClearRecurringInvoiceMultiselect)", "RecurringInvoiceState(RecurringInvoiceState,PurgeClientSuccess)", "RecurringInvoiceState(RecurringInvoiceState,ArchiveRecurringInvoicesSuccess)", "RecurringInvoiceState(RecurringInvoiceState,DeleteRecurringInvoicesSuccess)", "RecurringInvoiceState(RecurringInvoiceState,EmailRecurringInvoiceSuccess)", "RecurringInvoiceState(RecurringInvoiceState,RestoreRecurringInvoicesSuccess)", "RecurringInvoiceState(RecurringInvoiceState,SendNowRecurringInvoicesSuccess)", "RecurringInvoiceState(RecurringInvoiceState,StartRecurringInvoicesSuccess)", "RecurringInvoiceState(RecurringInvoiceState,StopRecurringInvoicesSuccess)", "RecurringInvoiceState(RecurringInvoiceState,AddRecurringInvoiceSuccess)", "RecurringInvoiceState(RecurringInvoiceState,@)", "RecurringInvoiceState(RecurringInvoiceState,LoadRecurringInvoicesSuccess)", "RecurringInvoiceState(RecurringInvoiceState,LoadCompanySuccess)", "ScheduleEntity(ScheduleEntity?,@)", "ScheduleEntity?(ScheduleEntity?,@)", "ListUIState(ListUIState,ViewScheduleList)", "ListUIState(ListUIState,FilterSchedulesByCustom1)", "ListUIState(ListUIState,FilterSchedulesByCustom2)", "ListUIState(ListUIState,FilterSchedulesByState)", "ListUIState(ListUIState,FilterSchedules)", "ListUIState(ListUIState,SortSchedules)", "ListUIState(ListUIState,StartScheduleMultiselect)", "ListUIState(ListUIState,AddToScheduleMultiselect)", "ListUIState(ListUIState,RemoveFromScheduleMultiselect)", "ListUIState(ListUIState,ClearScheduleMultiselect)", "ScheduleState(ScheduleState,ArchiveSchedulesSuccess)", "ScheduleState(ScheduleState,DeleteSchedulesSuccess)", "ScheduleState(ScheduleState,RestoreSchedulesSuccess)", "ScheduleState(ScheduleState,AddScheduleSuccess)", "ScheduleState(ScheduleState,SaveScheduleSuccess)", "ScheduleState(ScheduleState,LoadScheduleSuccess)", "ScheduleState(ScheduleState,LoadSchedulesSuccess)", "ScheduleState(ScheduleState,LoadCompanySuccess)", "StaticState(StaticState,LoadStaticSuccess)", "SubscriptionEntity(SubscriptionEntity?,@)", "SubscriptionEntity?(SubscriptionEntity?,@)", "ListUIState(ListUIState,FilterSubscriptionsByCustom1)", "ListUIState(ListUIState,FilterSubscriptionsByCustom2)", "ListUIState(ListUIState,FilterSubscriptionsByState)", "ListUIState(ListUIState,FilterSubscriptions)", "ListUIState(ListUIState,SortSubscriptions)", "ListUIState(ListUIState,StartSubscriptionMultiselect)", "ListUIState(ListUIState,AddToSubscriptionMultiselect)", "ListUIState(ListUIState,RemoveFromSubscriptionMultiselect)", "ListUIState(ListUIState,ClearSubscriptionMultiselect)", "SubscriptionState(SubscriptionState,ArchiveSubscriptionsSuccess)", "SubscriptionState(SubscriptionState,DeleteSubscriptionsSuccess)", "SubscriptionState(SubscriptionState,RestoreSubscriptionsSuccess)", "SubscriptionState(SubscriptionState,AddSubscriptionSuccess)", "SubscriptionState(SubscriptionState,SaveSubscriptionSuccess)", "SubscriptionState(SubscriptionState,LoadSubscriptionSuccess)", "SubscriptionState(SubscriptionState,LoadSubscriptionsSuccess)", "SubscriptionState(SubscriptionState,LoadCompanySuccess)", "TaskEntity(TaskEntity?,@)", "TaskEntity?(TaskEntity?,@)", "ListUIState(ListUIState,ViewTaskList)", "ListUIState(ListUIState,FilterTasksByCustom1)", "ListUIState(ListUIState,FilterTasksByCustom2)", "ListUIState(ListUIState,FilterTasksByState)", "ListUIState(ListUIState,FilterTasksByStatus)", "ListUIState(ListUIState,FilterTasks)", "ListUIState(ListUIState,SortTasks)", "TaskEntity(TaskEntity?,AddTaskTime)", "TaskEntity(TaskEntity?,DeleteTaskTime)", "TaskEntity(TaskEntity?,UpdateTaskTime)", "ListUIState(ListUIState,StartTaskMultiselect)", "ListUIState(ListUIState,AddToTaskMultiselect)", "ListUIState(ListUIState,RemoveFromTaskMultiselect)", "ListUIState(ListUIState,ClearTaskMultiselect)", "TaskState(TaskState,PurgeClientSuccess)", "TaskState(TaskState,SortTasksSuccess)", "TaskState(TaskState,ArchiveTaskSuccess)", "TaskState(TaskState,StartTasksSuccess)", "TaskState(TaskState,StopTasksSuccess)", "TaskState(TaskState,DeleteTaskSuccess)", "TaskState(TaskState,RestoreTaskSuccess)", "TaskState(TaskState,AddTaskSuccess)", "TaskState(TaskState,SaveTaskSuccess)", "TaskState(TaskState,LoadTaskSuccess)", "TaskState(TaskState,LoadTasksSuccess)", "TaskState(TaskState,LoadCompanySuccess)", "TaskStatusEntity(TaskStatusEntity?,@)", "TaskStatusEntity?(TaskStatusEntity?,@)", "ListUIState(ListUIState,ViewTaskStatusList)", "ListUIState(ListUIState,FilterTaskStatusesByCustom1)", "ListUIState(ListUIState,FilterTaskStatusesByCustom2)", "ListUIState(ListUIState,FilterTaskStatusesByState)", "ListUIState(ListUIState,FilterTaskStatuses)", "ListUIState(ListUIState,SortTaskStatuses)", "ListUIState(ListUIState,StartTaskStatusMultiselect)", "ListUIState(ListUIState,AddToTaskStatusMultiselect)", "ListUIState(ListUIState,RemoveFromTaskStatusMultiselect)", "ListUIState(ListUIState,ClearTaskStatusMultiselect)", "TaskStatusState(TaskStatusState,SortTasksSuccess)", "TaskStatusState(TaskStatusState,ArchiveTaskStatusesSuccess)", "TaskStatusState(TaskStatusState,DeleteTaskStatusesSuccess)", "TaskStatusState(TaskStatusState,RestoreTaskStatusesSuccess)", "TaskStatusState(TaskStatusState,AddTaskStatusSuccess)", "TaskStatusState(TaskStatusState,SaveTaskStatusSuccess)", "TaskStatusState(TaskStatusState,LoadTaskStatusSuccess)", "TaskStatusState(TaskStatusState,LoadTaskStatusesSuccess)", "TaskStatusState(TaskStatusState,LoadCompanySuccess)", "TaxRateEntity(TaxRateEntity?,@)", "TaxRateEntity?(TaxRateEntity?,@)", "ListUIState(ListUIState,ViewTaxRateList)", "ListUIState(ListUIState,FilterTaxRatesByState)", "ListUIState(ListUIState,FilterTaxRates)", "ListUIState(ListUIState,SortTaxRates)", "ListUIState(ListUIState,StartTaxRateMultiselect)", "ListUIState(ListUIState,AddToTaxRateMultiselect)", "ListUIState(ListUIState,RemoveFromTaxRateMultiselect)", "ListUIState(ListUIState,ClearTaxRateMultiselect)", "TaxRateState(TaxRateState,ArchiveTaxRatesSuccess)", "TaxRateState(TaxRateState,DeleteTaxRatesSuccess)", "TaxRateState(TaxRateState,RestoreTaxRatesSuccess)", "TaxRateState(TaxRateState,AddTaxRateSuccess)", "TaxRateState(TaxRateState,SaveTaxRateSuccess)", "TaxRateState(TaxRateState,LoadTaxRateSuccess)", "TaxRateState(TaxRateState,LoadTaxRatesSuccess)", "TaxRateState(TaxRateState,LoadCompanySuccess)", "TokenEntity(TokenEntity?,@)", "TokenEntity?(TokenEntity?,@)", "ListUIState(ListUIState,ViewTokenList)", "ListUIState(ListUIState,FilterTokensByCustom1)", "ListUIState(ListUIState,FilterTokensByCustom2)", "ListUIState(ListUIState,FilterTokensByState)", "ListUIState(ListUIState,FilterTokens)", "ListUIState(ListUIState,SortTokens)", "ListUIState(ListUIState,StartTokenMultiselect)", "ListUIState(ListUIState,AddToTokenMultiselect)", "ListUIState(ListUIState,RemoveFromTokenMultiselect)", "ListUIState(ListUIState,ClearTokenMultiselect)", "TokenState(TokenState,ArchiveTokensSuccess)", "TokenState(TokenState,DeleteTokensSuccess)", "TokenState(TokenState,RestoreTokensSuccess)", "TokenState(TokenState,AddTokenSuccess)", "TokenState(TokenState,SaveTokenSuccess)", "TokenState(TokenState,LoadTokenSuccess)", "TokenState(TokenState,LoadTokensSuccess)", "TokenState(TokenState,LoadCompanySuccess)", "TransactionEntity(TransactionEntity?,@)", "TransactionEntity?(TransactionEntity?,@)", "ListUIState(ListUIState,ViewTransactionList)", "ListUIState(ListUIState,FilterTransactionsByCustom1)", "ListUIState(ListUIState,FilterTransactionsByCustom2)", "ListUIState(ListUIState,FilterTransactionsByState)", "ListUIState(ListUIState,FilterTransactionsByStatus)", "ListUIState(ListUIState,FilterTransactions)", "ListUIState(ListUIState,SortTransactions)", "ListUIState(ListUIState,StartTransactionMultiselect)", "ListUIState(ListUIState,AddToTransactionMultiselect)", "ListUIState(ListUIState,RemoveFromTransactionMultiselect)", "ListUIState(ListUIState,ClearTransactionMultiselect)", "TransactionState(TransactionState,ArchiveTransactionsSuccess)", "TransactionState(TransactionState,DeleteTransactionsSuccess)", "TransactionState(TransactionState,RestoreTransactionsSuccess)", "TransactionState(TransactionState,AddTransactionSuccess)", "TransactionState(TransactionState,SaveTransactionSuccess)", "TransactionState(TransactionState,ConvertTransactionToPaymentSuccess)", "TransactionState(TransactionState,ConvertTransactionsToExpensesSuccess)", "TransactionState(TransactionState,LinkTransactionToPaymentSuccess)", "TransactionState(TransactionState,LinkTransactionToExpenseSuccess)", "TransactionState(TransactionState,ConvertTransactionsSuccess)", "TransactionState(TransactionState,LoadTransactionSuccess)", "TransactionState(TransactionState,LoadTransactionsSuccess)", "TransactionState(TransactionState,LoadCompanySuccess)", "TransactionRuleEntity(TransactionRuleEntity?,@)", "TransactionRuleEntity?(TransactionRuleEntity?,@)", "ListUIState(ListUIState,ViewTransactionRuleList)", "ListUIState(ListUIState,FilterTransactionRulesByCustom1)", "ListUIState(ListUIState,FilterTransactionRulesByCustom2)", "ListUIState(ListUIState,FilterTransactionRulesByState)", "ListUIState(ListUIState,FilterTransactionRules)", "ListUIState(ListUIState,SortTransactionRules)", "ListUIState(ListUIState,StartTransactionRuleMultiselect)", "ListUIState(ListUIState,AddToTransactionRuleMultiselect)", "ListUIState(ListUIState,RemoveFromTransactionRuleMultiselect)", "ListUIState(ListUIState,ClearTransactionRuleMultiselect)", "TransactionRuleState(TransactionRuleState,ArchiveTransactionRulesSuccess)", "TransactionRuleState(TransactionRuleState,DeleteTransactionRulesSuccess)", "TransactionRuleState(TransactionRuleState,RestoreTransactionRulesSuccess)", "TransactionRuleState(TransactionRuleState,AddTransactionRuleSuccess)", "TransactionRuleState(TransactionRuleState,SaveTransactionRuleSuccess)", "TransactionRuleState(TransactionRuleState,LoadTransactionRuleSuccess)", "TransactionRuleState(TransactionRuleState,LoadTransactionRulesSuccess)", "TransactionRuleState(TransactionRuleState,LoadCompanySuccess)", "UserEntity(UserEntity?,@)", "UserEntity?(UserEntity?,@)", "ListUIState(ListUIState,ViewUserList)", "ListUIState(ListUIState,FilterUsersByCustom1)", "ListUIState(ListUIState,FilterUsersByCustom2)", "ListUIState(ListUIState,FilterUsersByCustom3)", "ListUIState(ListUIState,FilterUsersByCustom4)", "ListUIState(ListUIState,FilterUsersByState)", "ListUIState(ListUIState,FilterUsers)", "ListUIState(ListUIState,SortUsers)", "ListUIState(ListUIState,StartUserMultiselect)", "ListUIState(ListUIState,AddToUserMultiselect)", "ListUIState(ListUIState,RemoveFromUserMultiselect)", "ListUIState(ListUIState,ClearUserMultiselect)", "UserState(UserState,ArchiveUserSuccess)", "UserState(UserState,DeleteUserSuccess)", "UserState(UserState,RestoreUserSuccess)", "UserState(UserState,RemoveUserSuccess)", "UserState(UserState,AddUserSuccess)", "UserState(UserState,SaveUserSuccess)", "UserState(UserState,SaveAuthUserSuccess)", "UserState(UserState,ConnectOAuthUserSuccess)", "UserState(UserState,DisconnectOAuthUserSuccess)", "UserState(UserState,DisconnectOAuthMailerSuccess)", "UserState(UserState,ConnecGmailUserSuccess)", "UserState(UserState,LoadUserSuccess)", "UserState(UserState,LoadUsersSuccess)", "UserState(UserState,LoadCompanySuccess)", "VendorContactEntity(VendorContactEntity?,@)", "VendorEntity(VendorEntity?,@)", "VendorEntity?(VendorEntity?,@)", "VendorEntity(VendorEntity?,AddVendorContact)", "VendorEntity(VendorEntity?,DeleteVendorContact)", "VendorEntity(VendorEntity?,UpdateVendorContact)", "ListUIState(ListUIState,ViewVendorList)", "ListUIState(ListUIState,FilterVendorsByCustom1)", "ListUIState(ListUIState,FilterVendorsByCustom2)", "ListUIState(ListUIState,FilterVendorsByCustom3)", "ListUIState(ListUIState,FilterVendorsByCustom4)", "ListUIState(ListUIState,FilterVendorsByState)", "ListUIState(ListUIState,FilterVendors)", "ListUIState(ListUIState,SortVendors)", "ListUIState(ListUIState,StartVendorMultiselect)", "ListUIState(ListUIState,AddToVendorMultiselect)", "ListUIState(ListUIState,RemoveFromVendorMultiselect)", "ListUIState(ListUIState,ClearVendorMultiselect)", "VendorState(VendorState,ArchiveVendorSuccess)", "VendorState(VendorState,DeleteVendorSuccess)", "VendorState(VendorState,RestoreVendorSuccess)", "VendorState(VendorState,AddVendorSuccess)", "VendorState(VendorState,SaveVendorSuccess)", "VendorState(VendorState,LoadVendorSuccess)", "VendorState(VendorState,LoadVendorsSuccess)", "VendorState(VendorState,LoadCompanySuccess)", "WebhookEntity(WebhookEntity?,@)", "WebhookEntity?(WebhookEntity?,@)", "ListUIState(ListUIState,ViewWebhookList)", "ListUIState(ListUIState,FilterWebhooksByCustom1)", "ListUIState(ListUIState,FilterWebhooksByCustom2)", "ListUIState(ListUIState,FilterWebhooksByState)", "ListUIState(ListUIState,FilterWebhooks)", "ListUIState(ListUIState,SortWebhooks)", "ListUIState(ListUIState,StartWebhookMultiselect)", "ListUIState(ListUIState,AddToWebhookMultiselect)", "ListUIState(ListUIState,RemoveFromWebhookMultiselect)", "ListUIState(ListUIState,ClearWebhookMultiselect)", "WebhookState(WebhookState,ArchiveWebhooksSuccess)", "WebhookState(WebhookState,DeleteWebhooksSuccess)", "WebhookState(WebhookState,RestoreWebhooksSuccess)", "WebhookState(WebhookState,AddWebhookSuccess)", "WebhookState(WebhookState,SaveWebhookSuccess)", "WebhookState(WebhookState,LoadWebhookSuccess)", "WebhookState(WebhookState,LoadWebhooksSuccess)", "WebhookState(WebhookState,LoadCompanySuccess)", "ConfirmEmailVM(Store)", "AppDrawerVM(Store)", "MenuDrawerVM(Store)", "LoginVM(Store)", "BankAccountListVM(Store)", "BankAccountScreenVM(Store)", "ClientListVM(Store)", "ClientScreenVM(Store)", "CompanyGatewayListVM(Store)", "CompanyGatewayScreenVM(Store)", "CreditListVM(Store)", "CreditScreenVM(Store)", "DashboardVM(Store)", "DesignListVM(Store)", "DesignScreenVM(Store)", "DocumentListVM(Store)", "DocumentScreenVM(Store)", "ExpenseListVM(Store)", "ExpenseScreenVM(Store)", "ExpenseCategoryListVM(Store)", "ExpenseCategoryScreenVM(Store)", "GroupListVM(Store)", "GroupScreenVM(Store)", "InvoiceListVM(Store)", "InvoiceScreenVM(Store)", "PaymentListVM(Store)", "PaymentScreenVM(Store)", "PaymentTermListVM(Store)", "PaymentTermScreenVM(Store)", "ProductListVM(Store)", "ProductScreenVM(Store)", "ProjectListVM(Store)", "ProjectScreenVM(Store)", "PurchaseOrderListVM(Store)", "PurchaseOrderScreenVM(Store)", "QuoteListVM(Store)", "QuoteScreenVM(Store)", "RecurringExpenseListVM(Store)", "RecurringExpenseScreenVM(Store)", "RecurringInvoiceListVM(Store)", "RecurringInvoiceScreenVM(Store)", "ReportsScreenVM(Store)", "ScheduleListVM(Store)", "ScheduleScreenVM(Store)", "AccountManagementVM(Store)", "ClientPortalVM(Store)", "CompanyDetailsVM(Store)", "CreditCardsAndBanksVM(Store)", "CustomFieldsVM(Store)", "DataVisualizationsVM(Store)", "DeviceSettingsVM(Store)", "EmailSettingsVM(Store)", "ExpenseSettingsVM(Store)", "GeneratedNumbersVM(Store)", "ImportExportVM(Store)", "InvoiceDesignVM(Store)", "LocalizationSettingsVM(Store)", "PaymentSettingsVM(Store)", "ProductSettingsVM(Store)", "SettingsListVM(Store)", "SettingsScreenVM(Store)", "TaskSettingsVM(Store)", "TaxSettingsVM(Store)", "TemplatesAndRemindersVM(Store)", "UserDetailsVM(Store)", "WorkflowSettingsVM(Store)", "SubscriptionListVM(Store)", "SubscriptionScreenVM(Store)", "KanbanVM(Store)", "TaskListVM(Store)", "TaskScreenVM(Store)", "TaskStatusListVM(Store)", "TaskStatusScreenVM(Store)", "TaxRateListVM(Store)", "TaxRateScreenVM(Store)", "TokenListVM(Store)", "TokenScreenVM(Store)", "TransactionListVM(Store)", "TransactionScreenVM(Store)", "TransactionRuleListVM(Store)", "TransactionRuleScreenVM(Store)", "UserListVM(Store)", "UserScreenVM(Store)", "VendorListVM(Store)", "VendorScreenVM(Store)", "WebhookListVM(Store)", "WebhookScreenVM(Store)", "Future()", "MapBuilder()", "Widget(BuildContext,UnorderedListItemComponent)", "double(TextStyle,int)", "Widget(BuildContext,OrderedListItemComponent)", "MapBuilder()", "TextStyle(Set,TextStyle)", "SuperEditorLaunchLinkTapHandler(SuperEditorContext)", "Widget(BuildContext,Offset[Key?])", "Widget(BuildContext,AndroidEditingOverlayController,ToolbarConfig)", "MapBuilder()", "MapBuilder()", "MapBuilder()", "MapBuilder()", "Widget(BuildContext,IOSEditingOverlayController)", "JavaScriptObject(int)", "~(String?{wrapWidth:int?})", "GoogleSignInUserData?(Map?)", "bool(bool,StartLoading)", "bool(bool,StopLoading)", "bool(bool,StartSaving)", "bool(bool,StopSaving)", "Flexible(Widget)"], + types: ["~()", "ListUIStateBuilder(ListUIStateBuilder)", "Null(Store,@,@(@))", "Null(Object)", "Null()", "@(String)", "double(double)", "Null(@)", "InvoiceEntityBuilder(InvoiceEntityBuilder)", "SettingsEntityBuilder(SettingsEntityBuilder)", "~(@)", "~(Duration)", "bool(String)", "~(bool)", "@()", "~(String)", "Null(BuildContext)", "~(bool?)", "bool()", "Future(BuildContext)", "Future<~>()", "~(BuildContext)", "CompanyEntityBuilder(CompanyEntityBuilder)", "ErrorDialog(BuildContext)", "~(TextEditingController)", "int(String,String)", "Color(Set)", "Null(String?)", "String(@)", "@(bool?)", "~(JavaScriptObject)", "String(String)", "String?(String)", "@(@)", "Future(Store,@,@(@))", "Null(Object?)", "DocumentEntityBuilder(DocumentEntityBuilder)", "ExpenseEntityBuilder(ExpenseEntityBuilder)", "Null(String)", "Null(List)", "ExecutionInstruction({editContext!SuperEditorContext,keyEvent!RawKeyEvent})", "~(DocumentEntity)", "DropdownMenuItem(String)", "ListBuilder()", "Widget(BuildContext)", "~(Object?)", "~(SuperEditorContext)", "~(AnimationStatus)", "bool(Route<@>)", "Null(String,bool)", "~(TapDownDetails)", "String(BaseEntity)", "@(BuildContext)", "Null(SelectableEntity?)", "ClientEntityBuilder(ClientEntityBuilder)", "PluralCase()", "InvoiceItemEntityBuilder(InvoiceItemEntityBuilder)", "String?(String?,PreviewEntity)", "String?(String?,SelectCompany)", "String(String?,ClearEntityFilter)", "bool(SpanMarker)", "ListUIState(ListUIState,FilterByEntity)", "PaymentEntityBuilder(PaymentEntityBuilder)", "Future()", "@(SelectableEntity?)", "CompanyGatewayEntityBuilder(CompanyGatewayEntityBuilder)", "Null(EntityState,bool?)", "~(RenderObject)", "Null(EntityState,bool)", "Future()", "~(DragUpdateDetails)", "bool(BoxHitTestResult,Offset)", "~(DragStartDetails)", "~(BuildContext,EntityAction)", "~(String,InvoiceEntity)", "TaskEntityBuilder(TaskEntityBuilder)", "~(int)", "ListDivider(BuildContext,int)", "SubscriptionEntityBuilder(SubscriptionEntityBuilder)", "String?(String?,@)", "Null(String?,String?)", "~({textFieldContext!SuperTextFieldContext})", "Null(List)", "InvoiceStatusEntityBuilder(InvoiceStatusEntityBuilder)", "int(List,List)", "Color?(Set)", "bool(InvoiceItemEntity)", "Null(InvoiceEntity)", "ScheduleEntityBuilder(ScheduleEntityBuilder)", "String?(String?,FilterByEntity)", "String(String,Node)", "~(PaintingContext,Offset)", "SettingsUIStateBuilder(SettingsUIStateBuilder)", "InvoiceEntity?(String)", "~(DragEndDetails)", "VendorEntityBuilder(VendorEntityBuilder)", "String()", "bool(bool,UpdateUserPreferences)", "UserEntityBuilder(UserEntityBuilder)", "TextFieldKeyboardHandlerResult({keyEvent!RawKeyEvent,textFieldContext!SuperTextFieldContext})", "~(String?)", "Future?(Object?)", "EntityStats(String,BuiltMap)", "Null(SelectableEntity)", "UserCompanyEntityBuilder(UserCompanyEntityBuilder)", "int(int?,PreviewEntity)", "Widget(BuildContext,int)", "Uint8List(PdfPageFormat)", "~(Element0)", "~(PointerEvent)", "~(PointerExitEvent)", "Null(~)", "Null(bool?)", "double(RenderBox)", "Null(BuildContext,List,bool)", "~(TapUpDetails)", "InvoiceEntity(@)", "TextStyle(Set)", "String(Match)", "bool(String?)", "@(TaxRateEntity)", "StatelessWidget(BuildContext,BoxConstraints)", "Map(Document2,DocumentNode)", "Null(List)", "Null(JavaScriptObject)", "double()", "~(String,ExpenseEntity)", "bool(Object?)", "bool(Element0)", "UserStateBuilder(UserStateBuilder)", "~(RestorableProperty,~())", "Null(BuildContext,Completer)", "TransactionEntityBuilder(TransactionEntityBuilder)", "Future?()", "~(PointerEnterEvent)", "@(int?,String)", "@(CompanyEntity)", "int(int)", "bool(@)", "Null(DesignEntity?)", "bool(int)", "DocumentLayout()", "String?(String?)", "int(String?,String?)", "Palette()", "@(List,bool)", "ScrollableListView(BuildContext)", "List()", "bool(FocusNode)", "~(InvoiceEntity)", "~(PaymentableEntity)", "Widget()", "~(String,TaskEntity)", "ExpenseStatusEntityBuilder(ExpenseStatusEntityBuilder)", "String(InvoiceEntityBuilder)", "AlertDialog(BuildContext)", "Null(int)", "~(BaseEntity)", "Null(ExpenseEntity)", "Null(EntityStatus,bool)", "Null(Completer,String)", "PurchaseOrderStateBuilder(PurchaseOrderStateBuilder)", "~(Object,StackTrace)", "~(ByteData?)", "ListBuilder()", "~(PointerDownEvent)", "TaskStatusEntityBuilder(TaskStatusEntityBuilder)", "Null(TaxRateEntity)", "@(InvoiceEntity)", "~(String,@)", "DashboardUISettingsBuilder(DashboardUISettingsBuilder)", "~(ForcePressDetails)", "bool(ClientContactEntity)", "bool(ScrollNotification)", "EntityStats(String,BuiltMap)", "Null(bool)", "String?(String?,ClearEntitySelection)", "Null(EntityStatus,bool?)", "~(String,String)", "Null(String,String)", "ProductEntityBuilder(ProductEntityBuilder)", "int()", "Null(UserEntity)", "Null(Object,StackTrace)", "Future<@>(MethodCall0)", "AuthStateBuilder(AuthStateBuilder)", "~(LayoutView)", "DocumentStateBuilder(DocumentStateBuilder)", "bool(NotoFont)", "TransactionRuleEntityBuilder(TransactionRuleEntityBuilder)", "SimpleDialog(BuildContext)", "Tween(@)", "DropdownMenuItem(int)", "Null(BuildContext[EntityAction?])", "bool(InvoiceEntity)", "~(String,PaymentEntity)", "Null(SettingsEntity)", "bool(VendorContactEntity)", "Null(List)", "Null(PaymentEntity)", "bool(Attribution)", "ProjectEntityBuilder(ProjectEntityBuilder)", "TextStyle(Set)", "QuoteStateBuilder(QuoteStateBuilder)", "@(String?)", "Object?(@)", "bool(FlutterHtmlKeyboardEvent)", "PaymentStatusEntityBuilder(PaymentStatusEntityBuilder)", "bool(TaskTime)", "SystemMouseCursor(Set)", "Null(BuildContext,bool)", "Null(TransactionEntity)", "Widget(BuildContext,Widget?)", "~(@,@)", "KeyEventResult(FocusNode,RawKeyEvent)", "~(Timer)", "TaxRateStateBuilder(TaxRateStateBuilder)", "int(FocusNode,FocusNode)", "CompanyGatewayStateBuilder(CompanyGatewayStateBuilder)", "Color0(int?)", "bool(BaseEntity)", "Widget(BuildContext,BoxConstraints)", "Null(int,int)", "~(int,int)", "ListBuilder()", "~(LongPressStartDetails)", "InvitationEntity(ClientContactEntity)", "Future(BuildContext,bool)", "FeesAndLimitsSettingsBuilder(FeesAndLimitsSettingsBuilder)", "~(TaskTime)", "TransactionStateBuilder(TransactionStateBuilder)", "ListTile(String)", "Null(Completer)", "ExpenseEntity?(String)", "GroupStateBuilder(GroupStateBuilder)", "MapEntry(@,@)", "double(double,double)", "String?(@)", "MapBuilder()", "Null(LoginResponse)", "~(PointerHoverEvent)", "bool(DateRange)", "double(RenderBox,double)", "Null(TaskEntity)", "bool(Node)", "Null(InvoiceStateBuilder)", "bool(EntityType)", "~(~())", "~(Selectable)", "BankAccountEntityBuilder(BankAccountEntityBuilder)", "~(PointerSignalEvent)", "int(Object?)", "ClientStateBuilder(ClientStateBuilder)", "InvoiceEntity(InvoiceEntity?,@)", "TapSequenceGestureRecognizer()", "DesignEntityBuilder(DesignEntityBuilder)", "TaskTimeBuilder(TaskTimeBuilder)", "String?(PaymentableEntity)", "~(PanGestureRecognizer)", "Future<@>()", "Column(BuildContext)", "bool(PaymentableEntity)", "PanGestureRecognizer()", "~(EntityType)", "Null(RecurringInvoiceStateBuilder)", "PaymentTermStateBuilder(PaymentTermStateBuilder)", "~(SelectableEntity)", "~(TapSequenceGestureRecognizer)", "MapBuilder(MapBuilder)", "WebhookEntityBuilder(WebhookEntityBuilder)", "Null(TaskStateBuilder)", "BorderSide(Set)", "Null(ProductEntity)", "~(LongPressEndDetails)", "TaxRateEntity?(String)", "~(SpanMarker)", "InvoiceStateBuilder(InvoiceStateBuilder)", "~(Object?,Object?)", "TextBoundary()", "RecurringExpenseStateBuilder(RecurringExpenseStateBuilder)", "@(String,bool)", "Null(VendorEntity)", "Null(List)", "~(DateTime)", "AppStateBuilder(AppStateBuilder)", "DropdownMenuItem(DateRange)", "TransactionStatusEntityBuilder(TransactionStatusEntityBuilder)", "~(ExpenseEntity)", "RecurringInvoiceStateBuilder(RecurringInvoiceStateBuilder)", "~(EntityAction)", "~(TextInputAction)", "List>(BuildContext)", "@(Completer)", "Null(TaskStatusEntity)", "Null(List)", "DropdownMenuItem(MapEntry)", "Null(RecurringExpenseStateBuilder)", "ProjectStateBuilder(ProjectStateBuilder)", "UpgradeDialog(BuildContext)", "VerticalDragGestureRecognizer()", "bool(InlineSpan)", "ExpenseCategoryEntityBuilder(ExpenseCategoryEntityBuilder)", "List()", "TaskEntity?(String)", "~(String,NumericAxis)", "~(VerticalDragGestureRecognizer)", "@(DesignEntity?)", "bool(InheritedElement)", "DocumentStatusEntityBuilder(DocumentStatusEntityBuilder)", "Null(ProjectEntity)", "ActivityListTile(BuildContext,int)", "CreditStateBuilder(CreditStateBuilder)", "PaymentStateBuilder(PaymentStateBuilder)", "~(LongPressMoveUpdateDetails)", "Null(DocumentEntity)", "~(TapDragUpDetails)", "MapBuilder()", "Null(ClientEntity)", "~(InvoiceItemEntity)", "RunTemplateDialog(BuildContext)", "String(InvoiceEntity)", "ExpenseStateBuilder(ExpenseStateBuilder)", "bool(GestureListener)", "List(BuildContext)", "bool(_RouteEntry)", "MaterialStateProperty?(ButtonStyle?)", "Text(String)", "TaskStateBuilder(TaskStateBuilder)", "Future>(Map)", "Future>(Map)", "InvoiceItemSelector(BuildContext)", "BaseEntity?(InvoiceItemEntity)", "Null(List[String?,String?])", "~(Store)", "double(ChartMoneyData,int?)", "Color0(ChartMoneyData,int?)", "double?(ChartMoneyData,int?)", "DateTime(ChartMoneyData,int?)", "Null(int,String)", "Null(BuildContext,InvoiceEntity[String?])", "Null(BuildContext[int?])", "Null(BuildContext,List,bool?)", "Future<~>(bool)", "Null(List,String?,String?)", "PaymentEntity?(String)", "Null(InvoiceItemEntity,int)", "Null(GroupEntity)", "Null(BuiltList)", "String(ProfitAndLossReportFields)", "InvoiceListItem(BuildContext,int)", "Null(BuildContext,EmailTemplate,String,String,String)", "TaskListItem(BuildContext,int)", "ExpenseListItem(BuildContext,int)", "ListBuilder()", "bool(InvoiceEntity?)", "bool(ActivityEntity)", "Null(@,@)", "bool({textFieldContext!SuperTextFieldContext})", "BankAccountEntity?(String)", "VendorContactEntityBuilder(VendorContactEntityBuilder)", "ClientContactEntityBuilder(ClientContactEntityBuilder)", "@(int)", "MessageDialog(BuildContext)", "String?(SelectableEntity)", "Future()", "String(SelectableEntity?)", "~(TapDragDownDetails)", "Null(BankAccountEntity)", "bool(ScrollMetricsNotification)", "~(NavigatorObserver)", "BankAccountStateBuilder(BankAccountStateBuilder)", "UserSmsVerification(BuildContext)", "Future()", "~(SelectableEntity?)", "String(TaxRateReportFields0)", "~(String,ClientEntity)", "AppTextButton(BuildContext)", "String(TaxRateReportFields)", "Null(CompanyGatewayEntity)", "Null(TransactionRuleEntity)", "Object?(Object?)", "bool(String,InvoiceEntity)", "String(InvitationEntity)", "List(BuiltMap,BuiltMap)", "int(InvoiceEntity?,InvoiceEntity?)", "DropdownMenuItem(String?)", "DesignEntity?(String)", "DesignStateBuilder(DesignStateBuilder)", "Size(RenderBox,BoxConstraints)", "@(SettingsEntity)", "~({curve:Curve,descendant:RenderObject?,duration:Duration,rect:Rect?})", "CustomFieldSelector(BuildContext)", "int(RenderObject,RenderObject)", "GridView(BuildContext,BoxConstraints)", "@(bool)", "double?()", "WebhookStateBuilder(WebhookStateBuilder)", "Null(WebhookEntity)", "String(ExpenseEntity)", "VendorStateBuilder(VendorStateBuilder)", "Null(ExpenseCategoryEntity)", "ExpenseCategoryStateBuilder(ExpenseCategoryStateBuilder)", "EntityStats(String,BuiltMap)", "~(String,TransactionEntity)", "ColorTween(@)", "Null(DateTime?)", "Null(BuildContext,InvoiceEntity,ClientEntity?)", "double(Set)", "Null(List)", "Rect()", "MouseCursor0(Set)", "~(MouseEvent)", "MaterialStateProperty?(DatePickerThemeData?)", "ProductEntity?(String)", "Null(List)", "Null(ProductStateBuilder)", "ProductStateBuilder(ProductStateBuilder)", "Null(List)", "@([String?,String?])", "String(int)", "ListBuilder(ListBuilder)", "String(String,UpdateUserPreferences)", "ScrollPosition()", "Null(ScheduleEntity)", "ScheduleStateBuilder(ScheduleStateBuilder)", "RenderBox()", "Null(SubscriptionEntity)", "SubscriptionStateBuilder(SubscriptionStateBuilder)", "Stack(BuildContext,TextLayout)", "Future<~>(String)", "MapBuilder(MapBuilder)", "EntityStats(String,BuiltMap)", "Null(TaskStatusStateBuilder)", "TaskStatusStateBuilder(TaskStatusStateBuilder)", "Future<~>(MethodCall0)", "Widget(BuildContext,EditableTextState)", "Offset()", "TransactionRuleStateBuilder(TransactionRuleStateBuilder)", "InvoiceEntity?(InvoiceEntity?,@)", "Null(TokenEntity)", "~([Intent?])", "TokenStateBuilder(TokenStateBuilder)", "Color(Color)", "Null(PaymentTermEntity)", "Null(List)", "LongPressGestureRecognizer()", "Future(BillingClient)", "String(PurchaseOrderItemReportFields)", "@(double?)", "DecoratedFormField(BuildContext,TextEditingController,FocusNode,~())", "String(PurchaseOrderReportFields)", "TextScaler?()", "String(QuoteItemReportFields)", "String(SelectableEntity)", "Null(List)", "String(QuoteReportFields)", "String(RecurringExpenseReportFields)", "String(RecurringInvoiceReportFields)", "bool(NavigationNotification)", "bool(InvitationEntity)", "Null(TokenStateBuilder)", "Null(CreditStateBuilder)", "DropdownMenuItem(int)", "bool(FocusableActionDetector)", "String(TaskItemReportFields)", "PopupMenuItem(EntityAction)", "List>(BuildContext)", "String(TaskReportFields)", "List(BuiltMap,CompanyEntity?,DashboardUISettings,BuiltMap,BuiltMap)", "PopupMenuButton(BuildContext,int)", "OutlinedButton(EntityAction)", "String(TransactionReportFields)", "int(SemanticsNode,SemanticsNode)", "String(VendorReportFields)", "bool(SemanticsNode)", "ListBuilder()", "String(String,String)", "ListTile(BuildContext,int)", "int(ExpenseEntity?,ExpenseEntity?)", "~(List)", "bool(Node0)", "Null(List)", "Null(DesignEntity)", "Null(DesignStateBuilder)", "Set<0^>()", "~(SliverConstraints)", "~(Object,String)", "JavaScriptObject()", "MapBuilder>()", "~(TaxRateEntity)", "PaymentableEntityBuilder(PaymentableEntityBuilder)", "Future(BuildContext,Completer,String)", "Row(BuildContext,BoxConstraints)", "~(Object[StackTrace?])", "DocumentEntity(@)", "String(ClientReportFields)", "bool(Object?,Object?)", "~(ProductEntity)", "Null(WebhookStateBuilder)", "Future(BuildContext,String)", "int(int,int)", "TextBox(TextBox)", "MapEntry>(String,String)", "~(TimeOfDay)", "@(int?)", "Null(List)", "bool(ExpenseEntity)", "String(ContactReportFields)", "~(TextSelection,SelectionChangedCause?)", "WebhookEntity?(String)", "Null(ExpenseStateBuilder)", "Null(List)", "TaxConfigRegionEntityBuilder(TaxConfigRegionEntityBuilder)", "Null(VendorStateBuilder)", "ExpenseCategoryEntity?(String)", "Null(List)", "InvitationEntity(VendorContactEntity)", "Null(bool?,int?,String?,double?,double?)", "Null(ExpenseCategoryStateBuilder)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,StaticState)", "String(CreditItemReportFields)", "Future(BuildContext,Completer{oneTimePassword:String,secret:String,url:String})", "GroupEntity?(String)", "Null(List)", "Future(String?,String?)", "GroupEntityBuilder(GroupEntityBuilder)", "Null(GroupStateBuilder)", "QuoteListItem(BuildContext,int)", "~(ProgressEvent)", "String(CreditReportFields)", "String(DocumentReportFields)", "~(ScaleEndDetails)", "PasswordConfirmation(BuildContext)", "~(DragDownDetails)", "~(Event)", "Future(String?)", "bool(DataRow)", "Null(PaymentStateBuilder)", "Null(List)", "VendorEntity?(String)", "Null(BankAccountStateBuilder)", "PaymentTermEntity?(String)", "Null(List)", "ListBuilder()", "List(BuiltMap)", "Null(PaymentTermStateBuilder)", "Future(@)", "~(Size)", "Null(UserStateBuilder)", "String(ExpenseReportFields)", "Set()", "MaterialStateProperty?(ButtonStyle?)", "ListBuilder(ListBuilder)", "String(InvoiceItemReportFields)", "ProjectEntity?(String)", "Null(List)", "Iterable(Iterable)", "bool(_Highlight)", "Null(ProjectStateBuilder)", "PaymentListItem(BuildContext,int)", "UserEntity?(String)", "ClientEntity?(String)", "Null(List)", "Null(PurchaseOrderStateBuilder)", "EdgeInsetsGeometryTween(@)", "InkWell(BuildContext)", "String(MaterialLocalizations)", "Null(QuoteStateBuilder)", "IconData(BuildContext)", "Widget(BuildContext)?(ActionIconThemeData?)", "bool(bool,DismissTwoYearReviewAppPermanently)", "Widget(Widget,Animation0)", "Text(@)", "ReportsUIStateBuilder(ReportsUIStateBuilder)", "ScheduleEntity?(String)", "Null(List)", "String(InvoiceReportFields)", "Null(ScheduleStateBuilder)", "String(Object?)", "Null(CompanyEntity)", "Null(ClientStateBuilder)", "DateTime()", "SubscriptionEntity?(String)", "Null(List)", "MediaQuery(BuildContext,Widget?)", "SingleChildRenderObjectWidget(BuildContext,bool,Widget?)", "Null(SubscriptionStateBuilder)", "~(List<@>)", "Widget(BuildContext,bool,Widget?)", "ContentLayerWidget(BuildContext)", "VendorContactEntity()", "String(PaymentReportFields)", "Future()", "IconButton(BuildContext)", "ClientContactEntity()", "TaskStatusEntity?(String)", "Null(List)", "Widget(BuildContext,TextLayout)", "int(@,@)", "~(PointerPanZoomStartEvent)", "InvoiceEntity(String)", "PrefStateBuilder(PrefStateBuilder)", "bool(PaymentEntity)", "Null(List)", "String(ProductReportFields)", "bool(Point)", "Null(TaxRateStateBuilder)", "~(HorizontalDragGestureRecognizer)", "Null(TransactionRuleStateBuilder)", "TokenEntity?(String)", "Null(List)", "CompanyGatewayEntity?(String)", "ListBuilder()", "Future<~>(~)", "~(ScaleStartDetails)", "TransactionEntity?(String)", "Null(CompanyGatewayStateBuilder)", "HorizontalDragGestureRecognizer()", "~(LongPressGestureRecognizer)", "Null(TransactionStateBuilder)", "bool(KeyData)", "TransactionRuleEntity?(String)", "TransactionRuleCriteriaEntityBuilder(TransactionRuleCriteriaEntityBuilder)", "Null(BuiltList)", "TokenEntityBuilder(TokenEntityBuilder)", "TaxRateEntity(@)", "TaxRateEntityBuilder(TaxRateEntityBuilder)", "List(SelectionState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltList,ListUIState)", "~(bool(String))", "bool(bool,DismissOneYearReviewAppPermanently)", "InvoiceEntity(InvoiceEntity?,AddRecurringInvoiceItem)", "AppSidebarMode(AppSidebarMode,UpdateUserPreferences)", "InvoiceEntity(InvoiceEntity?,AddQuoteItem)", "BuiltMap(BuiltMap,UpdateUserPreferences)", "List(SelectionState,BuiltMap,BuiltList,BuiltMap,BuiltMap,ListUIState,BuiltMap)", "InvoiceEntity(InvoiceEntity?,AddPurchaseOrderItem)", "EntityStats(String,BuiltMap)", "String(InvoiceItemEntityBuilder)", "List?(int?)", "InvoiceItemEntity(String)", "PaymentTermEntity(@)", "UserEntity(@)", "PaymentTermEntityBuilder(PaymentTermEntityBuilder)", "bool(PaymentEntity?)", "List(String,BuiltMap,BuiltList)", "InvoiceEntity(InvoiceEntity?,AddInvoiceItem)", "GroupEntity(@)", "ExpenseEntity(@)", "List(SelectionState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,ListUIState,BuiltMap,BuiltMap,StaticState)", "bool(String,ExpenseEntity)", "Null(BuiltList)", "~(VendorEntity)", "~(TaskEntity)", "~(ProjectEntity)", "~(GroupEntity)", "Null(DocumentStateBuilder)", "List>(BuildContext)", "~(int?)", "InkWell(String)", "~(Codec)", "DocumentEntity?(String)", "UserSettingsEntityBuilder(UserSettingsEntityBuilder)", "~(~)", "int(TaskEntity,TaskEntity)", "List()", "~(DropEventDetails)", "List(BuiltMap,CompanyEntity?,DashboardUISettings,BuiltMap,BuiltMap)", "List(BuiltMap,CompanyEntity?,DashboardUISettings,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap)", "List(BuiltMap,CompanyEntity?,DashboardUISettings,BuiltMap,BuiltMap,BuiltMap)", "List(BuiltMap,CompanyEntity?,DashboardUISettings,BuiltMap,BuiltMap,BuiltMap)", "MapBuilder>(MapBuilder>)", "~(int?,int?)", "String(num?)", "SpanMarker(SpanMarker)", "InvoiceEntity(InvoiceEntity?,AddCreditItem)", "bool(SelectableEntity)", "~(Attribution,int)", "_Channel()", "PaymentableEntity(BaseEntity)", "CompanyGatewayEntity(@)", "ToggleButtons(BuildContext,BoxConstraints)", "bool(TaskEntity)", "TaskEntity(String)", "int(LayoutView,LayoutView)", "bool(LayoutView)", "bool(ProjectEntity)", "bool(ProductEntity)", "ReportSettingsEntityBuilder(ReportSettingsEntityBuilder)", "Future(RandomAccessFile)", "Null(String?,String?,String?,String?,String?)", "bool(GatewayTokenEntity)", "bool(TaxRateEntity?)", "TaxRateEntity()", "EntityStats(String,BuiltMap)", "_RandomAccessFile(Object?)", "Align(List<@>)", "~(ClientEntity)", "Widget(CompanyEntity)", "bool(UserCompanyState)", "AccountSmsVerification(BuildContext)", "~(RandomAccessFile)", "String(ProjectEntityBuilder)", "PointerInterceptor(BuildContext)", "String(PaymentEntityBuilder)", "Null(Uint8List)", "DropdownMenuItem<@>(@)", "bool(SystemLogEntity)", "~(int,bool)", "~([Future<@>?])", "BaseEntity(String?)", "~(GestureListener)", "num?(int?)", "~(Uint8List,String,int)", "int(String?)", "~(Symbol0,@)", "bool(HistoryRecord)", "bool(ChartBehavior<@>)", "~(ChartBehavior<@>)", "bool(CompanyEntity)", "bool(bool,DismissNativeWarningPermanently)", "~(PersistenceRepository)", "UIStateBuilder(UIStateBuilder)", "PaymentRefundScreen(BuildContext)", "PaymentEditScreen(BuildContext)", "MainScreen(BuildContext)", "Future(String,Map)", "Widget(BuildContext,AsyncSnapshot)", "LoginScreen(BuildContext)", "~([Future<~>?])", "~(GatewayTokenEntity)", "MapBuilder()", "TokenMeta(GatewayTokenEntity)", "MapBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "MapBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "~([Object?])", "ListBuilder()", "MapBuilder()", "~(ChartDataGroup)", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "~(ScaleUpdateDetails)", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "ListBuilder()", "Future(Response?)", "ListBuilder()", "ListBuilder()", "~(double)", "MapBuilder>(MapBuilder>)", "bool(Country)", "int(Country,Country)", "List(PurchaseWrapper)", "Future(BillingClient)", "ProductWrapper(String)", "Future(BillingClient)", "~(Uint8List)", "ExpenseCategoryListItem(BuildContext,int)", "~(String,IfdDirectory)", "Null(ProgressEvent)", "InvoiceTaxDetails(BuildContext)", "bool(Rule)", "Container(BuildContext,int)", "List()", "~(Object,StackTrace,Object?)", "List>(BuildContext)", "PopupMenuItem(String)", "ProductListItem(BuildContext,int)", "bool(RenderBox)", "RefreshIndicator(BuildContext)", "~(MapEntry)", "~([String?])", "~(TapDragEndDetails)", "~(TapDragUpdateDetails)", "Padding(InvoiceEntity)", "~(TapDragStartDetails)", "_SelectionToolbarWrapper(BuildContext)", "bool(Selectable)", "bool(ScrollMetrics?)", "~(String,Object?)", "bool(Selectable,double)", "VelocityTracker(PointerEvent)", "~(_DragInfo)", "MediaQuery(BuildContext)", "DecorationTween(@)", "AlignmentGeometryTween(@)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "Tween<@>?(Tween<@>?,@,Tween<@>(@))", "Positioned(BuildContext,Widget?)", "~(ForcePressGestureRecognizer)", "ForcePressGestureRecognizer()", "~(TapGestureRecognizer)", "TapGestureRecognizer()", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "int(_ReadingOrderSortData,_ReadingOrderSortData)", "TextPosition(TextPosition,bool,TextBoundary)", "~([Duration?])", "bool(DisplayFeature)", "Object?(DismissIntent)", "Color0(@,int?)", "num?(@,int?)", "Map(String?)", "Route<@>(RouteSettings)", "@(int,bool)", "Null(BuildContext,List)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "Map()", "~(RestorationBucket)", "Future(ByteData?)", "List(_SemanticsSortGroup)", "bool(BoxHitTestResult)", "Null(BuildContext,String,String)", "_InterestingSemanticsFragment(SemanticsConfiguration)", "Future([JavaScriptObject?])", "String(MapBuilder)", "~(SemanticsUpdate0)", "Future(BuildContext,AppSidebarMode)", "TextDirection()", "~(ImageStreamListener)", "ImageStreamCompleter()", "bool(_TappableLabel)", "DropdownMenuItem(ImportType)", "Semantics(BuildContext,Widget?)", "bool(Set)", "TaxConfigEntityBuilder(TaxConfigEntityBuilder)", "TaxConfigSubregionEntityBuilder(TaxConfigSubregionEntityBuilder)", "_ZoomExitTransition(BuildContext,Animation0,Widget?)", "Future(Object?)", "_EnableTwoFactor(BuildContext)", "Null(String,List)", "_ZoomEnterTransition(BuildContext,Animation0,Widget?)", "LocalKey(MergeableMaterialItem)", "bool?(SubscriptionEntityBuilder)", "~(RenderBox?)", "Null(Duration)", "Null(Completer,String)", "String?()", "ChildSemanticsConfigurationsResult(List)", "VendorListItem(BuildContext,int)", "Null(BuildContext,String)", "_RuleCriteria(BuildContext)", "~(FocusHighlightMode)", "CustomSingleChildLayout(BuildContext)", "bool(BuildContext)", "Null(GoogleSignInAuthentication)", "~(MapEntry)", "Color?(DatePickerThemeData?)", "~(SuperEditorDemoTextItem?)", "0^?(MaterialStateProperty<0^>?(DatePickerThemeData?),Set)", "0^?(0^?(DatePickerThemeData?))", "bool(BlockSyntax)", "bool(InlineSyntax)", "bool(Delimiter)", "List()", "MaterialStateProperty?(ButtonStyle?)", "Future<~>(BuildContext,Uint8List/(PdfPageFormat),PdfPageFormat)", "Null(PrintingInfo)", "~([~])", "bool(DraggableScrollableNotification)", "bool(EditEvent)", "ChangeSelectionCommand?(EditRequest)", "ChangeComposingRegionCommand?(EditRequest)", "InsertTextCommand?(EditRequest)", "ConvertListItemToParagraphCommand?(EditRequest)", "int(int,LinkifyElement)", "List()", "LicenseEntry(int)", "~(DocumentSelection)", "Widget(BuildContext,bool)", "Widget(BuildContext,Object?,ScrollController?)", "double(_PointerPanZoomData)", "Drag?(Offset)", "Widget(BuildContext,Offset?,Widget?)", "Widget(BuildContext,Rect?,Widget?)", "DeltaTextInputClientDecorator()", "~({addedComponents!List,changedComponents!List,movedComponents!List,removedComponents!List})", "bool(DocumentNode)", "ViewListDiffResult?(int)", "Widget(BuildContext,Key,LeaderLink)", "~(DiagnosticsNode)", "Stack(BuildContext)", "Rect?()", "CompositedTransformTarget(BuildContext,Widget?)", "TargetPlatform()", "~([TapUpDetails?])", "DateTime(int[int,int,int,int,int,int,int])", "Color?(Color?)", "Matrix40(double)", "~(RenderBox,BoxConstraints{parentUsesSize:bool})", "~(SemanticsObject)", "~(GestureMode)", "Color()", "ExpenseEntity(ExpenseEntity?,@)", "ExpenseEntity?(ExpenseEntity?,@)", "KeyData()", "JSObject([JavaScriptObject?])", "XFile(String)", "TextFieldKeyboardHandlerResult({keyEvent!RawKeyEvent,textFieldContext!SuperTextFieldContext,textLayout:ProseTextLayout?})", "bool(GatewayOptionsEntity)", "String(String?,FilterDocuments)", "MapBuilder()", "MapBuilder>()", "MapBuilder()", "MapBuilder()", "~(CkCanvas)", "int(int?)", "bool(Color?)", "BorderSide?(Set)", "Rect()?(RenderBox)", "int(TaskTime,TaskTime)", "~(Intent?)", "bool(BankAccountEntity?)", "Null(JSObject)", "bool(InkHighlight?)", "Color(_HighlightType)", "Null(@,StackTrace)", "Map(String)", "Null(String,@)", "~(int,@)", "Material(FlutterErrorDetails)", "bool(Point[double?])", "bool(Point,double,double)", "StyledToast(BuildContext)", "Locale(String)", "ChangeLayoutBanner(BuildContext)", "ProductScreenBuilder(BuildContext)", "ProductViewScreen(BuildContext)", "ProductEditScreen(BuildContext)", "ClientScreenBuilder(BuildContext)", "ClientViewScreen(BuildContext)", "ClientEditScreen(BuildContext)", "ClientPdfScreen(BuildContext)", "InvoiceScreenBuilder(BuildContext)", "InvoiceViewScreen(BuildContext)", "InvoiceEditScreen(BuildContext)", "InvoiceEmailScreen(BuildContext)", "InvoicePdfScreen(BuildContext)", "DocumentScreenBuilder(BuildContext)", "DocumentViewScreen(BuildContext)", "DocumentEditScreen(BuildContext)", "ExpenseScreenBuilder(BuildContext)", "ExpenseViewScreen(BuildContext)", "ExpenseEditScreen(BuildContext)", "VendorScreenBuilder(BuildContext)", "VendorViewScreen(BuildContext)", "VendorEditScreen(BuildContext)", "TaskScreenBuilder(BuildContext)", "TaskViewScreen(BuildContext)", "TaskEditScreen(BuildContext)", "ProjectScreenBuilder(BuildContext)", "ProjectViewScreen(BuildContext)", "ProjectEditScreen(BuildContext)", "PaymentScreenBuilder(BuildContext)", "PaymentViewScreen(BuildContext)", "String(int?)", "Color?(Color?,Color?,Color?[Color?])", "QuoteScreenBuilder(BuildContext)", "QuoteViewScreen(BuildContext)", "QuoteEditScreen(BuildContext)", "QuoteEmailScreen(BuildContext)", "QuotePdfScreen(BuildContext)", "ScheduleScreenBuilder(BuildContext)", "ScheduleViewScreen(BuildContext)", "ScheduleEditScreen(BuildContext)", "TransactionRuleScreenBuilder(BuildContext)", "TransactionRuleViewScreen(BuildContext)", "TransactionRuleEditScreen(BuildContext)", "TransactionScreenBuilder(BuildContext)", "TransactionViewScreen(BuildContext)", "TransactionEditScreen(BuildContext)", "BankAccountScreenBuilder(BuildContext)", "BankAccountViewScreen(BuildContext)", "BankAccountEditScreen(BuildContext)", "PurchaseOrderScreenBuilder(BuildContext)", "PurchaseOrderViewScreen(BuildContext)", "PurchaseOrderEditScreen(BuildContext)", "PurchaseOrderEmailScreen(BuildContext)", "PurchaseOrderPdfScreen(BuildContext)", "RecurringExpenseScreenBuilder(BuildContext)", "RecurringExpenseViewScreen(BuildContext)", "RecurringExpenseEditScreen(BuildContext)", "SubscriptionScreenBuilder(BuildContext)", "SubscriptionViewScreen(BuildContext)", "SubscriptionEditScreen(BuildContext)", "TaskStatusScreenBuilder(BuildContext)", "TaskStatusViewScreen(BuildContext)", "TaskStatusEditScreen(BuildContext)", "ExpenseCategoryScreenBuilder(BuildContext)", "ExpenseCategoryViewScreen(BuildContext)", "ExpenseCategoryEditScreen(BuildContext)", "RecurringInvoiceScreenBuilder(BuildContext)", "RecurringInvoiceViewScreen(BuildContext)", "RecurringInvoiceEditScreen(BuildContext)", "RecurringInvoicePdfScreen(BuildContext)", "WebhookScreenBuilder(BuildContext)", "WebhookViewScreen(BuildContext)", "WebhookEditScreen(BuildContext)", "TokenScreenBuilder(BuildContext)", "TokenViewScreen(BuildContext)", "TokenEditScreen(BuildContext)", "PaymentTermScreenBuilder(BuildContext)", "PaymentTermEditScreen(BuildContext)", "PaymentTermViewScreen(BuildContext)", "DesignScreenBuilder(BuildContext)", "DesignViewScreen(BuildContext)", "DesignEditScreen(BuildContext)", "CreditScreenBuilder(BuildContext)", "CreditViewScreen(BuildContext)", "CreditEditScreen(BuildContext)", "CreditEmailScreen(BuildContext)", "CreditPdfScreen(BuildContext)", "UserScreenBuilder(BuildContext)", "UserViewScreen(BuildContext)", "UserEditScreen(BuildContext)", "GroupScreenBuilder(BuildContext)", "GroupViewScreen(BuildContext)", "GroupEditScreen(BuildContext)", "SettingsScreenBuilder(BuildContext)", "ReportsScreenBuilder(BuildContext)", "CompanyDetailsScreen(BuildContext)", "UserDetailsScreen(BuildContext)", "LocalizationScreen(BuildContext)", "PaymentsSettingsScreen(BuildContext)", "CompanyGatewayScreenBuilder(BuildContext)", "CompanyGatewayViewScreen(BuildContext)", "CompanyGatewayEditScreen(BuildContext)", "TaxSettingsScreen(BuildContext)", "TaxRateScreenBuilder(BuildContext)", "TaxRateViewScreen(BuildContext)", "TaxRateEditScreen(BuildContext)", "ProductSettingsScreen(BuildContext)", "ExpenseSettingsScreen(BuildContext)", "TaskSettingsScreen(BuildContext)", "ImportExportScreen(BuildContext)", "DeviceSettingsScreen(BuildContext)", "AccountManagementScreen(BuildContext)", "CustomFieldsScreen(BuildContext)", "GeneratedNumbersScreen(BuildContext)", "WorkflowSettingsScreen(BuildContext)", "InvoiceDesignScreen(BuildContext)", "ClientPortalScreen(BuildContext)", "EmailSettingsScreen(BuildContext)", "TemplatesAndRemindersScreen(BuildContext)", "CreditCardsAndBanksScreen(BuildContext)", "DataVisualizationsScreen(BuildContext)", "ListTileTheme(BuildContext)", "StatefulWidget?(BuildContext,MagnifierController,ValueNotifier)", "bool(LayoutChangedNotification)", "_Future<@>?()", "JSObject()", "ShapeBorderTween(@)", "Future(SharedPreferences)", "Color0?(int?)", "~(_LineRendererElement)", "String(String,ClearLastError)", "String(String,LoadClientsFailure)", "String(String,LoadProductsFailure)", "String(String,LoadInvoicesFailure)", "String(String,LoadPaymentsFailure)", "String(String,LoadQuotesFailure)", "String(String,LoadProjectsFailure)", "String(String,LoadTasksFailure)", "String(String,LoadVendorsFailure)", "String(String,LoadExpensesFailure)", "String(String,LoadSchedulesFailure)", "String(String,LoadTransactionRulesFailure)", "String(String,LoadTransactionsFailure)", "String(String,LoadBankAccountsFailure)", "String(String,LoadPurchaseOrdersFailure)", "String(String,LoadRecurringExpensesFailure)", "String(String,LoadSubscriptionsFailure)", "String(String,LoadTaskStatusesFailure)", "String(String,LoadRecurringInvoicesFailure)", "String(String,LoadWebhooksFailure)", "String(String,LoadTokensFailure)", "String(String,LoadPaymentTermsFailure)", "String(String,LoadDesignsFailure)", "String(String,LoadCreditsFailure)", "String(String,RefreshDataFailure)", "bool(bool,DismissNativeWarning)", "Null(Function,Function)", "UserCompanyState(int)", "PageTransitionsBuilder?(TargetPlatform)", "FadeTransition(BuildContext,Widget?)", "~(double,double)", "SelectableEntity?(@)", "Palette(Palette())", "bool(OverscrollIndicatorNotification)", "Widget(Widget,int,Animation0)", "~(UserCompanyEntity)", "~(UserCompanyState)", "Material(BuildContext,Widget?)", "Actions(BuildContext,Widget?)", "~(DragEndDetails{isClosing:bool?})", "Align(BuildContext,Widget?)", "Null(BuiltList)", "BankAccountUIStateBuilder(BankAccountUIStateBuilder)", "bool(bool?,ViewBankAccount)", "bool(bool?,ViewBankAccountList)", "bool(bool?,FilterBankAccountsByState)", "bool(bool?,FilterBankAccounts)", "bool(bool?,FilterBankAccountsByCustom1)", "bool(bool?,FilterBankAccountsByCustom2)", "bool(bool?,FilterBankAccountsByCustom3)", "bool(bool?,FilterBankAccountsByCustom4)", "int?(int?,UpdateBankAccountTab)", "ViewClipChain()", "String(String?,ArchiveBankAccountsSuccess)", "String(String?,DeleteBankAccountsSuccess)", "Null(List,JavaScriptObject)", "bool(SurfaceFrame,CkCanvas)", "_Future<@>(@)", "~(SelectionModelType)", "String(String?,SortBankAccounts)", "String(String?,FilterBankAccounts)", "String(String?,FilterBankAccountsByState)", "String(String?,FilterBankAccountsByCustom1)", "String(String?,FilterBankAccountsByCustom2)", "String(String?,FilterBankAccountsByCustom3)", "String(String?,FilterBankAccountsByCustom4)", "~(Size?)", "BankAccountEntity(BankAccountEntity?,UpdateBankAccount)", "Animation0(bool)", "BankAccountEntity(BankAccountEntity?,RestoreBankAccountsSuccess)", "BankAccountEntity(BankAccountEntity?,ArchiveBankAccountsSuccess)", "BankAccountEntity(BankAccountEntity?,DeleteBankAccountsSuccess)", "~(List,TextDirection,double)", "GlobalKey>(Widget)", "Center(int)", "InputDecorator(BuildContext,Widget?)", "List(BuiltMap,BuiltList,StaticState,BuiltMap,String?)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "BankAccountEntity(@)", "~(String,ChartBehavior0<@>)", "UnmanagedRestorationScope(FormFieldState)", "ThemeDataTween(@)", "ThemeData()", "_MergClientPicker(BuildContext)", "MapEntry>(Object,ThemeExtension<@>)", "bool(MapEntry>)", "TimeOfDay(int)", "Offset(double,double)", "~(List<_TappableLabel>,double)", "Null(BuiltList)", "~(List<_TappableLabel>?)", "~(ChartStateBehavior>,AnimationController)", "~({animation!Animation0,controller!AnimationController,max!double,min!double,target!double,tween!Tween})", "ClientUIStateBuilder(ClientUIStateBuilder)", "bool(bool?,ViewClient)", "bool(bool?,ViewClientList)", "bool(bool?,FilterClientsByState)", "bool(bool?,FilterClients)", "bool(bool?,FilterClientsByCustom1)", "bool(bool?,FilterClientsByCustom2)", "bool(bool?,FilterClientsByCustom3)", "bool(bool?,FilterClientsByCustom4)", "int?(int?,UpdateClientTab)", "Completer?(Completer?,EditClient)", "Completer?(Completer?,EditClient)", "ClientContactEntity(ClientContactEntity?,EditClient)", "ClientContactEntity(ClientContactEntity?,EditContact)", "String(String?,ArchiveClientsSuccess)", "String(String?,DeleteClientsSuccess)", "String?(String?,ViewClient)", "String(String?,AddClientSuccess)", "String(String?,ShowPdfClient)", "String(String?,SortClients)", "String(String?,FilterClients)", "String(String?,FilterClientsByState)", "String(String?,FilterClientsByCustom1)", "String(String?,FilterClientsByCustom2)", "String(String?,FilterClientsByCustom3)", "String(String?,FilterClientsByCustom4)", "TimeOfDay()", "ClientEntity(ClientEntity?,SaveClientSuccess)", "ClientEntity(ClientEntity?,AddClientSuccess)", "ClientEntity(ClientEntity?,RestoreClientSuccess)", "ClientEntity(ClientEntity?,ArchiveClientsSuccess)", "ClientEntity(ClientEntity?,DeleteClientsSuccess)", "ClientEntity(ClientEntity?,EditClient)", "ClientEntity(ClientEntity?,UpdateClient)", "ClientEntity(ClientEntity?,AddContact)", "ClientEntity(ClientEntity?,DeleteContact)", "ClientEntity(ClientEntity?,UpdateContact)", "ClientEntity(ClientEntity?,ViewClient)", "ClientEntity(ClientEntity?,ViewClientList)", "ClientEntity(ClientEntity?,SelectCompany)", "ClientEntity(ClientEntity?,DiscardChanges)", "Widget(LegendEntry<@>)", "~(TimePickerEntryMode)", "List(BuiltMap,BuiltList,BuiltMap,StaticState)", "SingleChildScrollView(BuildContext,BoxConstraints)", "~(_HourMinuteMode)", "List(SelectionState,BuiltMap,BuiltList,BuiltMap,ListUIState,BuiltMap,StaticState)", "MergeSemantics(int)", "ClientEntity(@)", "UserCompanyStateBuilder(UserCompanyStateBuilder)", "UserCompanyEntity(UserCompanyEntity?,SaveEInvoiceCertificateSuccess)", "TextStyle()", "UserCompanyEntity(UserCompanyEntity?,UpdateReportSettings)", "BoxDecoration()", "UserCompanyEntity(UserCompanyEntity?,SaveAuthUserSuccess)", "UserCompanyEntity(UserCompanyEntity?,ConnectOAuthUserSuccess)", "UserCompanyEntity(UserCompanyEntity?,ConnecGmailUserSuccess)", "UserCompanyEntity(UserCompanyEntity?,DisconnectOAuthUserSuccess)", "UserCompanyEntity(UserCompanyEntity?,DisconnectOAuthMailerSuccess)", "UserCompanyEntity(UserCompanyEntity?,DisableTwoFactorSuccess)", "UserCompanyEntity(UserCompanyEntity?,SaveUserSettingsSuccess)", "UserCompanyEntity(UserCompanyEntity?,UpdateCompanyLanguage)", "UserCompanyEntity(UserCompanyEntity?,UpdateDashboardFields)", "UserCompanyEntity?(UserCompanyEntity?,UpdateDashboardFieldSettingss)", "CompanyEntityBuilder(UserCompanyEntityBuilder)", "int(int,LoadCompanySuccess)", "int(int,LoadExpensesSuccess)", "List(BuiltMap,BuiltList)", "bool(CompanyEntity?,BuiltMap,BuiltMap)", "List(CompanyEntity?,BuiltMap,BuiltMap)", "List(String?,UserCompanyState)", "ProductEntity(String)", "Brightness()", "ClientEntity(String)", "bool(ClientEntity)", "TextTheme()", "~(JSObject)", "PaymentEntity(String)", "~(Surface)", "ProjectEntity(String)", "Future(ImmutableBuffer{allowUpscaling:bool,cacheHeight:int?,cacheWidth:int?})", "Future(ImmutableBuffer{getTargetSize:TargetImageSize(int,int)?})", "EdgeInsetsGeometry(EdgeInsetsGeometry,ShapeBorder)", "int(BaseEntity?,BaseEntity?)", "ShapeBorder(ShapeBorder)", "bool(ShapeBorder)", "String(ShapeBorder)", "Null(BuiltList)", "CompanyGatewayUIStateBuilder(CompanyGatewayUIStateBuilder)", "bool(bool?,ViewCompanyGateway)", "bool(bool?,ViewCompanyGatewayList)", "bool(bool?,FilterCompanyGatewaysByState)", "bool(bool?,FilterCompanyGateways)", "bool(bool?,FilterCompanyGatewaysByCustom1)", "bool(bool?,FilterCompanyGatewaysByCustom2)", "bool(bool?,FilterCompanyGatewaysByCustom3)", "bool(bool?,FilterCompanyGatewaysByCustom4)", "String(String?,ArchiveCompanyGatewaySuccess)", "String(String?,DeleteCompanyGatewaySuccess)", "String?(String?,ViewCompanyGateway)", "String(String?,AddCompanyGatewaySuccess)", "String(String?,SortCompanyGateways)", "String(String?,FilterCompanyGateways)", "String(String?,FilterCompanyGatewaysByState)", "String(String?,FilterCompanyGatewaysByCustom1)", "String(String?,FilterCompanyGatewaysByCustom2)", "String(String?,FilterCompanyGatewaysByCustom3)", "String(String?,FilterCompanyGatewaysByCustom4)", "CompanyGatewayEntity(CompanyGatewayEntity?,RestoreCompanyGatewaySuccess)", "CompanyGatewayEntity(CompanyGatewayEntity?,ArchiveCompanyGatewaySuccess)", "CompanyGatewayEntity(CompanyGatewayEntity?,DeleteCompanyGatewaySuccess)", "CompanyGatewayEntity(CompanyGatewayEntity?,UpdateCompanyGateway)", "double(double,FlutterView)", "bool(double)", "Color(double)", "List(BuiltMap,BuiltList,ListUIState,String?,bool)", "double(String,BuiltMap)", "_LiveImage()", "EntityStats(String,BuiltMap)", "~(String,CompanyGatewayEntity)", "~(ImageInfo?,bool)", "Future<~>(Object,StackTrace?)", "Padding(Widget)", "Null(AssetManifest)", "int(TableRow)", "~(ImageChunkEvent)", "~(Object,StackTrace?)?(ImageStreamListener)", "~(ImageChunkEvent)?(ImageStreamListener)", "Padding(int)", "Paint(BoxShadow)", "CreditUIStateBuilder(CreditUIStateBuilder)", "bool(bool?,ViewCredit)", "bool(bool?,ViewCreditList)", "bool(bool?,FilterCreditsByState)", "bool(bool?,FilterCreditsByStatus)", "bool(bool?,FilterCredits)", "bool(bool?,FilterCreditsByCustom1)", "bool(bool?,FilterCreditsByCustom2)", "bool(bool?,FilterCreditsByCustom3)", "bool(bool?,FilterCreditsByCustom4)", "int?(int?,UpdateCreditTab)", "String?(String?,ShowPdfCredit)", "int?(int?,EditCredit)", "int?(int?,EditCreditItem)", "String(String?,ArchiveCreditsSuccess)", "String(String?,DeleteCreditsSuccess)", "String?(String?,ViewCredit)", "String(String?,AddCreditSuccess)", "String(String?,ShowEmailCredit)", "String(String?,ShowPdfCredit)", "String(String?,SortCredits)", "String(String?,FilterCredits)", "String(String?,FilterCreditsByState)", "String(String?,FilterCreditsByStatus)", "String(String?,FilterCreditsByCustom1)", "String(String?,FilterCreditsByCustom2)", "String(String?,FilterCreditsByCustom3)", "String(String?,FilterCreditsByCustom4)", "InvoiceEntity(InvoiceEntity?,UpdateCredit)", "Rect(BoxShadow)", "InvoiceEntity(InvoiceEntity?,MoveCreditItem)", "InvoiceEntity(InvoiceEntity?,DeleteCreditItem)", "InvoiceEntity(InvoiceEntity?,UpdateCreditItem)", "InvoiceEntity(InvoiceEntity?,UpdateCreditClient)", "InvoiceEntity(InvoiceEntity?,RestoreCreditsSuccess)", "InvoiceEntity(InvoiceEntity?,ArchiveCreditsSuccess)", "InvoiceEntity(InvoiceEntity?,DeleteCreditsSuccess)", "InvoiceEntity(InvoiceEntity?,AddCreditContact)", "InvoiceEntity(InvoiceEntity?,RemoveCreditContact)", "Path(BoxShadow)", "bool(int,bool)", "List(Size)", "TextAlign()", "~(@,StackTrace)", "LineMetrics(LineMetrics)", "List(BuiltMap,BuiltMap,BuiltMap,BuiltList,String,BuiltMap,List)", "List(SelectionState,BuiltMap,BuiltList,BuiltMap,BuiltMap,BuiltMap,ListUIState,BuiltMap)", "DiagnosticsNode(InlineSpan)", "Paint?()", "Color?()", "DashboardUIStateBuilder(DashboardUIStateBuilder)", "BuiltMap>(BuiltMap>,UpdateDashboardSelection)", "Future()", "BuiltMap>(BuiltMap>,SelectCompany)", "EntityType?(EntityType?,UpdateDashboardEntityType)", "bool?(bool?,UpdateDashboardSidebar)", "HitTestResult(Offset,int)", "String(double,double,String)", "Size()", "~(int,bool(FlutterHtmlKeyboardEvent))", "~(TextSelection)", "bool(InlineSpanSemanticsInformation)", "~(String,Duration)", "Rect(Rect?,TextBox)", "ChartContainerRenderObject<@>()", "List(BuiltMap,String)", "MouseCursor0(MouseTrackerAnnotation)", "~(MouseTrackerAnnotation,Matrix40)", "List(BuiltMap,BuiltMap)", "int(PaymentEntity?,PaymentEntity?)", "List(BuiltMap,BuiltMap)", "bool(MouseTrackerAnnotation)", "List(BuiltMap,BuiltMap)", "List(BuiltMap,BuiltMap)", "bool(int,int)", "~(List<_InterestingSemanticsFragment>{isMergeUp:bool})", "~(List,JavaScriptObject)", "Future(JavaScriptObject)", "~(_SelectableFragment)", "Null(BuiltList)", "DesignUIStateBuilder(DesignUIStateBuilder)", "bool(bool?,ViewDesign)", "bool(bool?,ViewDesignList)", "bool(bool?,FilterDesignsByState)", "bool(bool?,FilterDesigns)", "bool(bool?,FilterDesignsByCustom1)", "bool(bool?,FilterDesignsByCustom2)", "bool(bool?,FilterDesignsByCustom3)", "bool(bool?,FilterDesignsByCustom4)", "String(String?,ArchiveDesignsSuccess)", "String(String?,DeleteDesignsSuccess)", "String(String?,SortDesigns)", "String(String?,FilterDesigns)", "String(String?,FilterDesignsByState)", "String(String?,FilterDesignsByCustom1)", "String(String?,FilterDesignsByCustom2)", "String(String?,FilterDesignsByCustom3)", "String(String?,FilterDesignsByCustom4)", "DesignEntity(DesignEntity?,RestoreDesignsSuccess)", "DesignEntity(DesignEntity?,ArchiveDesignsSuccess)", "DesignEntity(DesignEntity?,DeleteDesignsSuccess)", "DesignEntity(DesignEntity?,UpdateDesign)", "bool(_SelectableFragment)", "~(Iterable)", "List(BuiltMap,BuiltList,ListUIState)", "DesignEntity(@)", "OneSequenceGestureRecognizer(Factory)", "TransformLayer?(PaintingContext,Offset)", "bool(SliverHitTestResult{crossAxisPosition!double,mainAxisPosition!double})", "_ButtonSanitizer()", "Map(WebDropItem)", "bool(RenderSliver)", "Null(Uint8List?)", "DocumentUIStateBuilder(DocumentUIStateBuilder)", "bool(bool?,ViewDocument)", "bool(bool?,ViewDocumentList)", "bool(bool?,FilterDocumentsByState)", "bool(bool?,FilterDocumentsByStatus)", "bool(bool?,FilterDocuments)", "bool(bool?,FilterDocumentsByCustom1)", "bool(bool?,FilterDocumentsByCustom2)", "bool(bool?,FilterDocumentsByCustom3)", "bool(bool?,FilterDocumentsByCustom4)", "String(String?,ArchiveDocumentSuccess)", "String(String?,DeleteDocumentSuccess)", "String?(String?,ViewDocument)", "String(String?,SortDocuments)", "CkCanvas(CkPictureRecorder)", "String(String?,FilterDocumentsByState)", "String(String?,FilterDocumentsByStatus)", "String(String?,FilterDocumentsByCustom1)", "String(String?,FilterDocumentsByCustom2)", "String(String?,FilterDocumentsByCustom3)", "String(String?,FilterDocumentsByCustom4)", "DocumentEntity(DocumentEntity?,UpdateDocument)", "~(FrameTiming)", "~(int,_FrameCallbackEntry)", "~(SemanticsActionEvent)", "~(SemanticsNode)", "_PointerState()", "SemanticsNode(_TraversalSortNode)", "DiagnosticsNode(SemanticsNode)", "WebDropItem(Map<@,@>)", "XFile(WebDropItem)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "int(SemanticsNode)", "InvoiceItemEntity(BaseEntity)", "SemanticsNode(int)", "~(SemanticsTag)", "~(SemanticsAction,~(Object?))", "ByteData(ByteData?)", "ExpenseUIStateBuilder(ExpenseUIStateBuilder)", "bool(bool?,ViewExpense)", "bool(bool?,ViewExpenseList)", "bool(bool?,FilterExpensesByState)", "bool(bool?,FilterExpensesByStatus)", "bool(bool?,FilterExpenses)", "bool(bool?,FilterExpensesByCustom1)", "bool(bool?,FilterExpensesByCustom2)", "bool(bool?,FilterExpensesByCustom3)", "bool(bool?,FilterExpensesByCustom4)", "int?(int?,UpdateExpenseTab)", "String(String?,ArchiveExpenseSuccess)", "String(String?,DeleteExpenseSuccess)", "String?(String?,ViewExpense)", "String(String?,AddExpenseSuccess)", "String(String?,SortExpenses)", "String(String?,FilterExpenses)", "String(String?,FilterExpensesByState)", "String(String?,FilterExpensesByStatus)", "String(String?,FilterExpensesByCustom1)", "String(String?,FilterExpensesByCustom2)", "String(String?,FilterExpensesByCustom3)", "String(String?,FilterExpensesByCustom4)", "ExpenseEntity(ExpenseEntity?,RestoreExpenseSuccess)", "ExpenseEntity(ExpenseEntity?,ArchiveExpenseSuccess)", "ExpenseEntity(ExpenseEntity?,DeleteExpenseSuccess)", "ExpenseEntity(ExpenseEntity?,UpdateExpense)", "Future<_AssetManifestBin>(String)", "AssetMetadata(Map)", "Map(TextInputConfiguration)", "TextInputConfiguration(AutofillClient)", "Stream()", "InvoiceEntity?(ExpenseEntity,BuiltMap)", "Future(String?)", "Future<~>(ByteData?,~(ByteData?))", "List(BuiltMap,String?)", "Future>(@)", "~(RawKeyEvent)", "~(DropEvent)", "RawKeyEventData()", "Null(BuiltList)", "ExpenseCategoryUIStateBuilder(ExpenseCategoryUIStateBuilder)", "Completer?(Completer?,EditExpenseCategory)", "Completer?(Completer?,EditExpenseCategory)", "bool(bool?,ViewExpenseCategory)", "bool(bool?,ViewExpenseCategoryList)", "bool(bool?,FilterExpenseCategoriesByState)", "bool(bool?,FilterExpenseCategories)", "bool(bool?,FilterExpenseCategoriesByCustom1)", "bool(bool?,FilterExpenseCategoriesByCustom2)", "bool(bool?,FilterExpenseCategoriesByCustom3)", "bool(bool?,FilterExpenseCategoriesByCustom4)", "String(String?,ArchiveExpenseCategoriesSuccess)", "String(String?,DeleteExpenseCategoriesSuccess)", "String(String?,SortExpenseCategories)", "String(String?,FilterExpenseCategories)", "String(String?,FilterExpenseCategoriesByState)", "String(String?,FilterExpenseCategoriesByCustom1)", "String(String?,FilterExpenseCategoriesByCustom2)", "String(String?,FilterExpenseCategoriesByCustom3)", "String(String?,FilterExpenseCategoriesByCustom4)", "ExpenseCategoryEntity(ExpenseCategoryEntity?,RestoreExpenseCategoriesSuccess)", "ExpenseCategoryEntity(ExpenseCategoryEntity?,ArchiveExpenseCategoriesSuccess)", "ExpenseCategoryEntity(ExpenseCategoryEntity?,DeleteExpenseCategoriesSuccess)", "ExpenseCategoryEntity(ExpenseCategoryEntity?,UpdateExpenseCategory)", "~(File,Uint8List?,String?,Stream>?)", "Map(Map,String)", "List()", "List(BuiltMap,BuiltList,StaticState,BuiltMap,String)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "double(String,BuiltMap)", "List(List)", "double(num)", "ExpenseCategoryEntity(@)", "List<@>(String)", "List(SelectionRect)", "PlatformViewSurface(BuildContext,PlatformViewController)", "Null(BuiltList)", "GroupUIStateBuilder(GroupUIStateBuilder)", "bool(bool?,ViewGroup)", "bool(bool?,ViewGroupList)", "bool(bool?,FilterGroupsByState)", "bool(bool?,FilterGroups)", "String(String?,ArchiveGroupSuccess)", "String(String?,DeleteGroupSuccess)", "String?(String?,ViewGroup)", "String(String?,AddGroupSuccess)", "String(String?,SortGroups)", "String(String?,FilterGroups)", "String(String?,FilterGroupsByState)", "GroupEntity(GroupEntity?,RestoreGroupSuccess)", "GroupEntity(GroupEntity?,ArchiveGroupSuccess)", "GroupEntity(GroupEntity?,DeleteGroupSuccess)", "GroupEntity(GroupEntity?,UpdateGroup)", "_HtmlElementViewController(PlatformViewCreationParams)", "Future<~>(PointerEvent)", "~(String,int)", "Future(String)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "EntityStats(BuiltMap,String)", "~(Action)", "SimpleDialogOption(EmailTemplate)", "InvoiceUIStateBuilder(InvoiceUIStateBuilder)", "bool(bool?,ViewInvoice)", "bool(bool?,ViewInvoiceList)", "bool(bool?,FilterInvoicesByState)", "bool(bool?,FilterInvoicesByStatus)", "bool(bool?,FilterInvoices)", "bool(bool?,FilterInvoicesByCustom1)", "bool(bool?,FilterInvoicesByCustom2)", "bool(bool?,FilterInvoicesByCustom3)", "bool(bool?,FilterInvoicesByCustom4)", "int?(int?,UpdateInvoiceTab)", "String?(String?,ShowPdfInvoice)", "int?(int?,EditInvoice)", "int?(int?,EditInvoiceItem)", "String(String?,ArchiveInvoicesSuccess)", "String(String?,DeleteInvoicesSuccess)", "String?(String?,ViewInvoice)", "String(String?,AddInvoiceSuccess)", "String(String?,ShowEmailInvoice)", "String(String?,ShowPdfInvoice)", "String(String?,SortInvoices)", "String(String?,FilterInvoices)", "String(String?,FilterInvoicesByState)", "String(String?,FilterInvoicesByStatus)", "String(String?,FilterInvoicesByCustom1)", "String(String?,FilterInvoicesByCustom2)", "String(String?,FilterInvoicesByCustom3)", "String(String?,FilterInvoicesByCustom4)", "InvoiceEntity(InvoiceEntity?,UpdateInvoice)", "TickerFuture({from:double?})", "InvoiceEntity(InvoiceEntity?,MoveInvoiceItem)", "InvoiceEntity(InvoiceEntity?,DeleteInvoiceItem)", "InvoiceEntity(InvoiceEntity?,UpdateInvoiceItem)", "InvoiceEntity(InvoiceEntity?,UpdateInvoiceClient)", "InvoiceEntity(InvoiceEntity?,RestoreInvoicesSuccess)", "InvoiceEntity(InvoiceEntity?,ArchiveInvoicesSuccess)", "InvoiceEntity(InvoiceEntity?,DeleteInvoicesSuccess)", "InvoiceEntity(InvoiceEntity?,AddInvoiceContact)", "InvoiceEntity(InvoiceEntity?,RemoveInvoiceContact)", "~(_ChildEntry)", "Widget(_ChildEntry)", "bool(String,BuiltMap)", "InvoiceEntity?(InvoiceEntity,BuiltMap)", "List(BuiltMap,BuiltMap,BuiltMap,BuiltList,String,BuiltMap,List,String?)", "List(SelectionState,BuiltMap,BuiltList,BuiltMap,BuiltMap,BuiltMap,ListUIState,BuiltMap,String?)", "bool(Widget)", "~(_AnimationDirection)", "Route<@>?(RouteSettings)", "Null(BuiltList)", "PaymentUIStateBuilder(PaymentUIStateBuilder)", "bool(bool?,ViewPayment)", "bool(bool?,ViewPaymentList)", "bool(bool?,FilterPaymentsByState)", "bool(bool?,FilterPaymentsByStatus)", "bool(bool?,FilterPayments)", "bool(bool?,FilterPaymentsByCustom1)", "bool(bool?,FilterPaymentsByCustom2)", "bool(bool?,FilterPaymentsByCustom3)", "bool(bool?,FilterPaymentsByCustom4)", "int?(int?,UpdatePaymentTab)", "String(String?,ArchivePaymentsSuccess)", "String(String?,DeletePaymentsSuccess)", "String?(String?,ViewPayment)", "String(String?,AddPaymentSuccess)", "String(String?,SortPayments)", "String(String?,FilterPayments)", "String(String?,FilterPaymentsByState)", "String(String?,FilterPaymentsByStatus)", "String(String?,FilterPaymentsByCustom1)", "String(String?,FilterPaymentsByCustom2)", "String(String?,FilterPaymentsByCustom3)", "String(String?,FilterPaymentsByCustom4)", "PaymentEntity(PaymentEntity?,RestorePaymentsSuccess)", "PaymentEntity(PaymentEntity?,ArchivePaymentsSuccess)", "PaymentEntity(PaymentEntity?,DeletePaymentsSuccess)", "PaymentEntity(PaymentEntity?,UpdatePayment)", "String(PaymentEntity)", "~(String,int?)", "bool(String,PaymentEntity)", "~(AutocompletePreviousOptionIntent)", "~(AutocompleteNextOptionIntent)", "~(String,String?)", "CompositedTransformFollower(BuildContext)", "List(SelectionState,BuiltMap,BuiltList,BuiltMap,BuiltMap,BuiltMap,BuiltMap,ListUIState)", "EntityStats(String,BuiltMap,BuiltMap)", "PaymentEntity(@)", "bool(AutofillClient)", "AutofillClient()", "bool(KeepAliveNotification)", "Null(BuiltList)", "PaymentTermUIStateBuilder(PaymentTermUIStateBuilder)", "bool(bool?,ViewPaymentTerm)", "bool(bool?,ViewPaymentTermList)", "bool(bool?,FilterPaymentTermsByState)", "bool(bool?,FilterPaymentTerms)", "bool(bool?,FilterPaymentTermsByCustom1)", "bool(bool?,FilterPaymentTermsByCustom2)", "bool(bool?,FilterPaymentTermsByCustom3)", "bool(bool?,FilterPaymentTermsByCustom4)", "String(String?,ArchivePaymentTermsSuccess)", "String(String?,DeletePaymentTermsSuccess)", "String(String?,SortPaymentTerms)", "String(String?,FilterPaymentTerms)", "String(String?,FilterPaymentTermsByState)", "String(String?,FilterPaymentTermsByCustom1)", "String(String?,FilterPaymentTermsByCustom2)", "String(String?,FilterPaymentTermsByCustom3)", "String(String?,FilterPaymentTermsByCustom4)", "PaymentTermEntity(PaymentTermEntity?,RestorePaymentTermsSuccess)", "PaymentTermEntity(PaymentTermEntity?,ArchivePaymentTermsSuccess)", "PaymentTermEntity(PaymentTermEntity?,DeletePaymentTermsSuccess)", "PaymentTermEntity(PaymentTermEntity?,UpdatePaymentTerm)", "String(String,Color)", "ClipPath(BuildContext)", "TextScaler()", "~(int,int,int)", "List(BuiltMap,BuiltList)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "Uint8List(@,@)", "SimpleDialogOption(String)", "Future()", "Future<~>(double)", "Future<~>(@)", "Null(BuiltList)", "ProductUIStateBuilder(ProductUIStateBuilder)", "bool(bool?,ViewProduct)", "bool(bool?,ViewProductList)", "bool(bool?,FilterProductsByState)", "bool(bool?,FilterProducts)", "bool(bool?,FilterProductsByCustom1)", "bool(bool?,FilterProductsByCustom2)", "bool(bool?,FilterProductsByCustom3)", "bool(bool?,FilterProductsByCustom4)", "int?(int?,UpdateProductTab)", "ProductEntity(ProductEntity?,UpdateProduct)", "ProductEntity(ProductEntity?,RestoreProductsSuccess)", "ProductEntity(ProductEntity?,ArchiveProductsSuccess)", "ProductEntity(ProductEntity?,DeleteProductsSuccess)", "String(String?,ArchiveProductsSuccess)", "String(String?,DeleteProductsSuccess)", "String?(String?,ViewProduct)", "String(String?,AddProductSuccess)", "String(String?,SortProducts)", "String(String?,FilterProducts)", "String(String?,FilterProductsByState)", "String(String?,FilterProductsByCustom1)", "String(String?,FilterProductsByCustom2)", "String(String?,FilterProductsByCustom3)", "String(String?,FilterProductsByCustom4)", "DefaultSelectionStyle(BuildContext)", "UnregisteredFont()", "List(BuiltMap,BuiltList,BuiltMap)", "List(BuiltMap)", "List(SelectionState,BuiltMap,BuiltList,ListUIState,BuiltMap)", "ProductEntity(@)", "Rect(DisplayFeature)", "LayoutBuilder(BuildContext,double,Widget?)", "_DraggableSheetExtent()", "Null(BuiltList)", "ProjectUIStateBuilder(ProjectUIStateBuilder)", "bool(bool?,ViewProject)", "bool(bool?,ViewProjectList)", "bool(bool?,FilterProjectsByState)", "bool(bool?,FilterProjects)", "bool(bool?,FilterProjectsByCustom1)", "bool(bool?,FilterProjectsByCustom2)", "bool(bool?,FilterProjectsByCustom3)", "bool(bool?,FilterProjectsByCustom4)", "int?(int?,UpdateProjectTab)", "Completer?(Completer?,EditProject)", "Completer?(Completer?,EditProject)", "String(String?,ArchiveProjectSuccess)", "String(String?,DeleteProjectSuccess)", "String?(String?,ViewProject)", "String(String?,AddProjectSuccess)", "String(String?,SortProjects)", "String(String?,FilterProjects)", "String(String?,FilterProjectsByState)", "String(String?,FilterProjectsByCustom1)", "String(String?,FilterProjectsByCustom2)", "String(String?,FilterProjectsByCustom3)", "String(String?,FilterProjectsByCustom4)", "ProjectEntity(ProjectEntity?,RestoreProjectSuccess)", "ProjectEntity(ProjectEntity?,ArchiveProjectSuccess)", "ProjectEntity(ProjectEntity?,DeleteProjectSuccess)", "ProjectEntity(ProjectEntity?,UpdateProject)", "String(ProjectEntity)", "~(Layer0)", "bool(String,ProjectEntity)", "~(Blob?)", "int(TaskEntity?,TaskEntity?)", "bool(Element2)", "List(BuiltMap,BuiltList,BuiltMap,BuiltMap,String?)", "List(SelectionState,BuiltMap,BuiltList,ListUIState,BuiltMap,BuiltMap)", "~(NotoFont)", "~(String,ProjectEntity)", "ProjectEntity(@)", "PurchaseOrderUIStateBuilder(PurchaseOrderUIStateBuilder)", "bool(bool?,ViewPurchaseOrder)", "bool(bool?,ViewPurchaseOrderList)", "bool(bool?,FilterPurchaseOrdersByState)", "bool(bool?,FilterPurchaseOrdersByStatus)", "bool(bool?,FilterPurchaseOrders)", "bool(bool?,FilterPurchaseOrdersByCustom1)", "bool(bool?,FilterPurchaseOrdersByCustom2)", "bool(bool?,FilterPurchaseOrdersByCustom3)", "bool(bool?,FilterPurchaseOrdersByCustom4)", "int?(int?,UpdatePurchaseOrderTab)", "String?(String?,ShowPdfPurchaseOrder)", "int?(int?,EditPurchaseOrder)", "int?(int?,EditPurchaseOrderItem)", "String(String?,ArchivePurchaseOrdersSuccess)", "String(String?,DeletePurchaseOrdersSuccess)", "String?(String?,ViewPurchaseOrder)", "String(String?,AddPurchaseOrderSuccess)", "String(String?,ShowEmailPurchaseOrder)", "String(String?,ShowPdfPurchaseOrder)", "String(String?,SortPurchaseOrders)", "String(String?,FilterPurchaseOrders)", "String(String?,FilterPurchaseOrdersByState)", "String(String?,FilterPurchaseOrdersByStatus)", "String(String?,FilterPurchaseOrdersByCustom1)", "String(String?,FilterPurchaseOrdersByCustom2)", "String(String?,FilterPurchaseOrdersByCustom3)", "String(String?,FilterPurchaseOrdersByCustom4)", "InvoiceEntity(InvoiceEntity?,UpdatePurchaseOrder)", "~(TransposeCharactersIntent)", "InvoiceEntity(InvoiceEntity?,MovePurchaseOrderItem)", "InvoiceEntity(InvoiceEntity?,DeletePurchaseOrderItem)", "InvoiceEntity(InvoiceEntity?,UpdatePurchaseOrderItem)", "InvoiceEntity(InvoiceEntity?,UpdatePurchaseOrderVendor)", "InvoiceEntity(InvoiceEntity?,RestorePurchaseOrdersSuccess)", "InvoiceEntity(InvoiceEntity?,ArchivePurchaseOrdersSuccess)", "InvoiceEntity(InvoiceEntity?,DeletePurchaseOrdersSuccess)", "InvoiceEntity(InvoiceEntity?,AddPurchaseOrderContact)", "InvoiceEntity(InvoiceEntity?,RemovePurchaseOrderContact)", "~(ReplaceTextIntent)", "~(ScrollToDocumentBoundaryIntent)", "List(BuiltMap,BuiltList,StaticState,BuiltMap,BuiltMap,BuiltMap,String)", "~(ScrollIntent)", "QuoteUIStateBuilder(QuoteUIStateBuilder)", "bool(bool?,ViewQuote)", "bool(bool?,ViewQuoteList)", "bool(bool?,FilterQuotesByState)", "bool(bool?,FilterQuotesByStatus)", "bool(bool?,FilterQuotes)", "bool(bool?,FilterQuotesByCustom1)", "bool(bool?,FilterQuotesByCustom2)", "bool(bool?,FilterQuotesByCustom3)", "bool(bool?,FilterQuotesByCustom4)", "int?(int?,UpdateQuoteTab)", "String?(String?,ShowPdfQuote)", "int?(int?,EditQuote)", "int?(int?,EditQuoteItem)", "String(String?,ArchiveQuotesSuccess)", "String(String?,DeleteQuotesSuccess)", "String?(String?,ViewQuote)", "String(String?,AddQuoteSuccess)", "String(String?,ShowEmailQuote)", "String(String?,ShowPdfQuote)", "String(String?,SortQuotes)", "String(String?,FilterQuotes)", "String(String?,FilterQuotesByState)", "String(String?,FilterQuotesByStatus)", "String(String?,FilterQuotesByCustom1)", "String(String?,FilterQuotesByCustom2)", "String(String?,FilterQuotesByCustom3)", "String(String?,FilterQuotesByCustom4)", "InvoiceEntity(InvoiceEntity?,UpdateQuote)", "~(ExtendSelectionByPageIntent)", "InvoiceEntity(InvoiceEntity?,MoveQuoteItem)", "InvoiceEntity(InvoiceEntity?,DeleteQuoteItem)", "InvoiceEntity(InvoiceEntity?,UpdateQuoteItem)", "InvoiceEntity(InvoiceEntity?,UpdateQuoteClient)", "InvoiceEntity(InvoiceEntity?,RestoreQuotesSuccess)", "InvoiceEntity(InvoiceEntity?,ArchiveQuotesSuccess)", "InvoiceEntity(InvoiceEntity?,DeleteQuotesSuccess)", "InvoiceEntity(InvoiceEntity?,AddQuoteContact)", "InvoiceEntity(InvoiceEntity?,RemoveQuoteContact)", "~(UpdateSelectionIntent)", "TextEditingValue(TextEditingValue,TextInputFormatter)", "List(BuiltMap,BuiltMap,BuiltMap,BuiltList,String,BuiltMap,List)", "RecurringExpenseUIStateBuilder(RecurringExpenseUIStateBuilder)", "bool(bool?,ViewRecurringExpense)", "bool(bool?,ViewRecurringExpenseList)", "bool(bool?,FilterRecurringExpensesByState)", "bool(bool?,FilterRecurringExpensesByStatus)", "bool(bool?,FilterRecurringExpenses)", "bool(bool?,FilterRecurringExpensesByCustom1)", "bool(bool?,FilterRecurringExpensesByCustom2)", "bool(bool?,FilterRecurringExpensesByCustom3)", "bool(bool?,FilterRecurringExpensesByCustom4)", "int?(int?,UpdateRecurringExpenseTab)", "String(String?,ArchiveRecurringExpensesSuccess)", "String(String?,DeleteRecurringExpensesSuccess)", "String(String?,SortRecurringExpenses)", "String(String?,FilterRecurringExpenses)", "String(String?,FilterRecurringExpensesByState)", "String(String?,FilterRecurringExpensesByStatus)", "String(String?,FilterRecurringExpensesByCustom1)", "String(String?,FilterRecurringExpensesByCustom2)", "String(String?,FilterRecurringExpensesByCustom3)", "String(String?,FilterRecurringExpensesByCustom4)", "ExpenseEntity(ExpenseEntity?,RestoreRecurringExpensesSuccess)", "ExpenseEntity(ExpenseEntity?,ArchiveRecurringExpensesSuccess)", "ExpenseEntity(ExpenseEntity?,DeleteRecurringExpensesSuccess)", "ExpenseEntity(ExpenseEntity?,UpdateRecurringExpense)", "~(List)", "EngineLineMetrics(ParagraphLine)", "RecurringInvoiceUIStateBuilder(RecurringInvoiceUIStateBuilder)", "bool(bool?,ViewRecurringInvoice)", "bool(bool?,ViewRecurringInvoiceList)", "bool(bool?,FilterRecurringInvoicesByState)", "bool(bool?,FilterRecurringInvoicesByStatus)", "bool(bool?,FilterRecurringInvoices)", "bool(bool?,FilterRecurringInvoicesByCustom1)", "bool(bool?,FilterRecurringInvoicesByCustom2)", "bool(bool?,FilterRecurringInvoicesByCustom3)", "bool(bool?,FilterRecurringInvoicesByCustom4)", "int?(int?,UpdateRecurringInvoiceTab)", "String?(String?,ShowPdfRecurringInvoice)", "int?(int?,EditRecurringInvoice)", "int?(int?,EditRecurringInvoiceItem)", "String(String?,ArchiveRecurringInvoicesSuccess)", "String(String?,DeleteRecurringInvoicesSuccess)", "String?(String?,ViewRecurringInvoice)", "String(String?,AddRecurringInvoiceSuccess)", "String(String?,ShowEmailRecurringInvoice)", "String(String?,ShowPdfRecurringInvoice)", "String(String?,SortRecurringInvoices)", "String(String?,FilterRecurringInvoices)", "String(String?,FilterRecurringInvoicesByState)", "String(String?,FilterRecurringInvoicesByStatus)", "String(String?,FilterRecurringInvoicesByCustom1)", "String(String?,FilterRecurringInvoicesByCustom2)", "String(String?,FilterRecurringInvoicesByCustom3)", "String(String?,FilterRecurringInvoicesByCustom4)", "InvoiceEntity(InvoiceEntity?,UpdateRecurringInvoice)", "Future<~>(PasteTextIntent)", "InvoiceEntity(InvoiceEntity?,MoveRecurringInvoiceItem)", "InvoiceEntity(InvoiceEntity?,DeleteRecurringInvoiceItem)", "InvoiceEntity(InvoiceEntity?,UpdateRecurringInvoiceItem)", "InvoiceEntity(InvoiceEntity?,UpdateRecurringInvoiceClient)", "InvoiceEntity(InvoiceEntity?,RestoreRecurringInvoicesSuccess)", "InvoiceEntity(InvoiceEntity?,ArchiveRecurringInvoicesSuccess)", "InvoiceEntity(InvoiceEntity?,DeleteRecurringInvoicesSuccess)", "InvoiceEntity(InvoiceEntity?,AddRecurringInvoiceContact)", "InvoiceEntity(InvoiceEntity?,RemoveRecurringInvoiceContact)", "~(TextEditingValue)", "bool(TextEditingValue?,TextEditingValue)", "List(SelectionState,BuiltMap,BuiltMap,BuiltMap,BuiltList,ListUIState,BuiltMap)", "CompositedTransformTarget(BuildContext,ViewportOffset)", "bool(HitTestEntry)", "@(@,@)", "DiagnosticsNode(FocusNode)", "Null(BuiltList)", "ScheduleUIStateBuilder(ScheduleUIStateBuilder)", "bool(bool?,ViewSchedule)", "bool(bool?,ViewScheduleList)", "bool(bool?,FilterSchedulesByState)", "bool(bool?,FilterSchedules)", "bool(bool?,FilterSchedulesByCustom1)", "bool(bool?,FilterSchedulesByCustom2)", "bool(bool?,FilterSchedulesByCustom3)", "bool(bool?,FilterSchedulesByCustom4)", "int?(int?,UpdateScheduleTab)", "String(String?,ArchiveSchedulesSuccess)", "String(String?,DeleteSchedulesSuccess)", "String(String?,SortSchedules)", "String(String?,FilterSchedules)", "String(String?,FilterSchedulesByState)", "String(String?,FilterSchedulesByCustom1)", "String(String?,FilterSchedulesByCustom2)", "String(String?,FilterSchedulesByCustom3)", "String(String?,FilterSchedulesByCustom4)", "ScheduleEntity(ScheduleEntity?,RestoreSchedulesSuccess)", "ScheduleEntity(ScheduleEntity?,ArchiveSchedulesSuccess)", "ScheduleEntity(ScheduleEntity?,DeleteSchedulesSuccess)", "ScheduleEntity(ScheduleEntity?,UpdateSchedule)", "bool(KeyMessage)", "~(_FocusTraversalGroupInfo)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "ScheduleEntity(@)", "bool(_DirectionalPolicyDataEntry)", "bool(Node1)", "Null(UserCompanyEntity)", "Null(BaseEntity)", "SettingsUIState(SettingsUIState,ViewSettings)", "bool(TraversalDirection)", "SettingsUIState(SettingsUIState,UpdateCompany)", "SettingsUIState(SettingsUIState,UpdateSettings)", "SettingsUIState(SettingsUIState,UpdateUserSettings)", "SettingsUIState(SettingsUIState,ResetSettings)", "SettingsUIState(SettingsUIState,SaveCompanySuccess)", "SettingsUIState(SettingsUIState,DeleteDocumentSuccess)", "SettingsUIState(SettingsUIState,SaveGroupSuccess)", "SettingsUIState(SettingsUIState,SaveClientSuccess)", "SettingsUIState(SettingsUIState,SaveAuthUserSuccess)", "SettingsUIState(SettingsUIState,ConnectOAuthUserSuccess)", "SettingsUIState(SettingsUIState,DisconnectOAuthUserSuccess)", "SettingsUIState(SettingsUIState,DisconnectOAuthMailerSuccess)", "SettingsUIState(SettingsUIState,FilterSettings)", "SettingsUIState(SettingsUIState,ClearSettingsFilter)", "SettingsUIState(SettingsUIState,UpdateSettingsTab)", "SettingsUIState(SettingsUIState,UpdateSettingsTemplate)", "SettingsUIState(SettingsUIState,UpdatedSettingUI)", "SettingsUIState(SettingsUIState,ToggleShowNewSettings)", "SettingsUIState(SettingsUIState,ToggleShowPdfPreview)", "StaticStateBuilder(StaticStateBuilder)", "CurrencyEntity(@)", "SizeEntity(@)", "IndustryEntity(@)", "TimezoneEntity(@)", "DateFormatEntity(@)", "LanguageEntity(@)", "PaymentTypeEntity(@)", "CountryEntity(@)", "GatewayEntity(@)", "List(BuiltMap)", "Map(BuiltMap)", "List(BuiltMap)", "List(BuiltMap)", "List(BuiltMap)", "List(BuiltMap)", "List(BuiltMap)", "List(BuiltMap)", "List(BuiltMap)", "List(BuiltMap,bool)", "List(BuiltMap)", "BuiltMap(List<@>)", "FontEntity(@)", "Set(_ReadingOrderSortData)", "Element2(Node1)", "List(BuildContext)", "Null(BuiltList)", "SubscriptionUIStateBuilder(SubscriptionUIStateBuilder)", "bool(bool?,ViewSubscription)", "bool(bool?,ViewSubscriptionList)", "bool(bool?,FilterSubscriptionsByState)", "bool(bool?,FilterSubscriptions)", "bool(bool?,FilterSubscriptionsByCustom1)", "bool(bool?,FilterSubscriptionsByCustom2)", "bool(bool?,FilterSubscriptionsByCustom3)", "bool(bool?,FilterSubscriptionsByCustom4)", "int?(int?,UpdateSubscriptionTab)", "String(String?,ArchiveSubscriptionsSuccess)", "String(String?,DeleteSubscriptionsSuccess)", "String(String?,SortSubscriptions)", "String(String?,FilterSubscriptions)", "String(String?,FilterSubscriptionsByState)", "String(String?,FilterSubscriptionsByCustom1)", "String(String?,FilterSubscriptionsByCustom2)", "String(String?,FilterSubscriptionsByCustom3)", "String(String?,FilterSubscriptionsByCustom4)", "SubscriptionEntity(SubscriptionEntity?,RestoreSubscriptionsSuccess)", "SubscriptionEntity(SubscriptionEntity?,ArchiveSubscriptionsSuccess)", "SubscriptionEntity(SubscriptionEntity?,DeleteSubscriptionsSuccess)", "SubscriptionEntity(SubscriptionEntity?,UpdateSubscription)", "Rect(_ReadingOrderSortData)", "int(_ReadingOrderDirectionalGroupData,_ReadingOrderDirectionalGroupData)", "List<_ReadingOrderSortData>(_ReadingOrderSortData,Iterable<_ReadingOrderSortData>)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "SubscriptionEntity(@)", "int(BaseEntity,BaseEntity)", "bool(_ReadingOrderSortData)", "bool(FormFieldState<@>)", "DiagnosticsProperty(Element0)", "Null(BuiltList)", "TaskUIStateBuilder(TaskUIStateBuilder)", "bool(bool?,ViewTask)", "bool(bool?,ViewTaskList)", "bool(bool?,FilterTasksByState)", "bool(bool?,FilterTasksByStatus)", "bool(bool?,FilterTasks)", "bool(bool?,FilterTasksByCustom1)", "bool(bool?,FilterTasksByCustom2)", "bool(bool?,FilterTasksByCustom3)", "bool(bool?,FilterTasksByCustom4)", "int?(int?,UpdateTaskTab)", "int(int?,UpdateKanban)", "int?(int?,EditTask)", "int?(int?,EditTaskTime)", "String(String?,ArchiveTaskSuccess)", "String(String?,DeleteTaskSuccess)", "String?(String?,ViewTask)", "String(String?,AddTaskSuccess)", "String(String?,SortTasks)", "String(String?,FilterTasks)", "String(String?,FilterTasksByState)", "String(String?,FilterTasksByStatus)", "String(String?,FilterTasksByCustom1)", "String(String?,FilterTasksByCustom2)", "String(String?,FilterTasksByCustom3)", "String(String?,FilterTasksByCustom4)", "TaskEntity(TaskEntity?,RestoreTaskSuccess)", "TaskEntity(TaskEntity?,ArchiveTaskSuccess)", "TaskEntity(TaskEntity?,StartTasksSuccess)", "TaskEntity(TaskEntity?,StopTasksSuccess)", "TaskEntity(TaskEntity?,DeleteTaskSuccess)", "TaskEntity(TaskEntity?,UpdateTask)", "String(TaskEntity)", "Element0?(Element0)", "bool(String,TaskEntity)", "Object?(int,Element0?)", "List(BuiltMap,String?,BuiltMap,BuiltMap,BuiltMap)", "~(Element2)", "Transaction(@,String)", "TaskEntity(@)", "DoubleTapGestureRecognizer()", "~(DoubleTapGestureRecognizer)", "Future<+(String,FontLoadError?)>()", "Null(BuiltList)", "TaskStatusUIStateBuilder(TaskStatusUIStateBuilder)", "bool(bool?,ViewTaskStatus)", "bool(bool?,ViewTaskStatusList)", "bool(bool?,FilterTaskStatusesByState)", "bool(bool?,FilterTaskStatuses)", "bool(bool?,FilterTaskStatusesByCustom1)", "bool(bool?,FilterTaskStatusesByCustom2)", "bool(bool?,FilterTaskStatusesByCustom3)", "bool(bool?,FilterTaskStatusesByCustom4)", "String(String?,ArchiveTaskStatusesSuccess)", "String(String?,DeleteTaskStatusesSuccess)", "String(String?,SortTaskStatuses)", "String(String?,FilterTaskStatuses)", "String(String?,FilterTaskStatusesByState)", "String(String?,FilterTaskStatusesByCustom1)", "String(String?,FilterTaskStatusesByCustom2)", "String(String?,FilterTaskStatusesByCustom3)", "String(String?,FilterTaskStatusesByCustom4)", "TaskStatusEntity(TaskStatusEntity?,RestoreTaskStatusesSuccess)", "TaskStatusEntity(TaskStatusEntity?,ArchiveTaskStatusesSuccess)", "TaskStatusEntity(TaskStatusEntity?,DeleteTaskStatusesSuccess)", "TaskStatusEntity(TaskStatusEntity?,UpdateTaskStatus)", "Radius()", "Center(Widget)", "FontLoadError?()", "List(BuiltList,BuiltMap)", "List(BuiltMap,BuiltList,StaticState,BuiltMap)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "int(String,BuiltMap)", "~(ParagraphLine)", "TaskStatusEntity(@)", "~(LayoutFragment)", "ScaleGestureRecognizer()", "~(ScaleGestureRecognizer)", "Null(BuiltList)", "TaxRateUIStateBuilder(TaxRateUIStateBuilder)", "bool(bool?,ViewTaxRate)", "bool(bool?,ViewTaxRateList)", "bool(bool?,FilterTaxRatesByState)", "bool(bool?,FilterTaxRates)", "String(String?,ArchiveTaxRatesSuccess)", "String(String?,DeleteTaxRatesSuccess)", "String?(String?,ViewTaxRate)", "String(String?,AddTaxRateSuccess)", "String(String?,SortTaxRates)", "String(String?,FilterTaxRates)", "String(String?,FilterTaxRatesByState)", "TaxRateEntity(TaxRateEntity?,RestoreTaxRatesSuccess)", "TaxRateEntity(TaxRateEntity?,ArchiveTaxRatesSuccess)", "TaxRateEntity(TaxRateEntity?,DeleteTaxRatesSuccess)", "TaxRateEntity(TaxRateEntity?,UpdateTaxRate)", "~(LineBreakType,int)", "TargetPlatform?()", "FontFamily(@)", "~(RenderSemanticsGestureHandler)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "~(StatefulElement,Object)", "bool(DiagnosticsNode?)", "~(_HeroFlight)", "Null(BuiltList)", "TokenUIStateBuilder(TokenUIStateBuilder)", "bool(bool?,ViewToken)", "bool(bool?,ViewTokenList)", "bool(bool?,FilterTokensByState)", "bool(bool?,FilterTokens)", "bool(bool?,FilterTokensByCustom1)", "bool(bool?,FilterTokensByCustom2)", "bool(bool?,FilterTokensByCustom3)", "bool(bool?,FilterTokensByCustom4)", "String(String?,ArchiveTokensSuccess)", "String(String?,DeleteTokensSuccess)", "String(String?,SortTokens)", "String(String?,FilterTokens)", "String(String?,FilterTokensByState)", "String(String?,FilterTokensByCustom1)", "String(String?,FilterTokensByCustom2)", "String(String?,FilterTokensByCustom3)", "String(String?,FilterTokensByCustom4)", "TokenEntity(TokenEntity?,RestoreTokensSuccess)", "TokenEntity(TokenEntity?,ArchiveTokensSuccess)", "TokenEntity(TokenEntity?,DeleteTokensSuccess)", "TokenEntity(TokenEntity?,UpdateToken)", "Widget(BuildContext,Animation0,HeroFlightDirection,BuildContext,BuildContext)", "bool(_HeroFlight)", "bool(StackFrame)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "TokenEntity(@)", "IconTheme(BuildContext)", "~(ImageInfo,bool)", "ErrorDescription(String)", "String(DiagnosticsNode)", "TransactionUIStateBuilder(TransactionUIStateBuilder)", "bool(bool?,ViewTransaction)", "bool(bool?,ViewTransactionList)", "bool(bool?,FilterTransactionsByState)", "bool(bool?,FilterTransactionsByStatus)", "bool(bool?,FilterTransactions)", "bool(bool?,FilterTransactionsByCustom1)", "bool(bool?,FilterTransactionsByCustom2)", "bool(bool?,FilterTransactionsByCustom3)", "bool(bool?,FilterTransactionsByCustom4)", "int?(int?,UpdateTransactionTab)", "String(String?,ArchiveTransactionsSuccess)", "String(String?,DeleteTransactionsSuccess)", "String(String?,SortTransactions)", "String(String?,FilterTransactions)", "String(String?,FilterTransactionsByState)", "String(String?,FilterTransactionsByStatus)", "String(String?,FilterTransactionsByCustom1)", "String(String?,FilterTransactionsByCustom2)", "String(String?,FilterTransactionsByCustom3)", "String(String?,FilterTransactionsByCustom4)", "TransactionEntity(TransactionEntity?,RestoreTransactionsSuccess)", "TransactionEntity(TransactionEntity?,ArchiveTransactionsSuccess)", "TransactionEntity(TransactionEntity?,DeleteTransactionsSuccess)", "TransactionEntity(TransactionEntity?,UpdateTransaction)", "Future(RandomAccessFile,int)", "~(String,JavaScriptObject)", "List(SelectionState,BuiltMap,BuiltList,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,ListUIState)", "TransactionEntity(@)", "BoxConstraintsTween(@)", "Matrix4Tween(@)", "TextStyleTween(@)", "Null(BuiltList)", "TransactionRuleUIStateBuilder(TransactionRuleUIStateBuilder)", "bool(bool?,ViewTransactionRule)", "bool(bool?,ViewTransactionRuleList)", "bool(bool?,FilterTransactionRulesByState)", "bool(bool?,FilterTransactionRules)", "bool(bool?,FilterTransactionRulesByCustom1)", "bool(bool?,FilterTransactionRulesByCustom2)", "bool(bool?,FilterTransactionRulesByCustom3)", "bool(bool?,FilterTransactionRulesByCustom4)", "int?(int?,UpdateTransactionRuleTab)", "String(String?,ArchiveTransactionRulesSuccess)", "String(String?,DeleteTransactionRulesSuccess)", "String(String?,SortTransactionRules)", "String(String?,FilterTransactionRules)", "String(String?,FilterTransactionRulesByState)", "String(String?,FilterTransactionRulesByCustom1)", "String(String?,FilterTransactionRulesByCustom2)", "String(String?,FilterTransactionRulesByCustom3)", "String(String?,FilterTransactionRulesByCustom4)", "TransactionRuleEntity(TransactionRuleEntity?,RestoreTransactionRulesSuccess)", "TransactionRuleEntity(TransactionRuleEntity?,ArchiveTransactionRulesSuccess)", "TransactionRuleEntity(TransactionRuleEntity?,DeleteTransactionRulesSuccess)", "TransactionRuleEntity(TransactionRuleEntity?,UpdateTransactionRule)", "BorderRadiusTween(@)", "Future(int)", "Future<@>(_Pending)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "TransactionRuleEntity(@)", "PrefStateSortFieldBuilder(PrefStateSortFieldBuilder)", "MapBuilder(MapBuilder)", "BuiltMap(BuiltMap,SortClients)", "BuiltMap(BuiltMap,SortProducts)", "BuiltMap(BuiltMap,SortInvoices)", "BuiltMap(BuiltMap,SortPayments)", "BuiltMap(BuiltMap,SortRecurringInvoices)", "BuiltMap(BuiltMap,SortQuotes)", "BuiltMap(BuiltMap,SortCredits)", "BuiltMap(BuiltMap,SortProjects)", "BuiltMap(BuiltMap,SortTasks)", "BuiltMap(BuiltMap,SortVendors)", "BuiltMap(BuiltMap,SortExpenses)", "BuiltMap(BuiltMap,SortPaymentTerms)", "BuiltMap(BuiltMap,SortTaxRates)", "BuiltMap(BuiltMap,SortCompanyGateways)", "BuiltMap(BuiltMap,SortUsers)", "BuiltMap(BuiltMap,SortGroups)", "BuiltMap(BuiltMap,SortDesigns)", "BuiltMap(BuiltMap,SortTokens)", "BuiltMap(BuiltMap,SortWebhooks)", "BuiltMap(BuiltMap,SortExpenseCategories)", "BuiltMap(BuiltMap,SortTaskStatuses)", "BuiltMap(BuiltMap,SortSubscriptions)", "BuiltMap(BuiltMap,ToggleEditorLayout)", "Map(List<@>)", "BuiltMap(BuiltMap,ToggleViewerLayout)", "Map(Map)", "double(double,UpdateUserPreferences)", "bool(bool,DismissTaskExtensionBanner)", "bool(bool,DismissGatewayWarningPermanently)", "bool(bool,DismissReviewAppPermanently)", "Null(Map)", "Null(BuildContext,MagnifierController,ValueNotifier)", "AppLayout(AppLayout,UpdateUserPreferences)", "ModuleLayout?(ModuleLayout?,UpdateUserPreferences)", "ModuleLayout(ModuleLayout?,SwitchListTableLayout)", "int(int,UpdateUserPreferences)", "Uint8List(Object?)", "bool(Route<@>?)", "BuiltList(BuiltList,UpdateUserPreferences)", "bool(bool,TogglePreviewSidebar)", "bool(bool,StartClientMultiselect)", "bool(bool,StartProductMultiselect)", "bool(bool,StartInvoiceMultiselect)", "bool(bool,StartRecurringInvoiceMultiselect)", "bool(bool,StartPaymentMultiselect)", "bool(bool,StartQuoteMultiselect)", "bool(bool,StartCreditMultiselect)", "bool(bool,StartProjectMultiselect)", "bool(bool,StartTaskMultiselect)", "bool(bool,StartVendorMultiselect)", "bool(bool,StartPurchaseOrderMultiselect)", "bool(bool,StartExpenseMultiselect)", "bool(bool,StartRecurringExpenseMultiselect)", "bool(bool,StartTransactionMultiselect)", "bool(OverlayEntry)", "CompanyPrefStateBuilder(CompanyPrefStateBuilder)", "BuiltList(BuiltList,PurgeDataSuccess)", "BuiltList(BuiltList,PopLastHistory)", "JsFunction(@)", "BuiltList(BuiltList,UpdateLastHistory)", "int(HistoryRecordBuilder)", "BuiltList(BuiltList,ViewDashboard)", "BuiltList(BuiltList,ViewReports)", "BuiltList(BuiltList,ViewSettings)", "BuiltList(BuiltList,ViewClient)", "BuiltList(BuiltList,ViewClientList)", "BuiltList(BuiltList,EditClient)", "BuiltList(BuiltList,ViewProduct)", "BuiltList(BuiltList,ViewProductList)", "BuiltList(BuiltList,EditProduct)", "BuiltList(BuiltList,ViewInvoice)", "BuiltList(BuiltList,ViewInvoiceList)", "BuiltList(BuiltList,EditInvoice)", "BuiltList(BuiltList,ViewPayment)", "BuiltList(BuiltList,ViewPaymentList)", "BuiltList(BuiltList,EditPayment)", "BuiltList(BuiltList,ViewQuote)", "BuiltList(BuiltList,ViewQuoteList)", "BuiltList(BuiltList,EditQuote)", "BuiltList(BuiltList,ViewTask)", "BuiltList(BuiltList,ViewTaskList)", "BuiltList(BuiltList,EditTask)", "BuiltList(BuiltList,ViewProject)", "BuiltList(BuiltList,ViewProjectList)", "BuiltList(BuiltList,EditProject)", "BuiltList(BuiltList,ViewVendor)", "BuiltList(BuiltList,ViewVendorList)", "BuiltList(BuiltList,EditVendor)", "BuiltList(BuiltList,ViewExpense)", "BuiltList(BuiltList,ViewExpenseList)", "BuiltList(BuiltList,EditExpense)", "BuiltList(BuiltList,ViewCompanyGateway)", "BuiltList(BuiltList,ViewCompanyGatewayList)", "BuiltList(BuiltList,EditCompanyGateway)", "BuiltList(BuiltList,ViewUser)", "BuiltList(BuiltList,ViewUserList)", "BuiltList(BuiltList,EditUser)", "BuiltList(BuiltList,ViewGroup)", "BuiltList(BuiltList,ViewGroupList)", "BuiltList(BuiltList,EditGroup)", "BuiltList(BuiltList,ViewSchedule)", "BuiltList(BuiltList,ViewScheduleList)", "BuiltList(BuiltList,EditSchedule)", "BuiltList(BuiltList,ViewTransactionRule)", "BuiltList(BuiltList,ViewTransactionRuleList)", "BuiltList(BuiltList,EditTransactionRule)", "BuiltList(BuiltList,ViewTransaction)", "BuiltList(BuiltList,ViewTransactionList)", "BuiltList(BuiltList,EditTransaction)", "BuiltList(BuiltList,ViewBankAccount)", "BuiltList(BuiltList,ViewBankAccountList)", "BuiltList(BuiltList,ViewPurchaseOrder)", "BuiltList(BuiltList,ViewPurchaseOrderList)", "BuiltList(BuiltList,EditPurchaseOrder)", "BuiltList(BuiltList,ViewRecurringExpense)", "BuiltList(BuiltList,ViewRecurringExpenseList)", "BuiltList(BuiltList,EditRecurringExpense)", "BuiltList(BuiltList,ViewSubscription)", "BuiltList(BuiltList,ViewSubscriptionList)", "BuiltList(BuiltList,EditSubscription)", "BuiltList(BuiltList,ViewTaskStatus)", "BuiltList(BuiltList,ViewTaskStatusList)", "BuiltList(BuiltList,EditTaskStatus)", "BuiltList(BuiltList,ViewExpenseCategory)", "BuiltList(BuiltList,ViewExpenseCategoryList)", "BuiltList(BuiltList,EditExpenseCategory)", "BuiltList(BuiltList,ViewRecurringInvoice)", "BuiltList(BuiltList,ViewRecurringInvoiceList)", "BuiltList(BuiltList,EditRecurringInvoice)", "BuiltList(BuiltList,ViewWebhook)", "BuiltList(BuiltList,ViewWebhookList)", "BuiltList(BuiltList,EditWebhook)", "BuiltList(BuiltList,ViewToken)", "BuiltList(BuiltList,ViewTokenList)", "BuiltList(BuiltList,EditToken)", "BuiltList(BuiltList,ViewPaymentTerm)", "BuiltList(BuiltList,ViewPaymentTermList)", "BuiltList(BuiltList,EditPaymentTerm)", "BuiltList(BuiltList,EditDesign)", "BuiltList(BuiltList,ViewCredit)", "BuiltList(BuiltList,ViewCreditList)", "BuiltList(BuiltList,EditCredit)", "BuiltList(BuiltList,ViewDocument)", "BuiltList(BuiltList,ViewDocumentList)", "BuiltList(BuiltList,EditDocument)", "BuiltList(BuiltList,FilterByEntity)", "int(int,UpdateCurrentRoute)", "String?(String?,FilterCompany)", "String?(String?,ViewDashboard)", "Null(EntityType?,StopLoading)", "EntityType(EntityType?,LoadClientsRequest)", "EntityType(EntityType?,LoadProductsRequest)", "EntityType(EntityType?,LoadInvoicesRequest)", "EntityType(EntityType?,LoadRecurringInvoicesRequest)", "EntityType(EntityType?,LoadPaymentsRequest)", "EntityType(EntityType?,LoadQuotesRequest)", "EntityType(EntityType?,LoadCreditsRequest)", "EntityType(EntityType?,LoadProjectsRequest)", "EntityType(EntityType?,LoadTasksRequest)", "EntityType(EntityType?,LoadVendorsRequest)", "EntityType(EntityType?,LoadPurchaseOrdersRequest)", "EntityType(EntityType?,LoadExpensesRequest)", "EntityType(EntityType?,LoadRecurringExpensesRequest)", "EntityType(EntityType?,LoadTransactionsRequest)", "int(int,FilterCompany)", "int(int,ViewDashboard)", "String(String,UpdateCurrentRoute)", "int(int,SelectCompany)", "BuiltList(BuiltList,PreviewEntity)", "BuiltList(BuiltList,ClearPreviewStack)", "BuiltList(BuiltList,PopPreviewStack)", "BuiltList(BuiltList,ClearEntityFilter)", "BuiltList(BuiltList,FilterByEntity)", "BuiltList(BuiltList,PopFilterStack)", "String(ClientEntityBuilder)", "String(ExpenseEntityBuilder)", "String(TaskEntityBuilder)", "String(VendorEntityBuilder)", "JsArray<@>(@)", "_RouteEntry(Route<@>)", "MapEntry>(@,@)", "Null(List?)", "Null(BuiltList)", "UserUIStateBuilder(UserUIStateBuilder)", "bool(bool?,ViewUser)", "bool(bool?,ViewUserList)", "bool(bool?,FilterUsersByState)", "bool(bool?,FilterUsers)", "bool(bool?,FilterUsersByCustom1)", "bool(bool?,FilterUsersByCustom2)", "bool(bool?,FilterUsersByCustom3)", "bool(bool?,FilterUsersByCustom4)", "String(String?,ArchiveUserSuccess)", "String(String?,DeleteUserSuccess)", "String?(String?,ViewUser)", "String(String?,AddUserSuccess)", "String(String?,SortUsers)", "String(String?,FilterUsers)", "String(String?,FilterUsersByState)", "String(String?,FilterUsersByCustom1)", "String(String?,FilterUsersByCustom2)", "String(String?,FilterUsersByCustom3)", "String(String?,FilterUsersByCustom4)", "UserEntity(UserEntity?,RestoreUserSuccess)", "UserEntity(UserEntity?,ArchiveUserSuccess)", "UserEntity(UserEntity?,DeleteUserSuccess)", "UserEntity(UserEntity?,UpdateUser)", "RenderBox?()", "_RenderTheaterMarker()", "RenderBox(int)", "~(BoxConstraints)", "List(SelectionState,BuiltMap,BuiltList,ListUIState,String)", "ClipRect(BuildContext,Widget?)", "Viewport(BuildContext,ViewportOffset)", "~(Size,Offset)", "~(_DragInfo,Offset,Offset)", "Null(BuiltList)", "VendorUIStateBuilder(VendorUIStateBuilder)", "bool(bool?,ViewVendor)", "bool(bool?,ViewVendorList)", "bool(bool?,FilterVendorsByState)", "bool(bool?,FilterVendors)", "bool(bool?,FilterVendorsByCustom1)", "bool(bool?,FilterVendorsByCustom2)", "bool(bool?,FilterVendorsByCustom3)", "bool(bool?,FilterVendorsByCustom4)", "int?(int?,UpdateVendorTab)", "Completer?(Completer?,EditVendor)", "Completer?(Completer?,EditVendor)", "String(String?,ArchiveVendorSuccess)", "String(String?,DeleteVendorSuccess)", "String?(String?,ViewVendor)", "String(String?,AddVendorSuccess)", "String(String?,SortVendors)", "String(String?,FilterVendors)", "String(String?,FilterVendorsByState)", "String(String?,FilterVendorsByCustom1)", "String(String?,FilterVendorsByCustom2)", "String(String?,FilterVendorsByCustom3)", "String(String?,FilterVendorsByCustom4)", "VendorEntity(VendorEntity?,RestoreVendorSuccess)", "VendorEntity(VendorEntity?,ArchiveVendorSuccess)", "VendorEntity(VendorEntity?,DeleteVendorSuccess)", "VendorEntity(VendorEntity?,UpdateVendor)", "bool(DiagnosticsNode)", "Null(RestorationBucket?)", "~(RestorableProperty)", "List(BuiltMap,BuiltList,BuiltMap,StaticState)", "List(SelectionState,BuiltMap,BuiltList,ListUIState,BuiltMap,StaticState)", "EntityStats(String,BuiltMap)", "~(String,VendorEntity)", "double(String,String,BuiltMap,BuiltList)", "VendorEntity(@)", "SynchronousFuture(bool)", "RestorationScope(BuildContext,Widget?)", "Actions(BuildContext)", "Null(BuiltList)", "WebhookUIStateBuilder(WebhookUIStateBuilder)", "bool(bool?,ViewWebhook)", "bool(bool?,ViewWebhookList)", "bool(bool?,FilterWebhooksByState)", "bool(bool?,FilterWebhooks)", "bool(bool?,FilterWebhooksByCustom1)", "bool(bool?,FilterWebhooksByCustom2)", "bool(bool?,FilterWebhooksByCustom3)", "bool(bool?,FilterWebhooksByCustom4)", "String(String?,ArchiveWebhooksSuccess)", "String(String?,DeleteWebhooksSuccess)", "String(String?,SortWebhooks)", "String(String?,FilterWebhooks)", "String(String?,FilterWebhooksByState)", "String(String?,FilterWebhooksByCustom1)", "String(String?,FilterWebhooksByCustom2)", "String(String?,FilterWebhooksByCustom3)", "String(String?,FilterWebhooksByCustom4)", "WebhookEntity(WebhookEntity?,RestoreWebhooksSuccess)", "WebhookEntity(WebhookEntity?,ArchiveWebhooksSuccess)", "WebhookEntity(WebhookEntity?,DeleteWebhooksSuccess)", "WebhookEntity(WebhookEntity?,UpdateWebhook)", "IgnorePointer(BuildContext,Widget?)", "bool(PopEntry)", "IOSScrollViewFlingVelocityTracker(PointerEvent)", "List(SelectionState,BuiltMap,BuiltList,ListUIState)", "WebhookEntity(@)", "~(String?,String?)", "MacOSScrollViewFlingVelocityTracker(PointerEvent)", "~(EntityAction?)", "LicenseParagraph()", "String(GestureArenaMember)", "StoreConnector>(BuildContext)", "BuiltList(Store)", "Container(BuildContext,BuiltList)", "CheckboxListTile(EntityState)", "StoreConnector>(BuildContext)", "BuiltList(Store)", "Container(BuildContext,BuiltList)", "CheckboxListTile(EntityStatus)", "StoreConnector(BuildContext)", "ListUIState(Store)", "Container(BuildContext,ListUIState)", "_GestureArena()", "Widget(BuildContext,ViewportOffset)", "BottomAppBar(BuildContext,Store)", "bool(ScrollUpdateNotification)", "Widget?(BuildContext,int)", "BuiltList?(Store)", "Container(BuildContext,BuiltList?)", "CheckboxListTile(String)", "int?(Widget,int)", "ConfirmEmail(BuildContext,ConfirmEmailVM)", "Null(BuildContext,String,String?,String?)", "Padding(TextButton)", "MultiSelectList(BuildContext)", "@(List)", "Null(List<~>)", "Padding(MapEntry)", "~(PointerDataPacket)", "Future<~>(DropDoneDetails)", "double?(int)", "DocumentTile(DocumentEntity)", "JsObject(@)", "_ThumbPressGestureRecognizer()", "~(_ThumbPressGestureRecognizer)", "bool(PointerData)", "_TrackTapGestureRecognizer()", "~(_TrackTapGestureRecognizer)", "_PointerEventDescription?(PointerData)", "StatefulWidget(EntityAction?)", "StatelessWidget(EntityAction?)", "int(Selectable,Selectable)", "EntityDropdownDialog(BuildContext)", "Null(SelectableEntity[bool])", "@(BuildContext,Completer<@>)", "Rect(Rect)", "List(TextEditingValue)", "SelectableEntity?(String?)", "bool(Rect)", "String(double)", "List(LogicalKeyboardKey)", "~(ShortcutActivator,Intent)", "Widget(BuildContext,~(SelectableEntity),Iterable)", "Builder(BuildContext,int)", "Container(BuildContext)", "EntityAutocompleteListTile(BuildContext,int)", "PopupMenuButton(BuildContext,int)", "List<_ActivatorIntentPair>()", "List>(BuildContext)", "PopupMenuItem(EntityType)", "Object?()", "Container(String?)", "~(Color)", "_SingleChildViewport(BuildContext,ViewportOffset)", "~(RenderBox)", "Element0?()", "List>(BuildContext)", "PopupMenuItem(int)", "bool(TableRow)", "DataRow(String)", "Decoration?(TableRow)", "_TableElementRow(TableRow)", "Element0(Widget)", "bool(_TableElementRow)", "HistoryDrawer(BuildContext,AppDrawerVM)", "bool(List)", "BaseEntity?(InvitationEntity)", "~(EmailTemplate?)", "Iterable(_TableElementRow)", "RenderBox(Element0)", "List(_TableElementRow)", "~(TaxRateEntity?)", "DropdownMenuItem(TaxRateEntity?)", "~(EditingState?,TextEditingDeltaState?)", "Drag?()", "~(_TapTracker)", "String(EntityStatus)", "Map<~(PointerEvent),Matrix40?>()", "Padding(BuildContext)", "ListTile(BuildContext,BoxConstraints)", "Future<~>(Timer)", "Widget(BuildContext,Store)", "~(~(PointerEvent),Matrix40?)", "TapAndHorizontalDragGestureRecognizer()", "Widget(CompanyEntity{showAccentColor:bool})", "PopupMenuItem(CompanyEntity)", "List(BuildContext)", "DropdownMenuItem(CompanyEntity)", "~(TapAndHorizontalDragGestureRecognizer)", "TapAndPanGestureRecognizer()", "~(TapAndPanGestureRecognizer)", "ContactUsDialog(BuildContext)", "UpdateDialog(BuildContext)", "~(UndoTextIntent)", "HealthCheckDialog(BuildContext)", "~(RedoTextIntent)", "MenuDrawer(BuildContext,MenuDrawerVM)", "_ViewScope(BuildContext,PipelineOwner)", "Null(BuildContext,int,CompanyEntity)", "_TheState()", "Stack(BuildContext,BoxConstraints)", "Widget(@)", "List>(BuildContext)", "Widget(Color)", "_SelectRow()", "~(PhoneNumber)", "String?(PhoneNumber?)", "SynchronousFuture()", "SynchronousFuture()", "ExpansionPanel(SystemLogEntity)", "ListTile(BuildContext,bool)", "DataCell(DataColumn)", "DataRow?()", "~(String,DateSymbols)", "Column(BuildContext,BoxConstraints)", "DataCell(String)", "Column()", "SynchronousFuture()", "DataColumn(String)", "BaseEntity(String)", "FontAsset(@)", "Flexible(Widget)", "~(List)", "MapEntry(PurchaseDetails)", "int(ProductDetails,ProductDetails)", "ListTile(ProductDetails)", "TextButton(String)", "~(SlidableAutoCloseNotification)", "Container(BuildContext,Store)", "LoginView(BuildContext,LoginVM)", "Null({context!BuildContext,isSignUp:bool})", "~(SlidableAutoCloseBarrierNotification)", "int(StaggeredGridParentData,int)", "IgnorePointer(BuildContext)", "Future(BuildContext,Completer{email!String,password!String})", "Future(BuildContext,Completer{email!String,secret!String,url!String})", "Future(BuildContext,Completer{email!String,oneTimePassword!String,password!String,secret!String,url!String})", "Future(BuildContext,Completer{token!String})", "EntityList(BuildContext,BankAccountListVM)", "BankAccountListItem(BuildContext,int)", "~(ToastFuture)", "Future<~>(String,ByteData?,~(ByteData?)?)", "BankAccountScreen(BuildContext,BankAccountScreenVM)", "AnimatedOpacity(BuildContext,Widget?)", "BankAccountEditVM(Store)", "BankAccountEdit(BuildContext,BankAccountEditVM)", "BankAccountViewVM(Store)", "BankAccountView(BuildContext,BankAccountViewVM)", "GoogleSignInAccount?/(~)", "EntityList(BuildContext,ClientListVM)", "ClientListItem(BuildContext,int)", "Null(Response?)", "_CombiningGestureArenaMember()", "GoogleSignInTokenData(Map?)", "ClientPdfVM(Store)", "ClientPdfView(BuildContext,ClientPdfVM)", "String(ClientContactEntity)", "ClientScreen(BuildContext,ClientScreenVM)", "ContactEditDetails(BuildContext)", "ContactListTile0(ClientContactEntity)", "ClientEditContactsVM(Store)", "ClientEditContacts(BuildContext,ClientEditContactsVM)", "Null(GoogleAuth)", "Null(ClientContactEntity,int)", "ClientEditVM(Store)", "ClientEdit(BuildContext,ClientEditVM)", "@(ClientEntity)", "Null(GoogleAuthInitFailureError)", "LicensePage(BuildContext)", "Future<~>([JavaScriptObject?])", "~(Element)", "String(StringToken)", "~(ClientContactEntity)", "bool(Set)", "bool(Selector)", "Map>()", "Row(ClientContactEntity)", "bool(LedgerEntity)", "~(Object)", "_LicenseData(_LicenseData,LicenseEntry)", "ClientViewVM(Store)", "ClientView(BuildContext,ClientViewVM)", "~(Rule)", "CompanyGatewayListItem(String)", "CompanyGatewayList(BuildContext,CompanyGatewayListVM)", "_LicenseData(_LicenseData)", "CompanyGatewayEntity(String)", "CompanyGatewayScreen(BuildContext,CompanyGatewayScreenVM)", "LayoutBuilder(BuildContext,AsyncSnapshot<_LicenseData>)", "Rule()", "double(@)", "GatewayConfigField(String)", "Center(BuildContext,int?,Widget?)", "String?(RegExpMatch)", "CompanyGatewayEditVM(Store)", "CompanyGatewayEdit(BuildContext,CompanyGatewayEditVM)", "Future(String)", "CompanyGatewayViewVM(Store)", "CompanyGatewayView(BuildContext,CompanyGatewayViewVM)", "EmailCreditVM(Store)", "InvoiceEmailView(BuildContext,EmailCreditVM)", "Future(Client0)", "EntityList(BuildContext,CreditListVM)", "CreditListItem(BuildContext,int)", "CreditPdfVM(Store)", "InvoicePdfView(BuildContext,CreditPdfVM)", "CreditScreen(BuildContext,CreditScreenVM)", "bool(String,String)", "int(String)", "RegisteredFont?(ByteBuffer,String,String)", "CreditEditDetailsVM(Store)", "StatefulWidget(BuildContext,CreditEditDetailsVM)", "~(List)", "String(List)", "MediaType()", "CreditEditItemsVM(Store)", "StatefulWidget(BuildContext,CreditEditItemsVM)", "Null(FrameInfo)", "CreditEditNotesVM(Store)", "InvoiceEditNotes(BuildContext,CreditEditNotesVM)", "CreditEditPDFVM(Store)", "InvoiceEditPDF(BuildContext,CreditEditPDFVM)", "CreditEditVM(Store)", "CreditEdit(BuildContext,CreditEditVM)", "~(int,IfdValue)", "~(PurchasesResultWrapper)", "Map(ProductWrapper)", "CreditViewVM(Store)", "InvoiceView(BuildContext,CreditViewVM)", "SubscriptionOfferDetailsWrapper(@)", "Localizations(BuildContext,int)", "~(SelectionModel<@>)", "bool(SeriesDatum<@>)", "~(SeriesDatum<@>)", "InkWell(ChartDataGroup)", "~(DateRange?)", "DropdownMenuItem(DateRangeComparison)", "~(DateRangeComparison?)", "DashboardDateRangePicker(BuildContext)", "Material(BuildContext,BoxConstraints)", "List>(BuildContext)", "PopupMenuItem(DateRange)", "~(DateRange)", "_DashboardSettings(BuildContext)", "Card(TaskEntity?)", "FormCard(DashboardField)", "ProductDetailsWrapper(@)", "List>(NavigatorState,String)", "PurchaseWrapper(@)", "PricingPhaseWrapper(@)", "Future>(PurchasesResultWrapper)", "Future(BillingClient)", "MaterialPageRoute<~>(RouteSettings)", "_DashboardField(BuildContext)", "~(EntityType,List)", "bool(DashboardField)", "SettingsWizard(BuildContext)", "AccountEntityBuilder(AccountEntityBuilder)", "Widget(BuildContext,DashboardVM)", "@(DashboardSettings)", "BlockSemantics(BuildContext)", "Null(EntityType,List?)", "List(ProductDetailsResponseWrapper)", "List(ProductDetailsWrapper)", "String(ProductDetails)", "PopScope(BuildContext)", "List(BuildContext,_ActionLevel)", "EntityList(BuildContext,DesignListVM)", "DesignListItem(BuildContext,int)", "DesignScreen(BuildContext,DesignScreenVM)", "~({debounce:bool})", "~(DesignEntity)", "bool(PurchasesResultWrapper)", "String(PurchasesResultWrapper)", "List(PurchasesResultWrapper)", "CheckboxListTile(EntityType)", "_DesignImportDialog(BuildContext)", "DesignEditVM(Store)", "DesignEdit(BuildContext,DesignEditVM)", "AnimatedSwitcher(BuildContext,Object?,Widget?)", "DesignViewVM(Store)", "DesignView(BuildContext,DesignViewVM)", "Widget(BuildContext,DocumentListVM)", "DocumentListItem(BuildContext,int)", "GooglePlayPurchaseDetails(GooglePlayPurchaseDetails)", "Future(GooglePlayPurchaseDetails)", "GooglePlayPurchaseDetails(String)", "AppStoreProductDetails(SKProductWrapper)", "DocumentScreen(BuildContext,DocumentScreenVM)", "bool(SKPaymentTransactionWrapper)", "DocumentEditVM(Store)", "DocumentEdit0(BuildContext,DocumentEditVM)", "DocumentViewVM(Store)", "DocumentView(BuildContext,DocumentViewVM)", "AppStorePurchaseDetails(SKPaymentTransactionWrapper)", "SKPaymentTransactionWrapper(@)", "SKProductWrapper(@)", "ExpenseEditVM(Store)", "ExpenseEdit(BuildContext,ExpenseEditVM)", "EntityList(BuildContext,ExpenseListVM)", "SKProductDiscountWrapper(@)", "ExpenseScreen(BuildContext,ExpenseScreenVM)", "Padding(ExpenseScheduleEntity)", "ExpenseViewVM(Store)", "ExpenseView(BuildContext,ExpenseViewVM)", "ExpenseCategoryEditVM(Store)", "ExpenseCategoryEdit(BuildContext,ExpenseCategoryEditVM)", "EntityList(BuildContext,ExpenseCategoryListVM)", "RegExp()", "ExpenseCategoryScreen(BuildContext,ExpenseCategoryScreenVM)", "ExpenseCategoryViewVM(Store)", "ExpenseCategoryView(BuildContext,ExpenseCategoryViewVM)", "GroupEditVM(Store)", "GroupEdit(BuildContext,GroupEditVM)", "EntityList(BuildContext,GroupListVM)", "GroupListItem(BuildContext,int)", "GroupSettingsScreen(BuildContext,GroupScreenVM)", "GroupViewVM(Store)", "GroupView(BuildContext,GroupViewVM)", "int(VendorContactEntity,VendorContactEntity)", "_ContactListTile(VendorContactEntity)", "int(ClientContactEntity,ClientContactEntity)", "_ContactListTile(ClientContactEntity)", "InvoiceEditContactsVM(Store)", "InvoiceEditContacts(BuildContext,InvoiceEditContactsVM)", "Null(ClientContactEntity)", "Null(VendorContactEntity)", "Null(InvitationEntity)", "DateTime(int,int,int,int,int,int,int,bool)", "bool(_DateFormatField)", "_DateFormatQuotedField(String,DateFormat)", "_DateFormatPatternField(String,DateFormat)", "InvoiceEditDetailsVM(Store)", "StatefulWidget(BuildContext,InvoiceEditDetailsVM)", "ItemEditDetails(BuildContext)", "Future<~>(Duration)", "Uint8List({seed:int})", "Text?(String)", "Expanded(Text?)", "Widget(String)", "List(TextEditingValue)", "String(ProductEntity)", "Theme(BuildContext,~(ProductEntity),Iterable)", "_DateFormatLiteralField(String,DateFormat)", "String?(NumberSymbols)", "String(NumberSymbols)", "~(List,JavaScriptObject)", "Column(BuildContext,int)", "InvoiceEditItemsVM(Store)", "StatefulWidget(BuildContext,InvoiceEditItemsVM)", "Null([int?])", "InvoiceEditNotesVM(Store)", "InvoiceEditNotes(BuildContext,InvoiceEditNotesVM)", "InvoiceEditPDFVM(Store)", "InvoiceEditPDF(BuildContext,InvoiceEditPDFVM)", "InvoiceEditVM(Store)", "InvoiceEdit(BuildContext,InvoiceEditVM)", "MouseRegion(BuildContext,ScrollController)", "EmailInvoiceVM(Store)", "InvoiceEmailView(BuildContext,EmailInvoiceVM)", "EntityList(BuildContext,InvoiceListVM)", "DropdownMenuItem(InvoiceHistoryEntity)", "InvoicePdfVM(Store)", "InvoicePdfView(BuildContext,InvoicePdfVM)", "Country()", "InvoiceScreen(BuildContext,InvoiceScreenVM)", "StatefulBuilder(BuildContext)", "_InvitationListTile(InvitationEntity)", "@(DocumentEntity)", "int(ActivityEntity,ActivityEntity)", "~(PaymentEntity?)", "CountryPickerDialog(BuildContext,~(~()))", "InvoiceItemListTile(BuildContext)", "Widget(String,double)", "~(String,double)", "Padding(InvoiceScheduleEntity)", "InvoiceViewVM(Store)", "InvoiceView(BuildContext,InvoiceViewVM)", "Null(BuildContext,DocumentEntity)", "~(BuildContext)(BuildContext)", "~(Country)", "Size(JavaScriptObject)", "SurfaceScene()", "PaymentEditVM(Store)", "PaymentEdit(BuildContext,PaymentEditVM)", "EntityList(BuildContext,PaymentListVM)", "InvoiceEntity?(PaymentableEntity)", "bool(Color)", "String(PaymentableEntity)", "CupertinoTextSelectionToolbarButton(ContextMenuButtonItem)", "PaymentScreen(BuildContext,PaymentScreenVM)", "PaymentRefundVM(Store)", "PaymentRefund(BuildContext,PaymentRefundVM)", "Future(BuildContext,Completer)", "PaymentViewVM(Store)", "PaymentView(BuildContext,PaymentViewVM)", "PaymentTermEditVM(Store)", "PaymentTermEdit(BuildContext,PaymentTermEditVM)", "EntityList(BuildContext,PaymentTermListVM)", "PaymentTermListItem(BuildContext,int)", "PaymentTermScreen(BuildContext,PaymentTermScreenVM)", "PaymentTermViewVM(Store)", "PaymentTermView(BuildContext,PaymentTermViewVM)", "ProductEditVM(Store)", "ProductEdit(BuildContext,ProductEditVM)", "EntityList(BuildContext,ProductListVM)", "ProductScreen(BuildContext,ProductScreenVM)", "ProductViewVM(Store)", "ProductView(BuildContext,ProductViewVM)", "ProjectEditVM(Store)", "ProjectEdit(BuildContext,ProjectEditVM)", "EntityList(BuildContext,ProjectListVM)", "ProjectListItem(BuildContext,int)", "ProjectScreen(BuildContext,ProjectScreenVM)", "ProjectViewVM(Store)", "ProjectView(BuildContext,ProjectViewVM)", "PurchaseOrderEditDetailsVM(Store)", "StatefulWidget(BuildContext,PurchaseOrderEditDetailsVM)", "Null(BuildContext,InvoiceEntity,VendorEntity?)", "PurchaseOrderEditItemsVM(Store)", "StatefulWidget(BuildContext,PurchaseOrderEditItemsVM)", "PurchaseOrderEditNotesVM(Store)", "InvoiceEditNotes(BuildContext,PurchaseOrderEditNotesVM)", "PurchaseOrderEditPDFVM(Store)", "InvoiceEditPDF(BuildContext,PurchaseOrderEditPDFVM)", "PurchaseOrderEditVM(Store)", "PurchaseOrderEdit(BuildContext,PurchaseOrderEditVM)", "EmailPurchaseOrderVM(Store)", "InvoiceEmailView(BuildContext,EmailPurchaseOrderVM)", "EntityList(BuildContext,PurchaseOrderListVM)", "PurchaseOrderListItem(BuildContext,int)", "PurchaseOrderPdfVM(Store)", "InvoicePdfView(BuildContext,PurchaseOrderPdfVM)", "PurchaseOrderScreen(BuildContext,PurchaseOrderScreenVM)", "PurchaseOrderViewVM(Store)", "InvoiceView(BuildContext,PurchaseOrderViewVM)", "QuoteEditDetailsVM(Store)", "StatefulWidget(BuildContext,QuoteEditDetailsVM)", "QuoteEditItemsVM(Store)", "StatefulWidget(BuildContext,QuoteEditItemsVM)", "QuoteEditNotesVM(Store)", "InvoiceEditNotes(BuildContext,QuoteEditNotesVM)", "QuoteEditPDFVM(Store)", "InvoiceEditPDF(BuildContext,QuoteEditPDFVM)", "QuoteEditVM(Store)", "QuoteEdit(BuildContext,QuoteEditVM)", "EmailQuoteVM(Store)", "InvoiceEmailView(BuildContext,EmailQuoteVM)", "EntityList(BuildContext,QuoteListVM)", "QuotePdfVM(Store)", "InvoicePdfView(BuildContext,QuotePdfVM)", "QuoteScreen(BuildContext,QuoteScreenVM)", "QuoteViewVM(Store)", "InvoiceView(BuildContext,QuoteViewVM)", "RecurringExpenseEditVM(Store)", "ExpenseEdit(BuildContext,RecurringExpenseEditVM)", "EntityList(BuildContext,RecurringExpenseListVM)", "RecurringExpenseListItem(BuildContext,int)", "RecurringExpenseScreen(BuildContext,RecurringExpenseScreenVM)", "RecurringExpenseViewVM(Store)", "ExpenseView(BuildContext,RecurringExpenseViewVM)", "RecurringInvoiceEditDetailsVM(Store)", "StatefulWidget(BuildContext,RecurringInvoiceEditDetailsVM)", "RecurringInvoiceEditItemsVM(Store)", "StatefulWidget(BuildContext,RecurringInvoiceEditItemsVM)", "RecurringInvoiceEditNotesVM(Store)", "InvoiceEditNotes(BuildContext,RecurringInvoiceEditNotesVM)", "RecurringInvoiceEditPDFVM(Store)", "InvoiceEditPDF(BuildContext,RecurringInvoiceEditPDFVM)", "RecurringInvoiceEditVM(Store)", "RecurringInvoiceEdit(BuildContext,RecurringInvoiceEditVM)", "EntityList(BuildContext,RecurringInvoiceListVM)", "RecurringInvoiceListItem(BuildContext,int)", "RecurringInvoicePdfVM(Store)", "InvoicePdfView(BuildContext,RecurringInvoicePdfVM)", "RecurringInvoiceScreen(BuildContext,RecurringInvoiceScreenVM)", "RecurringInvoiceViewVM(Store)", "InvoiceView(BuildContext,RecurringInvoiceViewVM)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,StaticState)", "ClientReportFields?(String)", "DesktopTextSelectionToolbarButton(ContextMenuButtonItem)", "CupertinoDesktopTextSelectionToolbarButton(ContextMenuButtonItem)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,StaticState)", "ContactReportFields?(String)", "~(String,GatewayOptionsEntity)", "MaterialRectArcTween(Rect?,Rect?)", "CreditItemReportFields?(String)", "Widget(BuildContext,~())", "bool(CreditItemReportFields)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,StaticState)", "CreditReportFields?(String)", "bool(Pattern[int])", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap)", "DocumentReportFields?(String)", "Object()", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "ExpenseReportFields?(String)", "MaterialPageRoute<0^>(RouteSettings,Widget(BuildContext))", "InvoiceItemReportFields?(String)", "~(PointerMoveEvent)", "bool(InvoiceItemReportFields)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "InvoiceReportFields?(String)", "~(ScrollNotification)", "double(_Diagonal)", "TaxRateReportFields0?(String)", "InvoiceItemEntity(InvoiceItemEntity)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "PaymentReportFields?(String)", "int(PaintRequest,PaintRequest)", "TaxRateReportFields?(String)", "InvitationEntity(InvitationEntity)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,StaticState)", "ProductReportFields?(String)", "InvoiceHistoryEntity?(ActivityEntity)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "ProfitAndLossReportFields?(String)", "~(PointerUpEvent)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "PurchaseOrderItemReportFields?(String)", "Map()", "bool(PurchaseOrderItemReportFields)", "int(int,@)", "PurchaseOrderReportFields?(String)", "0^?(0^?(ButtonStyle?))", "QuoteItemReportFields?(String)", "0^?(MaterialStateProperty<0^>?(ButtonStyle?))", "bool(QuoteItemReportFields)", "QuoteReportFields?(String)", "IndentingBuiltValueToStringHelper(String)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "RecurringExpenseReportFields?(String)", "MaterialStateProperty?(ButtonStyle?)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "RecurringInvoiceReportFields?(String)", "ListBuilder()", "ListBuilder()", "String(@,int?)", "ListBuilder()", "MaterialStateProperty?(ButtonStyle?)", "DateTime?(@,int?)", "ListMultimapBuilder()", "Null(BuildContext,EntityAction)", "Expanded(BuildContext)", "MaterialStateProperty?(ButtonStyle?)", "ReportColumnType(String)", "@(String,String)", "List(TextEditingValue)", "bool(List)", "String?(List)", "Theme(BuildContext,~(String),Iterable)", "ReportsScreen(BuildContext,ReportsScreenVM)", "Null(String?,bool)", "Null(int,bool)", "Null(BuildContext,BuiltMap)", "MaterialStateProperty?(ButtonStyle?)", "Null({chart:String?,customEndDate:String?,customStartDate:String?,group:String?,report:String?,selectedGroup:String?,subgroup:String?})", "~(List)", "GroupTotals(ReportResult?,ReportsUIState,ReportSettingsEntity?,BuiltMap,CompanyEntity?)", "MouseCursor0?(Set)", "TaskItemReportFields?(String)", "MouseCursor0?(ButtonStyle?)", "TaskReportFields?(String)", "MapBuilder()", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,BuiltMap,StaticState)", "TransactionReportFields?(String)", "Color?(ButtonStyle?)", "ReportResult(UserCompanyEntity?,ReportsUIState,BuiltMap,BuiltMap,BuiltMap,StaticState)", "VendorReportFields?(String)", "VisualDensity?(ButtonStyle?)", "DropdownMenuItem(EntityType)", "ScheduleEditVM(Store)", "ScheduleEdit(BuildContext,ScheduleEditVM)", "EntityList(BuildContext,ScheduleListVM)", "ScheduleListItem(BuildContext,int)", "ScheduleScreen(BuildContext,ScheduleScreenVM)", "ScheduleViewVM(Store)", "ScheduleView(BuildContext,ScheduleViewVM)", "CheckboxListTile(int)", "bool?(CompanyEntityBuilder)", "AccountManagement(BuildContext,AccountManagementVM)", "MaterialTapTargetSize?(ButtonStyle?)", "Null(BuildContext,String,String,String)", "ListBuilder()", "Row(RegistrationFieldEntity)", "RegistrationFieldEntityBuilder(RegistrationFieldEntityBuilder)", "ClientPortal(BuildContext,ClientPortalVM)", "Duration?(ButtonStyle?)", "Row(BuildContext)", "CompanyDetails(BuildContext,CompanyDetailsVM)", "Null(BuildContext,MultipartFile)", "CreditCardsAndBanks(BuildContext,CreditCardsAndBanksVM)", "bool?(ButtonStyle?)", "CustomFields(BuildContext,CustomFieldsVM)", "DataVisualizations(BuildContext,DataVisualizationsVM)", "Widget(BuildContext,AsyncSnapshot<@>)", "ListTile(BuildContext)", "~(MapBuilder)", "FormColorPicker(String)", "AlignmentGeometry?(ButtonStyle?)", "DeviceSettings(BuildContext,DeviceSettingsVM)", "InteractiveInkFeatureFactory?(ButtonStyle?)", "ListBuilder()", "SetBuilder()", "Null(BuildContext,double)", "Future(BuildContext,AppLayout)", "Null(BuildContext,BuiltMap)", "EmailSettings(BuildContext,EmailSettingsVM)", "~(NextFocusIntent)", "Null(MultipartFile)", "ExpenseSettings(BuildContext,ExpenseSettingsVM)", "ListBuilder()", "ListBuilder()", "GeneratedNumbers(BuildContext,GeneratedNumbersVM)", "Set>(PreImportResponse?)", "~(ImportType?)", "ListBuilder()", "DropdownMenuItem(ExportType)", "ImportExport(BuildContext,ImportExportVM)", "Tab(String)", "InvoiceDesign(BuildContext,InvoiceDesignVM)", "Null(BuildContext,List)", "_AddCompanyDialog(BuildContext)", "LocalizationSettings(BuildContext,LocalizationSettingsVM)", "PaymentSettings(BuildContext,PaymentSettingsVM)", "ProductSettings(BuildContext,ProductSettingsVM)", "List(String)", "SettingsList(BuildContext,SettingsListVM)", "Null(BuildContext,String,int?)", "SettingsScreen(BuildContext,SettingsScreenVM)", "TaskSettings(BuildContext,TaskSettingsVM)", "~(PreviousFocusIntent)", "Column(String)", "ListBuilder()", "Row(String)", "ListBuilder()", "~(DirectionalFocusIntent)", "_EditSubregionDialog(BuildContext)", "TaxSettings(BuildContext,TaxSettingsVM)", "bool(EmailTemplate)", "DropdownMenuItem(EmailTemplate)", "SetMultimapBuilder()", "TemplatesAndReminders(BuildContext,TemplatesAndRemindersVM)", "Null(EmailTemplate)", "int(_PersistedSurfaceMatch,_PersistedSurfaceMatch)", "Future(GroupEntity)", "Future(ClientEntity)", "@(@,String)", "int(OverlayGroup)", "UserDetails(BuildContext,UserDetailsVM)", "@(UserEntity)", "Map()", "WorkflowSettings(BuildContext,WorkflowSettingsVM)", "num(int?)", "String?(int)", "SubscriptionEditVM(Store)", "SubscriptionEdit(BuildContext,SubscriptionEditVM)", "EntityList(BuildContext,SubscriptionListVM)", "SubscriptionListItem(BuildContext,int)", "SubscriptionScreen(BuildContext,SubscriptionScreenVM)", "SubscriptionViewVM(Store)", "SubscriptionView(BuildContext,SubscriptionViewVM)", "~(BuildContext[EntityAction?])", "Row(TaskTime)", "Set(Set,Set)", "TableRow(int)", "TaskEditDetailsVM(Store)", "StatefulWidget(BuildContext,TaskEditDetailsVM)", "Null(TaskTime,int)", "TimeEditDetails(BuildContext)", "TaskEditTimesVM(Store)", "TaskEditTimes(BuildContext,TaskEditTimesVM)", "Null(TaskTime?,int)", "TaskEditVM(Store)", "TaskEdit(BuildContext,TaskEditVM)", "~(String,List)", "BoardList(String)", "Null(Completer,String)", "Rect()(RenderBox)", "BoardItem(TaskEntity)", "~(int?,int?,BoardItemState)", "~(int?,int?,int?,int?,BoardItemState)", "KanbanView(BuildContext,KanbanVM)", "Null(Completer,List?,Map>?)", "Null(Completer,String,String,int)", "Null(Completer,String,String,String,int)", "MapEntry(MapEntry)", "EntityList(BuildContext,TaskListVM)", "TaskScreen(BuildContext,TaskScreenVM)", "TaskViewVM(Store)", "TaskView(BuildContext,TaskViewVM)", "Null(BuildContext[TaskTime?])", "TaskStatusEditVM(Store)", "TaskStatusEdit(BuildContext,TaskStatusEditVM)", "TaskStatusListItem(String)", "TaskStatusList(BuildContext,TaskStatusListVM)", "TaskStatusEntity(String)", "TaskStatusScreen(BuildContext,TaskStatusScreenVM)", "TaskStatusViewVM(Store)", "TaskStatusView(BuildContext,TaskStatusViewVM)", "TaxRateEditVM(Store)", "TaxRateEdit(BuildContext,TaxRateEditVM)", "EntityList(BuildContext,TaxRateListVM)", "TaxRateListItem(BuildContext,int)", "TaxRateSettingsScreen(BuildContext,TaxRateScreenVM)", "TaxRateViewVM(Store)", "TaxRateView(BuildContext,TaxRateViewVM)", "TokenEditVM(Store)", "TokenEdit(BuildContext,TokenEditVM)", "EntityList(BuildContext,TokenListVM)", "TokenListItem(BuildContext,int)", "TokenScreen(BuildContext,TokenScreenVM)", "TokenViewVM(Store)", "TokenView(BuildContext,TokenViewVM)", "String(TransactionEntityBuilder)", "TransactionEditVM(Store)", "TransactionEdit(BuildContext,TransactionEditVM)", "EntityList(BuildContext,TransactionListVM)", "TransactionListItem(BuildContext,int)", "Padding(ExpenseEntity)", "~(String?,List)", "TransactionScreen(BuildContext,TransactionScreenVM)", "bool(TransactionEntity)", "EntityListTile(InvoiceEntity)", "int(InvoiceEntity,InvoiceEntity)", "int(PaymentEntity,PaymentEntity)", "bool(ExpenseCategoryEntity)", "int(ExpenseCategoryEntity?,ExpenseCategoryEntity?)", "bool(VendorEntity)", "int(VendorEntity?,VendorEntity?)", "CalendarDatePicker()", "TransactionViewVM(Store)", "TransactionView(BuildContext,TransactionViewVM)", "String(TransactionEntity)", "Form()", "Flex(BuildContext,BoxConstraints)", "TextElement2(String)", "TransactionRuleEditVM(Store)", "TransactionRuleEdit(BuildContext,TransactionRuleEditVM)", "EntityList(BuildContext,TransactionRuleListVM)", "TransactionRuleListItem(BuildContext,int)", "TransactionRuleScreen(BuildContext,TransactionRuleScreenVM)", "TransactionRuleViewVM(Store)", "TransactionRuleView(BuildContext,TransactionRuleViewVM)", "DataRow(EntityType)", "UserEditVM(Store)", "UserEdit(BuildContext,UserEditVM)", "EntityList(BuildContext,UserListVM)", "UserListItem(BuildContext,int)", "UserScreen(BuildContext,UserScreenVM)", "UserViewVM(Store)", "UserView(BuildContext,UserViewVM)", "VendorContactEditDetails(BuildContext)", "ContactListTile(VendorContactEntity)", "VendorEditContactsVM(Store)", "VendorEditContacts(BuildContext,VendorEditContactsVM)", "Null(VendorContactEntity,int)", "VendorEditVM(Store)", "VendorEdit(BuildContext,VendorEditVM)", "EntityList(BuildContext,VendorListVM)", "String(VendorContactEntity)", "VendorScreen(BuildContext,VendorScreenVM)", "~(VendorContactEntity)", "Row(VendorContactEntity)", "VendorViewVM(Store)", "VendorView(BuildContext,VendorViewVM)", "WebhookEditVM(Store)", "WebhookEdit(BuildContext,WebhookEditVM)", "WebhookViewVM(Store)", "WebhookView(BuildContext,WebhookViewVM)", "EntityList(BuildContext,WebhookListVM)", "WebhookListItem(BuildContext,int)", "WebhookScreen(BuildContext,WebhookScreenVM)", "Widget(BuildContext,Animation0,Animation0)", "FieldConfirmation(BuildContext)", "SimpleDialogOption(InvoiceEntity)", "Text(BaseEntity)", "double(TextElement2)", "Null(~())", "ListBuilder()", "Theme(BuildContext,Brightness,Widget?)", "OverlayPortal(BuildContext)", "~(String,double?)", "~(ActivateIntent)", "ListBuilder()", "Widget(BuildContext,SuperEditorDemoTextItem,bool,~())", "RoundedRectanglePopoverAppearance(BuildContext)", "ListBuilder()", "bool(_TextType)", "SuperEditorDemoTextItem(_TextType)", "Text(BuildContext)", "ListBuilder()", "Widget(BuildContext,DocumentSelection?,Widget?)", "SizedBox(BuildContext,Offset?,Widget?)", "IFrameElement(int)", "Null(AuthenticationResult)", "Logger()", "String(Node2?)", "ListBuilder()", "~(ListItem)", "bool(RegExp)", "LinkReference()", "~(ButtonActivateIntent)", "ListBuilder>()", "bool(Node2)", "ListBuilder()", "Null(String[String?])", "String(Node2)", "Offset(int)", "double(double,RenderBox)", "Widget(BuildContext,BoxValueConstraints)", "SizedBox(BuildContext,Widget?)", "String(String?)", "String?([String?])", "MouseRegion(FormFieldState)", "_PinItem(int)", "Widget(int)", "Element2(int)", "ListBuilder()", "Null(Event)", "ListBuilder()", "ListBuilder()", "GestureDetector(BuildContext,int)", "PdfPageFormat()", "PdfPreviewCustom(BuildContext)", "~(Image1)", "@(Object?,@,@(@))", "AnimatedSwitcher(BuildContext,AsyncSnapshot)", "~(ButtonState)", "RenderObjectWidget(Widget)", "Map(SentryPackage)", "MapEntry(String,@)", "String(AppleIDAuthorizationScopes)", "int(_Line)", "MapBuilder()", "Object(_Line)", "Object(_Highlight)", "int(_Highlight,_Highlight)", "List<_Line>(MapEntry>)", "SourceSpanWithContext()", "String(String{color:Object?})", "List>(BuildContext)", "~(ReactiveModelImp<@>)", "~(StateStatus,Object?)", "TextAffinity()", "DocumentChange(DocumentEdit)", "ParagraphNode(AttributedText)", "MapBuilder()", "MapBuilder()", "DropdownButtonHideUnderline(BuildContext)", "ChangeInteractionModeCommand?(EditRequest)", "MapBuilder()", "InsertNodeAtIndexCommand?(EditRequest)", "InsertNodeBeforeNodeCommand?(EditRequest)", "InsertNodeAfterNodeCommand?(EditRequest)", "InsertNodeAtCaretCommand?(EditRequest)", "MoveNodeCommand?(EditRequest)", "CombineParagraphsCommand?(EditRequest)", "ReplaceNodeCommand?(EditRequest)", "ReplaceNodeWithEmptyParagraphWithCaretCommand?(EditRequest)", "DeleteContentCommand?(EditRequest)", "ListBuilder()", "DeleteUpstreamAtBeginningOfParagraphCommand?(EditRequest)", "DeleteUpstreamAtBeginningOfBlockNodeCommand?(EditRequest)", "DeleteNodeCommand?(EditRequest)", "DeleteUpstreamCharacterCommand?(EditRequest)", "DeleteDownstreamCharacterCommand?(EditRequest)", "InsertCharacterAtCaretCommand?(EditRequest)", "ChangeParagraphAlignmentCommand?(EditRequest)", "ChangeParagraphBlockTypeCommand?(EditRequest)", "SplitParagraphCommand?(EditRequest)", "ConvertParagraphToTaskCommand?(EditRequest)", "ConvertTaskToParagraphCommand?(EditRequest)", "ChangeTaskCompletionCommand?(EditRequest)", "SplitExistingTaskCommand?(EditRequest)", "SplitListItemCommand?(EditRequest)", "IndentListItemCommand?(EditRequest)", "UnIndentListItemCommand?(EditRequest)", "ChangeListItemTypeCommand?(EditRequest)", "ConvertParagraphToListItemCommand?(EditRequest)", "AddTextAttributionsCommand?(EditRequest)", "ToggleTextAttributionsCommand?(EditRequest)", "RemoveTextAttributionsCommand?(EditRequest)", "ConvertTextNodeToParagraphCommand?(EditRequest)", "PasteEditorCommand?(EditRequest)", "Attribution()", "MapBuilder()", "bool(LinkifyElement)", "Container(BuildContext,Widget?)", "~(DocumentSelectionChange)", "MouseRegion(BuildContext,MouseCursor0,Widget?)", "MapBuilder()", "MapBuilder()", "MapBuilder()", "MapBuilder()", "MapBuilder()", "MapBuilder()", "MapBuilder()", "MapBuilder()", "~(Offset?)", "MapBuilder()", "bool(TextEditingDelta)", "Padding(BuildContext,double)", "Row(BuildContext,Widget?)", "MapBuilder()", "MapBuilder()", "String(GlobalKey>)", "_Component(BuildContext,SingleColumnLayoutComponentViewModel)", "~(String,GlobalKey>)", "MapBuilder()", "SuperEditorFocusDebugVisuals(BuildContext)", "MapBuilder()", "InputBorder?()", "~(DocumentSelection?)", "MapBuilder()", "SpanRange()", "TextSpan(MultiAttributionSpan)", "SingleColumnDocumentLayout(~())", "int(GroupedOverlayPortalController,GroupedOverlayPortalController)", "_ThumbPressGestureRecognizer0()", "~(_ThumbPressGestureRecognizer0)", "_TrackTapGestureRecognizer0()", "~(_TrackTapGestureRecognizer0)", "~(_TapTracker0)", "ColoredBox(BuildContext,Widget?)", "Padding(BuildContext,Widget?)", "bool(Intent)", "FollowerAlignment(Rect,Size)", "KeyEventResult(FocusNode,KeyEvent)", "MapBuilder()", "TapRegion(BuildContext)", "MapBuilder()", "BorderRadius?()", "MapBuilder()", "AndroidEditingOverlayControls(BuildContext,Widget?)", "ProseTextLayout()", "Stack(BuildContext,Widget?)", "~(RawFloatingCursorPoint)", "IOSEditingControls(BuildContext,Widget?)", "bool(bool?)", "~(AppLifecycleState)", "JavaScriptObject(int{params:Object?})", "MapBuilder()", "int(Comparable<@>,Comparable<@>)", "MapBuilder()", "List(String,List)", "0^(0^,0^)", "Size?(Size?,Size?,double)", "double?(num?,num?,double)", "Color?(Color?,Color?,double)", "Widget(BuildContext,Offset,Offset,Widget)", "~(FlutterErrorDetails{forceReport:bool})", "DiagnosticsNode(String)", "StackFrame?(String)", "double(double,double,double)", "Widget(BuildContext,Animation0,Animation0,Widget)", "bool?(bool?,bool?,double)", "MapBuilder()", "Widget(BuildContext,Widget)", "OutlinedBorder?(OutlinedBorder?,OutlinedBorder?,double)", "EdgeInsetsGeometry?(EdgeInsetsGeometry?,EdgeInsetsGeometry?,double)", "TextStyle?(TextStyle?,TextStyle?,double)", "int(_TaskEntry<@>,_TaskEntry<@>)", "bool({priority!int,scheduler!SchedulerBinding})", "List(String)", "Widget(Widget,Key,Widget,Key)", "Widget(Widget?,List)", "~(FocusNode{alignment:double?,alignmentPolicy:ScrollPositionAlignmentPolicy?,curve:Curve?,duration:Duration?})", "int(Element0,Element0)", "Widget(FlutterErrorDetails)", "IconThemeData(IconThemeData?,IconThemeData?,double)", "List>(NavigatorState,String)", "int(Widget,int)", "MapBuilder()", "Widget(BuildContext,List,Widget(Color))", "Widget(Color,bool,~())", "Store<0^>(Store<0^>)", "MapBuilder()", "MapBuilder()", "~({isTesting:bool})", "AppState(AppState,@)", "AuthState(AuthState,UserLoadUrl)", "AuthState(AuthState,UserSignUpRequest)", "AuthState(AuthState,UserLoginRequest)", "AuthState(AuthState,OAuthLoginRequest)", "AuthState(AuthState,OAuthSignUpRequest)", "AuthState(AuthState,UserLoginSuccess)", "AuthState(AuthState,UserVerifiedPassword)", "AuthState(AuthState,UserUnverifiedPassword)", "BankAccountEntity(BankAccountEntity?,@)", "BankAccountEntity?(BankAccountEntity?,@)", "ListUIState(ListUIState,ViewBankAccountList)", "ListUIState(ListUIState,FilterBankAccountsByCustom1)", "ListUIState(ListUIState,FilterBankAccountsByCustom2)", "ListUIState(ListUIState,FilterBankAccountsByState)", "ListUIState(ListUIState,FilterBankAccounts)", "ListUIState(ListUIState,SortBankAccounts)", "ListUIState(ListUIState,StartBankAccountMultiselect)", "ListUIState(ListUIState,AddToBankAccountMultiselect)", "ListUIState(ListUIState,RemoveFromBankAccountMultiselect)", "ListUIState(ListUIState,ClearBankAccountMultiselect)", "BankAccountState(BankAccountState,ArchiveBankAccountsSuccess)", "BankAccountState(BankAccountState,DeleteBankAccountsSuccess)", "BankAccountState(BankAccountState,RestoreBankAccountsSuccess)", "BankAccountState(BankAccountState,AddBankAccountSuccess)", "BankAccountState(BankAccountState,SaveBankAccountSuccess)", "BankAccountState(BankAccountState,LoadBankAccountSuccess)", "BankAccountState(BankAccountState,LoadBankAccountsSuccess)", "BankAccountState(BankAccountState,LoadCompanySuccess)", "ListUIState(ListUIState,ViewClientList)", "ListUIState(ListUIState,FilterClientsByCustom1)", "ListUIState(ListUIState,FilterClientsByCustom2)", "ListUIState(ListUIState,FilterClientsByCustom3)", "ListUIState(ListUIState,FilterClientsByCustom4)", "ListUIState(ListUIState,FilterClientsByState)", "ListUIState(ListUIState,FilterClients)", "ListUIState(ListUIState,SortClients)", "ListUIState(ListUIState,StartClientMultiselect)", "ListUIState(ListUIState,AddToClientMultiselect)", "ListUIState(ListUIState,RemoveFromClientMultiselect)", "ListUIState(ListUIState,ClearClientMultiselect)", "ClientState(ClientState,ArchiveClientsSuccess)", "ClientState(ClientState,DeleteClientsSuccess)", "ClientState(ClientState,RestoreClientSuccess)", "ClientState(ClientState,AddClientSuccess)", "ClientState(ClientState,SaveClientSuccess)", "ClientState(ClientState,LoadClientSuccess)", "ClientState(ClientState,MergeClientsSuccess)", "ClientState(ClientState,PurgeClientSuccess)", "ClientState(ClientState,LoadClientsSuccess)", "ClientState(ClientState,LoadCompanySuccess)", "UserCompanyEntity(UserCompanyEntity?,LoadCompanySuccess)", "UserCompanyEntity(UserCompanyEntity?,SaveCompanySuccess)", "CompanyGatewayEntity(CompanyGatewayEntity?,@)", "CompanyGatewayEntity?(CompanyGatewayEntity?,@)", "ListUIState(ListUIState,FilterCompanyGatewaysByCustom1)", "ListUIState(ListUIState,FilterCompanyGatewaysByCustom2)", "ListUIState(ListUIState,FilterCompanyGatewaysByState)", "ListUIState(ListUIState,FilterCompanyGateways)", "ListUIState(ListUIState,SortCompanyGateways)", "ListUIState(ListUIState,StartCompanyGatewayMultiselect)", "ListUIState(ListUIState,AddToCompanyGatewayMultiselect)", "ListUIState(ListUIState,RemoveFromCompanyGatewayMultiselect)", "ListUIState(ListUIState,ClearCompanyGatewayMultiselect)", "CompanyGatewayState(CompanyGatewayState,ArchiveCompanyGatewaySuccess)", "CompanyGatewayState(CompanyGatewayState,DeleteCompanyGatewaySuccess)", "CompanyGatewayState(CompanyGatewayState,RestoreCompanyGatewaySuccess)", "CompanyGatewayState(CompanyGatewayState,AddCompanyGatewaySuccess)", "CompanyGatewayState(CompanyGatewayState,SaveCompanyGatewaySuccess)", "CompanyGatewayState(CompanyGatewayState,LoadCompanyGatewaySuccess)", "CompanyGatewayState(CompanyGatewayState,LoadCompanySuccess)", "CompanyGatewayState(CompanyGatewayState,LoadCompanyGatewaysSuccess)", "MapBuilder()", "MapBuilder()", "InvoiceEntity(InvoiceEntity?,AddCreditItems)", "InvoiceEntity?(InvoiceEntity?,DeleteCreditItem)", "InvoiceEntity?(InvoiceEntity?,UpdateCreditItem)", "ListUIState(ListUIState,ViewCreditList)", "ListUIState(ListUIState,FilterCreditsByCustom1)", "ListUIState(ListUIState,FilterCreditsByCustom2)", "ListUIState(ListUIState,FilterCreditsByCustom3)", "ListUIState(ListUIState,FilterCreditsByCustom4)", "ListUIState(ListUIState,FilterCreditsByState)", "ListUIState(ListUIState,FilterCreditsByStatus)", "ListUIState(ListUIState,FilterCredits)", "ListUIState(ListUIState,SortCredits)", "ListUIState(ListUIState,StartCreditMultiselect)", "ListUIState(ListUIState,AddToCreditMultiselect)", "ListUIState(ListUIState,RemoveFromCreditMultiselect)", "ListUIState(ListUIState,ClearCreditMultiselect)", "CreditState(CreditState,PurgeClientSuccess)", "CreditState(CreditState,MarkSentCreditSuccess)", "CreditState(CreditState,ArchiveCreditsSuccess)", "CreditState(CreditState,DeleteCreditsSuccess)", "CreditState(CreditState,RestoreCreditsSuccess)", "CreditState(CreditState,AddCreditSuccess)", "CreditState(CreditState,@)", "CreditState(CreditState,LoadCreditsSuccess)", "CreditState(CreditState,LoadCompanySuccess)", "DesignEntity(DesignEntity?,@)", "DesignEntity?(DesignEntity?,@)", "ListUIState(ListUIState,ViewDesignList)", "ListUIState(ListUIState,FilterDesignsByCustom1)", "ListUIState(ListUIState,FilterDesignsByCustom2)", "ListUIState(ListUIState,FilterDesignsByState)", "ListUIState(ListUIState,FilterDesigns)", "ListUIState(ListUIState,SortDesigns)", "ListUIState(ListUIState,StartDesignMultiselect)", "ListUIState(ListUIState,AddToDesignMultiselect)", "ListUIState(ListUIState,RemoveFromDesignMultiselect)", "ListUIState(ListUIState,ClearDesignMultiselect)", "DesignState(DesignState,ArchiveDesignsSuccess)", "DesignState(DesignState,DeleteDesignsSuccess)", "DesignState(DesignState,RestoreDesignsSuccess)", "DesignState(DesignState,AddDesignSuccess)", "DesignState(DesignState,SaveDesignSuccess)", "DesignState(DesignState,LoadDesignSuccess)", "DesignState(DesignState,LoadDesignsSuccess)", "DesignState(DesignState,LoadCompanySuccess)", "DocumentEntity?(DocumentEntity?,@)", "ListUIState(ListUIState,ViewDocumentList)", "ListUIState(ListUIState,FilterDocumentsByCustom1)", "ListUIState(ListUIState,FilterDocumentsByCustom2)", "ListUIState(ListUIState,FilterDocumentsByState)", "ListUIState(ListUIState,FilterDocumentsByStatus)", "ListUIState(ListUIState,FilterDocuments)", "ListUIState(ListUIState,SortDocuments)", "ListUIState(ListUIState,StartDocumentMultiselect)", "ListUIState(ListUIState,AddToDocumentMultiselect)", "ListUIState(ListUIState,RemoveFromDocumentMultiselect)", "ListUIState(ListUIState,ClearDocumentMultiselect)", "DocumentState(DocumentState,ArchiveDocumentSuccess)", "DocumentState(DocumentState,DeleteDocumentSuccess)", "DocumentState(DocumentState,RestoreDocumentSuccess)", "DocumentState(DocumentState,AddDocumentSuccess)", "DocumentState(DocumentState,SaveDocumentSuccess)", "DocumentState(DocumentState,LoadDocumentSuccess)", "DocumentState(DocumentState,LoadDocumentsSuccess)", "DocumentState(DocumentState,LoadCompanySuccess)", "MapBuilder()", "MapBuilder()", "ListUIState(ListUIState,ViewExpenseList)", "ListUIState(ListUIState,FilterExpensesByCustom1)", "ListUIState(ListUIState,FilterExpensesByCustom2)", "ListUIState(ListUIState,FilterExpensesByCustom3)", "ListUIState(ListUIState,FilterExpensesByCustom4)", "ListUIState(ListUIState,FilterExpensesByState)", "ListUIState(ListUIState,FilterExpensesByStatus)", "ListUIState(ListUIState,FilterExpenses)", "ListUIState(ListUIState,SortExpenses)", "ListUIState(ListUIState,StartExpenseMultiselect)", "ListUIState(ListUIState,AddToExpenseMultiselect)", "ListUIState(ListUIState,RemoveFromExpenseMultiselect)", "ListUIState(ListUIState,ClearExpenseMultiselect)", "ExpenseState(ExpenseState,PurgeClientSuccess)", "ExpenseState(ExpenseState,ArchiveExpenseSuccess)", "ExpenseState(ExpenseState,DeleteExpenseSuccess)", "ExpenseState(ExpenseState,RestoreExpenseSuccess)", "ExpenseState(ExpenseState,AddExpenseSuccess)", "ExpenseState(ExpenseState,SaveExpenseSuccess)", "ExpenseState(ExpenseState,LoadExpenseSuccess)", "ExpenseState(ExpenseState,LoadExpensesSuccess)", "ExpenseState(ExpenseState,LoadCompanySuccess)", "ExpenseCategoryEntity(ExpenseCategoryEntity?,@)", "ExpenseCategoryEntity?(ExpenseCategoryEntity?,@)", "ListUIState(ListUIState,FilterExpenseCategoriesByCustom1)", "ListUIState(ListUIState,FilterExpenseCategoriesByCustom2)", "ListUIState(ListUIState,FilterExpenseCategoriesByState)", "ListUIState(ListUIState,FilterExpenseCategories)", "ListUIState(ListUIState,SortExpenseCategories)", "ListUIState(ListUIState,StartExpenseCategoryMultiselect)", "ListUIState(ListUIState,AddToExpenseCategoryMultiselect)", "ListUIState(ListUIState,RemoveFromExpenseCategoryMultiselect)", "ListUIState(ListUIState,ClearExpenseCategoryMultiselect)", "ExpenseCategoryState(ExpenseCategoryState,ArchiveExpenseCategoriesSuccess)", "ExpenseCategoryState(ExpenseCategoryState,DeleteExpenseCategoriesSuccess)", "ExpenseCategoryState(ExpenseCategoryState,RestoreExpenseCategoriesSuccess)", "ExpenseCategoryState(ExpenseCategoryState,AddExpenseCategorySuccess)", "ExpenseCategoryState(ExpenseCategoryState,SaveExpenseCategorySuccess)", "ExpenseCategoryState(ExpenseCategoryState,LoadExpenseCategorySuccess)", "ExpenseCategoryState(ExpenseCategoryState,LoadExpenseCategoriesSuccess)", "ExpenseCategoryState(ExpenseCategoryState,LoadCompanySuccess)", "GroupEntity(GroupEntity?,@)", "GroupEntity?(GroupEntity?,@)", "ListUIState(ListUIState,ViewGroupList)", "ListUIState(ListUIState,FilterGroupsByState)", "ListUIState(ListUIState,FilterGroups)", "ListUIState(ListUIState,SortGroups)", "ListUIState(ListUIState,StartGroupMultiselect)", "ListUIState(ListUIState,AddToGroupMultiselect)", "ListUIState(ListUIState,RemoveFromGroupMultiselect)", "ListUIState(ListUIState,ClearGroupMultiselect)", "GroupState(GroupState,ArchiveGroupSuccess)", "GroupState(GroupState,DeleteGroupSuccess)", "GroupState(GroupState,RestoreGroupSuccess)", "GroupState(GroupState,AddGroupSuccess)", "GroupState(GroupState,SaveGroupSuccess)", "GroupState(GroupState,LoadGroupSuccess)", "GroupState(GroupState,LoadGroupsSuccess)", "GroupState(GroupState,LoadCompanySuccess)", "InvoiceEntity(InvoiceEntity?,AddInvoiceItems)", "InvoiceEntity?(InvoiceEntity?,DeleteInvoiceItem)", "InvoiceEntity?(InvoiceEntity?,UpdateInvoiceItem)", "ListUIState(ListUIState,ViewInvoiceList)", "ListUIState(ListUIState,FilterInvoicesByCustom1)", "ListUIState(ListUIState,FilterInvoicesByCustom2)", "ListUIState(ListUIState,FilterInvoicesByCustom3)", "ListUIState(ListUIState,FilterInvoicesByCustom4)", "ListUIState(ListUIState,FilterInvoicesByState)", "ListUIState(ListUIState,FilterInvoicesByStatus)", "ListUIState(ListUIState,FilterInvoices)", "ListUIState(ListUIState,SortInvoices)", "ListUIState(ListUIState,StartInvoiceMultiselect)", "ListUIState(ListUIState,AddToInvoiceMultiselect)", "ListUIState(ListUIState,RemoveFromInvoiceMultiselect)", "ListUIState(ListUIState,ClearInvoiceMultiselect)", "InvoiceState(InvoiceState,PurgeClientSuccess)", "InvoiceState(InvoiceState,MarkInvoicesSentSuccess)", "InvoiceState(InvoiceState,MarkInvoicesPaidSuccess)", "InvoiceState(InvoiceState,CancelInvoicesSuccess)", "InvoiceState(InvoiceState,ArchiveInvoicesSuccess)", "InvoiceState(InvoiceState,DeleteInvoicesSuccess)", "InvoiceState(InvoiceState,EmailInvoiceSuccess)", "InvoiceState(InvoiceState,RestoreInvoicesSuccess)", "InvoiceState(InvoiceState,AddInvoiceSuccess)", "InvoiceState(InvoiceState,@)", "InvoiceState(InvoiceState,LoadInvoicesSuccess)", "InvoiceState(InvoiceState,LoadCompanySuccess)", "PaymentEntity(PaymentEntity?,@)", "PaymentEntity?(PaymentEntity?,@)", "ListUIState(ListUIState,ViewPaymentList)", "ListUIState(ListUIState,FilterPaymentsByCustom1)", "ListUIState(ListUIState,FilterPaymentsByCustom2)", "ListUIState(ListUIState,FilterPaymentsByCustom3)", "ListUIState(ListUIState,FilterPaymentsByCustom4)", "ListUIState(ListUIState,FilterPaymentsByState)", "ListUIState(ListUIState,FilterPaymentsByStatus)", "ListUIState(ListUIState,FilterPayments)", "ListUIState(ListUIState,SortPayments)", "ListUIState(ListUIState,StartPaymentMultiselect)", "ListUIState(ListUIState,AddToPaymentMultiselect)", "ListUIState(ListUIState,RemoveFromPaymentMultiselect)", "ListUIState(ListUIState,ClearPaymentMultiselect)", "PaymentState(PaymentState,PurgeClientSuccess)", "PaymentState(PaymentState,ArchivePaymentsSuccess)", "PaymentState(PaymentState,DeletePaymentsSuccess)", "PaymentState(PaymentState,RestorePaymentsSuccess)", "PaymentState(PaymentState,AddPaymentSuccess)", "PaymentState(PaymentState,SavePaymentSuccess)", "PaymentState(PaymentState,LoadPaymentSuccess)", "PaymentState(PaymentState,LoadPaymentsSuccess)", "PaymentState(PaymentState,LoadCompanySuccess)", "PaymentTermEntity(PaymentTermEntity?,@)", "PaymentTermEntity?(PaymentTermEntity?,@)", "ListUIState(ListUIState,ViewPaymentTermList)", "ListUIState(ListUIState,FilterPaymentTermsByCustom1)", "ListUIState(ListUIState,FilterPaymentTermsByCustom2)", "ListUIState(ListUIState,FilterPaymentTermsByState)", "ListUIState(ListUIState,FilterPaymentTerms)", "ListUIState(ListUIState,SortPaymentTerms)", "ListUIState(ListUIState,StartPaymentTermMultiselect)", "ListUIState(ListUIState,AddToPaymentTermMultiselect)", "ListUIState(ListUIState,RemoveFromPaymentTermMultiselect)", "ListUIState(ListUIState,ClearPaymentTermMultiselect)", "PaymentTermState(PaymentTermState,ArchivePaymentTermsSuccess)", "PaymentTermState(PaymentTermState,DeletePaymentTermsSuccess)", "PaymentTermState(PaymentTermState,RestorePaymentTermsSuccess)", "PaymentTermState(PaymentTermState,AddPaymentTermSuccess)", "PaymentTermState(PaymentTermState,SavePaymentTermSuccess)", "PaymentTermState(PaymentTermState,LoadPaymentTermSuccess)", "PaymentTermState(PaymentTermState,LoadPaymentTermsSuccess)", "PaymentTermState(PaymentTermState,LoadCompanySuccess)", "ProductEntity(ProductEntity?,@)", "ProductEntity?(ProductEntity?,@)", "ListUIState(ListUIState,ViewProductList)", "ListUIState(ListUIState,FilterProductsByState)", "ListUIState(ListUIState,FilterProductsByCustom1)", "ListUIState(ListUIState,FilterProductsByCustom2)", "ListUIState(ListUIState,FilterProductsByCustom3)", "ListUIState(ListUIState,FilterProductsByCustom4)", "ListUIState(ListUIState,FilterProducts)", "ListUIState(ListUIState,SortProducts)", "ListUIState(ListUIState,StartProductMultiselect)", "ListUIState(ListUIState,AddToProductMultiselect)", "ListUIState(ListUIState,RemoveFromProductMultiselect)", "ListUIState(ListUIState,ClearProductMultiselect)", "ProductState(ProductState,ArchiveProductsSuccess)", "ProductState(ProductState,DeleteProductsSuccess)", "ProductState(ProductState,RestoreProductsSuccess)", "ProductState(ProductState,SetTaxCategoryProductsSuccess)", "ProductState(ProductState,AddProductSuccess)", "ProductState(ProductState,SaveProductSuccess)", "ProductState(ProductState,LoadProductSuccess)", "ProductState(ProductState,LoadProductsSuccess)", "ProductState(ProductState,LoadCompanySuccess)", "ProjectEntity(ProjectEntity?,@)", "ProjectEntity?(ProjectEntity?,@)", "ListUIState(ListUIState,ViewProjectList)", "ListUIState(ListUIState,FilterProjectsByCustom1)", "ListUIState(ListUIState,FilterProjectsByCustom2)", "ListUIState(ListUIState,FilterProjectsByCustom3)", "ListUIState(ListUIState,FilterProjectsByCustom4)", "ListUIState(ListUIState,FilterProjectsByState)", "ListUIState(ListUIState,FilterProjects)", "ListUIState(ListUIState,SortProjects)", "ListUIState(ListUIState,StartProjectMultiselect)", "ListUIState(ListUIState,AddToProjectMultiselect)", "ListUIState(ListUIState,RemoveFromProjectMultiselect)", "ListUIState(ListUIState,ClearProjectMultiselect)", "ProjectState(ProjectState,PurgeClientSuccess)", "ProjectState(ProjectState,ArchiveProjectSuccess)", "ProjectState(ProjectState,DeleteProjectSuccess)", "ProjectState(ProjectState,RestoreProjectSuccess)", "ProjectState(ProjectState,AddProjectSuccess)", "ProjectState(ProjectState,SaveProjectSuccess)", "ProjectState(ProjectState,LoadProjectSuccess)", "ProjectState(ProjectState,LoadProjectsSuccess)", "ProjectState(ProjectState,LoadCompanySuccess)", "InvoiceEntity(InvoiceEntity?,AddPurchaseOrderItems)", "InvoiceEntity?(InvoiceEntity?,DeletePurchaseOrderItem)", "InvoiceEntity?(InvoiceEntity?,UpdatePurchaseOrderItem)", "ListUIState(ListUIState,ViewPurchaseOrderList)", "ListUIState(ListUIState,FilterPurchaseOrdersByCustom1)", "ListUIState(ListUIState,FilterPurchaseOrdersByCustom2)", "ListUIState(ListUIState,FilterPurchaseOrdersByCustom3)", "ListUIState(ListUIState,FilterPurchaseOrdersByCustom4)", "ListUIState(ListUIState,FilterPurchaseOrdersByState)", "ListUIState(ListUIState,FilterPurchaseOrdersByStatus)", "ListUIState(ListUIState,FilterPurchaseOrders)", "ListUIState(ListUIState,SortPurchaseOrders)", "ListUIState(ListUIState,StartPurchaseOrderMultiselect)", "ListUIState(ListUIState,AddToPurchaseOrderMultiselect)", "ListUIState(ListUIState,RemoveFromPurchaseOrderMultiselect)", "ListUIState(ListUIState,ClearPurchaseOrderMultiselect)", "PurchaseOrderState(PurchaseOrderState,MarkPurchaseOrderSentSuccess)", "PurchaseOrderState(PurchaseOrderState,ConvertPurchaseOrdersToExpensesSuccess)", "PurchaseOrderState(PurchaseOrderState,AddPurchaseOrdersToInventorySuccess)", "PurchaseOrderState(PurchaseOrderState,AcceptPurchaseOrderSuccess)", "PurchaseOrderState(PurchaseOrderState,CancelPurchaseOrderSuccess)", "PurchaseOrderState(PurchaseOrderState,ArchivePurchaseOrdersSuccess)", "PurchaseOrderState(PurchaseOrderState,DeletePurchaseOrdersSuccess)", "PurchaseOrderState(PurchaseOrderState,RestorePurchaseOrdersSuccess)", "PurchaseOrderState(PurchaseOrderState,EmailPurchaseOrderSuccess)", "PurchaseOrderState(PurchaseOrderState,ApprovePurchaseOrderSuccess)", "PurchaseOrderState(PurchaseOrderState,AddPurchaseOrderSuccess)", "PurchaseOrderState(PurchaseOrderState,@)", "PurchaseOrderState(PurchaseOrderState,LoadPurchaseOrdersSuccess)", "PurchaseOrderState(PurchaseOrderState,LoadCompanySuccess)", "InvoiceEntity(InvoiceEntity?,AddQuoteItems)", "InvoiceEntity?(InvoiceEntity?,DeleteQuoteItem)", "InvoiceEntity?(InvoiceEntity?,UpdateQuoteItem)", "ListUIState(ListUIState,ViewQuoteList)", "ListUIState(ListUIState,FilterQuotesByCustom1)", "ListUIState(ListUIState,FilterQuotesByCustom2)", "ListUIState(ListUIState,FilterQuotesByCustom3)", "ListUIState(ListUIState,FilterQuotesByCustom4)", "ListUIState(ListUIState,FilterQuotesByState)", "ListUIState(ListUIState,FilterQuotesByStatus)", "ListUIState(ListUIState,FilterQuotes)", "ListUIState(ListUIState,SortQuotes)", "ListUIState(ListUIState,StartQuoteMultiselect)", "ListUIState(ListUIState,AddToQuoteMultiselect)", "ListUIState(ListUIState,RemoveFromQuoteMultiselect)", "ListUIState(ListUIState,ClearQuoteMultiselect)", "QuoteState(QuoteState,PurgeClientSuccess)", "QuoteState(QuoteState,MarkSentQuoteSuccess)", "QuoteState(QuoteState,ArchiveQuotesSuccess)", "QuoteState(QuoteState,DeleteQuotesSuccess)", "QuoteState(QuoteState,RestoreQuotesSuccess)", "QuoteState(QuoteState,EmailQuoteSuccess)", "QuoteState(QuoteState,ConvertQuotesToInvoicesSuccess)", "QuoteState(QuoteState,ConvertQuotesToProjectsSuccess)", "QuoteState(QuoteState,AddQuoteSuccess)", "QuoteState(QuoteState,@)", "QuoteState(QuoteState,LoadQuotesSuccess)", "QuoteState(QuoteState,LoadCompanySuccess)", "ListUIState(ListUIState,ViewRecurringExpenseList)", "ListUIState(ListUIState,FilterRecurringExpensesByCustom1)", "ListUIState(ListUIState,FilterRecurringExpensesByCustom2)", "ListUIState(ListUIState,FilterRecurringExpensesByState)", "ListUIState(ListUIState,FilterRecurringExpensesByStatus)", "ListUIState(ListUIState,FilterRecurringExpenses)", "ListUIState(ListUIState,SortRecurringExpenses)", "ListUIState(ListUIState,StartRecurringExpenseMultiselect)", "ListUIState(ListUIState,AddToRecurringExpenseMultiselect)", "ListUIState(ListUIState,RemoveFromRecurringExpenseMultiselect)", "ListUIState(ListUIState,ClearRecurringExpenseMultiselect)", "RecurringExpenseState(RecurringExpenseState,PurgeClientSuccess)", "RecurringExpenseState(RecurringExpenseState,ArchiveRecurringExpensesSuccess)", "RecurringExpenseState(RecurringExpenseState,DeleteRecurringExpensesSuccess)", "RecurringExpenseState(RecurringExpenseState,RestoreRecurringExpensesSuccess)", "RecurringExpenseState(RecurringExpenseState,AddRecurringExpenseSuccess)", "RecurringExpenseState(RecurringExpenseState,SaveRecurringExpenseSuccess)", "RecurringExpenseState(RecurringExpenseState,StartRecurringExpensesSuccess)", "RecurringExpenseState(RecurringExpenseState,StopRecurringExpensesSuccess)", "RecurringExpenseState(RecurringExpenseState,LoadRecurringExpenseSuccess)", "RecurringExpenseState(RecurringExpenseState,LoadRecurringExpensesSuccess)", "RecurringExpenseState(RecurringExpenseState,LoadCompanySuccess)", "InvoiceEntity(InvoiceEntity?,AddRecurringInvoiceItems)", "InvoiceEntity?(InvoiceEntity?,DeleteRecurringInvoiceItem)", "InvoiceEntity?(InvoiceEntity?,UpdateRecurringInvoiceItem)", "ListUIState(ListUIState,FilterRecurringInvoicesByCustom1)", "ListUIState(ListUIState,FilterRecurringInvoicesByCustom2)", "ListUIState(ListUIState,FilterRecurringInvoicesByCustom3)", "ListUIState(ListUIState,FilterRecurringInvoicesByCustom4)", "ListUIState(ListUIState,FilterRecurringInvoicesByState)", "ListUIState(ListUIState,FilterRecurringInvoicesByStatus)", "ListUIState(ListUIState,FilterRecurringInvoices)", "ListUIState(ListUIState,SortRecurringInvoices)", "ListUIState(ListUIState,StartRecurringInvoiceMultiselect)", "ListUIState(ListUIState,AddToRecurringInvoiceMultiselect)", "ListUIState(ListUIState,RemoveFromRecurringInvoiceMultiselect)", "ListUIState(ListUIState,ClearRecurringInvoiceMultiselect)", "RecurringInvoiceState(RecurringInvoiceState,PurgeClientSuccess)", "RecurringInvoiceState(RecurringInvoiceState,ArchiveRecurringInvoicesSuccess)", "RecurringInvoiceState(RecurringInvoiceState,DeleteRecurringInvoicesSuccess)", "RecurringInvoiceState(RecurringInvoiceState,EmailRecurringInvoiceSuccess)", "RecurringInvoiceState(RecurringInvoiceState,RestoreRecurringInvoicesSuccess)", "RecurringInvoiceState(RecurringInvoiceState,SendNowRecurringInvoicesSuccess)", "RecurringInvoiceState(RecurringInvoiceState,StartRecurringInvoicesSuccess)", "RecurringInvoiceState(RecurringInvoiceState,StopRecurringInvoicesSuccess)", "RecurringInvoiceState(RecurringInvoiceState,AddRecurringInvoiceSuccess)", "RecurringInvoiceState(RecurringInvoiceState,@)", "RecurringInvoiceState(RecurringInvoiceState,LoadRecurringInvoicesSuccess)", "RecurringInvoiceState(RecurringInvoiceState,LoadCompanySuccess)", "ScheduleEntity(ScheduleEntity?,@)", "ScheduleEntity?(ScheduleEntity?,@)", "ListUIState(ListUIState,ViewScheduleList)", "ListUIState(ListUIState,FilterSchedulesByCustom1)", "ListUIState(ListUIState,FilterSchedulesByCustom2)", "ListUIState(ListUIState,FilterSchedulesByState)", "ListUIState(ListUIState,FilterSchedules)", "ListUIState(ListUIState,SortSchedules)", "ListUIState(ListUIState,StartScheduleMultiselect)", "ListUIState(ListUIState,AddToScheduleMultiselect)", "ListUIState(ListUIState,RemoveFromScheduleMultiselect)", "ListUIState(ListUIState,ClearScheduleMultiselect)", "ScheduleState(ScheduleState,ArchiveSchedulesSuccess)", "ScheduleState(ScheduleState,DeleteSchedulesSuccess)", "ScheduleState(ScheduleState,RestoreSchedulesSuccess)", "ScheduleState(ScheduleState,AddScheduleSuccess)", "ScheduleState(ScheduleState,SaveScheduleSuccess)", "ScheduleState(ScheduleState,LoadScheduleSuccess)", "ScheduleState(ScheduleState,LoadSchedulesSuccess)", "ScheduleState(ScheduleState,LoadCompanySuccess)", "StaticState(StaticState,LoadStaticSuccess)", "SubscriptionEntity(SubscriptionEntity?,@)", "SubscriptionEntity?(SubscriptionEntity?,@)", "ListUIState(ListUIState,FilterSubscriptionsByCustom1)", "ListUIState(ListUIState,FilterSubscriptionsByCustom2)", "ListUIState(ListUIState,FilterSubscriptionsByState)", "ListUIState(ListUIState,FilterSubscriptions)", "ListUIState(ListUIState,SortSubscriptions)", "ListUIState(ListUIState,StartSubscriptionMultiselect)", "ListUIState(ListUIState,AddToSubscriptionMultiselect)", "ListUIState(ListUIState,RemoveFromSubscriptionMultiselect)", "ListUIState(ListUIState,ClearSubscriptionMultiselect)", "SubscriptionState(SubscriptionState,ArchiveSubscriptionsSuccess)", "SubscriptionState(SubscriptionState,DeleteSubscriptionsSuccess)", "SubscriptionState(SubscriptionState,RestoreSubscriptionsSuccess)", "SubscriptionState(SubscriptionState,AddSubscriptionSuccess)", "SubscriptionState(SubscriptionState,SaveSubscriptionSuccess)", "SubscriptionState(SubscriptionState,LoadSubscriptionSuccess)", "SubscriptionState(SubscriptionState,LoadSubscriptionsSuccess)", "SubscriptionState(SubscriptionState,LoadCompanySuccess)", "TaskEntity(TaskEntity?,@)", "TaskEntity?(TaskEntity?,@)", "ListUIState(ListUIState,ViewTaskList)", "ListUIState(ListUIState,FilterTasksByCustom1)", "ListUIState(ListUIState,FilterTasksByCustom2)", "ListUIState(ListUIState,FilterTasksByState)", "ListUIState(ListUIState,FilterTasksByStatus)", "ListUIState(ListUIState,FilterTasks)", "ListUIState(ListUIState,SortTasks)", "TaskEntity(TaskEntity?,AddTaskTime)", "TaskEntity(TaskEntity?,DeleteTaskTime)", "TaskEntity(TaskEntity?,UpdateTaskTime)", "ListUIState(ListUIState,StartTaskMultiselect)", "ListUIState(ListUIState,AddToTaskMultiselect)", "ListUIState(ListUIState,RemoveFromTaskMultiselect)", "ListUIState(ListUIState,ClearTaskMultiselect)", "TaskState(TaskState,PurgeClientSuccess)", "TaskState(TaskState,SortTasksSuccess)", "TaskState(TaskState,ArchiveTaskSuccess)", "TaskState(TaskState,StartTasksSuccess)", "TaskState(TaskState,StopTasksSuccess)", "TaskState(TaskState,DeleteTaskSuccess)", "TaskState(TaskState,RestoreTaskSuccess)", "TaskState(TaskState,AddTaskSuccess)", "TaskState(TaskState,SaveTaskSuccess)", "TaskState(TaskState,LoadTaskSuccess)", "TaskState(TaskState,LoadTasksSuccess)", "TaskState(TaskState,LoadCompanySuccess)", "TaskStatusEntity(TaskStatusEntity?,@)", "TaskStatusEntity?(TaskStatusEntity?,@)", "ListUIState(ListUIState,ViewTaskStatusList)", "ListUIState(ListUIState,FilterTaskStatusesByCustom1)", "ListUIState(ListUIState,FilterTaskStatusesByCustom2)", "ListUIState(ListUIState,FilterTaskStatusesByState)", "ListUIState(ListUIState,FilterTaskStatuses)", "ListUIState(ListUIState,SortTaskStatuses)", "ListUIState(ListUIState,StartTaskStatusMultiselect)", "ListUIState(ListUIState,AddToTaskStatusMultiselect)", "ListUIState(ListUIState,RemoveFromTaskStatusMultiselect)", "ListUIState(ListUIState,ClearTaskStatusMultiselect)", "TaskStatusState(TaskStatusState,SortTasksSuccess)", "TaskStatusState(TaskStatusState,ArchiveTaskStatusesSuccess)", "TaskStatusState(TaskStatusState,DeleteTaskStatusesSuccess)", "TaskStatusState(TaskStatusState,RestoreTaskStatusesSuccess)", "TaskStatusState(TaskStatusState,AddTaskStatusSuccess)", "TaskStatusState(TaskStatusState,SaveTaskStatusSuccess)", "TaskStatusState(TaskStatusState,LoadTaskStatusSuccess)", "TaskStatusState(TaskStatusState,LoadTaskStatusesSuccess)", "TaskStatusState(TaskStatusState,LoadCompanySuccess)", "TaxRateEntity(TaxRateEntity?,@)", "TaxRateEntity?(TaxRateEntity?,@)", "ListUIState(ListUIState,ViewTaxRateList)", "ListUIState(ListUIState,FilterTaxRatesByState)", "ListUIState(ListUIState,FilterTaxRates)", "ListUIState(ListUIState,SortTaxRates)", "ListUIState(ListUIState,StartTaxRateMultiselect)", "ListUIState(ListUIState,AddToTaxRateMultiselect)", "ListUIState(ListUIState,RemoveFromTaxRateMultiselect)", "ListUIState(ListUIState,ClearTaxRateMultiselect)", "TaxRateState(TaxRateState,ArchiveTaxRatesSuccess)", "TaxRateState(TaxRateState,DeleteTaxRatesSuccess)", "TaxRateState(TaxRateState,RestoreTaxRatesSuccess)", "TaxRateState(TaxRateState,AddTaxRateSuccess)", "TaxRateState(TaxRateState,SaveTaxRateSuccess)", "TaxRateState(TaxRateState,LoadTaxRateSuccess)", "TaxRateState(TaxRateState,LoadTaxRatesSuccess)", "TaxRateState(TaxRateState,LoadCompanySuccess)", "TokenEntity(TokenEntity?,@)", "TokenEntity?(TokenEntity?,@)", "ListUIState(ListUIState,ViewTokenList)", "ListUIState(ListUIState,FilterTokensByCustom1)", "ListUIState(ListUIState,FilterTokensByCustom2)", "ListUIState(ListUIState,FilterTokensByState)", "ListUIState(ListUIState,FilterTokens)", "ListUIState(ListUIState,SortTokens)", "ListUIState(ListUIState,StartTokenMultiselect)", "ListUIState(ListUIState,AddToTokenMultiselect)", "ListUIState(ListUIState,RemoveFromTokenMultiselect)", "ListUIState(ListUIState,ClearTokenMultiselect)", "TokenState(TokenState,ArchiveTokensSuccess)", "TokenState(TokenState,DeleteTokensSuccess)", "TokenState(TokenState,RestoreTokensSuccess)", "TokenState(TokenState,AddTokenSuccess)", "TokenState(TokenState,SaveTokenSuccess)", "TokenState(TokenState,LoadTokenSuccess)", "TokenState(TokenState,LoadTokensSuccess)", "TokenState(TokenState,LoadCompanySuccess)", "TransactionEntity(TransactionEntity?,@)", "TransactionEntity?(TransactionEntity?,@)", "ListUIState(ListUIState,ViewTransactionList)", "ListUIState(ListUIState,FilterTransactionsByCustom1)", "ListUIState(ListUIState,FilterTransactionsByCustom2)", "ListUIState(ListUIState,FilterTransactionsByState)", "ListUIState(ListUIState,FilterTransactionsByStatus)", "ListUIState(ListUIState,FilterTransactions)", "ListUIState(ListUIState,SortTransactions)", "ListUIState(ListUIState,StartTransactionMultiselect)", "ListUIState(ListUIState,AddToTransactionMultiselect)", "ListUIState(ListUIState,RemoveFromTransactionMultiselect)", "ListUIState(ListUIState,ClearTransactionMultiselect)", "TransactionState(TransactionState,ArchiveTransactionsSuccess)", "TransactionState(TransactionState,DeleteTransactionsSuccess)", "TransactionState(TransactionState,RestoreTransactionsSuccess)", "TransactionState(TransactionState,AddTransactionSuccess)", "TransactionState(TransactionState,SaveTransactionSuccess)", "TransactionState(TransactionState,ConvertTransactionToPaymentSuccess)", "TransactionState(TransactionState,ConvertTransactionsToExpensesSuccess)", "TransactionState(TransactionState,LinkTransactionToPaymentSuccess)", "TransactionState(TransactionState,LinkTransactionToExpenseSuccess)", "TransactionState(TransactionState,ConvertTransactionsSuccess)", "TransactionState(TransactionState,LoadTransactionSuccess)", "TransactionState(TransactionState,LoadTransactionsSuccess)", "TransactionState(TransactionState,LoadCompanySuccess)", "TransactionRuleEntity(TransactionRuleEntity?,@)", "TransactionRuleEntity?(TransactionRuleEntity?,@)", "ListUIState(ListUIState,ViewTransactionRuleList)", "ListUIState(ListUIState,FilterTransactionRulesByCustom1)", "ListUIState(ListUIState,FilterTransactionRulesByCustom2)", "ListUIState(ListUIState,FilterTransactionRulesByState)", "ListUIState(ListUIState,FilterTransactionRules)", "ListUIState(ListUIState,SortTransactionRules)", "ListUIState(ListUIState,StartTransactionRuleMultiselect)", "ListUIState(ListUIState,AddToTransactionRuleMultiselect)", "ListUIState(ListUIState,RemoveFromTransactionRuleMultiselect)", "ListUIState(ListUIState,ClearTransactionRuleMultiselect)", "TransactionRuleState(TransactionRuleState,ArchiveTransactionRulesSuccess)", "TransactionRuleState(TransactionRuleState,DeleteTransactionRulesSuccess)", "TransactionRuleState(TransactionRuleState,RestoreTransactionRulesSuccess)", "TransactionRuleState(TransactionRuleState,AddTransactionRuleSuccess)", "TransactionRuleState(TransactionRuleState,SaveTransactionRuleSuccess)", "TransactionRuleState(TransactionRuleState,LoadTransactionRuleSuccess)", "TransactionRuleState(TransactionRuleState,LoadTransactionRulesSuccess)", "TransactionRuleState(TransactionRuleState,LoadCompanySuccess)", "UserEntity(UserEntity?,@)", "UserEntity?(UserEntity?,@)", "ListUIState(ListUIState,ViewUserList)", "ListUIState(ListUIState,FilterUsersByCustom1)", "ListUIState(ListUIState,FilterUsersByCustom2)", "ListUIState(ListUIState,FilterUsersByCustom3)", "ListUIState(ListUIState,FilterUsersByCustom4)", "ListUIState(ListUIState,FilterUsersByState)", "ListUIState(ListUIState,FilterUsers)", "ListUIState(ListUIState,SortUsers)", "ListUIState(ListUIState,StartUserMultiselect)", "ListUIState(ListUIState,AddToUserMultiselect)", "ListUIState(ListUIState,RemoveFromUserMultiselect)", "ListUIState(ListUIState,ClearUserMultiselect)", "UserState(UserState,ArchiveUserSuccess)", "UserState(UserState,DeleteUserSuccess)", "UserState(UserState,RestoreUserSuccess)", "UserState(UserState,RemoveUserSuccess)", "UserState(UserState,AddUserSuccess)", "UserState(UserState,SaveUserSuccess)", "UserState(UserState,SaveAuthUserSuccess)", "UserState(UserState,ConnectOAuthUserSuccess)", "UserState(UserState,DisconnectOAuthUserSuccess)", "UserState(UserState,DisconnectOAuthMailerSuccess)", "UserState(UserState,ConnecGmailUserSuccess)", "UserState(UserState,LoadUserSuccess)", "UserState(UserState,LoadUsersSuccess)", "UserState(UserState,LoadCompanySuccess)", "VendorContactEntity(VendorContactEntity?,@)", "VendorEntity(VendorEntity?,@)", "VendorEntity?(VendorEntity?,@)", "VendorEntity(VendorEntity?,AddVendorContact)", "VendorEntity(VendorEntity?,DeleteVendorContact)", "VendorEntity(VendorEntity?,UpdateVendorContact)", "ListUIState(ListUIState,ViewVendorList)", "ListUIState(ListUIState,FilterVendorsByCustom1)", "ListUIState(ListUIState,FilterVendorsByCustom2)", "ListUIState(ListUIState,FilterVendorsByCustom3)", "ListUIState(ListUIState,FilterVendorsByCustom4)", "ListUIState(ListUIState,FilterVendorsByState)", "ListUIState(ListUIState,FilterVendors)", "ListUIState(ListUIState,SortVendors)", "ListUIState(ListUIState,StartVendorMultiselect)", "ListUIState(ListUIState,AddToVendorMultiselect)", "ListUIState(ListUIState,RemoveFromVendorMultiselect)", "ListUIState(ListUIState,ClearVendorMultiselect)", "VendorState(VendorState,ArchiveVendorSuccess)", "VendorState(VendorState,DeleteVendorSuccess)", "VendorState(VendorState,RestoreVendorSuccess)", "VendorState(VendorState,AddVendorSuccess)", "VendorState(VendorState,SaveVendorSuccess)", "VendorState(VendorState,LoadVendorSuccess)", "VendorState(VendorState,LoadVendorsSuccess)", "VendorState(VendorState,LoadCompanySuccess)", "WebhookEntity(WebhookEntity?,@)", "WebhookEntity?(WebhookEntity?,@)", "ListUIState(ListUIState,ViewWebhookList)", "ListUIState(ListUIState,FilterWebhooksByCustom1)", "ListUIState(ListUIState,FilterWebhooksByCustom2)", "ListUIState(ListUIState,FilterWebhooksByState)", "ListUIState(ListUIState,FilterWebhooks)", "ListUIState(ListUIState,SortWebhooks)", "ListUIState(ListUIState,StartWebhookMultiselect)", "ListUIState(ListUIState,AddToWebhookMultiselect)", "ListUIState(ListUIState,RemoveFromWebhookMultiselect)", "ListUIState(ListUIState,ClearWebhookMultiselect)", "WebhookState(WebhookState,ArchiveWebhooksSuccess)", "WebhookState(WebhookState,DeleteWebhooksSuccess)", "WebhookState(WebhookState,RestoreWebhooksSuccess)", "WebhookState(WebhookState,AddWebhookSuccess)", "WebhookState(WebhookState,SaveWebhookSuccess)", "WebhookState(WebhookState,LoadWebhookSuccess)", "WebhookState(WebhookState,LoadWebhooksSuccess)", "WebhookState(WebhookState,LoadCompanySuccess)", "ConfirmEmailVM(Store)", "AppDrawerVM(Store)", "MenuDrawerVM(Store)", "LoginVM(Store)", "BankAccountListVM(Store)", "BankAccountScreenVM(Store)", "ClientListVM(Store)", "ClientScreenVM(Store)", "CompanyGatewayListVM(Store)", "CompanyGatewayScreenVM(Store)", "CreditListVM(Store)", "CreditScreenVM(Store)", "DashboardVM(Store)", "DesignListVM(Store)", "DesignScreenVM(Store)", "DocumentListVM(Store)", "DocumentScreenVM(Store)", "ExpenseListVM(Store)", "ExpenseScreenVM(Store)", "ExpenseCategoryListVM(Store)", "ExpenseCategoryScreenVM(Store)", "GroupListVM(Store)", "GroupScreenVM(Store)", "InvoiceListVM(Store)", "InvoiceScreenVM(Store)", "PaymentListVM(Store)", "PaymentScreenVM(Store)", "PaymentTermListVM(Store)", "PaymentTermScreenVM(Store)", "ProductListVM(Store)", "ProductScreenVM(Store)", "ProjectListVM(Store)", "ProjectScreenVM(Store)", "PurchaseOrderListVM(Store)", "PurchaseOrderScreenVM(Store)", "QuoteListVM(Store)", "QuoteScreenVM(Store)", "RecurringExpenseListVM(Store)", "RecurringExpenseScreenVM(Store)", "RecurringInvoiceListVM(Store)", "RecurringInvoiceScreenVM(Store)", "ReportsScreenVM(Store)", "ScheduleListVM(Store)", "ScheduleScreenVM(Store)", "AccountManagementVM(Store)", "ClientPortalVM(Store)", "CompanyDetailsVM(Store)", "CreditCardsAndBanksVM(Store)", "CustomFieldsVM(Store)", "DataVisualizationsVM(Store)", "DeviceSettingsVM(Store)", "EmailSettingsVM(Store)", "ExpenseSettingsVM(Store)", "GeneratedNumbersVM(Store)", "ImportExportVM(Store)", "InvoiceDesignVM(Store)", "LocalizationSettingsVM(Store)", "PaymentSettingsVM(Store)", "ProductSettingsVM(Store)", "SettingsListVM(Store)", "SettingsScreenVM(Store)", "TaskSettingsVM(Store)", "TaxSettingsVM(Store)", "TemplatesAndRemindersVM(Store)", "UserDetailsVM(Store)", "WorkflowSettingsVM(Store)", "SubscriptionListVM(Store)", "SubscriptionScreenVM(Store)", "KanbanVM(Store)", "TaskListVM(Store)", "TaskScreenVM(Store)", "TaskStatusListVM(Store)", "TaskStatusScreenVM(Store)", "TaxRateListVM(Store)", "TaxRateScreenVM(Store)", "TokenListVM(Store)", "TokenScreenVM(Store)", "TransactionListVM(Store)", "TransactionScreenVM(Store)", "TransactionRuleListVM(Store)", "TransactionRuleScreenVM(Store)", "UserListVM(Store)", "UserScreenVM(Store)", "VendorListVM(Store)", "VendorScreenVM(Store)", "WebhookListVM(Store)", "WebhookScreenVM(Store)", "Future()", "MapBuilder()", "Widget(BuildContext,UnorderedListItemComponent)", "double(TextStyle,int)", "Widget(BuildContext,OrderedListItemComponent)", "MapBuilder()", "TextStyle(Set,TextStyle)", "SuperEditorLaunchLinkTapHandler(SuperEditorContext)", "Widget(BuildContext,Offset[Key?])", "~(PopoverController)", "FollowerAlignment(Rect,Size,Size,GlobalKey>?)", "Widget(BuildContext,AndroidEditingOverlayController,ToolbarConfig)", "MapBuilder()", "MapBuilder()", "MapBuilder()", "MapBuilder()", "Widget(BuildContext,IOSEditingOverlayController)", "JavaScriptObject(int)", "~(String?{wrapWidth:int?})", "GoogleSignInUserData?(Map?)", "bool(bool,StartLoading)", "bool(bool,StopLoading)", "bool(bool,StartSaving)", "bool(bool,StopSaving)", "Expanded(Widget)"], interceptorsByTag: null, leafTags: null, arrayRti: Symbol("$ti"), @@ -625514,8 +626872,8 @@ "4;domBlurListener,domFocusListener,element,semanticsNodeId": types => o => o instanceof A._Record_4_domBlurListener_domFocusListener_element_semanticsNodeId && A.pairwiseIsTest(types, o._values) } }; - A._Universe_addRules(init.typeUniverse, JSON.parse('{"PlainJavaScriptObject":"LegacyJavaScriptObject","UnknownJavaScriptObject":"LegacyJavaScriptObject","JavaScriptFunction":"LegacyJavaScriptObject","LoadConfig":"LegacyJavaScriptObject","GoogleAuthInitFailureError":"LegacyJavaScriptObject","GoogleAuth":"LegacyJavaScriptObject","GoogleUser":"LegacyJavaScriptObject","GoogleAuthSignInError":"LegacyJavaScriptObject","OfflineAccessResponse":"LegacyJavaScriptObject","_GoogleAuth":"LegacyJavaScriptObject","IsSignedIn":"LegacyJavaScriptObject","CurrentUser":"LegacyJavaScriptObject","SigninOptions":"LegacyJavaScriptObject","OfflineAccessOptions":"LegacyJavaScriptObject","ClientConfig":"LegacyJavaScriptObject","SigninOptionsBuilder":"LegacyJavaScriptObject","BasicProfile":"LegacyJavaScriptObject","AuthResponse":"LegacyJavaScriptObject","AuthorizeConfig":"LegacyJavaScriptObject","AuthorizeResponse":"LegacyJavaScriptObject","_GoogleUser":"LegacyJavaScriptObject","Promise":"LegacyJavaScriptObject","Promise0":"LegacyJavaScriptObject","BindConfiguration":"LegacyJavaScriptObject","Data":"LegacyJavaScriptObject","Boundary":"LegacyJavaScriptObject","ViewPort":"LegacyJavaScriptObject","Options":"LegacyJavaScriptObject","CroppieJS":"LegacyJavaScriptObject","AuthenticationResult0":"LegacyJavaScriptObject","AccountInfo":"LegacyJavaScriptObject","Configuration0":"LegacyJavaScriptObject","BrowserAuthOptions":"LegacyJavaScriptObject","CacheOptions":"LegacyJavaScriptObject","BrowserSystemOptions":"LegacyJavaScriptObject","LoggerOptions":"LegacyJavaScriptObject","AuthError":"LegacyJavaScriptObject","EventMessage":"LegacyJavaScriptObject","Logger1":"LegacyJavaScriptObject","NavigationOptions":"LegacyJavaScriptObject","NetworkRequestOptions":"LegacyJavaScriptObject","NetworkResponse":"LegacyJavaScriptObject","PublicClientApplication0":"LegacyJavaScriptObject","SsoSilentRequest":"LegacyJavaScriptObject","EndSessionRequest":"LegacyJavaScriptObject","EndSessionPopupRequest":"LegacyJavaScriptObject","SilentRequest":"LegacyJavaScriptObject","RedirectRequest":"LegacyJavaScriptObject","PopupRequest0":"LegacyJavaScriptObject","CommonSilentFlowRequest":"LegacyJavaScriptObject","CommonAuthorizationUrlRequest0":"LegacyJavaScriptObject","CommonEndSessionRequest":"LegacyJavaScriptObject","JsError":"LegacyJavaScriptObject","Promise1":"LegacyJavaScriptObject","Array":"LegacyJavaScriptObject","Object0":"LegacyJavaScriptObject","Reflect":"LegacyJavaScriptObject","NodeCrypto":"LegacyJavaScriptObject","PdfJsDoc":"LegacyJavaScriptObject","PdfJsPage":"LegacyJavaScriptObject","PdfJs":"LegacyJavaScriptObject","Settings":"LegacyJavaScriptObject","PdfJsDocLoader":"LegacyJavaScriptObject","PdfJsViewport":"LegacyJavaScriptObject","PdfJsRender":"LegacyJavaScriptObject","SignInResponseI":"LegacyJavaScriptObject","SignInWithAppleInitOptions":"LegacyJavaScriptObject","AuthorizationI":"LegacyJavaScriptObject","UserI":"LegacyJavaScriptObject","NameI":"LegacyJavaScriptObject","KeyframeEffect":"JavaScriptObject","KeyframeEffectReadOnly":"JavaScriptObject","AnimationEffectReadOnly":"JavaScriptObject","AnimationEvent":"Event","AudioContext":"BaseAudioContext","AbsoluteOrientationSensor":"EventTarget","OrientationSensor":"EventTarget","Sensor":"EventTarget","AElement":"SvgElement","GraphicsElement":"SvgElement","OpenDBRequest":"Request0","_WorkerNavigator":"NavigatorConcurrentHardware","_ResourceProgressEvent":"ProgressEvent","AudioElement":"HtmlElement","MediaElement":"HtmlElement","ShadowRoot":"Node1","DocumentFragment":"Node1","XmlDocument":"Document1","WindowClient":"Client","PointerEvent0":"MouseEvent","VttCue":"TextTrackCue","CompositionEvent":"UIEvent","AbortPaymentEvent":"ExtendableEvent","DedicatedWorkerGlobalScope":"WorkerGlobalScope","FederatedCredential":"Credential","CDataSection":"CharacterData","Text2":"CharacterData","MidiInput":"MidiPort","MathMLElement":"Element2","HttpRequestUpload":"HttpRequestEventTarget","HtmlFormControlsCollection":"HtmlCollection","CssCharsetRule":"CssRule","CssMatrixComponent":"CssTransformComponent","CssStyleSheet":"StyleSheet","CssurlImageValue":"CssStyleValue","CssImageValue":"CssStyleValue","CssResourceValue":"CssStyleValue","CanvasCaptureMediaStreamTrack":"MediaStreamTrack","BackgroundFetchClickEvent":"BackgroundFetchEvent","CkImage":{"Image1":[]},"CkBrowserImageDecoder":{"Codec":[]},"FontLoadError":{"Error":[]},"PersistedContainerSurface":{"PersistedSurface":[]},"EngineLineMetrics":{"LineMetrics":[]},"CkColorFilter":{"CkManagedSkImageFilterConvertible":[]},"CkBlendModeColorFilter":{"CkManagedSkImageFilterConvertible":[]},"CkMatrixColorFilter":{"CkManagedSkImageFilterConvertible":[]},"CkLinearToSrgbGammaColorFilter":{"CkManagedSkImageFilterConvertible":[]},"CkSrgbToLinearGammaColorFilter":{"CkManagedSkImageFilterConvertible":[]},"CkComposeColorFilter":{"CkManagedSkImageFilterConvertible":[]},"MutatorsStack":{"Iterable":["Mutator"],"Iterable.E":"Mutator"},"ImageCodecException":{"Exception":[]},"CkImageFilter":{"CkManagedSkImageFilterConvertible":[]},"_CkBlurImageFilter":{"CkManagedSkImageFilterConvertible":[]},"_CkMatrixImageFilter":{"CkManagedSkImageFilterConvertible":[]},"CkAnimatedImage":{"Codec":[]},"ContainerLayer":{"Layer":[]},"RootLayer":{"Layer":[]},"BackdropFilterEngineLayer":{"Layer":[],"BackdropFilterEngineLayer0":[]},"ClipPathEngineLayer":{"Layer":[],"ClipPathEngineLayer0":[]},"ClipRectEngineLayer":{"Layer":[],"ClipRectEngineLayer0":[]},"ClipRRectEngineLayer":{"Layer":[],"ClipRRectEngineLayer0":[]},"OpacityEngineLayer":{"Layer":[],"OpacityEngineLayer0":[]},"TransformEngineLayer":{"Layer":[],"TransformEngineLayer0":[]},"OffsetEngineLayer":{"Layer":[],"TransformEngineLayer0":[],"OffsetEngineLayer0":[]},"ImageFilterEngineLayer":{"Layer":[],"ImageFilterEngineLayer0":[]},"PictureLayer":{"Layer":[]},"PlatformViewLayer0":{"Layer":[]},"CkPaint":{"Paint":[]},"CkPath":{"Path":[]},"SimpleCkShader":{"CkShader":[]},"CkGradientLinear":{"CkShader":[]},"CkLineMetrics":{"LineMetrics":[]},"CanvasKitError":{"Error":[]},"HttpFetchResponseImpl":{"HttpFetchResponse":[]},"HttpFetchNoPayloadError":{"Exception":[]},"HttpFetchError":{"Exception":[]},"_DomListWrapper":{"Iterable":["1"],"Iterable.E":"1"},"_DomTouchListWrapper":{"Iterable":["1"],"Iterable.E":"1"},"FontNotFoundError":{"FontLoadError":[],"Error":[]},"FontDownloadError":{"FontLoadError":[],"Error":[]},"FontInvalidDataError":{"FontLoadError":[],"Error":[]},"PersistedBackdropFilter":{"PersistedContainerSurface":[],"PersistedSurface":[],"BackdropFilterEngineLayer0":[]},"PersistedClipRect":{"PersistedContainerSurface":[],"PersistedSurface":[],"ClipRectEngineLayer0":[]},"PersistedClipRRect":{"PersistedContainerSurface":[],"PersistedSurface":[],"ClipRRectEngineLayer0":[]},"PersistedClipPath":{"PersistedContainerSurface":[],"PersistedSurface":[],"ClipPathEngineLayer0":[]},"PersistedImageFilter":{"PersistedContainerSurface":[],"PersistedSurface":[],"ImageFilterEngineLayer0":[]},"PersistedOffset":{"PersistedContainerSurface":[],"PersistedSurface":[],"OffsetEngineLayer0":[]},"PersistedOpacity":{"PersistedContainerSurface":[],"PersistedSurface":[],"OpacityEngineLayer0":[]},"SurfacePaint":{"Paint":[]},"SurfacePath":{"Path":[]},"PersistedPicture":{"PersistedSurface":[]},"PersistedPlatformView":{"PersistedSurface":[]},"DrawCommand":{"PaintCommand":[]},"PaintSave":{"PaintCommand":[]},"PaintRestore":{"PaintCommand":[]},"PaintTranslate":{"PaintCommand":[]},"PaintScale":{"PaintCommand":[]},"PaintRotate":{"PaintCommand":[]},"PaintTransform":{"PaintCommand":[]},"PaintClipRect":{"PaintCommand":[]},"PaintClipRRect":{"PaintCommand":[]},"PaintClipPath":{"PaintCommand":[]},"PaintDrawLine":{"PaintCommand":[]},"PaintDrawPaint":{"PaintCommand":[]},"PaintDrawRect":{"PaintCommand":[]},"PaintDrawRRect":{"PaintCommand":[]},"PaintDrawDRRect":{"PaintCommand":[]},"PaintDrawOval":{"PaintCommand":[]},"PaintDrawCircle":{"PaintCommand":[]},"PaintDrawPath":{"PaintCommand":[]},"PaintDrawShadow":{"PaintCommand":[]},"PaintDrawImageRect":{"PaintCommand":[]},"PaintDrawParagraph":{"PaintCommand":[]},"PersistedScene":{"PersistedContainerSurface":[],"PersistedSurface":[]},"_BlurEngineImageFilter":{"EngineImageFilter":[]},"_MatrixEngineImageFilter":{"EngineImageFilter":[]},"EngineHtmlColorFilter":{"EngineImageFilter":[]},"ModeHtmlColorFilter":{"EngineImageFilter":[]},"PersistedLeafSurface":{"PersistedSurface":[]},"PersistedTransform":{"PersistedContainerSurface":[],"PersistedSurface":[],"TransformEngineLayer0":[]},"HtmlCodec":{"Codec":[]},"HtmlBlobCodec":{"Codec":[]},"SingleFrameInfo":{"FrameInfo":[]},"HtmlImage":{"Image1":[]},"BrowserImageDecoder":{"Codec":[]},"AnimatedImageFrameInfo":{"FrameInfo":[]},"RouteName":{"RoleManager":[]},"Focusable":{"RoleManager":[]},"LabelAndValue":{"RoleManager":[]},"LiveRegion":{"RoleManager":[]},"SemanticsUpdate":{"SemanticsUpdate0":[]},"Tappable":{"RoleManager":[]},"_TypedDataBuffer":{"ListBase":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_IntBuffer":{"_TypedDataBuffer":["int"],"ListBase":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Uint8Buffer":{"_TypedDataBuffer":["int"],"ListBase":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListBase.E":"int","Iterable.E":"int","_TypedDataBuffer.E":"int"},"PlaceholderSpan":{"ParagraphSpan":[]},"ChildStyleNode":{"StyleNode":[]},"RootStyleNode":{"StyleNode":[]},"EllipsisFragment":{"LayoutFragment":[]},"EngineFlutterWindow":{"FlutterView":[]},"JavaScriptObject":{"JSObject":[]},"JSBool":{"bool":[],"TrustedGetRuntimeType":[]},"JSNull":{"Null":[],"TrustedGetRuntimeType":[]},"LegacyJavaScriptObject":{"JavaScriptObject":[],"JSObject":[],"GoogleAuthInitFailureError":[],"GoogleAuthSignInError":[],"GoogleAuth":[],"GoogleUser":[],"AuthenticationResult0":[],"JsError":[],"PdfJsDoc":[],"PdfJsPage":[],"SignInResponseI":[]},"JSArray":{"List":["1"],"JavaScriptObject":[],"EfficientLengthIterable":["1"],"JSObject":[],"Iterable":["1"],"JSIndexable":["1"],"Iterable.E":"1"},"JSUnmodifiableArray":{"JSArray":["1"],"List":["1"],"JavaScriptObject":[],"EfficientLengthIterable":["1"],"JSObject":[],"Iterable":["1"],"JSIndexable":["1"],"Iterable.E":"1"},"JSNumber":{"double":[],"num":[],"Comparable":["num"]},"JSInt":{"double":[],"int":[],"num":[],"Comparable":["num"],"TrustedGetRuntimeType":[]},"JSNumNotInt":{"double":[],"num":[],"Comparable":["num"],"TrustedGetRuntimeType":[]},"JSString":{"String":[],"Comparable":["String"],"Pattern":[],"JSIndexable":["@"],"TrustedGetRuntimeType":[]},"_CastIterableBase":{"Iterable":["2"]},"CastIterable":{"_CastIterableBase":["1","2"],"Iterable":["2"],"Iterable.E":"2"},"_EfficientLengthCastIterable":{"CastIterable":["1","2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"_CastListBase":{"ListBase":["2"],"List":["2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"]},"CastList":{"_CastListBase":["1","2"],"ListBase":["2"],"List":["2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"ListBase.E":"2","Iterable.E":"2"},"CastSet":{"Set":["2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"CastMap":{"MapBase":["3","4"],"Map":["3","4"],"MapBase.V":"4","MapBase.K":"3"},"CastQueue":{"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"LateError":{"Error":[]},"CodeUnits":{"ListBase":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListBase.E":"int","Iterable.E":"int"},"EfficientLengthIterable":{"Iterable":["1"]},"ListIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"SubListIterable":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","ListIterable.E":"1"},"MappedIterable":{"Iterable":["2"],"Iterable.E":"2"},"EfficientLengthMappedIterable":{"MappedIterable":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"MappedListIterable":{"ListIterable":["2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2","ListIterable.E":"2"},"WhereIterable":{"Iterable":["1"],"Iterable.E":"1"},"ExpandIterable":{"Iterable":["2"],"Iterable.E":"2"},"TakeIterable":{"Iterable":["1"],"Iterable.E":"1"},"EfficientLengthTakeIterable":{"TakeIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"SkipIterable":{"Iterable":["1"],"Iterable.E":"1"},"EfficientLengthSkipIterable":{"SkipIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"SkipWhileIterable":{"Iterable":["1"],"Iterable.E":"1"},"EmptyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"FollowedByIterable":{"Iterable":["1"],"Iterable.E":"1"},"EfficientLengthFollowedByIterable":{"FollowedByIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"WhereTypeIterable":{"Iterable":["1"],"Iterable.E":"1"},"UnmodifiableListBase":{"ListBase":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_ListIndicesIterable":{"ListIterable":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"Iterable.E":"int","ListIterable.E":"int"},"ListMapView":{"MapBase":["int","1"],"_UnmodifiableMapMixin":["int","1"],"Map":["int","1"],"MapBase.V":"1","MapBase.K":"int"},"ReversedListIterable":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","ListIterable.E":"1"},"Symbol":{"Symbol0":[]},"ConstantMapView":{"UnmodifiableMapView":["1","2"],"MapView":["1","2"],"_UnmodifiableMapMixin":["1","2"],"Map":["1","2"]},"ConstantMap":{"Map":["1","2"]},"ConstantStringMap":{"ConstantMap":["1","2"],"Map":["1","2"]},"_KeysOrValues":{"Iterable":["1"],"Iterable.E":"1"},"GeneralConstantMap":{"ConstantMap":["1","2"],"Map":["1","2"]},"ConstantSet":{"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"ConstantStringSet":{"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","SetBase.E":"1"},"GeneralConstantSet":{"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","SetBase.E":"1"},"Instantiation":{"Function":[]},"Instantiation1":{"Function":[]},"NullError":{"TypeError":[],"Error":[]},"JsNoSuchMethodError":{"Error":[]},"UnknownJsTypeError":{"Error":[]},"NullThrownFromJavaScriptException":{"Exception":[]},"_StackTrace":{"StackTrace":[]},"Closure":{"Function":[]},"Closure0Args":{"Function":[]},"Closure2Args":{"Function":[]},"TearOffClosure":{"Function":[]},"StaticClosure":{"Function":[]},"BoundClosure":{"Function":[]},"_CyclicInitializationError":{"Error":[]},"RuntimeError":{"Error":[]},"JsLinkedHashMap":{"MapBase":["1","2"],"Map":["1","2"],"MapBase.V":"2","MapBase.K":"1"},"LinkedHashMapKeyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"JsIdentityLinkedHashMap":{"JsLinkedHashMap":["1","2"],"MapBase":["1","2"],"Map":["1","2"],"MapBase.V":"2","MapBase.K":"1"},"JsConstantLinkedHashMap":{"JsLinkedHashMap":["1","2"],"MapBase":["1","2"],"Map":["1","2"],"MapBase.V":"2","MapBase.K":"1"},"JSSyntaxRegExp":{"RegExp":[],"Pattern":[]},"_MatchImplementation":{"RegExpMatch":[],"Match":[]},"_AllMatchesIterable":{"Iterable":["RegExpMatch"],"Iterable.E":"RegExpMatch"},"StringMatch":{"Match":[]},"_StringAllMatchesIterable":{"Iterable":["Match"],"Iterable.E":"Match"},"NativeByteBuffer":{"JavaScriptObject":[],"JSObject":[],"ByteBuffer":[],"TrustedGetRuntimeType":[]},"NativeTypedData":{"JavaScriptObject":[],"JSObject":[],"TypedData":[]},"NativeByteData":{"JavaScriptObject":[],"ByteData":[],"JSObject":[],"TypedData":[],"TrustedGetRuntimeType":[]},"NativeTypedArray":{"JavaScriptIndexingBehavior":["1"],"JavaScriptObject":[],"JSObject":[],"TypedData":[],"JSIndexable":["1"]},"NativeTypedArrayOfDouble":{"ListBase":["double"],"List":["double"],"JavaScriptIndexingBehavior":["double"],"JavaScriptObject":[],"EfficientLengthIterable":["double"],"JSObject":[],"TypedData":[],"JSIndexable":["double"],"Iterable":["double"]},"NativeTypedArrayOfInt":{"ListBase":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"]},"NativeFloat32List":{"NativeTypedArrayOfDouble":[],"ListBase":["double"],"Float32List":[],"List":["double"],"JavaScriptIndexingBehavior":["double"],"JavaScriptObject":[],"EfficientLengthIterable":["double"],"JSObject":[],"TypedData":[],"JSIndexable":["double"],"Iterable":["double"],"TrustedGetRuntimeType":[],"ListBase.E":"double","Iterable.E":"double"},"NativeFloat64List":{"NativeTypedArrayOfDouble":[],"ListBase":["double"],"Float64List":[],"List":["double"],"JavaScriptIndexingBehavior":["double"],"JavaScriptObject":[],"EfficientLengthIterable":["double"],"JSObject":[],"TypedData":[],"JSIndexable":["double"],"Iterable":["double"],"TrustedGetRuntimeType":[],"ListBase.E":"double","Iterable.E":"double"},"NativeInt16List":{"NativeTypedArrayOfInt":[],"ListBase":["int"],"Int16List":[],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int"},"NativeInt32List":{"NativeTypedArrayOfInt":[],"ListBase":["int"],"Int32List":[],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int"},"NativeInt8List":{"NativeTypedArrayOfInt":[],"ListBase":["int"],"Int8List":[],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int"},"NativeUint16List":{"NativeTypedArrayOfInt":[],"ListBase":["int"],"Uint16List":[],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int"},"NativeUint32List":{"NativeTypedArrayOfInt":[],"ListBase":["int"],"Uint32List":[],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int"},"NativeUint8ClampedList":{"NativeTypedArrayOfInt":[],"ListBase":["int"],"Uint8ClampedList":[],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int"},"NativeUint8List":{"NativeTypedArrayOfInt":[],"ListBase":["int"],"Uint8List":[],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int"},"_Type":{"Type":[]},"_Error":{"Error":[]},"_TypeError":{"TypeError":[],"Error":[]},"_Future":{"Future":["1"]},"MultiStreamController":{"EventSink":["1"]},"_BufferingStreamSubscription":{"_BufferingStreamSubscription.T":"1"},"_HandlerEventSink":{"EventSink":["1"]},"_TimerImpl":{"Timer":[]},"_AsyncAwaitCompleter":{"Completer":["1"]},"_SyncStarIterable":{"Iterable":["1"],"Iterable.E":"1"},"AsyncError":{"Error":[]},"_BroadcastStream":{"_ControllerStream":["1"],"_StreamImpl":["1"],"Stream":["1"],"Stream.T":"1"},"_BroadcastSubscription":{"_ControllerSubscription":["1"],"_BufferingStreamSubscription":["1"],"_BufferingStreamSubscription.T":"1"},"_BroadcastStreamController":{"EventSink":["1"]},"_SyncBroadcastStreamController":{"_BroadcastStreamController":["1"],"EventSink":["1"]},"_AsyncBroadcastStreamController":{"_BroadcastStreamController":["1"],"EventSink":["1"]},"TimeoutException":{"Exception":[]},"_Completer":{"Completer":["1"]},"_AsyncCompleter":{"_Completer":["1"],"Completer":["1"]},"StreamView":{"Stream":["1"]},"_StreamController":{"EventSink":["1"]},"_AsyncStreamController":{"_AsyncStreamControllerDispatch":["1"],"_StreamController":["1"],"EventSink":["1"]},"_SyncStreamController":{"_StreamController":["1"],"EventSink":["1"]},"_ControllerStream":{"_StreamImpl":["1"],"Stream":["1"],"Stream.T":"1"},"_ControllerSubscription":{"_BufferingStreamSubscription":["1"],"_BufferingStreamSubscription.T":"1"},"_StreamControllerAddStreamState":{"_AddStreamState":["1"]},"_StreamImpl":{"Stream":["1"]},"_EmptyStream":{"Stream":["1"],"Stream.T":"1"},"_MultiStream":{"Stream":["1"],"Stream.T":"1"},"_MultiStreamController":{"_AsyncStreamController":["1"],"_AsyncStreamControllerDispatch":["1"],"_StreamController":["1"],"MultiStreamController":["1"],"EventSink":["1"]},"_ForwardingStream":{"Stream":["2"]},"_ForwardingStreamSubscription":{"_BufferingStreamSubscription":["2"],"_BufferingStreamSubscription.T":"2"},"_WhereStream":{"_ForwardingStream":["1","1"],"Stream":["1"],"Stream.T":"1","_ForwardingStream.S":"1","_ForwardingStream.T":"1"},"_MapStream":{"_ForwardingStream":["1","2"],"Stream":["2"],"Stream.T":"2","_ForwardingStream.S":"1","_ForwardingStream.T":"2"},"_EventSinkWrapper":{"EventSink":["1"]},"_SinkTransformerStreamSubscription":{"_BufferingStreamSubscription":["2"],"_BufferingStreamSubscription.T":"2"},"_BoundSinkStream":{"Stream":["2"],"Stream.T":"2"},"_StreamHandlerTransformer":{"_StreamSinkTransformer":["1","2"]},"_HashMap":{"MapBase":["1","2"],"Map":["1","2"],"MapBase.V":"2","MapBase.K":"1"},"_IdentityHashMap":{"_HashMap":["1","2"],"MapBase":["1","2"],"Map":["1","2"],"MapBase.V":"2","MapBase.K":"1"},"_CustomHashMap":{"_HashMap":["1","2"],"MapBase":["1","2"],"Map":["1","2"],"MapBase.V":"2","MapBase.K":"1"},"_HashMapKeyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"_LinkedCustomHashMap":{"JsLinkedHashMap":["1","2"],"MapBase":["1","2"],"Map":["1","2"],"MapBase.V":"2","MapBase.K":"1"},"_HashSet":{"_SetBase":["1"],"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","SetBase.E":"1"},"_LinkedHashSet":{"_SetBase":["1"],"SetBase":["1"],"LinkedHashSet":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","SetBase.E":"1"},"UnmodifiableListView":{"ListBase":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListBase.E":"1","Iterable.E":"1"},"LinkedList":{"Iterable":["1"],"Iterable.E":"1"},"ListBase":{"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"MapBase":{"Map":["1","2"]},"UnmodifiableMapBase":{"MapBase":["1","2"],"_UnmodifiableMapMixin":["1","2"],"Map":["1","2"]},"_MapBaseValueIterable":{"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"MapView":{"Map":["1","2"]},"UnmodifiableMapView":{"MapView":["1","2"],"_UnmodifiableMapMixin":["1","2"],"Map":["1","2"]},"_DoubleLinkedQueueElement":{"_DoubleLinkedQueueEntry":["1"],"DoubleLinkedQueueEntry":["1"]},"_DoubleLinkedQueueSentinel":{"_DoubleLinkedQueueEntry":["1"]},"DoubleLinkedQueue":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"ListQueue":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","ListIterable.E":"1"},"SetBase":{"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_SetBase":{"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"UnmodifiableSetView":{"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","SetBase.E":"1"},"SplayTreeMap":{"MapBase":["1","2"],"Map":["1","2"],"MapBase.V":"2","MapBase.K":"1"},"_SplayTreeKeyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"_SplayTreeValueIterable":{"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"_SplayTreeMapEntryIterable":{"EfficientLengthIterable":["MapEntry<1,2>"],"Iterable":["MapEntry<1,2>"],"Iterable.E":"MapEntry<1,2>"},"_SplayTreeKeyIterator":{"_SplayTreeIterator":["1","2","1"],"_SplayTreeIterator.T":"1"},"_SplayTreeValueIterator":{"_SplayTreeIterator":["1","_SplayTreeMapNode<1,2>","2"],"_SplayTreeIterator.T":"2"},"_SplayTreeMapEntryIterator":{"_SplayTreeIterator":["1","_SplayTreeMapNode<1,2>","MapEntry<1,2>"],"_SplayTreeIterator.T":"MapEntry<1,2>"},"SplayTreeSet":{"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","SetBase.E":"1"},"_JsonMap":{"MapBase":["String","@"],"Map":["String","@"],"MapBase.V":"@","MapBase.K":"String"},"_JsonMapKeyIterable":{"ListIterable":["String"],"EfficientLengthIterable":["String"],"Iterable":["String"],"Iterable.E":"String","ListIterable.E":"String"},"_JsonDecoderSink":{"StringConversionSink":[]},"AsciiCodec":{"Encoding":[]},"_UnicodeSubsetEncoder":{"Converter":["String","List"]},"AsciiEncoder":{"Converter":["String","List"],"Converter.S":"String","Converter.T":"List"},"_UnicodeSubsetEncoderSink":{"StringConversionSink":[]},"_UnicodeSubsetDecoder":{"Converter":["List","String"]},"AsciiDecoder":{"Converter":["List","String"],"Converter.S":"List","Converter.T":"String"},"Base64Encoder":{"Converter":["List","String"],"Converter.S":"List","Converter.T":"String"},"Base64Decoder":{"Converter":["String","List"],"Converter.S":"String","Converter.T":"List"},"_Base64DecoderSink":{"StringConversionSink":[]},"_FusedConverter":{"Converter":["1","3"],"Converter.S":"1","Converter.T":"3"},"HtmlEscape":{"Converter":["String","String"],"Converter.S":"String","Converter.T":"String"},"_HtmlEscapeSink":{"StringConversionSink":[]},"JsonUnsupportedObjectError":{"Error":[]},"JsonCyclicError":{"Error":[]},"JsonEncoder":{"Converter":["Object?","String"],"Converter.S":"Object?","Converter.T":"String"},"JsonDecoder":{"Converter":["String","Object?"],"Converter.S":"String","Converter.T":"Object?"},"Latin1Codec":{"Encoding":[]},"Latin1Encoder":{"Converter":["String","List"],"Converter.S":"String","Converter.T":"List"},"Latin1Decoder":{"Converter":["List","String"],"Converter.S":"List","Converter.T":"String"},"_StringSinkConversionSink":{"StringConversionSink":[]},"_StringAdapterSink":{"StringConversionSink":[]},"Utf8Codec":{"Encoding":[]},"Utf8Encoder":{"Converter":["String","List"],"Converter.S":"String","Converter.T":"List"},"_Utf8EncoderSink":{"StringConversionSink":[]},"Utf8Decoder":{"Converter":["List","String"],"Converter.S":"List","Converter.T":"String"},"BigInt":{"Comparable":["BigInt"]},"DateTime":{"Comparable":["DateTime"]},"double":{"num":[],"Comparable":["num"]},"Duration":{"Comparable":["Duration"]},"int":{"num":[],"Comparable":["num"]},"List":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"num":{"Comparable":["num"]},"RegExp":{"Pattern":[]},"RegExpMatch":{"Match":[]},"Set":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"String":{"Comparable":["String"],"Pattern":[]},"_BigIntImpl":{"Comparable":["BigInt"]},"AssertionError":{"Error":[]},"TypeError":{"Error":[]},"ArgumentError":{"Error":[]},"RangeError":{"Error":[]},"IndexError":{"Error":[]},"NoSuchMethodError":{"Error":[]},"UnsupportedError":{"Error":[]},"UnimplementedError":{"Error":[]},"StateError":{"Error":[]},"ConcurrentModificationError":{"Error":[]},"OutOfMemoryError":{"Error":[]},"StackOverflowError":{"Error":[]},"_Exception":{"Exception":[]},"FormatException":{"Exception":[]},"IntegerDivisionByZeroException":{"Exception":[],"Error":[]},"_GeneratorIterable":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","ListIterable.E":"1"},"_StringStackTrace":{"StackTrace":[]},"Runes":{"Iterable":["int"],"Iterable.E":"int"},"_Uri":{"Uri":[]},"_SimpleUri":{"Uri":[]},"_DataUri":{"Uri":[]},"HtmlElement":{"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"BeforeUnloadEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"Blob":{"JavaScriptObject":[],"JSObject":[]},"CssRule":{"JavaScriptObject":[],"JSObject":[]},"Element2":{"Node1":[],"JavaScriptObject":[],"JSObject":[]},"Event":{"JavaScriptObject":[],"JSObject":[]},"File":{"Blob":[],"JavaScriptObject":[],"JSObject":[]},"Gamepad":{"JavaScriptObject":[],"JSObject":[]},"HttpRequest":{"JavaScriptObject":[],"JSObject":[]},"IFrameElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"MimeType":{"JavaScriptObject":[],"JSObject":[]},"MouseEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"Node1":{"JavaScriptObject":[],"JSObject":[]},"Plugin":{"JavaScriptObject":[],"JSObject":[]},"ProgressEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"SourceBuffer":{"JavaScriptObject":[],"JSObject":[]},"SpeechGrammar":{"JavaScriptObject":[],"JSObject":[]},"SpeechRecognitionResult":{"JavaScriptObject":[],"JSObject":[]},"StyleSheet":{"JavaScriptObject":[],"JSObject":[]},"TextTrack":{"JavaScriptObject":[],"JSObject":[]},"TextTrackCue":{"JavaScriptObject":[],"JSObject":[]},"Touch":{"JavaScriptObject":[],"JSObject":[]},"AccessibleNodeList":{"JavaScriptObject":[],"JSObject":[]},"AnchorElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"Animation":{"JavaScriptObject":[],"JSObject":[]},"ApplicationCacheErrorEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"AreaElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"BackgroundFetchEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"BackgroundFetchRegistration":{"JavaScriptObject":[],"JSObject":[]},"BluetoothRemoteGattDescriptor":{"JavaScriptObject":[],"JSObject":[]},"ButtonElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"CanvasElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"CanvasRenderingContext2D":{"JavaScriptObject":[],"JSObject":[]},"CharacterData":{"Node1":[],"JavaScriptObject":[],"JSObject":[]},"Client":{"JavaScriptObject":[],"JSObject":[]},"Credential":{"JavaScriptObject":[],"JSObject":[]},"CssKeywordValue":{"JavaScriptObject":[],"JSObject":[]},"CssNumericValue":{"JavaScriptObject":[],"JSObject":[]},"CssPerspective":{"JavaScriptObject":[],"JSObject":[]},"CssStyleDeclaration":{"JavaScriptObject":[],"JSObject":[]},"CssStyleValue":{"JavaScriptObject":[],"JSObject":[]},"CssTransformComponent":{"JavaScriptObject":[],"JSObject":[]},"CssTransformValue":{"JavaScriptObject":[],"JSObject":[]},"CssUnitValue":{"JavaScriptObject":[],"JSObject":[]},"CssUnparsedValue":{"JavaScriptObject":[],"JSObject":[]},"DataElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"DataTransferItemList":{"JavaScriptObject":[],"JSObject":[]},"DeprecationReport":{"JavaScriptObject":[],"JSObject":[]},"Document1":{"Node1":[],"JavaScriptObject":[],"JSObject":[]},"DomError":{"JavaScriptObject":[],"JSObject":[]},"DomException0":{"JavaScriptObject":[],"JSObject":[]},"DomRectList":{"ListBase":["Rectangle"],"ImmutableListMixin":["Rectangle"],"List":["Rectangle"],"JavaScriptIndexingBehavior":["Rectangle"],"JavaScriptObject":[],"EfficientLengthIterable":["Rectangle"],"JSObject":[],"Iterable":["Rectangle"],"JSIndexable":["Rectangle"],"ImmutableListMixin.E":"Rectangle","ListBase.E":"Rectangle","Iterable.E":"Rectangle"},"DomRectReadOnly0":{"JavaScriptObject":[],"Rectangle":["num"],"JSObject":[]},"DomStringList":{"ListBase":["String"],"ImmutableListMixin":["String"],"List":["String"],"JavaScriptIndexingBehavior":["String"],"JavaScriptObject":[],"EfficientLengthIterable":["String"],"JSObject":[],"Iterable":["String"],"JSIndexable":["String"],"ImmutableListMixin.E":"String","ListBase.E":"String","Iterable.E":"String"},"DomTokenList0":{"JavaScriptObject":[],"JSObject":[]},"_ChildrenElementList":{"ListBase":["Element2"],"List":["Element2"],"EfficientLengthIterable":["Element2"],"Iterable":["Element2"],"ListBase.E":"Element2","Iterable.E":"Element2"},"ErrorEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"EventTarget":{"JavaScriptObject":[],"JSObject":[]},"ExtendableEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"FileList":{"ListBase":["File"],"ImmutableListMixin":["File"],"List":["File"],"JavaScriptIndexingBehavior":["File"],"JavaScriptObject":[],"EfficientLengthIterable":["File"],"JSObject":[],"Iterable":["File"],"JSIndexable":["File"],"ImmutableListMixin.E":"File","ListBase.E":"File","Iterable.E":"File"},"FileReader":{"JavaScriptObject":[],"JSObject":[]},"FileWriter":{"JavaScriptObject":[],"JSObject":[]},"FontFaceSet":{"JavaScriptObject":[],"JSObject":[]},"FormElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"GamepadButton":{"JavaScriptObject":[],"JSObject":[]},"History":{"JavaScriptObject":[],"JSObject":[]},"HtmlCollection":{"ListBase":["Node1"],"ImmutableListMixin":["Node1"],"List":["Node1"],"JavaScriptIndexingBehavior":["Node1"],"JavaScriptObject":[],"EfficientLengthIterable":["Node1"],"JSObject":[],"Iterable":["Node1"],"JSIndexable":["Node1"],"ImmutableListMixin.E":"Node1","ListBase.E":"Node1","Iterable.E":"Node1"},"HtmlDocument":{"Document1":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"HttpRequestEventTarget":{"JavaScriptObject":[],"JSObject":[]},"ImageData":{"JavaScriptObject":[],"JSObject":[]},"InputElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"InterventionReport":{"JavaScriptObject":[],"JSObject":[]},"LIElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"Location":{"JavaScriptObject":[],"JSObject":[]},"MediaError":{"JavaScriptObject":[],"JSObject":[]},"MediaKeyMessageEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"MediaList":{"JavaScriptObject":[],"JSObject":[]},"MediaQueryList":{"JavaScriptObject":[],"JSObject":[]},"MediaStream":{"JavaScriptObject":[],"JSObject":[]},"MediaStreamTrack":{"JavaScriptObject":[],"JSObject":[]},"MessagePort":{"JavaScriptObject":[],"JSObject":[]},"MeterElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"MidiInputMap":{"JavaScriptObject":[],"MapBase":["String","@"],"JSObject":[],"Map":["String","@"],"MapBase.V":"@","MapBase.K":"String"},"MidiOutputMap":{"JavaScriptObject":[],"MapBase":["String","@"],"JSObject":[],"Map":["String","@"],"MapBase.V":"@","MapBase.K":"String"},"MidiPort":{"JavaScriptObject":[],"JSObject":[]},"MimeTypeArray":{"ListBase":["MimeType"],"ImmutableListMixin":["MimeType"],"List":["MimeType"],"JavaScriptIndexingBehavior":["MimeType"],"JavaScriptObject":[],"EfficientLengthIterable":["MimeType"],"JSObject":[],"Iterable":["MimeType"],"JSIndexable":["MimeType"],"ImmutableListMixin.E":"MimeType","ListBase.E":"MimeType","Iterable.E":"MimeType"},"Navigator0":{"JavaScriptObject":[],"JSObject":[]},"NavigatorConcurrentHardware":{"JavaScriptObject":[],"JSObject":[]},"NavigatorUserMediaError":{"JavaScriptObject":[],"JSObject":[]},"_ChildNodeListLazy":{"ListBase":["Node1"],"List":["Node1"],"EfficientLengthIterable":["Node1"],"Iterable":["Node1"],"ListBase.E":"Node1","Iterable.E":"Node1"},"NodeList0":{"ListBase":["Node1"],"ImmutableListMixin":["Node1"],"List":["Node1"],"JavaScriptIndexingBehavior":["Node1"],"JavaScriptObject":[],"EfficientLengthIterable":["Node1"],"JSObject":[],"Iterable":["Node1"],"JSIndexable":["Node1"],"ImmutableListMixin.E":"Node1","ListBase.E":"Node1","Iterable.E":"Node1"},"Notification":{"JavaScriptObject":[],"JSObject":[]},"OptionElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"OutputElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"OverconstrainedError":{"JavaScriptObject":[],"JSObject":[]},"ParamElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"PaymentRequest":{"JavaScriptObject":[],"JSObject":[]},"PluginArray":{"ListBase":["Plugin"],"ImmutableListMixin":["Plugin"],"List":["Plugin"],"JavaScriptIndexingBehavior":["Plugin"],"JavaScriptObject":[],"EfficientLengthIterable":["Plugin"],"JSObject":[],"Iterable":["Plugin"],"JSIndexable":["Plugin"],"ImmutableListMixin.E":"Plugin","ListBase.E":"Plugin","Iterable.E":"Plugin"},"PositionError":{"JavaScriptObject":[],"JSObject":[]},"PresentationAvailability":{"JavaScriptObject":[],"JSObject":[]},"PresentationConnection":{"JavaScriptObject":[],"JSObject":[]},"PresentationConnectionCloseEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"ProgressElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"RelatedApplication":{"JavaScriptObject":[],"JSObject":[]},"ReportBody":{"JavaScriptObject":[],"JSObject":[]},"RtcDataChannel":{"JavaScriptObject":[],"JSObject":[]},"RtcLegacyStatsReport":{"JavaScriptObject":[],"JSObject":[]},"RtcStatsReport":{"JavaScriptObject":[],"MapBase":["String","@"],"JSObject":[],"Map":["String","@"],"MapBase.V":"@","MapBase.K":"String"},"SelectElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"SourceBufferList":{"ListBase":["SourceBuffer"],"ImmutableListMixin":["SourceBuffer"],"List":["SourceBuffer"],"JavaScriptIndexingBehavior":["SourceBuffer"],"JavaScriptObject":[],"EfficientLengthIterable":["SourceBuffer"],"JSObject":[],"Iterable":["SourceBuffer"],"JSIndexable":["SourceBuffer"],"ImmutableListMixin.E":"SourceBuffer","ListBase.E":"SourceBuffer","Iterable.E":"SourceBuffer"},"SpeechGrammarList":{"ListBase":["SpeechGrammar"],"ImmutableListMixin":["SpeechGrammar"],"List":["SpeechGrammar"],"JavaScriptIndexingBehavior":["SpeechGrammar"],"JavaScriptObject":[],"EfficientLengthIterable":["SpeechGrammar"],"JSObject":[],"Iterable":["SpeechGrammar"],"JSIndexable":["SpeechGrammar"],"ImmutableListMixin.E":"SpeechGrammar","ListBase.E":"SpeechGrammar","Iterable.E":"SpeechGrammar"},"SpeechRecognitionError":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"Storage":{"JavaScriptObject":[],"MapBase":["String","String"],"JSObject":[],"Map":["String","String"],"MapBase.V":"String","MapBase.K":"String"},"TextAreaElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"TextTrackCueList":{"ListBase":["TextTrackCue"],"ImmutableListMixin":["TextTrackCue"],"List":["TextTrackCue"],"JavaScriptIndexingBehavior":["TextTrackCue"],"JavaScriptObject":[],"EfficientLengthIterable":["TextTrackCue"],"JSObject":[],"Iterable":["TextTrackCue"],"JSIndexable":["TextTrackCue"],"ImmutableListMixin.E":"TextTrackCue","ListBase.E":"TextTrackCue","Iterable.E":"TextTrackCue"},"TextTrackList":{"ListBase":["TextTrack"],"ImmutableListMixin":["TextTrack"],"List":["TextTrack"],"JavaScriptIndexingBehavior":["TextTrack"],"JavaScriptObject":[],"EfficientLengthIterable":["TextTrack"],"JSObject":[],"Iterable":["TextTrack"],"JSIndexable":["TextTrack"],"ImmutableListMixin.E":"TextTrack","ListBase.E":"TextTrack","Iterable.E":"TextTrack"},"TimeRanges":{"JavaScriptObject":[],"JSObject":[]},"TouchList":{"ListBase":["Touch"],"ImmutableListMixin":["Touch"],"List":["Touch"],"JavaScriptIndexingBehavior":["Touch"],"JavaScriptObject":[],"EfficientLengthIterable":["Touch"],"JSObject":[],"Iterable":["Touch"],"JSIndexable":["Touch"],"ImmutableListMixin.E":"Touch","ListBase.E":"Touch","Iterable.E":"Touch"},"TrackDefaultList":{"JavaScriptObject":[],"JSObject":[]},"UIEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"Url":{"JavaScriptObject":[],"JSObject":[]},"VideoTrack":{"JavaScriptObject":[],"JSObject":[]},"VideoTrackList":{"JavaScriptObject":[],"JSObject":[]},"VttRegion":{"JavaScriptObject":[],"JSObject":[]},"Window":{"JavaScriptObject":[],"JSObject":[]},"WorkerGlobalScope":{"JavaScriptObject":[],"JSObject":[]},"_Attr":{"Node1":[],"JavaScriptObject":[],"JSObject":[]},"_CssRuleList":{"ListBase":["CssRule"],"ImmutableListMixin":["CssRule"],"List":["CssRule"],"JavaScriptIndexingBehavior":["CssRule"],"JavaScriptObject":[],"EfficientLengthIterable":["CssRule"],"JSObject":[],"Iterable":["CssRule"],"JSIndexable":["CssRule"],"ImmutableListMixin.E":"CssRule","ListBase.E":"CssRule","Iterable.E":"CssRule"},"_DomRect":{"JavaScriptObject":[],"Rectangle":["num"],"JSObject":[]},"_GamepadList":{"ListBase":["Gamepad?"],"ImmutableListMixin":["Gamepad?"],"List":["Gamepad?"],"JavaScriptIndexingBehavior":["Gamepad?"],"JavaScriptObject":[],"EfficientLengthIterable":["Gamepad?"],"JSObject":[],"Iterable":["Gamepad?"],"JSIndexable":["Gamepad?"],"ImmutableListMixin.E":"Gamepad?","ListBase.E":"Gamepad?","Iterable.E":"Gamepad?"},"_NamedNodeMap":{"ListBase":["Node1"],"ImmutableListMixin":["Node1"],"List":["Node1"],"JavaScriptIndexingBehavior":["Node1"],"JavaScriptObject":[],"EfficientLengthIterable":["Node1"],"JSObject":[],"Iterable":["Node1"],"JSIndexable":["Node1"],"ImmutableListMixin.E":"Node1","ListBase.E":"Node1","Iterable.E":"Node1"},"_Report":{"JavaScriptObject":[],"JSObject":[]},"_SpeechRecognitionResultList":{"ListBase":["SpeechRecognitionResult"],"ImmutableListMixin":["SpeechRecognitionResult"],"List":["SpeechRecognitionResult"],"JavaScriptIndexingBehavior":["SpeechRecognitionResult"],"JavaScriptObject":[],"EfficientLengthIterable":["SpeechRecognitionResult"],"JSObject":[],"Iterable":["SpeechRecognitionResult"],"JSIndexable":["SpeechRecognitionResult"],"ImmutableListMixin.E":"SpeechRecognitionResult","ListBase.E":"SpeechRecognitionResult","Iterable.E":"SpeechRecognitionResult"},"_StyleSheetList":{"ListBase":["StyleSheet"],"ImmutableListMixin":["StyleSheet"],"List":["StyleSheet"],"JavaScriptIndexingBehavior":["StyleSheet"],"JavaScriptObject":[],"EfficientLengthIterable":["StyleSheet"],"JSObject":[],"Iterable":["StyleSheet"],"JSIndexable":["StyleSheet"],"ImmutableListMixin.E":"StyleSheet","ListBase.E":"StyleSheet","Iterable.E":"StyleSheet"},"_AttributeMap":{"MapBase":["String","String"],"Map":["String","String"]},"_ElementAttributeMap":{"MapBase":["String","String"],"Map":["String","String"],"MapBase.V":"String","MapBase.K":"String"},"_DataAttributeMap":{"MapBase":["String","String"],"Map":["String","String"],"MapBase.V":"String","MapBase.K":"String"},"_EventStream":{"Stream":["1"],"Stream.T":"1"},"_ElementEventStreamImpl":{"_EventStream":["1"],"Stream":["1"],"Stream.T":"1"},"FilteredElementList0":{"ListBase":["Element2"],"List":["Element2"],"EfficientLengthIterable":["Element2"],"Iterable":["Element2"],"ListBase.E":"Element2","Iterable.E":"Element2"},"Transaction":{"JavaScriptObject":[],"JSObject":[]},"Cursor":{"JavaScriptObject":[],"JSObject":[]},"CursorWithValue":{"JavaScriptObject":[],"JSObject":[]},"Database":{"JavaScriptObject":[],"JSObject":[]},"KeyRange":{"JavaScriptObject":[],"JSObject":[]},"ObjectStore":{"JavaScriptObject":[],"JSObject":[]},"Observation":{"JavaScriptObject":[],"JSObject":[]},"ObserverChanges":{"JavaScriptObject":[],"JSObject":[]},"Request0":{"JavaScriptObject":[],"JSObject":[]},"Directory":{"FileSystemEntity":[]},"File0":{"FileSystemEntity":[]},"_RandomAccessFile":{"RandomAccessFile":[]},"OSError":{"Exception":[]},"_Directory":{"Directory":[],"FileSystemEntity":[]},"FileSystemException":{"Exception":[]},"PathAccessException":{"Exception":[]},"PathExistsException":{"Exception":[]},"PathNotFoundException":{"Exception":[]},"_FileStream":{"Stream":["List"],"Stream.T":"List"},"_File":{"File0":[],"FileSystemEntity":[]},"SystemEncoding":{"Encoding":[]},"JsArray":{"ListBase":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListBase.E":"1","Iterable.E":"1"},"NullRejectionException":{"Exception":[]},"Rectangle":{"_RectangleBase":["1"]},"Length":{"JavaScriptObject":[],"JSObject":[]},"Number":{"JavaScriptObject":[],"JSObject":[]},"Transform0":{"JavaScriptObject":[],"JSObject":[]},"Angle":{"JavaScriptObject":[],"JSObject":[]},"LengthList":{"ListBase":["Length"],"ImmutableListMixin":["Length"],"List":["Length"],"JavaScriptObject":[],"EfficientLengthIterable":["Length"],"JSObject":[],"Iterable":["Length"],"ImmutableListMixin.E":"Length","ListBase.E":"Length","Iterable.E":"Length"},"NumberList":{"ListBase":["Number"],"ImmutableListMixin":["Number"],"List":["Number"],"JavaScriptObject":[],"EfficientLengthIterable":["Number"],"JSObject":[],"Iterable":["Number"],"ImmutableListMixin.E":"Number","ListBase.E":"Number","Iterable.E":"Number"},"PointList":{"JavaScriptObject":[],"JSObject":[]},"StringList":{"ListBase":["String"],"ImmutableListMixin":["String"],"List":["String"],"JavaScriptObject":[],"EfficientLengthIterable":["String"],"JSObject":[],"Iterable":["String"],"ImmutableListMixin.E":"String","ListBase.E":"String","Iterable.E":"String"},"SvgElement":{"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"TransformList":{"ListBase":["Transform0"],"ImmutableListMixin":["Transform0"],"List":["Transform0"],"JavaScriptObject":[],"EfficientLengthIterable":["Transform0"],"JSObject":[],"Iterable":["Transform0"],"ImmutableListMixin.E":"Transform0","ListBase.E":"Transform0","Iterable.E":"Transform0"},"ByteData":{"TypedData":[]},"Int8List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Uint8List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Uint8ClampedList":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Int16List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Uint16List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Int32List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Uint32List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Float32List":{"List":["double"],"EfficientLengthIterable":["double"],"Iterable":["double"],"TypedData":[]},"Float64List":{"List":["double"],"EfficientLengthIterable":["double"],"Iterable":["double"],"TypedData":[]},"_UnmodifiableInt64ListView":{"ListBase.E":"int","Iterable.E":"int"},"SingletonFlutterWindow":{"FlutterView":[]},"AudioBuffer":{"JavaScriptObject":[],"JSObject":[]},"AudioParam":{"JavaScriptObject":[],"JSObject":[]},"AudioParamMap":{"JavaScriptObject":[],"MapBase":["String","@"],"JSObject":[],"Map":["String","@"],"MapBase.V":"@","MapBase.K":"String"},"AudioTrack":{"JavaScriptObject":[],"JSObject":[]},"AudioTrackList":{"JavaScriptObject":[],"JSObject":[]},"BaseAudioContext":{"JavaScriptObject":[],"JSObject":[]},"OfflineAudioContext":{"JavaScriptObject":[],"JSObject":[]},"ArchiveException":{"FormatException":[],"Exception":[]},"InputStream":{"InputStreamBase":[]},"SpanMarker":{"Comparable":["SpanMarker"]},"IncompatibleOverlappingAttributionsException":{"Exception":[]},"NamedAttribution":{"Attribution":[]},"BoardItem":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoardItemState":{"State":["BoardItem"]},"BoardList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoardListState":{"State":["BoardList"]},"BoardView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoardViewState":{"State":["BoardView"]},"CopyOnWriteList":{"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"CopyOnWriteMap":{"Map":["1","2"]},"CopyOnWriteSet":{"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"BuiltList":{"Iterable":["1"]},"_BuiltList":{"BuiltList":["1"],"Iterable":["1"],"Iterable.E":"1"},"_BuiltListMultimap":{"BuiltListMultimap":["1","2"]},"_BuiltMap":{"BuiltMap":["1","2"]},"BuiltSet":{"Iterable":["1"]},"_BuiltSet":{"BuiltSet":["1"],"Iterable":["1"],"Iterable.E":"1"},"_BuiltSetMultimap":{"BuiltSetMultimap":["1","2"]},"BuiltValueNullFieldError":{"Error":[]},"BuiltValueNestedFieldError":{"Error":[]},"DeserializationError":{"Error":[]},"BigIntSerializer":{"PrimitiveSerializer":["BigInt"],"Serializer":["BigInt"]},"BoolSerializer":{"PrimitiveSerializer":["bool"],"Serializer":["bool"]},"BuiltListMultimapSerializer":{"StructuredSerializer":["BuiltListMultimap<@,@>"],"Serializer":["BuiltListMultimap<@,@>"]},"BuiltListSerializer":{"StructuredSerializer":["BuiltList<@>"],"Serializer":["BuiltList<@>"]},"BuiltMapSerializer":{"StructuredSerializer":["BuiltMap<@,@>"],"Serializer":["BuiltMap<@,@>"]},"BuiltSetMultimapSerializer":{"StructuredSerializer":["BuiltSetMultimap<@,@>"],"Serializer":["BuiltSetMultimap<@,@>"]},"BuiltSetSerializer":{"StructuredSerializer":["BuiltSet<@>"],"Serializer":["BuiltSet<@>"]},"DateTimeSerializer":{"PrimitiveSerializer":["DateTime"],"Serializer":["DateTime"]},"DoubleSerializer":{"PrimitiveSerializer":["double"],"Serializer":["double"]},"DurationSerializer":{"PrimitiveSerializer":["Duration"],"Serializer":["Duration"]},"Int32Serializer":{"PrimitiveSerializer":["Int32"],"Serializer":["Int32"]},"Int64Serializer":{"PrimitiveSerializer":["Int64"],"Serializer":["Int64"]},"IntSerializer":{"PrimitiveSerializer":["int"],"Serializer":["int"]},"JsonObjectSerializer":{"PrimitiveSerializer":["JsonObject"],"Serializer":["JsonObject"]},"NullSerializer":{"PrimitiveSerializer":["Null"],"Serializer":["Null"]},"NumSerializer":{"PrimitiveSerializer":["num"],"Serializer":["num"]},"RegExpSerializer":{"PrimitiveSerializer":["RegExp"],"Serializer":["RegExp"]},"StringSerializer":{"PrimitiveSerializer":["String"],"Serializer":["String"]},"Uint8ListSerializer":{"PrimitiveSerializer":["Uint8List"],"Serializer":["Uint8List"]},"UriSerializer":{"PrimitiveSerializer":["Uri"],"Serializer":["Uri"]},"StandardJsonPlugin":{"SerializerPlugin":[]},"StringCharacters":{"Iterable":["String"],"Iterable.E":"String"},"BarChart0":{"CartesianChart":["String"],"BaseChart0":["String"],"BaseChart0.D":"String","CartesianChart.D":"String"},"BarRendererElement":{"BaseBarRendererElement":[]},"AnimatedBar":{"BaseAnimatedBar":["1","BarRendererElement<1>"]},"BarRenderer":{"BaseBarRenderer":["1","BarRendererElement<1>","AnimatedBar<1>"],"BaseCartesianRenderer":["1"],"BaseSeriesRenderer":["1"],"SeriesRenderer":["1"],"LayoutView":[],"BaseBarRenderer.D":"1","BaseBarRenderer.B":"AnimatedBar<1>","BaseBarRenderer.R":"BarRendererElement<1>"},"BaseBarRenderer":{"BaseCartesianRenderer":["1"],"BaseSeriesRenderer":["1"],"SeriesRenderer":["1"],"LayoutView":[]},"_ReversedSeriesIterable":{"Iterable":["1"],"Iterable.E":"1"},"Axis":{"ImmutableAxis":["1"],"LayoutView":[]},"NumericAxis":{"Axis":["num"],"ImmutableAxis":["num"],"LayoutView":[],"Axis.D":"num"},"OrdinalAxis":{"Axis":["String"],"ImmutableAxis":["String"],"LayoutView":[],"Axis.D":"String"},"AxisTicks":{"Tick":["1"],"Comparable":["AxisTicks<1>"]},"GridlineRendererSpec":{"SmallTickRendererSpec":["1"]},"GridlineTickDrawStrategy":{"BaseTickDrawStrategy":["1"]},"SmallTickDrawStrategy":{"BaseTickDrawStrategy":["1"]},"NumericTickProvider":{"BaseTickProvider":["num"],"BaseTickProvider.D":"num"},"OrdinalTickProvider":{"BaseTickProvider":["String"],"BaseTickProvider.D":"String"},"SimpleOrdinalScale":{"OrdinalScale":[]},"DateTimeAxisSpec":{"AxisSpec":["DateTime"]},"NumericAxisSpec":{"AxisSpec":["num"]},"OrdinalAxisSpec":{"AxisSpec":["String"]},"OrdinalTickFormatter":{"SimpleTickFormatterBase":["String"],"SimpleTickFormatterBase.D":"String"},"NumericTickFormatter":{"SimpleTickFormatterBase":["num"],"SimpleTickFormatterBase.D":"num"},"_TimeStepIteratorFactoryImpl":{"Iterable":["DateTime"],"Iterable.E":"DateTime"},"DateTimeAxis":{"Axis":["DateTime"],"ImmutableAxis":["DateTime"],"LayoutView":[],"Axis.D":"DateTime"},"DateTimeScale":{"MutableScale":["DateTime"]},"HourTickFormatter":{"TimeTickFormatter":[]},"TimeRangeTickProvider":{"BaseTickProvider":["DateTime"]},"TimeRangeTickProviderImpl":{"TimeRangeTickProvider":[],"BaseTickProvider":["DateTime"],"BaseTickProvider.D":"DateTime"},"TimeStepIteratorFactory":{"Iterable":["DateTime"]},"TimeTickFormatterImpl":{"TimeTickFormatter":[]},"OrdinalCartesianChart":{"CartesianChart":["String"],"BaseChart0":["String"]},"CartesianChart":{"BaseChart0":["1"]},"BaseCartesianRenderer":{"BaseSeriesRenderer":["1"],"SeriesRenderer":["1"],"LayoutView":[]},"DomainHighlighter0":{"ChartBehavior0":["1"]},"Legend":{"ChartBehavior0":["1"],"LayoutView":[]},"SeriesLegend0":{"Legend":["1"],"ChartBehavior0":["1"],"LayoutView":[]},"LinePointHighlighter0":{"ChartBehavior0":["1"]},"_LinePointLayoutView":{"LayoutView":[]},"SelectNearest0":{"ChartBehavior0":["1"]},"MutableSeries":{"ImmutableSeries":["1"]},"MutableSelectionModel":{"SelectionModel":["1"]},"SeriesRenderer":{"LayoutView":[]},"BaseSeriesRenderer":{"SeriesRenderer":["1"],"LayoutView":[]},"LineRenderer":{"BaseCartesianRenderer":["1"],"BaseSeriesRenderer":["1"],"SeriesRenderer":["1"],"LayoutView":[]},"PointRenderer":{"BaseCartesianRenderer":["1"],"BaseSeriesRenderer":["1"],"SeriesRenderer":["1"],"LayoutView":[]},"TimeSeriesChart":{"CartesianChart":["DateTime"],"BaseChart0":["DateTime"],"BaseChart0.D":"DateTime","CartesianChart.D":"DateTime"},"MaterialBlue":{"Palette":[]},"MaterialRed":{"Palette":[]},"MaterialYellow":{"Palette":[]},"MaterialGreen":{"Palette":[]},"MaterialPurple":{"Palette":[]},"MaterialCyan":{"Palette":[]},"MaterialDeepOrange":{"Palette":[]},"MaterialLime":{"Palette":[]},"MaterialIndigo":{"Palette":[]},"MaterialPink":{"Palette":[]},"MaterialTeal":{"Palette":[]},"AttributeKey":{"TypedKey":["1"]},"BarChart":{"BaseChart":["String"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"BaseChart.D":"String"},"BaseChart":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"BaseChartState":{"State":["BaseChart<1>"]},"DomainHighlighter":{"ChartBehavior":["1"]},"SeriesLegend":{"ChartBehavior":["1"]},"_FlutterSeriesLegend":{"SeriesLegend0":["1"],"Legend":["1"],"ChartBehavior0":["1"],"LayoutView":[],"BuildableBehavior":["ChartBehavior0<@>"]},"LinePointHighlighter":{"ChartBehavior":["1"]},"SelectNearest":{"ChartBehavior":["1"]},"CartesianChart0":{"BaseChart":["1"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ChartContainerRenderObject":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"ChartContainer":{"CustomPaint":[],"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ChartContainerCustomPaint":{"Listenable":[]},"_SymbolCustomPaint":{"Listenable":[]},"TextElement":{"TextElement2":[]},"TimeSeriesChart0":{"BaseChart":["DateTime"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"BaseChart.D":"DateTime"},"CanonicalizedMap":{"Map":["2","3"]},"UnorderedIterableEquality":{"_UnorderedEquality":["1","Iterable<1>"],"_UnorderedEquality.E":"1"},"SetEquality":{"_UnorderedEquality":["1","Set<1>"],"_UnorderedEquality.E":"1"},"Selector":{"TreeNode":[]},"SimpleSelectorSequence":{"TreeNode":[]},"Expression":{"TreeNode":[]},"Identifier":{"TreeNode":[]},"Wildcard":{"TreeNode":[]},"ThisOperator":{"TreeNode":[]},"Negation":{"TreeNode":[]},"SelectorGroup":{"TreeNode":[]},"SimpleSelector":{"TreeNode":[]},"ElementSelector":{"SimpleSelector":[],"TreeNode":[]},"NamespaceSelector":{"SimpleSelector":[],"TreeNode":[]},"AttributeSelector":{"SimpleSelector":[],"TreeNode":[]},"IdSelector":{"SimpleSelector":[],"TreeNode":[]},"ClassSelector":{"SimpleSelector":[],"TreeNode":[]},"PseudoClassSelector":{"SimpleSelector":[],"TreeNode":[]},"PseudoElementSelector":{"SimpleSelector":[],"TreeNode":[]},"PseudoClassFunctionSelector":{"SimpleSelector":[],"TreeNode":[]},"PseudoElementFunctionSelector":{"SimpleSelector":[],"TreeNode":[]},"SelectorExpression":{"TreeNode":[]},"NegationSelector":{"SimpleSelector":[],"TreeNode":[]},"OperatorPlus":{"Expression":[],"TreeNode":[]},"OperatorMinus":{"Expression":[],"TreeNode":[]},"LiteralTerm":{"Expression":[],"TreeNode":[]},"NumberTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"UnitTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"LengthTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"PercentageTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"EmTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"ExTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"AngleTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"TimeTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"FreqTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"FractionTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"ResolutionTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"ChTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"RemTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"LineHeightTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"ViewportTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"DropTarget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropTargetState":{"State":["DropTarget"]},"DropEnterEvent":{"DropEvent":[]},"DropExitEvent":{"DropEvent":[]},"DropUpdateEvent":{"DropEvent":[]},"DropDoneEvent":{"DropEvent":[]},"Int32":{"Comparable":["Object"]},"Int64":{"Comparable":["Object"]},"Animation0":{"Listenable":[]},"AnimationController":{"Animation0":["double"],"Listenable":[]},"_AlwaysCompleteAnimation":{"Animation0":["double"],"Listenable":[]},"_AlwaysDismissedAnimation":{"Animation0":["double"],"Listenable":[]},"AlwaysStoppedAnimation":{"Animation0":["1"],"Listenable":[]},"ProxyAnimation":{"Animation0":["double"],"Listenable":[]},"ReverseAnimation":{"Animation0":["double"],"Listenable":[]},"CurvedAnimation":{"Animation0":["double"],"Listenable":[]},"TrainHoppingAnimation":{"Animation0":["double"],"Listenable":[]},"CompoundAnimation":{"Animation0":["1"],"Listenable":[]},"AnimationMin":{"Animation0":["1"],"Listenable":[]},"_Linear":{"Curve":[]},"SawTooth":{"Curve":[]},"Interval":{"Curve":[]},"Threshold":{"Curve":[]},"Cubic":{"Curve":[]},"ThreePointCubic":{"Curve":[]},"FlippedCurve":{"Curve":[]},"_DecelerateCurve":{"Curve":[]},"ElasticOutCurve":{"Curve":[]},"Tween":{"Animatable":["1"],"Animatable.T":"1","Tween.T":"1"},"ColorTween":{"Tween":["Color?"],"Animatable":["Color?"],"Animatable.T":"Color?","Tween.T":"Color?"},"_AnimatedEvaluation":{"Animation0":["1"],"Listenable":[]},"_ChainedEvaluation":{"Animatable":["1"],"Animatable.T":"1"},"ReverseTween":{"Tween":["1"],"Animatable":["1"],"Animatable.T":"1","Tween.T":"1"},"SizeTween":{"Tween":["Size?"],"Animatable":["Size?"],"Animatable.T":"Size?","Tween.T":"Size?"},"RectTween":{"Tween":["Rect?"],"Animatable":["Rect?"],"Animatable.T":"Rect?","Tween.T":"Rect?"},"IntTween":{"Tween":["int"],"Animatable":["int"],"Animatable.T":"int","Tween.T":"int"},"ConstantTween":{"Tween":["1"],"Animatable":["1"],"Animatable.T":"1","Tween.T":"1"},"CurveTween":{"Animatable":["double"],"Animatable.T":"double"},"TweenSequence":{"Animatable":["1"],"Animatable.T":"1"},"CupertinoActivityIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoActivityIndicatorState":{"State":["CupertinoActivityIndicator"]},"_CupertinoActivityIndicatorPainter":{"Listenable":[]},"CupertinoButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoButtonState":{"State":["CupertinoButton"]},"CupertinoCheckbox":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoCheckboxState":{"State":["CupertinoCheckbox"]},"_CheckboxPainter0":{"Listenable":[]},"CupertinoDynamicColor":{"Color":[]},"_CupertinoDesktopTextSelectionHandleControls":{"TextSelectionHandleControls":[]},"CupertinoDesktopTextSelectionToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CupertinoDesktopTextSelectionToolbarButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoDesktopTextSelectionToolbarButtonState":{"State":["CupertinoDesktopTextSelectionToolbarButton"]},"CupertinoIconThemeData":{"IconThemeData":[]},"_CupertinoLocalizationsDelegate":{"LocalizationsDelegate":["CupertinoLocalizations"],"LocalizationsDelegate.T":"CupertinoLocalizations"},"DefaultCupertinoLocalizations":{"CupertinoLocalizations":[]},"CupertinoTextMagnifier":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoTextMagnifierState":{"State":["CupertinoTextMagnifier"]},"CupertinoMagnifier":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CupertinoRadio":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoRadioState":{"State":["CupertinoRadio<1>"]},"_RadioPainter0":{"Listenable":[]},"_CupertinoBackGestureDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"CupertinoPageTransition":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoBackGestureDetectorState":{"State":["_CupertinoBackGestureDetector<1>"]},"_CupertinoEdgeShadowDecoration":{"Decoration":[]},"_CupertinoEdgeShadowPainter":{"BoxPainter":[]},"CupertinoScrollbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoScrollbarState":{"RawScrollbarState":["CupertinoScrollbar"],"State":["CupertinoScrollbar"]},"CupertinoSwitch":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoSwitchState":{"State":["CupertinoSwitch"]},"_CupertinoSwitchRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderCupertinoSwitch":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_TextSelectionHandlePainter0":{"Listenable":[]},"CupertinoTextSelectionHandleControls":{"TextSelectionHandleControls":[]},"_CupertinoTextSelectionToolbarContent":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"CupertinoTextSelectionToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoTextSelectionToolbarShape":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderCupertinoTextSelectionToolbarShape":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_CupertinoTextSelectionToolbarContentState":{"State":["_CupertinoTextSelectionToolbarContent"]},"_LeftCupertinoChevronPainter":{"Listenable":[]},"_RightCupertinoChevronPainter":{"Listenable":[]},"_CupertinoChevronPainter":{"Listenable":[]},"_CupertinoTextSelectionToolbarItems":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoTextSelectionToolbarItemsElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_RenderCupertinoTextSelectionToolbarItems":{"RenderBoxContainerDefaultsMixin":["RenderBox","ToolbarItemsParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","ToolbarItemsParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"ToolbarItemsParentData","RenderBoxContainerDefaultsMixin.1":"ToolbarItemsParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"_NullElement0":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_NullWidget":{"Widget":[],"DiagnosticableTree":[]},"CupertinoTextSelectionToolbarButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoTextSelectionToolbarButtonState":{"State":["CupertinoTextSelectionToolbarButton"]},"_LiveTextIconPainter":{"Listenable":[]},"_InheritedCupertinoTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"CupertinoTheme":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ToggleablePainter":{"Listenable":[]},"ErrorDescription":{"DiagnosticsProperty":["List"],"DiagnosticsNode":[]},"_ErrorDiagnostic":{"DiagnosticsProperty":["List"],"DiagnosticsNode":[]},"ErrorSummary":{"DiagnosticsProperty":["List"],"DiagnosticsNode":[]},"ErrorHint":{"DiagnosticsProperty":["List"],"DiagnosticsNode":[]},"ErrorSpacer":{"DiagnosticsProperty":["~"],"DiagnosticsNode":[]},"FlutterError":{"DiagnosticableTree":[],"AssertionError":[],"Error":[]},"DiagnosticsStackTrace":{"DiagnosticsNode":[]},"_FlutterErrorDetailsNode":{"DiagnosticableNode":["FlutterErrorDetails"],"DiagnosticsNode":[]},"ChangeNotifier":{"Listenable":[]},"ValueNotifier":{"Listenable":[]},"_MergingListenable":{"Listenable":[]},"DiagnosticsProperty":{"DiagnosticsNode":[]},"DiagnosticableNode":{"DiagnosticsNode":[]},"DiagnosticableTreeNode":{"DiagnosticableNode":["DiagnosticableTree"],"DiagnosticsNode":[]},"DiagnosticsBlock":{"DiagnosticsNode":[]},"LocalKey":{"Key":[]},"ValueKey":{"LocalKey":[],"Key":[],"ValueKey.T":"1"},"UniqueKey":{"LocalKey":[],"Key":[]},"LicenseEntryWithLineBreaks":{"LicenseEntry":[]},"ObserverList":{"Iterable":["1"],"Iterable.E":"1"},"HashedObserverList":{"Iterable":["1"],"Iterable.E":"1"},"SynchronousFuture":{"Future":["1"]},"GestureBinding":{"HitTestTarget":[]},"FlutterErrorDetailsForPointerEventDispatcher":{"FlutterErrorDetails":[]},"_PointerEventDescription":{"PointerEvent":[]},"PointerHoverEvent":{"PointerEvent":[]},"PointerEnterEvent":{"PointerEvent":[]},"PointerExitEvent":{"PointerEvent":[]},"PointerDownEvent":{"PointerEvent":[]},"PointerMoveEvent":{"PointerEvent":[]},"PointerUpEvent":{"PointerEvent":[]},"PointerSignalEvent":{"PointerEvent":[]},"PointerPanZoomStartEvent":{"PointerEvent":[]},"_AbstractPointerEvent":{"PointerEvent":[]},"_TransformedPointerEvent":{"PointerEvent":[]},"PointerAddedEvent":{"PointerEvent":[]},"_TransformedPointerAddedEvent":{"PointerAddedEvent":[],"PointerEvent":[]},"PointerRemovedEvent":{"PointerEvent":[]},"_TransformedPointerRemovedEvent":{"PointerRemovedEvent":[],"PointerEvent":[]},"_TransformedPointerHoverEvent":{"PointerHoverEvent":[],"PointerEvent":[]},"_TransformedPointerEnterEvent":{"PointerEnterEvent":[],"PointerEvent":[]},"_TransformedPointerExitEvent":{"PointerExitEvent":[],"PointerEvent":[]},"_TransformedPointerDownEvent":{"PointerDownEvent":[],"PointerEvent":[]},"_TransformedPointerMoveEvent":{"PointerMoveEvent":[],"PointerEvent":[]},"_TransformedPointerUpEvent":{"PointerUpEvent":[],"PointerEvent":[]},"PointerScrollEvent":{"PointerSignalEvent":[],"PointerEvent":[]},"_TransformedPointerScrollEvent":{"PointerScrollEvent":[],"PointerSignalEvent":[],"PointerEvent":[]},"PointerScrollInertiaCancelEvent":{"PointerSignalEvent":[],"PointerEvent":[]},"_TransformedPointerScrollInertiaCancelEvent":{"PointerScrollInertiaCancelEvent":[],"PointerSignalEvent":[],"PointerEvent":[]},"PointerScaleEvent":{"PointerSignalEvent":[],"PointerEvent":[]},"_TransformedPointerScaleEvent":{"PointerScaleEvent":[],"PointerSignalEvent":[],"PointerEvent":[]},"_TransformedPointerPanZoomStartEvent":{"PointerPanZoomStartEvent":[],"PointerEvent":[]},"PointerPanZoomUpdateEvent":{"PointerEvent":[]},"_TransformedPointerPanZoomUpdateEvent":{"PointerPanZoomUpdateEvent":[],"PointerEvent":[]},"PointerPanZoomEndEvent":{"PointerEvent":[]},"_TransformedPointerPanZoomEndEvent":{"PointerPanZoomEndEvent":[],"PointerEvent":[]},"PointerCancelEvent":{"PointerEvent":[]},"_TransformedPointerCancelEvent":{"PointerCancelEvent":[],"PointerEvent":[]},"ForcePressGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_MatrixTransformPart":{"_TransformPart":[]},"_OffsetTransformPart":{"_TransformPart":[]},"LongPressGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"VerticalDragGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"HorizontalDragGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"PanGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"DragGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"MultiDragGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_ImmediatePointerState":{"MultiDragPointerState":[]},"ImmediateMultiDragGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_DelayedPointerState":{"MultiDragPointerState":[]},"DelayedMultiDragGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"DoubleTapGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"GestureRecognizer":{"DiagnosticableTree":[],"GestureArenaMember":[]},"OneSequenceGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"PrimaryPointerGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"ScaleGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"TapGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"BaseTapGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"TapAndHorizontalDragGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"TapAndPanGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"BaseTapAndDragGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_CombiningGestureArenaMember":{"GestureArenaMember":[]},"_CombiningGestureArenaEntry":{"GestureArenaEntry":[]},"IOSScrollViewFlingVelocityTracker":{"VelocityTracker":[]},"MacOSScrollViewFlingVelocityTracker":{"VelocityTracker":[]},"LicensePage":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PackagesView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PackageLicensePage":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MasterDetailFlow":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MasterDetailFlowState":{"State":["_MasterDetailFlow"]},"_MasterDetailScaffold":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MasterDetailScaffoldState":{"State":["_MasterDetailScaffold"]},"_LicensePageState":{"State":["LicensePage"]},"_AboutProgram":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PackagesViewState":{"State":["_PackagesView"]},"_PackageListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PackageLicensePageState":{"State":["_PackageLicensePage"]},"_PackageLicensePageTitle":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MasterPage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DetailView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ActionButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ActionIcon":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BackButtonIcon":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BackButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerButtonIcon":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EndDrawerButtonIcon":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EndDrawerButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ActionIconTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"AdaptiveTextSelectionToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialApp":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialAppState":{"State":["MaterialApp"]},"AppBar":{"StatefulWidget":[],"PreferredSizeWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverAppBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PreferredAppBarSize":{"Size":[]},"_AppBarState":{"State":["AppBar"]},"_SliverAppBarState":{"State":["SliverAppBar"]},"_AppBarTitleBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderAppBarTitleBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"MaterialRectArcTween":{"Tween":["Rect?"],"Animatable":["Rect?"],"Animatable.T":"Rect?","Tween.T":"Rect?"},"MaterialPointArcTween":{"Tween":["Offset"],"Animatable":["Offset"],"Animatable.T":"Offset","Tween.T":"Offset"},"MaterialBannerTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"BottomAppBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BottomAppBarState":{"State":["BottomAppBar"]},"_BottomAppBarClipper":{"CustomClipper":["Path"],"Listenable":[]},"BottomSheet":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BottomSheetState":{"State":["BottomSheet"]},"_DragHandle":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BottomSheetGestureDetector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RawMaterialButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RawMaterialButtonState":{"State":["RawMaterialButton"]},"_InputPadding":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInputPadding":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_LerpSides":{"MaterialStateProperty":["BorderSide?"]},"ButtonStyleButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ButtonStyleState":{"State":["ButtonStyleButton"]},"_MouseCursor":{"MouseCursor0":[],"MaterialStateProperty":["MouseCursor0"]},"_InputPadding0":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInputPadding0":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"ButtonTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"CalendarDatePicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DatePickerModeToggleButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MonthPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FocusedDate":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DayPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_Day":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"YearPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CalendarDatePickerState":{"State":["CalendarDatePicker"]},"_DatePickerModeToggleButtonState":{"State":["_DatePickerModeToggleButton"]},"_MonthPickerState":{"State":["_MonthPicker"]},"_DayPickerState":{"State":["_DayPicker"]},"_DayState":{"State":["_Day"]},"_YearPickerState":{"State":["YearPicker"]},"Card":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Checkbox":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CheckboxState":{"State":["Checkbox"]},"_CheckboxPainter":{"Listenable":[]},"CheckboxListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CheckboxTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialColor":{"ColorSwatch":["int"],"Color":[],"ColorSwatch.T":"int"},"MaterialAccentColor":{"ColorSwatch":["int"],"Color":[],"ColorSwatch.T":"int"},"_SortArrow":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DataTable":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TableRowInkWell":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SortArrowState":{"State":["_SortArrow"]},"_NullTableColumnWidth":{"TableColumnWidth":[]},"_NullWidget0":{"Widget":[],"DiagnosticableTree":[]},"DataTableSource":{"Listenable":[]},"DataTableTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DatePickerDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DatePickerDialogState":{"State":["DatePickerDialog"]},"_RestorableDatePickerEntryMode":{"RestorableProperty":["DatePickerEntryMode"],"Listenable":[],"RestorableValue.T":"DatePickerEntryMode"},"_RestorableAutovalidateMode":{"RestorableProperty":["AutovalidateMode"],"Listenable":[],"RestorableValue.T":"AutovalidateMode"},"_DatePickerHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DatePickerTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DatePickerDefaultsM2":{"DatePickerThemeData":[]},"_DatePickerDefaultsM3":{"DatePickerThemeData":[]},"_DesktopTextSelectionHandleControls":{"TextSelectionHandleControls":[]},"DesktopTextSelectionToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesktopTextSelectionToolbarButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AlertDialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SimpleDialogOption":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SimpleDialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Dialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DialogRoute":{"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"],"ModalRoute.T":"1"},"Divider":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VerticalDivider":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DividerTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DrawerControllerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerController":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerControllerState":{"State":["DrawerController"]},"Drawer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownMenuItemButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownMenu":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownRoutePage":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MenuItem":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"DropdownMenuItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DropdownButtonHideUnderline":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DropdownButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownMenuPainter":{"Listenable":[]},"_DropdownMenuItemButtonState":{"State":["_DropdownMenuItemButton<1>"]},"_DropdownMenuState":{"State":["_DropdownMenu<1>"]},"_DropdownRoute":{"ModalRoute":["_DropdownRouteResult<1>"],"TransitionRoute":["_DropdownRouteResult<1>"],"Route":["_DropdownRouteResult<1>"],"ModalRoute.T":"_DropdownRouteResult<1>"},"_DropdownRoutePageState":{"State":["_DropdownRoutePage<1>"]},"_RenderMenuItem":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_DropdownMenuItemContainer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownButtonState":{"State":["DropdownButton<1>"],"WidgetsBindingObserver":[]},"DropdownButtonFormField":{"FormField":["1"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"FormField.T":"1"},"_DropdownButtonFormFieldState":{"FormFieldState":["1"],"State":["FormField<1>"]},"ElevatedButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ElevatedButtonDefaultColor":{"MaterialStateProperty":["Color?"]},"_ElevatedButtonDefaultOverlay":{"MaterialStateProperty":["Color?"]},"_ElevatedButtonDefaultElevation":{"MaterialStateProperty":["double"]},"_ElevatedButtonDefaultMouseCursor":{"MaterialStateProperty":["MouseCursor0?"]},"_ElevatedButtonDefaultsM3":{"ButtonStyle":[]},"ElevatedButtonTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpandIcon":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpandIconState":{"State":["ExpandIcon"]},"ExpansionPanelRadio":{"ExpansionPanel":[]},"ExpansionPanelList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SaltedKey":{"LocalKey":[],"Key":[]},"_ExpansionPanelListState":{"State":["ExpansionPanelList"]},"FlexibleSpaceBarSettings":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"FloatingActionButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EffectiveMouseCursor":{"MouseCursor0":[],"MaterialStateProperty":["MouseCursor0"]},"_ChildOverflowBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderChildOverflowBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_AnimationSwap":{"Animation0":["1"],"Listenable":[]},"IconButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectableIconButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectableIconButtonState":{"State":["_SelectableIconButton"]},"_IconButtonM3":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_IconButtonDefaultForeground":{"MaterialStateProperty":["Color?"]},"_IconButtonDefaultOverlay":{"MaterialStateProperty":["Color?"]},"_IconButtonDefaultMouseCursor":{"MaterialStateProperty":["MouseCursor0?"]},"_IconButtonDefaultsM3":{"ButtonStyle":[]},"_FilledIconButtonDefaultsM3":{"ButtonStyle":[]},"_FilledTonalIconButtonDefaultsM3":{"ButtonStyle":[]},"_OutlinedIconButtonDefaultsM3":{"ButtonStyle":[]},"IconButtonTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Ink":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InkState":{"State":["Ink"]},"InkDecoration":{"InkFeature":[]},"InkHighlight":{"InteractiveInkFeature":[],"InkFeature":[]},"InkRipple":{"InteractiveInkFeature":[],"InkFeature":[]},"InkSplash":{"InteractiveInkFeature":[],"InkFeature":[]},"InteractiveInkFeature":{"InkFeature":[]},"_ParentInkResponseProvider":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InkResponseStateWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InkWell":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InkResponse":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InkResponseState":{"State":["_InkResponseStateWidget"],"_ParentInkResponseState":[]},"InputBorder":{"ShapeBorder":[]},"_NoInputBorder":{"InputBorder":[],"ShapeBorder":[]},"UnderlineInputBorder":{"InputBorder":[],"ShapeBorder":[]},"OutlineInputBorder":{"InputBorder":[],"ShapeBorder":[]},"InputDatePickerFormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InputDatePickerFormFieldState":{"State":["InputDatePickerFormField"]},"_BorderContainer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HelperError":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InputDecorator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InputBorderGap":{"Listenable":[]},"_InputBorderTween":{"Tween":["InputBorder"],"Animatable":["InputBorder"],"Animatable.T":"InputBorder","Tween.T":"InputBorder"},"_InputBorderPainter":{"Listenable":[]},"_BorderContainerState":{"State":["_BorderContainer"]},"_Shaker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HelperErrorState":{"State":["_HelperError"]},"_RenderDecoration":{"RenderBox":[],"SlottedContainerRenderObjectMixin":["_DecorationSlot","RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"SlottedContainerRenderObjectMixin.0":"_DecorationSlot","SlottedContainerRenderObjectMixin.1":"RenderBox"},"_Decorator":{"SlottedMultiChildRenderObjectWidgetMixin":["_DecorationSlot","RenderBox"],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[],"SlottedMultiChildRenderObjectWidgetMixin.0":"_DecorationSlot","SlottedMultiChildRenderObjectWidgetMixin.1":"RenderBox"},"_InputDecoratorState":{"State":["InputDecorator"]},"ListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_IndividualOverrides":{"MaterialStateProperty":["Color?"]},"_ListTile":{"SlottedMultiChildRenderObjectWidgetMixin":["_ListTileSlot","RenderBox"],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[],"SlottedMultiChildRenderObjectWidgetMixin.0":"_ListTileSlot","SlottedMultiChildRenderObjectWidgetMixin.1":"RenderBox"},"_RenderListTile":{"RenderBox":[],"SlottedContainerRenderObjectMixin":["_ListTileSlot","RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"SlottedContainerRenderObjectMixin.0":"_ListTileSlot","SlottedContainerRenderObjectMixin.1":"RenderBox"},"ListTileTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextMagnifier":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextMagnifierState":{"State":["TextMagnifier"]},"Magnifier":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Material":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInkFeatures":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"ShapeBorderTween":{"Tween":["ShapeBorder?"],"Animatable":["ShapeBorder?"],"Animatable.T":"ShapeBorder?","Tween.T":"ShapeBorder?"},"_MaterialInterior":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialState":{"State":["Material"]},"_InkFeatures":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialInteriorState":{"State":["_MaterialInterior"]},"_ShapeBorderPaint":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ShapeBorderPainter":{"Listenable":[]},"_MaterialLocalizationsDelegate":{"LocalizationsDelegate":["MaterialLocalizations"],"LocalizationsDelegate.T":"MaterialLocalizations"},"DefaultMaterialLocalizations":{"MaterialLocalizations":[]},"MaterialStateColor":{"Color":[],"MaterialStateProperty":["Color"]},"_MaterialStateColor":{"Color":[],"MaterialStateProperty":["Color"]},"MaterialStateMouseCursor":{"MouseCursor0":[],"MaterialStateProperty":["MouseCursor0"]},"_EnabledAndDisabledMouseCursor":{"MouseCursor0":[],"MaterialStateProperty":["MouseCursor0"]},"MaterialStateBorderSide":{"BorderSide":[],"MaterialStateProperty":["BorderSide?"]},"_MaterialStateBorderSide":{"BorderSide":[],"MaterialStateProperty":["BorderSide?"]},"MaterialStateTextStyle":{"TextStyle":[],"MaterialStateProperty":["TextStyle"]},"_MaterialStateTextStyle":{"TextStyle":[],"MaterialStateProperty":["TextStyle"]},"_LerpProperties":{"MaterialStateProperty":["1?"]},"_MaterialStatePropertyWith":{"MaterialStateProperty":["1"]},"MaterialStatePropertyAll":{"MaterialStateProperty":["1"]},"MaterialStatesController":{"ValueNotifier":["Set"],"Listenable":[]},"_LerpSides1":{"MaterialStateProperty":["BorderSide?"]},"MergeableMaterial":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialSlice":{"MergeableMaterialItem":[]},"MaterialGap":{"MergeableMaterialItem":[]},"_MergeableMaterialState":{"State":["MergeableMaterial"]},"_MergeableMaterialSliceKey":{"GlobalKey":["State"],"Key":[],"GlobalKey.T":"State"},"_MergeableMaterialListBody":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderMergeableMaterialListBody":{"RenderBoxContainerDefaultsMixin":["RenderBox","ListBodyParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","ListBodyParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"ListBodyParentData","RenderBoxContainerDefaultsMixin.1":"ListBodyParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"NoSplash":{"InteractiveInkFeature":[],"InkFeature":[]},"OutlinedButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OutlinedButtonDefaultColor":{"MaterialStateProperty":["Color?"]},"_OutlinedButtonDefaultOverlay":{"MaterialStateProperty":["Color?"]},"_OutlinedButtonDefaultMouseCursor":{"MaterialStateProperty":["MouseCursor0?"]},"_OutlinedButtonDefaultsM3":{"ButtonStyle":[]},"OutlinedButtonTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialPageRoute":{"MaterialRouteTransitionMixin":["1"],"PageRoute":["1"],"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"],"ModalRoute.T":"1"},"_ZoomEnterTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ZoomExitTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FadeUpwardsPageTransition":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ZoomPageTransition":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ZoomEnterTransitionState":{"State":["_ZoomEnterTransition"]},"_ZoomExitTransitionState":{"State":["_ZoomExitTransition"]},"ZoomPageTransitionsBuilder":{"PageTransitionsBuilder":[]},"CupertinoPageTransitionsBuilder":{"PageTransitionsBuilder":[]},"_ZoomEnterTransitionPainter":{"Listenable":[]},"_ZoomExitTransitionPainter":{"Listenable":[]},"PopupMenuEntry":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PopupMenuDivider":{"PopupMenuEntry":["0&"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PopupMenuItem":{"PopupMenuEntry":["1"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PopupMenuButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PopupMenuDividerState":{"State":["PopupMenuDivider"]},"_MenuItem0":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderMenuItem0":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"PopupMenuItemState":{"State":["2"]},"_PopupMenu":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PopupMenuRoute":{"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"],"ModalRoute.T":"1"},"PopupMenuButtonState":{"State":["PopupMenuButton<1>"]},"_EffectiveMouseCursor0":{"MouseCursor0":[],"MaterialStateProperty":["MouseCursor0"]},"PopupMenuTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"LinearProgressIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"CircularProgressIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProgressIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LinearProgressIndicatorPainter":{"Listenable":[]},"_LinearProgressIndicatorState":{"State":["LinearProgressIndicator"]},"_CircularProgressIndicatorPainter":{"Listenable":[]},"_CircularProgressIndicatorState":{"State":["CircularProgressIndicator"]},"_RefreshProgressIndicatorPainter":{"Listenable":[]},"RefreshProgressIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RefreshProgressIndicatorState":{"State":["CircularProgressIndicator"]},"ProgressIndicatorTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Radio":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RadioState":{"State":["Radio<1>"]},"_RadioPainter":{"Listenable":[]},"RadioListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RadioTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"RefreshIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RefreshIndicatorState":{"State":["RefreshIndicator"]},"ReorderableListView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ReorderableListViewState":{"State":["ReorderableListView"]},"_ReorderableListViewChildGlobalKey":{"GlobalObjectKey":["State"],"GlobalKey":["State"],"Key":[],"GlobalKey.T":"State","GlobalObjectKey.T":"State"},"ScaffoldMessenger":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScaffoldMessengerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FloatingActionButtonTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"Scaffold":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScaffoldState":{"State":["Scaffold"]},"_StandardBottomSheet":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StandardBottomSheetState":{"State":["_StandardBottomSheet"]},"_ScaffoldScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScaffoldMessengerState":{"State":["ScaffoldMessenger"]},"_ScaffoldGeometryNotifier":{"Listenable":[]},"_BodyBoxConstraints":{"BoxConstraints":[],"Constraints":[]},"_BodyBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FloatingActionButtonTransitionState":{"State":["_FloatingActionButtonTransition"]},"_DismissDrawerAction":{"Action":["DismissIntent"],"Action.T":"DismissIntent"},"PersistentBottomSheetController":{"ScaffoldFeatureController":["_StandardBottomSheet","1"]},"_MaterialScrollbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"Scrollbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialScrollbarState":{"RawScrollbarState":["_MaterialScrollbar"],"State":["_MaterialScrollbar"]},"ScrollbarTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LerpSides0":{"MaterialStateProperty":["BorderSide?"]},"SelectableText":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextSpanEditingController":{"TextEditingController":[],"ValueNotifier":["TextEditingValue"],"Listenable":[]},"_SelectableTextState":{"State":["SelectableText"]},"SnackBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialSwitch":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"Switch":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialSwitchState":{"State":["_MaterialSwitch"]},"_SwitchPainter":{"Listenable":[]},"SwitchListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SwitchTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TabControllerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DefaultTabController":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TabController":{"Listenable":[]},"_DefaultTabControllerState":{"State":["DefaultTabController"]},"UnderlineTabIndicator":{"Decoration":[]},"_UnderlinePainter0":{"BoxPainter":[]},"Tab":{"StatelessWidget":[],"PreferredSizeWidget":[],"Widget":[],"DiagnosticableTree":[]},"TabBar":{"StatefulWidget":[],"PreferredSizeWidget":[],"Widget":[],"DiagnosticableTree":[]},"TabBarView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TabStyle":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TabLabelBarRenderer":{"RenderBoxContainerDefaultsMixin":["RenderBox","FlexParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","FlexParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"FlexParentData","RenderBoxContainerDefaultsMixin.1":"FlexParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"_TabLabelBar":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DividerPainter":{"Listenable":[]},"_IndicatorPainter":{"Listenable":[]},"_ChangeAnimation":{"Animation0":["double"],"Listenable":[]},"_DragAnimation":{"Animation0":["double"],"Listenable":[]},"_TabBarScrollPosition":{"ScrollPosition":[],"ViewportOffset":[],"Listenable":[],"ScrollMetrics":[]},"_TabBarScrollController":{"ScrollController":[],"Listenable":[]},"_TabBarState":{"State":["TabBar"]},"_TabBarViewState":{"State":["TabBarView"]},"TextButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextButtonDefaultColor":{"MaterialStateProperty":["Color?"]},"_TextButtonDefaultOverlay":{"MaterialStateProperty":["Color?"]},"_TextButtonDefaultMouseCursor":{"MaterialStateProperty":["MouseCursor0?"]},"_TextButtonDefaultsM3":{"ButtonStyle":[]},"TextButtonTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextFieldState":{"State":["TextField"],"AutofillClient":[]},"TextFormField":{"FormField":["String"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"FormField.T":"String"},"_TextFormFieldState":{"FormFieldState":["String"],"State":["FormField"]},"MaterialTextSelectionHandleControls":{"TextSelectionHandleControls":[]},"_TextSelectionHandlePainter":{"Listenable":[]},"TextSelectionTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextSelectionToolbarOverflowable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextSelectionToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextSelectionToolbarOverflowableState":{"State":["_TextSelectionToolbarOverflowable"]},"_TextSelectionToolbarTrailingEdgeAlign":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextSelectionToolbarTrailingEdgeAlignRenderBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_TextSelectionToolbarItemsLayout":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextSelectionToolbarItemsLayoutElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_RenderTextSelectionToolbarItemsLayout":{"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","ToolbarItemsParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"ToolbarItemsParentData","ContainerRenderObjectMixin.0":"RenderBox"},"_TextSelectionToolbarContainer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextSelectionToolbarOverflowButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextSelectionToolbarTextButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Theme":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InheritedTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ThemeDataTween":{"Tween":["ThemeData"],"Animatable":["ThemeData"],"Animatable.T":"ThemeData","Tween.T":"ThemeData"},"AnimatedTheme":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedThemeState":{"State":["AnimatedTheme"]},"RestorableTimeOfDay":{"RestorableProperty":["TimeOfDay"],"Listenable":[],"RestorableValue.T":"TimeOfDay"},"_TimePickerModel":{"InheritedModel":["_TimePickerAspect"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedModel.T":"_TimePickerAspect"},"_Dial":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TimePickerInput":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HourMinuteTextField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TimePickerDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TimePicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TimePickerHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HourMinuteControl":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HourControl":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StringFragment":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MinuteControl":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DayPeriodControl":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AmPmButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DayPeriodInputPadding":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInputPadding2":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_DialPainter":{"Listenable":[]},"_DialState":{"State":["_Dial"]},"_TimePickerInputState":{"State":["_TimePickerInput"]},"_HourTextField":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MinuteTextField":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HourMinuteTextFieldState":{"State":["_HourMinuteTextField"]},"_TimePickerDialogState":{"State":["TimePickerDialog"]},"_TimePickerState0":{"State":["_TimePicker"]},"TimePickerTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ToggleButtons":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ResolveFillColor":{"MaterialStateProperty":["Color?"]},"_DefaultFillColor":{"MaterialStateProperty":["Color"]},"_ToggleButtonDefaultOverlay":{"MaterialStateProperty":["Color?"]},"_SelectToggleButton":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectToggleButtonRenderObject":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_InputPadding1":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInputPadding1":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"ToggleButtonsTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ToggleablePainter0":{"Listenable":[]},"Tooltip":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TooltipState":{"State":["Tooltip"]},"_ExclusiveMouseRegion":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderExclusiveMouseRegion":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[],"HitTestTarget":[]},"_TooltipOverlay":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TooltipTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"NetworkImage":{"ImageProvider":["NetworkImage0"],"ImageProvider.T":"NetworkImage0"},"Alignment":{"AlignmentGeometry":[]},"AlignmentDirectional":{"AlignmentGeometry":[]},"_MixedAlignment":{"AlignmentGeometry":[]},"PaintingBinding":{"SchedulerBinding":[]},"_SystemFontsNotifier":{"Listenable":[]},"OutlinedBorder":{"ShapeBorder":[]},"_CompoundBorder":{"ShapeBorder":[]},"BoxBorder":{"ShapeBorder":[]},"Border":{"ShapeBorder":[]},"BorderDirectional":{"ShapeBorder":[]},"BoxDecoration":{"Decoration":[]},"_BoxDecorationPainter":{"BoxPainter":[]},"BoxShadow":{"Shadow":[]},"CircleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"ColorSwatch":{"Color":[]},"EdgeInsets":{"EdgeInsetsGeometry":[]},"EdgeInsetsDirectional":{"EdgeInsetsGeometry":[]},"_MixedEdgeInsets":{"EdgeInsetsGeometry":[]},"FractionalOffset":{"AlignmentGeometry":[]},"NetworkImage0":{"ImageProvider":["NetworkImage0"]},"MemoryImage":{"ImageProvider":["MemoryImage"],"ImageProvider.T":"MemoryImage"},"AssetBundleImageProvider":{"ImageProvider":["AssetBundleImageKey"]},"NetworkImageLoadException":{"Exception":[]},"AssetImage":{"ImageProvider":["AssetBundleImageKey"],"ImageProvider.T":"AssetBundleImageKey"},"InlineSpan":{"DiagnosticableTree":[]},"PlaceholderSpan0":{"InlineSpan":[],"DiagnosticableTree":[]},"RoundedRectangleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"_RoundedRectangleToCircleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"ShapeDecoration":{"Decoration":[]},"_ShapeDecorationPainter":{"BoxPainter":[]},"StadiumBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"_StadiumToCircleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"_StadiumToRoundedRectangleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"WordBoundary":{"TextBoundary":[]},"_UntilTextBoundary":{"TextBoundary":[]},"_LinearTextScaler":{"TextScaler":[]},"TextSpan":{"InlineSpan":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[],"HitTestTarget":[]},"RenderAnimatedSize":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RendererBinding":{"SchedulerBinding":[],"HitTestTarget":[]},"_BindingPipelineManifold":{"Listenable":[]},"_DefaultRootPipelineOwner":{"PipelineOwner":[],"DiagnosticableTree":[]},"_ReusableRenderView":{"RenderView":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"BoxConstraints":{"Constraints":[]},"BoxHitTestResult":{"HitTestResult":[]},"ContainerBoxParentData":{"BoxParentData":[],"ContainerParentDataMixin":["1"],"ParentData":[]},"RenderBox":{"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"BoxHitTestEntry":{"HitTestEntry":["RenderBox"]},"BoxParentData":{"ParentData":[]},"MultiChildLayoutParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"RenderCustomMultiChildLayoutBox":{"RenderBoxContainerDefaultsMixin":["RenderBox","MultiChildLayoutParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","MultiChildLayoutParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"MultiChildLayoutParentData","RenderBoxContainerDefaultsMixin.1":"MultiChildLayoutParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"CustomPainter":{"Listenable":[]},"RenderCustomPaint":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderEditablePainter":{"Listenable":[]},"RenderEditable":{"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","TextParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"TextParentData","ContainerRenderObjectMixin.0":"RenderBox"},"_RenderEditableCustomPaint":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_TextHighlightPainter":{"RenderEditablePainter":[],"Listenable":[]},"_CaretPainter":{"RenderEditablePainter":[],"Listenable":[]},"_CompositeRenderEditablePainter":{"RenderEditablePainter":[],"Listenable":[]},"RenderErrorBox":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"FlexParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"RenderFlex":{"RenderBoxContainerDefaultsMixin":["RenderBox","FlexParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","FlexParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"FlexParentData","RenderBoxContainerDefaultsMixin.1":"FlexParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"RenderImage":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"Layer0":{"DiagnosticableTree":[]},"ContainerLayer0":{"Layer0":[],"DiagnosticableTree":[]},"ClipRectLayer":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"ClipRRectLayer":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"ClipPathLayer":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"TransformLayer":{"OffsetLayer":[],"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"OpacityLayer":{"OffsetLayer":[],"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"PictureLayer0":{"Layer0":[],"DiagnosticableTree":[]},"PlatformViewLayer":{"Layer0":[],"DiagnosticableTree":[]},"OffsetLayer":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"ImageFilterLayer":{"OffsetLayer":[],"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"BackdropFilterLayer":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"LeaderLayer0":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"FollowerLayer0":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"AnnotatedRegionLayer":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"ListBodyParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"RenderListBody":{"RenderBoxContainerDefaultsMixin":["RenderBox","ListBodyParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","ListBodyParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"ListBodyParentData","RenderBoxContainerDefaultsMixin.1":"ListBodyParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"MouseTracker":{"Listenable":[]},"PipelineOwner":{"DiagnosticableTree":[]},"RenderObject":{"DiagnosticableTree":[],"HitTestTarget":[]},"ContainerParentDataMixin":{"ParentData":[]},"_RootSemanticsFragment":{"_InterestingSemanticsFragment":[]},"_IncompleteSemanticsFragment":{"_InterestingSemanticsFragment":[]},"_SwitchableSemanticsFragment":{"_InterestingSemanticsFragment":[]},"PlaceholderSpanIndexSemanticsTag":{"SemanticsTag":[]},"TextParentData":{"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"_SelectableFragment":{"Selectable":[],"Listenable":[]},"RenderParagraph":{"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","TextParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"TextParentData","ContainerRenderObjectMixin.0":"RenderBox"},"_PlatformViewGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"PlatformViewRenderBox":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[],"HitTestTarget":[]},"ShapeBorderClipper":{"CustomClipper":["Path"],"Listenable":[]},"RenderAbsorbPointer":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderSemanticsGestureHandler":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderProxyBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderProxyBoxWithHitTestBehavior":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderConstrainedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderLimitedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderAspectRatio":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderIntrinsicWidth":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderIntrinsicHeight":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderOpacity":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderAnimatedOpacity":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderBackdropFilter":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"CustomClipper":{"Listenable":[]},"_RenderCustomClip":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderClipRect":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderClipRRect":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderClipOval":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderClipPath":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_RenderPhysicalModelBase":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderPhysicalModel":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderPhysicalShape":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderDecoratedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderTransform":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderFittedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderFractionalTranslation":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderPointerListener":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderMouseRegion":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[],"HitTestTarget":[]},"RenderRepaintBoundary":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderIgnorePointer":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderOffstage":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderSemanticsAnnotations":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderBlockSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderMergeSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderExcludeSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderIndexedSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderLeaderLayer":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderFollowerLayer":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderAnnotatedRegion":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"Selectable":{"Listenable":[]},"RenderShiftedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderPadding":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderAligningShiftedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderPositionedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderConstrainedOverflowBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderFractionallySizedOverflowBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderCustomSingleChildLayoutBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"SliverConstraints":{"Constraints":[]},"SliverHitTestResult":{"HitTestResult":[]},"SliverLogicalContainerParentData":{"SliverLogicalParentData":[],"ContainerParentDataMixin":["RenderSliver"],"ParentData":[]},"SliverPhysicalContainerParentData":{"SliverPhysicalParentData":[],"ContainerParentDataMixin":["RenderSliver"],"ParentData":[]},"RenderSliver":{"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"SliverHitTestEntry":{"HitTestEntry":["RenderSliver"]},"SliverLogicalParentData":{"ParentData":[]},"SliverPhysicalParentData":{"ParentData":[]},"RenderSliverFillViewport":{"RenderSliverMultiBoxAdaptor":[],"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"SliverMultiBoxAdaptorParentData","ContainerRenderObjectMixin.0":"RenderBox"},"RenderSliverFixedExtentBoxAdaptor":{"RenderSliverMultiBoxAdaptor":[],"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"SliverGridParentData":{"SliverMultiBoxAdaptorParentData":[],"SliverLogicalParentData":[],"ContainerParentDataMixin":["RenderBox"],"KeepAliveParentDataMixin":[],"ParentData":[]},"RenderSliverGrid":{"RenderSliverMultiBoxAdaptor":[],"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"SliverMultiBoxAdaptorParentData","ContainerRenderObjectMixin.0":"RenderBox"},"RenderSliverList":{"RenderSliverMultiBoxAdaptor":[],"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"SliverMultiBoxAdaptorParentData","ContainerRenderObjectMixin.0":"RenderBox"},"KeepAliveParentDataMixin":{"ParentData":[]},"SliverMultiBoxAdaptorParentData":{"SliverLogicalParentData":[],"ContainerParentDataMixin":["RenderBox"],"KeepAliveParentDataMixin":[],"ParentData":[]},"RenderSliverMultiBoxAdaptor":{"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderSliverEdgeInsetsPadding":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderSliver"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderSliverPadding":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderSliver"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderSliverFloatingPersistentHeader":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderSliverPersistentHeader":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderSliverPinnedPersistentHeader":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"StackParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"RenderStack":{"RenderBoxContainerDefaultsMixin":["RenderBox","StackParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","StackParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"StackParentData","RenderBoxContainerDefaultsMixin.1":"StackParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"RenderIndexedStack":{"RenderBoxContainerDefaultsMixin":["RenderBox","StackParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","StackParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"StackParentData","RenderBoxContainerDefaultsMixin.1":"StackParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"TableCellParentData":{"BoxParentData":[],"ParentData":[]},"IntrinsicColumnWidth":{"TableColumnWidth":[]},"FixedColumnWidth":{"TableColumnWidth":[]},"FlexColumnWidth":{"TableColumnWidth":[]},"RenderTable":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"AlignmentGeometryTween":{"Tween":["AlignmentGeometry?"],"Animatable":["AlignmentGeometry?"],"Animatable.T":"AlignmentGeometry?","Tween.T":"AlignmentGeometry?"},"RenderView":{"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderViewportBase":{"_RenderViewportBase_RenderBox_ContainerRenderObjectMixin":["1"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderSliver","1"],"RenderAbstractViewport":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderViewport":{"_RenderViewportBase_RenderBox_ContainerRenderObjectMixin":["SliverPhysicalContainerParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderSliver","SliverPhysicalContainerParentData"],"RenderAbstractViewport":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"SliverPhysicalContainerParentData","_RenderViewportBase_RenderBox_ContainerRenderObjectMixin.0":"SliverPhysicalContainerParentData","ContainerRenderObjectMixin.0":"RenderSliver"},"RenderShrinkWrappingViewport":{"_RenderViewportBase_RenderBox_ContainerRenderObjectMixin":["SliverLogicalContainerParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderSliver","SliverLogicalContainerParentData"],"RenderAbstractViewport":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"SliverLogicalContainerParentData","_RenderViewportBase_RenderBox_ContainerRenderObjectMixin.0":"SliverLogicalContainerParentData","ContainerRenderObjectMixin.0":"RenderSliver"},"ViewportOffset":{"Listenable":[]},"WrapParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"RenderWrap":{"RenderBoxContainerDefaultsMixin":["RenderBox","WrapParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","WrapParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"WrapParentData","RenderBoxContainerDefaultsMixin.1":"WrapParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"TickerFuture":{"Future":["~"]},"TickerCanceled":{"Exception":[]},"SemanticsNode":{"DiagnosticableTree":[]},"_BoxEdge":{"Comparable":["_BoxEdge"]},"_SemanticsSortGroup":{"Comparable":["_SemanticsSortGroup"]},"_TraversalSortNode":{"Comparable":["_TraversalSortNode"]},"SemanticsSortKey":{"Comparable":["SemanticsSortKey"]},"_SemanticsDiagnosticableNode":{"DiagnosticableNode":["SemanticsNode"],"DiagnosticsNode":[]},"SemanticsHintOverrides":{"DiagnosticableTree":[]},"SemanticsProperties":{"DiagnosticableTree":[]},"SemanticsOwner":{"Listenable":[]},"OrdinalSortKey":{"Comparable":["SemanticsSortKey"]},"_AssetManifestBin":{"AssetManifest":[]},"_AutofillScopeTextInputConfiguration":{"TextInputConfiguration":[]},"ServicesBinding":{"SchedulerBinding":[]},"KeyDownEvent":{"KeyEvent":[]},"KeyUpEvent":{"KeyEvent":[]},"KeyRepeatEvent":{"KeyEvent":[]},"PlatformException":{"Exception":[]},"MissingPluginException":{"Exception":[]},"SystemMouseCursor":{"MouseCursor0":[]},"_DeferringMouseCursor":{"MouseCursor0":[]},"_NoopMouseCursorSession":{"MouseCursorSession":[]},"_NoopMouseCursor":{"MouseCursor0":[]},"_SystemMouseCursorSession":{"MouseCursorSession":[]},"RawKeyDownEvent":{"RawKeyEvent":[]},"RawKeyUpEvent":{"RawKeyEvent":[]},"RestorationManager":{"Listenable":[]},"CharacterBoundary":{"TextBoundary":[]},"LineBoundary":{"TextBoundary":[]},"ParagraphBoundary":{"TextBoundary":[]},"DocumentBoundary":{"TextBoundary":[]},"TextSelection":{"TextRange":[]},"TextEditingDeltaInsertion":{"TextEditingDelta":[]},"TextEditingDeltaDeletion":{"TextEditingDelta":[]},"TextEditingDeltaReplacement":{"TextEditingDelta":[]},"TextEditingDeltaNonTextUpdate":{"TextEditingDelta":[]},"FilteringTextInputFormatter":{"TextInputFormatter":[]},"LengthLimitingTextInputFormatter":{"TextInputFormatter":[]},"_PlatformTextInputControl":{"TextInputControl":[]},"_HtmlElementViewController":{"PlatformViewController":[]},"Actions":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ActionsScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"FocusableActionDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"VoidCallbackIntent":{"Intent":[]},"DoNothingIntent":{"Intent":[]},"DoNothingAndStopPropagationIntent":{"Intent":[]},"ActivateIntent":{"Intent":[]},"ButtonActivateIntent":{"Intent":[]},"DismissIntent":{"Intent":[]},"PrioritizedIntents":{"Intent":[]},"ContextAction":{"Action":["1"]},"CallbackAction":{"Action":["1"],"Action.T":"1"},"_ActionsState":{"State":["Actions"]},"_FocusableActionDetectorState":{"State":["FocusableActionDetector"]},"VoidCallbackAction":{"Action":["VoidCallbackIntent"],"Action.T":"VoidCallbackIntent"},"DoNothingAction":{"Action":["Intent"],"Action.T":"Intent"},"DismissAction":{"Action":["DismissIntent"]},"PrioritizedAction":{"ContextAction":["PrioritizedIntents"],"Action":["PrioritizedIntents"],"Action.T":"PrioritizedIntents","ContextAction.T":"PrioritizedIntents"},"_OverridableAction":{"__OverridableAction_ContextAction__OverridableActionMixin":["1"],"ContextAction":["1"],"_OverridableActionMixin":["1"],"Action":["1"],"Action.T":"1","ContextAction.T":"1"},"_OverridableContextAction":{"__OverridableContextAction_ContextAction__OverridableActionMixin":["1"],"ContextAction":["1"],"_OverridableActionMixin":["1"],"Action":["1"],"Action.T":"1","ContextAction.T":"1"},"_ContextActionToActionAdapter":{"Action":["1"],"Action.T":"1"},"AnimatedCrossFade":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedCrossFadeState":{"State":["AnimatedCrossFade"]},"AnimatedSize":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedSizeState":{"State":["AnimatedSize"]},"_AnimatedSize":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedSwitcher":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedSwitcherState":{"State":["AnimatedSwitcher"]},"AnnotatedRegion":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"WidgetsApp":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WidgetsAppState":{"State":["WidgetsApp"],"WidgetsBindingObserver":[]},"StreamBuilderBase":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FutureBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StreamBuilderBaseState":{"State":["StreamBuilderBase<1,2>"]},"StreamBuilder":{"StreamBuilderBase":["1","AsyncSnapshot<1>"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"StreamBuilderBase.T":"1","StreamBuilderBase.S":"AsyncSnapshot<1>"},"_FutureBuilderState":{"State":["FutureBuilder<1>"]},"RawAutocomplete":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AutocompletePreviousOptionIntent":{"Intent":[]},"AutocompleteNextOptionIntent":{"Intent":[]},"AutocompleteHighlightedOption":{"InheritedNotifier":["ValueNotifier"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"ValueNotifier"},"_RawAutocompleteState":{"State":["RawAutocomplete<1>"]},"_AutocompleteCallbackAction":{"CallbackAction":["1"],"Action":["1"],"Action.T":"1"},"AutofillGroup":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AutofillScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"AutofillGroupState":{"State":["AutofillGroup"]},"AutomaticKeepAlive":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AutomaticKeepAliveState":{"State":["AutomaticKeepAlive"]},"KeepAliveHandle":{"Listenable":[]},"_NullWidget1":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Directionality":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClipRect":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClipPath":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompositedTransformTarget":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompositedTransformFollower":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Padding":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Align":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Center":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomSingleChildLayout":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"LayoutId":{"ParentDataWidget":["MultiChildLayoutParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"MultiChildLayoutParentData"},"SizedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Stack":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Positioned":{"ParentDataWidget":["StackParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"StackParentData"},"Flex":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Row":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Column":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Flexible":{"ParentDataWidget":["FlexParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"FlexParentData"},"Expanded":{"ParentDataWidget":["FlexParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"FlexParentData"},"DefaultAssetBundle":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"MouseRegion":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"IgnorePointer":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Semantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"MergeSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"BlockSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Builder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"StatefulBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ColoredBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_UbiquitousInheritedElement":{"InheritedElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_UbiquitousInheritedWidget":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Opacity":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"BackdropFilter":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomPaint":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClipRRect":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClipOval":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"PhysicalModel":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"PhysicalShape":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Transform":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"FittedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"FractionalTranslation":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomMultiChildLayout":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ConstrainedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"FractionallySizedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"LimitedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"OverflowBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Offstage":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OffstageElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"AspectRatio":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"IntrinsicWidth":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"IntrinsicHeight":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverPadding":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ListBody":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"IndexedStack":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RawIndexedStack":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_IndexedStackElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"PositionedDirectional":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Wrap":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RichText":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RawImage":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Listener":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RepaintBoundary":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"AbsorbPointer":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExcludeSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"IndexedSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"KeyedSubtree":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StatefulBuilderState":{"State":["StatefulBuilder"]},"_RenderColoredBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"WidgetsBinding":{"SchedulerBinding":[],"HitTestTarget":[]},"RootWidget":{"Widget":[],"DiagnosticableTree":[]},"RootElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"WidgetsFlutterBinding":{"SchedulerBinding":[],"HitTestTarget":[]},"Container":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DecoratedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DecorationClipper":{"CustomClipper":["Path"],"Listenable":[]},"DefaultSelectionStyle":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_NullWidget2":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DefaultTextEditingShortcuts":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DisplayFeatureSubScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DraggableScrollableSheet":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DraggableScrollableNotification":{"ViewportNotificationMixin":[]},"_ResetNotifier":{"Listenable":[]},"_InheritedResetNotifier":{"InheritedNotifier":["_ResetNotifier"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"_ResetNotifier"},"_DraggableScrollableSheetState":{"State":["DraggableScrollableSheet"]},"_DraggableScrollableSheetScrollController":{"ScrollController":[],"Listenable":[]},"_DraggableScrollableSheetScrollPosition":{"ScrollPosition":[],"ViewportOffset":[],"Listenable":[],"ScrollMetrics":[]},"DualTransitionBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DualTransitionBuilderState":{"State":["DualTransitionBuilder"]},"TextEditingController":{"ValueNotifier":["TextEditingValue"],"Listenable":[]},"EditableText":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EditableTextState":{"State":["EditableText"],"WidgetsBindingObserver":[],"AutofillClient":[]},"_ScribbleFocusable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScribblePlaceholder":{"WidgetSpan":[],"InlineSpan":[],"DiagnosticableTree":[]},"_CompositionCallback":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderCompositionCallback":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_Editable":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScribbleFocusableState":{"State":["_ScribbleFocusable"],"ScribbleClient":[]},"_CodePointBoundary":{"TextBoundary":[]},"_DeleteTextAction":{"ContextAction":["1"],"Action":["1"],"Action.T":"1","ContextAction.T":"1"},"_UpdateTextSelectionAction":{"ContextAction":["1"],"Action":["1"],"Action.T":"1","ContextAction.T":"1"},"_UpdateTextSelectionVerticallyAction":{"ContextAction":["1"],"Action":["1"],"Action.T":"1","ContextAction.T":"1"},"_SelectAllAction":{"ContextAction":["SelectAllTextIntent"],"Action":["SelectAllTextIntent"],"Action.T":"SelectAllTextIntent","ContextAction.T":"SelectAllTextIntent"},"_CopySelectionAction":{"ContextAction":["CopySelectionTextIntent"],"Action":["CopySelectionTextIntent"],"Action.T":"CopySelectionTextIntent","ContextAction.T":"CopySelectionTextIntent"},"_WebClipboardStatusNotifier":{"ValueNotifier":["ClipboardStatus"],"Listenable":[],"WidgetsBindingObserver":[]},"FocusNode":{"DiagnosticableTree":[],"Listenable":[]},"FocusScopeNode":{"FocusNode":[],"DiagnosticableTree":[],"Listenable":[]},"FocusManager":{"DiagnosticableTree":[],"Listenable":[]},"Focus":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FocusInheritedScope":{"InheritedNotifier":["FocusNode"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"FocusNode"},"_FocusState":{"State":["Focus"]},"FocusScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FocusScopeState":{"State":["Focus"]},"ExcludeFocus":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"FocusTraversalGroup":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RequestFocusIntent":{"Intent":[]},"NextFocusIntent":{"Intent":[]},"PreviousFocusIntent":{"Intent":[]},"DirectionalFocusIntent":{"Intent":[]},"_FocusTraversalGroupNode":{"FocusNode":[],"DiagnosticableTree":[],"Listenable":[]},"_FocusTraversalGroupState":{"State":["FocusTraversalGroup"]},"RequestFocusAction":{"Action":["RequestFocusIntent"],"Action.T":"RequestFocusIntent"},"NextFocusAction":{"Action":["NextFocusIntent"],"Action.T":"NextFocusIntent"},"PreviousFocusAction":{"Action":["PreviousFocusIntent"],"Action.T":"PreviousFocusIntent"},"DirectionalFocusAction":{"Action":["DirectionalFocusIntent"],"Action.T":"DirectionalFocusIntent"},"Form":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FormState":{"State":["Form"]},"_FormScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"FormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FormFieldState":{"State":["FormField<1>"]},"ObjectKey":{"LocalKey":[],"Key":[]},"GlobalKey":{"Key":[]},"LabeledGlobalKey":{"GlobalKey":["1"],"Key":[],"GlobalKey.T":"1"},"Widget":{"DiagnosticableTree":[]},"StatelessWidget":{"Widget":[],"DiagnosticableTree":[]},"StatefulWidget":{"Widget":[],"DiagnosticableTree":[]},"RenderObjectWidget":{"Widget":[],"DiagnosticableTree":[]},"SingleChildRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Element0":{"DiagnosticableTree":[],"BuildContext":[]},"StatefulElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"ParentDataElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"InheritedElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"GlobalObjectKey":{"GlobalKey":["1"],"Key":[],"GlobalKey.T":"1","GlobalObjectKey.T":"1"},"ProxyWidget":{"Widget":[],"DiagnosticableTree":[]},"ParentDataWidget":{"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"InheritedWidget":{"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"LeafRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"MultiChildRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ElementDiagnosticableTreeNode":{"DiagnosticableNode":["DiagnosticableTree"],"DiagnosticsNode":[]},"ErrorWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ComponentElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"StatelessElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"ProxyElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"RenderObjectElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"LeafRenderObjectElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"SingleChildRenderObjectElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"MultiChildRenderObjectElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"RenderTreeRootElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_NullElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_NullWidget3":{"Widget":[],"DiagnosticableTree":[]},"GestureDetector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RawGestureDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RawGestureDetectorState":{"State":["RawGestureDetector"]},"GestureRecognizerFactoryWithHandlers":{"GestureRecognizerFactory":["1"]},"_GestureSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Hero":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HeroState":{"State":["Hero"]},"HeroController":{"NavigatorObserver":[]},"Icon":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IconTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Image":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ImageState":{"State":["Image"],"WidgetsBindingObserver":[]},"BoxConstraintsTween":{"Tween":["BoxConstraints"],"Animatable":["BoxConstraints"],"Animatable.T":"BoxConstraints","Tween.T":"BoxConstraints"},"DecorationTween":{"Tween":["Decoration"],"Animatable":["Decoration"],"Animatable.T":"Decoration","Tween.T":"Decoration"},"EdgeInsetsGeometryTween":{"Tween":["EdgeInsetsGeometry"],"Animatable":["EdgeInsetsGeometry"],"Animatable.T":"EdgeInsetsGeometry","Tween.T":"EdgeInsetsGeometry"},"BorderRadiusTween":{"Tween":["BorderRadius?"],"Animatable":["BorderRadius?"],"Animatable.T":"BorderRadius?","Tween.T":"BorderRadius?"},"Matrix4Tween":{"Tween":["Matrix40"],"Animatable":["Matrix40"],"Animatable.T":"Matrix40","Tween.T":"Matrix40"},"TextStyleTween":{"Tween":["TextStyle"],"Animatable":["TextStyle"],"Animatable.T":"TextStyle","Tween.T":"TextStyle"},"AnimatedContainer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedPadding":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedPositioned":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedOpacity":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedDefaultTextStyle":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedPhysicalModel":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EdgeInsetsTween":{"Tween":["EdgeInsets"],"Animatable":["EdgeInsets"],"Animatable.T":"EdgeInsets","Tween.T":"EdgeInsets"},"ImplicitlyAnimatedWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ImplicitlyAnimatedWidgetState":{"State":["1"]},"AnimatedWidgetBaseState":{"State":["1"]},"_AnimatedContainerState":{"State":["AnimatedContainer"]},"_AnimatedPaddingState":{"State":["AnimatedPadding"]},"_AnimatedPositionedState":{"State":["AnimatedPositioned"]},"_AnimatedOpacityState":{"State":["AnimatedOpacity"]},"_AnimatedDefaultTextStyleState":{"State":["AnimatedDefaultTextStyle"]},"_AnimatedPhysicalModelState":{"State":["AnimatedPhysicalModel"]},"InheritedModel":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"InheritedModelElement":{"InheritedElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"InheritedNotifier":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InheritedNotifierElement":{"InheritedElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"InheritedTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CaptureAll":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InteractiveViewer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InteractiveViewerState":{"State":["InteractiveViewer"]},"_InteractiveViewerBuilt":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransformationController":{"ValueNotifier":["Matrix40"],"Listenable":[]},"LayoutBuilder":{"ConstrainedLayoutBuilder":["BoxConstraints"],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[],"ConstrainedLayoutBuilder.0":"BoxConstraints"},"ConstrainedLayoutBuilder":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LayoutBuilderElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_RenderLayoutBuilder":{"RenderConstrainedLayoutBuilder":["BoxConstraints","RenderBox"],"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"RenderConstrainedLayoutBuilder.0":"BoxConstraints"},"_LocalizationsScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Localizations":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WidgetsLocalizationsDelegate":{"LocalizationsDelegate":["WidgetsLocalizations"],"LocalizationsDelegate.T":"WidgetsLocalizations"},"DefaultWidgetsLocalizations":{"WidgetsLocalizations":[]},"_LocalizationsState":{"State":["Localizations"]},"LookupBoundary":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"MagnifierDecoration":{"ShapeDecoration":[],"Decoration":[]},"RawMagnifier":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MagnifierStyle":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DonutClip":{"CustomClipper":["Path"],"Listenable":[]},"_Magnifier":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderMagnification":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"MediaQuery":{"InheritedModel":["_MediaQueryAspect"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedModel.T":"_MediaQueryAspect"},"_MediaQueryFromView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MediaQueryFromViewState":{"State":["_MediaQueryFromView"],"WidgetsBindingObserver":[]},"_AnyTapGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"ModalBarrier":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedModalBarrier":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnyTapGestureRecognizerFactory":{"GestureRecognizerFactory":["_AnyTapGestureRecognizer"]},"_ModalBarrierGestureDetector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"NavigationToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Page":{"RouteSettings":[]},"HeroControllerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Navigator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"NavigatorState":{"State":["Navigator"]},"_NotAnnounced":{"Route":["~"]},"_NavigatorPushObservation":{"_NavigatorObservation":[]},"_NavigatorPopObservation":{"_NavigatorObservation":[]},"_NavigatorRemoveObservation":{"_NavigatorObservation":[]},"_NavigatorReplaceObservation":{"_NavigatorObservation":[]},"_History":{"Iterable":["_RouteEntry"],"Listenable":[],"Iterable.E":"_RouteEntry"},"_HistoryProperty":{"RestorableProperty":["Map>?"],"Listenable":[]},"NavigatorPopHandler":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_NavigatorPopHandlerState":{"State":["NavigatorPopHandler"]},"NotificationListener":{"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_NotificationElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_OverflowBarParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"OverflowBar":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderOverflowBar":{"RenderBoxContainerDefaultsMixin":["RenderBox","_OverflowBarParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","_OverflowBarParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"_OverflowBarParentData","RenderBoxContainerDefaultsMixin.1":"_OverflowBarParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"OverlayEntry":{"Listenable":[]},"_OverlayEntryWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OverlayEntryWidgetState":{"State":["_OverlayEntryWidget"]},"Overlay":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"OverlayState":{"State":["Overlay"]},"_RenderTheater":{"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","StackParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"StackParentData","ContainerRenderObjectMixin.0":"RenderBox"},"OverlayPortal":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OverlayEntryLocation":{"LinkedListEntry":["_OverlayEntryLocation"],"LinkedListEntry.E":"_OverlayEntryLocation"},"_RenderTheaterMarker":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderDeferredLayoutBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"LinkedListEntry":["_RenderDeferredLayoutBox"],"LinkedListEntry.E":"_RenderDeferredLayoutBox"},"_RenderLayoutSurrogateProxyBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_Theater":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TheaterElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_TheaterParentData":{"StackParentData":[],"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"_OverlayPortalState":{"State":["OverlayPortal"]},"_OverlayPortal":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OverlayPortalElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_DeferredLayout":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"GlowingOverscrollIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"StretchingOverscrollIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"OverscrollIndicatorNotification":{"ViewportNotificationMixin":[]},"_GlowingOverscrollIndicatorState":{"State":["GlowingOverscrollIndicator"]},"_GlowController":{"Listenable":[]},"_GlowingOverscrollIndicatorPainter":{"Listenable":[]},"_StretchingOverscrollIndicatorState":{"State":["StretchingOverscrollIndicator"]},"_StretchController":{"Listenable":[]},"PageStorageKey":{"ValueKey":["1"],"LocalKey":[],"Key":[]},"PageStorage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PageView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PageController":{"ScrollController":[],"Listenable":[]},"PageMetrics":{"ScrollMetrics":[]},"_PagePosition":{"ScrollPosition":[],"PageMetrics":[],"ViewportOffset":[],"Listenable":[],"ScrollMetrics":[]},"_PageViewState":{"State":["PageView"]},"PageRoute":{"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"]},"_PlaceholderPainter":{"Listenable":[]},"Placeholder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PlatformViewLink":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PlatformViewSurface":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"HtmlElementView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PlatformViewLinkState":{"State":["PlatformViewLink"]},"_PlatformViewPlaceholderBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_PlatformViewPlaceHolder":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"PopScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PopScopeState":{"State":["PopScope"],"PopEntry":[]},"PreferredSize":{"StatelessWidget":[],"PreferredSizeWidget":[],"Widget":[],"DiagnosticableTree":[]},"PrimaryScrollController":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverReorderableList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverReorderableListState":{"State":["SliverReorderableList"]},"_ReorderableItem":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ReorderableItemState":{"State":["_ReorderableItem"]},"ReorderableDragStartListener":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReorderableDelayedDragStartListener":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DragItemProxy":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ReorderableItemGlobalKey":{"GlobalObjectKey":["State"],"GlobalKey":["State"],"Key":[],"GlobalKey.T":"State","GlobalObjectKey.T":"State"},"RestorationScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"UnmanagedRestorationScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"RootRestorationScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RestorableProperty":{"Listenable":[]},"_RestorationScopeState":{"State":["RestorationScope"]},"_RootRestorationScopeState":{"State":["RootRestorationScope"]},"RestorableValue":{"RestorableProperty":["1"],"Listenable":[]},"_RestorablePrimitiveValueN":{"RestorableProperty":["1"],"Listenable":[]},"_RestorablePrimitiveValue":{"_RestorablePrimitiveValueN":["1"],"RestorableProperty":["1"],"Listenable":[]},"RestorableNum":{"_RestorablePrimitiveValueN":["1"],"RestorableProperty":["1"],"Listenable":[],"RestorableValue.T":"1","_RestorablePrimitiveValueN.T":"1"},"RestorableBool":{"_RestorablePrimitiveValueN":["bool"],"RestorableProperty":["bool"],"Listenable":[],"RestorableValue.T":"bool","_RestorablePrimitiveValueN.T":"bool"},"RestorableBoolN":{"_RestorablePrimitiveValueN":["bool?"],"RestorableProperty":["bool?"],"Listenable":[],"RestorableValue.T":"bool?","_RestorablePrimitiveValueN.T":"bool?"},"RestorableStringN":{"_RestorablePrimitiveValueN":["String?"],"RestorableProperty":["String?"],"Listenable":[],"RestorableValue.T":"String?","_RestorablePrimitiveValueN.T":"String?"},"RestorableDateTimeN":{"RestorableProperty":["DateTime?"],"Listenable":[],"RestorableValue.T":"DateTime?"},"RestorableListenable":{"RestorableProperty":["1"],"Listenable":[]},"RestorableChangeNotifier":{"RestorableProperty":["1"],"Listenable":[]},"RestorableTextEditingController":{"RestorableProperty":["TextEditingController"],"Listenable":[]},"RestorableEnumN":{"RestorableProperty":["1?"],"Listenable":[],"RestorableValue.T":"1?"},"RestorableEnum":{"RestorableProperty":["1"],"Listenable":[],"RestorableValue.T":"1"},"Router":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ChildBackButtonDispatcher":{"_CallbackHookProvider":["Future"]},"_RouterState":{"State":["Router<1>"]},"_RouterScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RestorableRouteInformation":{"RestorableProperty":["RouteInformation?"],"Listenable":[],"RestorableValue.T":"RouteInformation?"},"_ModalScopeStatus":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ModalScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ModalScopeState":{"State":["_ModalScope<1>"]},"OverlayRoute":{"Route":["1"]},"TransitionRoute":{"Route":["1"]},"_DismissModalAction":{"Action":["DismissIntent"],"Action.T":"DismissIntent"},"ModalRoute":{"TransitionRoute":["1"],"Route":["1"]},"PopupRoute":{"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"]},"RouteObserver":{"NavigatorObserver":[]},"RawDialogRoute":{"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"]},"SafeArea":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollAwareImageProvider":{"ImageProvider":["1"],"ImageProvider.T":"1"},"ScrollConfiguration":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollController":{"Listenable":[]},"_SelectionKeepAlive":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SaltedValueKey":{"ValueKey":["Key"],"LocalKey":[],"Key":[],"ValueKey.T":"Key"},"_SelectionKeepAliveState":{"State":["_SelectionKeepAlive"]},"FixedScrollMetrics":{"ScrollMetrics":[]},"ScrollNotification":{"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"ScrollUpdateNotification":{"ScrollNotification":[],"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"ScrollStartNotification":{"ScrollNotification":[],"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"OverscrollNotification":{"ScrollNotification":[],"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"ScrollEndNotification":{"ScrollNotification":[],"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"UserScrollNotification":{"ScrollNotification":[],"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"_ScrollNotificationObserverScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ListenerEntry":{"LinkedListEntry":["_ListenerEntry"],"LinkedListEntry.E":"_ListenerEntry"},"ScrollNotificationObserver":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollNotificationObserverState":{"State":["ScrollNotificationObserver"]},"ScrollPosition":{"ViewportOffset":[],"Listenable":[],"ScrollMetrics":[]},"ScrollMetricsNotification":{"ViewportNotificationMixin":[]},"ScrollPositionWithSingleContext":{"ScrollPosition":[],"ViewportOffset":[],"Listenable":[],"ScrollMetrics":[]},"GridView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomScrollView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoxScrollView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ListView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Scrollable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScrollableScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScrollableSelectionHandler":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollableState":{"State":["Scrollable"]},"_ScrollableSelectionHandlerState":{"State":["_ScrollableSelectionHandler"]},"_ScrollableSelectionContainerDelegate":{"Listenable":[]},"_ScrollSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderScrollSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_RestorableScrollOffset":{"RestorableProperty":["double?"],"Listenable":[],"RestorableValue.T":"double?"},"ScrollIntent":{"Intent":[]},"ScrollAction":{"ContextAction":["ScrollIntent"],"Action":["ScrollIntent"],"Action.T":"ScrollIntent","ContextAction.T":"ScrollIntent"},"RawScrollbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ThumbPressGestureRecognizer":{"LongPressGestureRecognizer":[],"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_TrackTapGestureRecognizer":{"TapGestureRecognizer":[],"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"ScrollbarPainter":{"Listenable":[]},"RawScrollbarState":{"State":["1"]},"MultiSelectableSelectionContainerDelegate":{"Listenable":[]},"SelectionContainer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SelectionRegistrarScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectionContainerState":{"Selectable":[],"State":["SelectionContainer"],"Listenable":[]},"SelectionContainerDelegate":{"Listenable":[]},"SharedAppData":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SharedAppDataState":{"State":["SharedAppData"]},"_SharedAppModel":{"InheritedModel":["Object"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedModel.T":"Object"},"LogicalKeySet":{"KeySet":["LogicalKeyboardKey"],"ShortcutActivator":[],"KeySet.T":"LogicalKeyboardKey"},"SingleActivator":{"ShortcutActivator":[]},"Shortcuts":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ShortcutRegistrar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ShortcutManager":{"Listenable":[]},"_ShortcutsState":{"State":["Shortcuts"]},"CallbackShortcuts":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ShortcutRegistry":{"Listenable":[]},"_ShortcutRegistrarState":{"State":["ShortcutRegistrar"]},"_ShortcutRegistrarScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SingleChildScrollView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SingleChildViewport":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SingleChildViewportElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_RenderSingleChildViewport":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderAbstractViewport":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"SliverWithKeepAliveWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverMultiBoxAdaptorWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverList":{"SliverMultiBoxAdaptorWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverGrid":{"SliverMultiBoxAdaptorWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverMultiBoxAdaptorElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"KeepAlive":{"ParentDataWidget":["KeepAliveParentDataMixin"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"KeepAliveParentDataMixin"},"SliverFillViewport":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SliverFillViewportRenderObjectWidget":{"SliverMultiBoxAdaptorWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SliverFractionalPadding":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderSliverFractionalPadding":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderSliver"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_FloatingHeader":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverPersistentHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FloatingHeaderState":{"State":["_FloatingHeader"]},"_SliverPersistentHeaderElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_SliverPersistentHeaderRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SliverPinnedPersistentHeader":{"_SliverPersistentHeaderRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderSliverPinnedPersistentHeaderForWidgets":{"_RenderSliverPersistentHeaderForWidgetsMixin":[],"RenderSliver":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"SlottedMultiChildRenderObjectWidget":{"SlottedMultiChildRenderObjectWidgetMixin":["1","2"],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlottedRenderObjectElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"SnapshotController":{"Listenable":[]},"SnapshotWidget":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderSnapshotWidget":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"SnapshotPainter":{"Listenable":[]},"_DefaultSnapshotPainter":{"Listenable":[]},"Spacer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Table":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TableElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"TableCell":{"ParentDataWidget":["TableCellParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"TableCellParentData"},"RenderTapRegionSurface":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"TapRegion":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderTapRegion":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"TapRegionSurface":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextFieldTapRegion":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"DefaultTextStyle":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DefaultTextHeightBehavior":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Text":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_NullWidget4":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DoNothingAndStopPropagationTextIntent":{"Intent":[]},"DeleteCharacterIntent":{"Intent":[]},"DeleteToNextWordBoundaryIntent":{"Intent":[]},"DeleteToLineBreakIntent":{"Intent":[]},"DirectionalCaretMovementIntent":{"Intent":[]},"ExtendSelectionByCharacterIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExtendSelectionToNextWordBoundaryIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExtendSelectionToNextWordBoundaryOrCaretLocationIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExpandSelectionToDocumentBoundaryIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExpandSelectionToLineBreakIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExtendSelectionToLineBreakIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExtendSelectionVerticallyToAdjacentLineIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExtendSelectionVerticallyToAdjacentPageIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExtendSelectionToNextParagraphBoundaryIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExtendSelectionToNextParagraphBoundaryOrCaretLocationIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExtendSelectionToDocumentBoundaryIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ScrollToDocumentBoundaryIntent":{"Intent":[]},"ExtendSelectionByPageIntent":{"Intent":[]},"SelectAllTextIntent":{"Intent":[]},"CopySelectionTextIntent":{"Intent":[]},"PasteTextIntent":{"Intent":[]},"RedoTextIntent":{"Intent":[]},"ReplaceTextIntent":{"Intent":[]},"UndoTextIntent":{"Intent":[]},"UpdateSelectionIntent":{"Intent":[]},"TransposeCharactersIntent":{"Intent":[]},"DirectionalTextEditingIntent":{"Intent":[]},"ToolbarItemsParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"_SelectionToolbarWrapper":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectionHandleOverlay":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextSelectionGestureDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectionToolbarWrapperState":{"State":["_SelectionToolbarWrapper"]},"_SelectionHandleOverlayState":{"State":["_SelectionHandleOverlay"]},"_TextSelectionGestureDetectorState":{"State":["TextSelectionGestureDetector"]},"ClipboardStatusNotifier":{"ValueNotifier":["ClipboardStatus"],"Listenable":[],"WidgetsBindingObserver":[]},"TickerMode":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EffectiveTickerMode":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TickerModeState":{"State":["TickerMode"]},"_ConstantValueListenable":{"Listenable":[]},"Title":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FadeTransition":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedState":{"State":["AnimatedWidget"]},"SlideTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"MatrixTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScaleTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RotationTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SizeTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DecoratedBoxTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ListenableBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"UndoHistory":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"UndoHistoryState":{"State":["UndoHistory<1>"]},"UndoHistoryController":{"ValueNotifier":["UndoHistoryValue"],"Listenable":[]},"ValueListenableBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ValueListenableBuilderState":{"State":["ValueListenableBuilder<1>"]},"_ViewScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PipelineOwnerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"View":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RawView":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RawViewElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_DeprecatedRawViewKey":{"GlobalKey":["1"],"Key":[],"GlobalKey.T":"1"},"Viewport":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ViewportElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"ShrinkWrappingViewport":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VisibilityScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Visibility":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_Visibility":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderVisibility":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"WidgetSpan":{"InlineSpan":[],"DiagnosticableTree":[]},"_WidgetSpanParentData":{"ParentDataWidget":["TextParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"TextParentData"},"_AutoScaleInlineWidget":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderScaledInlineWidget":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"WillPopScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WillPopScopeState":{"State":["WillPopScope"]},"BlockPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BlockPickerState":{"State":["BlockPicker"]},"JsonViewer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"JsonObjectViewer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"JsonArrayViewer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_JsonViewerState":{"State":["JsonViewer"]},"JsonObjectViewerState":{"State":["JsonObjectViewer"]},"_JsonArrayViewerState":{"State":["JsonArrayViewer"]},"GlobalCupertinoLocalizations":{"CupertinoLocalizations":[]},"_GlobalCupertinoLocalizationsDelegate":{"LocalizationsDelegate":["CupertinoLocalizations"],"LocalizationsDelegate.T":"CupertinoLocalizations"},"CupertinoLocalizationAf":{"CupertinoLocalizations":[]},"CupertinoLocalizationAm":{"CupertinoLocalizations":[]},"CupertinoLocalizationAr":{"CupertinoLocalizations":[]},"CupertinoLocalizationAs":{"CupertinoLocalizations":[]},"CupertinoLocalizationAz":{"CupertinoLocalizations":[]},"CupertinoLocalizationBe":{"CupertinoLocalizations":[]},"CupertinoLocalizationBg":{"CupertinoLocalizations":[]},"CupertinoLocalizationBn":{"CupertinoLocalizations":[]},"CupertinoLocalizationBs":{"CupertinoLocalizations":[]},"CupertinoLocalizationCa":{"CupertinoLocalizations":[]},"CupertinoLocalizationCs":{"CupertinoLocalizations":[]},"CupertinoLocalizationCy":{"CupertinoLocalizations":[]},"CupertinoLocalizationDa":{"CupertinoLocalizations":[]},"CupertinoLocalizationDe":{"CupertinoLocalizations":[]},"CupertinoLocalizationDeCh":{"CupertinoLocalizations":[]},"CupertinoLocalizationEl":{"CupertinoLocalizations":[]},"CupertinoLocalizationEn":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnAu":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnCa":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnGb":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnIe":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnIn":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnNz":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnSg":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnZa":{"CupertinoLocalizations":[]},"CupertinoLocalizationEs":{"CupertinoLocalizations":[]},"CupertinoLocalizationEs419":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsAr":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsBo":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsCl":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsCo":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsCr":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsDo":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsEc":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsGt":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsHn":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsMx":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsNi":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsPa":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsPe":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsPr":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsPy":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsSv":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsUs":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsUy":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsVe":{"CupertinoLocalizations":[]},"CupertinoLocalizationEt":{"CupertinoLocalizations":[]},"CupertinoLocalizationEu":{"CupertinoLocalizations":[]},"CupertinoLocalizationFa":{"CupertinoLocalizations":[]},"CupertinoLocalizationFi":{"CupertinoLocalizations":[]},"CupertinoLocalizationFil":{"CupertinoLocalizations":[]},"CupertinoLocalizationFr":{"CupertinoLocalizations":[]},"CupertinoLocalizationFrCa":{"CupertinoLocalizations":[]},"CupertinoLocalizationGl":{"CupertinoLocalizations":[]},"CupertinoLocalizationGsw":{"CupertinoLocalizations":[]},"CupertinoLocalizationGu":{"CupertinoLocalizations":[]},"CupertinoLocalizationHe":{"CupertinoLocalizations":[]},"CupertinoLocalizationHi":{"CupertinoLocalizations":[]},"CupertinoLocalizationHr":{"CupertinoLocalizations":[]},"CupertinoLocalizationHu":{"CupertinoLocalizations":[]},"CupertinoLocalizationHy":{"CupertinoLocalizations":[]},"CupertinoLocalizationId":{"CupertinoLocalizations":[]},"CupertinoLocalizationIs":{"CupertinoLocalizations":[]},"CupertinoLocalizationIt":{"CupertinoLocalizations":[]},"CupertinoLocalizationJa":{"CupertinoLocalizations":[]},"CupertinoLocalizationKa":{"CupertinoLocalizations":[]},"CupertinoLocalizationKk":{"CupertinoLocalizations":[]},"CupertinoLocalizationKm":{"CupertinoLocalizations":[]},"CupertinoLocalizationKn":{"CupertinoLocalizations":[]},"CupertinoLocalizationKo":{"CupertinoLocalizations":[]},"CupertinoLocalizationKy":{"CupertinoLocalizations":[]},"CupertinoLocalizationLo":{"CupertinoLocalizations":[]},"CupertinoLocalizationLt":{"CupertinoLocalizations":[]},"CupertinoLocalizationLv":{"CupertinoLocalizations":[]},"CupertinoLocalizationMk":{"CupertinoLocalizations":[]},"CupertinoLocalizationMl":{"CupertinoLocalizations":[]},"CupertinoLocalizationMn":{"CupertinoLocalizations":[]},"CupertinoLocalizationMr":{"CupertinoLocalizations":[]},"CupertinoLocalizationMs":{"CupertinoLocalizations":[]},"CupertinoLocalizationMy":{"CupertinoLocalizations":[]},"CupertinoLocalizationNb":{"CupertinoLocalizations":[]},"CupertinoLocalizationNe":{"CupertinoLocalizations":[]},"CupertinoLocalizationNl":{"CupertinoLocalizations":[]},"CupertinoLocalizationNo":{"CupertinoLocalizations":[]},"CupertinoLocalizationOr":{"CupertinoLocalizations":[]},"CupertinoLocalizationPa":{"CupertinoLocalizations":[]},"CupertinoLocalizationPl":{"CupertinoLocalizations":[]},"CupertinoLocalizationPt":{"CupertinoLocalizations":[]},"CupertinoLocalizationPtPt":{"CupertinoLocalizations":[]},"CupertinoLocalizationRo":{"CupertinoLocalizations":[]},"CupertinoLocalizationRu":{"CupertinoLocalizations":[]},"CupertinoLocalizationSi":{"CupertinoLocalizations":[]},"CupertinoLocalizationSk":{"CupertinoLocalizations":[]},"CupertinoLocalizationSl":{"CupertinoLocalizations":[]},"CupertinoLocalizationSq":{"CupertinoLocalizations":[]},"CupertinoLocalizationSr":{"CupertinoLocalizations":[]},"CupertinoLocalizationSrCyrl":{"CupertinoLocalizations":[]},"CupertinoLocalizationSrLatn":{"CupertinoLocalizations":[]},"CupertinoLocalizationSv":{"CupertinoLocalizations":[]},"CupertinoLocalizationSw":{"CupertinoLocalizations":[]},"CupertinoLocalizationTa":{"CupertinoLocalizations":[]},"CupertinoLocalizationTe":{"CupertinoLocalizations":[]},"CupertinoLocalizationTh":{"CupertinoLocalizations":[]},"CupertinoLocalizationTl":{"CupertinoLocalizations":[]},"CupertinoLocalizationTr":{"CupertinoLocalizations":[]},"CupertinoLocalizationUk":{"CupertinoLocalizations":[]},"CupertinoLocalizationUr":{"CupertinoLocalizations":[]},"CupertinoLocalizationUz":{"CupertinoLocalizations":[]},"CupertinoLocalizationVi":{"CupertinoLocalizations":[]},"CupertinoLocalizationZh":{"CupertinoLocalizations":[]},"CupertinoLocalizationZhHans":{"CupertinoLocalizations":[]},"CupertinoLocalizationZhHant":{"CupertinoLocalizations":[]},"CupertinoLocalizationZhHantHk":{"CupertinoLocalizations":[]},"CupertinoLocalizationZhHantTw":{"CupertinoLocalizations":[]},"CupertinoLocalizationZu":{"CupertinoLocalizations":[]},"MaterialLocalizationAf":{"MaterialLocalizations":[]},"MaterialLocalizationAm":{"MaterialLocalizations":[]},"MaterialLocalizationAr":{"MaterialLocalizations":[]},"MaterialLocalizationAs":{"MaterialLocalizations":[]},"MaterialLocalizationAz":{"MaterialLocalizations":[]},"MaterialLocalizationBe":{"MaterialLocalizations":[]},"MaterialLocalizationBg":{"MaterialLocalizations":[]},"MaterialLocalizationBn":{"MaterialLocalizations":[]},"MaterialLocalizationBs":{"MaterialLocalizations":[]},"MaterialLocalizationCa":{"MaterialLocalizations":[]},"MaterialLocalizationCs":{"MaterialLocalizations":[]},"MaterialLocalizationCy":{"MaterialLocalizations":[]},"MaterialLocalizationDa":{"MaterialLocalizations":[]},"MaterialLocalizationDe":{"MaterialLocalizations":[]},"MaterialLocalizationDeCh":{"MaterialLocalizations":[]},"MaterialLocalizationEl":{"MaterialLocalizations":[]},"MaterialLocalizationEn":{"MaterialLocalizations":[]},"MaterialLocalizationEnAu":{"MaterialLocalizations":[]},"MaterialLocalizationEnCa":{"MaterialLocalizations":[]},"MaterialLocalizationEnGb":{"MaterialLocalizations":[]},"MaterialLocalizationEnIe":{"MaterialLocalizations":[]},"MaterialLocalizationEnIn":{"MaterialLocalizations":[]},"MaterialLocalizationEnNz":{"MaterialLocalizations":[]},"MaterialLocalizationEnSg":{"MaterialLocalizations":[]},"MaterialLocalizationEnZa":{"MaterialLocalizations":[]},"MaterialLocalizationEs":{"MaterialLocalizations":[]},"MaterialLocalizationEs419":{"MaterialLocalizations":[]},"MaterialLocalizationEsAr":{"MaterialLocalizations":[]},"MaterialLocalizationEsBo":{"MaterialLocalizations":[]},"MaterialLocalizationEsCl":{"MaterialLocalizations":[]},"MaterialLocalizationEsCo":{"MaterialLocalizations":[]},"MaterialLocalizationEsCr":{"MaterialLocalizations":[]},"MaterialLocalizationEsDo":{"MaterialLocalizations":[]},"MaterialLocalizationEsEc":{"MaterialLocalizations":[]},"MaterialLocalizationEsGt":{"MaterialLocalizations":[]},"MaterialLocalizationEsHn":{"MaterialLocalizations":[]},"MaterialLocalizationEsMx":{"MaterialLocalizations":[]},"MaterialLocalizationEsNi":{"MaterialLocalizations":[]},"MaterialLocalizationEsPa":{"MaterialLocalizations":[]},"MaterialLocalizationEsPe":{"MaterialLocalizations":[]},"MaterialLocalizationEsPr":{"MaterialLocalizations":[]},"MaterialLocalizationEsPy":{"MaterialLocalizations":[]},"MaterialLocalizationEsSv":{"MaterialLocalizations":[]},"MaterialLocalizationEsUs":{"MaterialLocalizations":[]},"MaterialLocalizationEsUy":{"MaterialLocalizations":[]},"MaterialLocalizationEsVe":{"MaterialLocalizations":[]},"MaterialLocalizationEt":{"MaterialLocalizations":[]},"MaterialLocalizationEu":{"MaterialLocalizations":[]},"MaterialLocalizationFa":{"MaterialLocalizations":[]},"MaterialLocalizationFi":{"MaterialLocalizations":[]},"MaterialLocalizationFil":{"MaterialLocalizations":[]},"MaterialLocalizationFr":{"MaterialLocalizations":[]},"MaterialLocalizationFrCa":{"MaterialLocalizations":[]},"MaterialLocalizationGl":{"MaterialLocalizations":[]},"MaterialLocalizationGsw":{"MaterialLocalizations":[]},"MaterialLocalizationGu":{"MaterialLocalizations":[]},"MaterialLocalizationHe":{"MaterialLocalizations":[]},"MaterialLocalizationHi":{"MaterialLocalizations":[]},"MaterialLocalizationHr":{"MaterialLocalizations":[]},"MaterialLocalizationHu":{"MaterialLocalizations":[]},"MaterialLocalizationHy":{"MaterialLocalizations":[]},"MaterialLocalizationId":{"MaterialLocalizations":[]},"MaterialLocalizationIs":{"MaterialLocalizations":[]},"MaterialLocalizationIt":{"MaterialLocalizations":[]},"MaterialLocalizationJa":{"MaterialLocalizations":[]},"MaterialLocalizationKa":{"MaterialLocalizations":[]},"MaterialLocalizationKk":{"MaterialLocalizations":[]},"MaterialLocalizationKm":{"MaterialLocalizations":[]},"MaterialLocalizationKn":{"MaterialLocalizations":[]},"MaterialLocalizationKo":{"MaterialLocalizations":[]},"MaterialLocalizationKy":{"MaterialLocalizations":[]},"MaterialLocalizationLo":{"MaterialLocalizations":[]},"MaterialLocalizationLt":{"MaterialLocalizations":[]},"MaterialLocalizationLv":{"MaterialLocalizations":[]},"MaterialLocalizationMk":{"MaterialLocalizations":[]},"MaterialLocalizationMl":{"MaterialLocalizations":[]},"MaterialLocalizationMn":{"MaterialLocalizations":[]},"MaterialLocalizationMr":{"MaterialLocalizations":[]},"MaterialLocalizationMs":{"MaterialLocalizations":[]},"MaterialLocalizationMy":{"MaterialLocalizations":[]},"MaterialLocalizationNb":{"MaterialLocalizations":[]},"MaterialLocalizationNe":{"MaterialLocalizations":[]},"MaterialLocalizationNl":{"MaterialLocalizations":[]},"MaterialLocalizationNo":{"MaterialLocalizations":[]},"MaterialLocalizationOr":{"MaterialLocalizations":[]},"MaterialLocalizationPa":{"MaterialLocalizations":[]},"MaterialLocalizationPl":{"MaterialLocalizations":[]},"MaterialLocalizationPs":{"MaterialLocalizations":[]},"MaterialLocalizationPt":{"MaterialLocalizations":[]},"MaterialLocalizationPtPt":{"MaterialLocalizations":[]},"MaterialLocalizationRo":{"MaterialLocalizations":[]},"MaterialLocalizationRu":{"MaterialLocalizations":[]},"MaterialLocalizationSi":{"MaterialLocalizations":[]},"MaterialLocalizationSk":{"MaterialLocalizations":[]},"MaterialLocalizationSl":{"MaterialLocalizations":[]},"MaterialLocalizationSq":{"MaterialLocalizations":[]},"MaterialLocalizationSr":{"MaterialLocalizations":[]},"MaterialLocalizationSrCyrl":{"MaterialLocalizations":[]},"MaterialLocalizationSrLatn":{"MaterialLocalizations":[]},"MaterialLocalizationSv":{"MaterialLocalizations":[]},"MaterialLocalizationSw":{"MaterialLocalizations":[]},"MaterialLocalizationTa":{"MaterialLocalizations":[]},"MaterialLocalizationTe":{"MaterialLocalizations":[]},"MaterialLocalizationTh":{"MaterialLocalizations":[]},"MaterialLocalizationTl":{"MaterialLocalizations":[]},"MaterialLocalizationTr":{"MaterialLocalizations":[]},"MaterialLocalizationUk":{"MaterialLocalizations":[]},"MaterialLocalizationUr":{"MaterialLocalizations":[]},"MaterialLocalizationUz":{"MaterialLocalizations":[]},"MaterialLocalizationVi":{"MaterialLocalizations":[]},"MaterialLocalizationZh":{"MaterialLocalizations":[]},"MaterialLocalizationZhHans":{"MaterialLocalizations":[]},"MaterialLocalizationZhHant":{"MaterialLocalizations":[]},"MaterialLocalizationZhHantHk":{"MaterialLocalizations":[]},"MaterialLocalizationZhHantTw":{"MaterialLocalizations":[]},"MaterialLocalizationZu":{"MaterialLocalizations":[]},"WidgetsLocalizationAf":{"WidgetsLocalizations":[]},"WidgetsLocalizationAm":{"WidgetsLocalizations":[]},"WidgetsLocalizationAr":{"WidgetsLocalizations":[]},"WidgetsLocalizationAs":{"WidgetsLocalizations":[]},"WidgetsLocalizationAz":{"WidgetsLocalizations":[]},"WidgetsLocalizationBe":{"WidgetsLocalizations":[]},"WidgetsLocalizationBg":{"WidgetsLocalizations":[]},"WidgetsLocalizationBn":{"WidgetsLocalizations":[]},"WidgetsLocalizationBs":{"WidgetsLocalizations":[]},"WidgetsLocalizationCa":{"WidgetsLocalizations":[]},"WidgetsLocalizationCs":{"WidgetsLocalizations":[]},"WidgetsLocalizationCy":{"WidgetsLocalizations":[]},"WidgetsLocalizationDa":{"WidgetsLocalizations":[]},"WidgetsLocalizationDe":{"WidgetsLocalizations":[]},"WidgetsLocalizationDeCh":{"WidgetsLocalizations":[]},"WidgetsLocalizationEl":{"WidgetsLocalizations":[]},"WidgetsLocalizationEn":{"WidgetsLocalizations":[]},"WidgetsLocalizationEnAu":{"WidgetsLocalizations":[]},"WidgetsLocalizationEnCa":{"WidgetsLocalizations":[]},"WidgetsLocalizationEnGb":{"WidgetsLocalizations":[]},"WidgetsLocalizationEnIe":{"WidgetsLocalizations":[]},"WidgetsLocalizationEnIn":{"WidgetsLocalizations":[]},"WidgetsLocalizationEnNz":{"WidgetsLocalizations":[]},"WidgetsLocalizationEnSg":{"WidgetsLocalizations":[]},"WidgetsLocalizationEnZa":{"WidgetsLocalizations":[]},"WidgetsLocalizationEs":{"WidgetsLocalizations":[]},"WidgetsLocalizationEs419":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsAr":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsBo":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsCl":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsCo":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsCr":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsDo":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsEc":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsGt":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsHn":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsMx":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsNi":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsPa":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsPe":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsPr":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsPy":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsSv":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsUs":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsUy":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsVe":{"WidgetsLocalizations":[]},"WidgetsLocalizationEt":{"WidgetsLocalizations":[]},"WidgetsLocalizationEu":{"WidgetsLocalizations":[]},"WidgetsLocalizationFa":{"WidgetsLocalizations":[]},"WidgetsLocalizationFi":{"WidgetsLocalizations":[]},"WidgetsLocalizationFil":{"WidgetsLocalizations":[]},"WidgetsLocalizationFr":{"WidgetsLocalizations":[]},"WidgetsLocalizationFrCa":{"WidgetsLocalizations":[]},"WidgetsLocalizationGl":{"WidgetsLocalizations":[]},"WidgetsLocalizationGsw":{"WidgetsLocalizations":[]},"WidgetsLocalizationGu":{"WidgetsLocalizations":[]},"WidgetsLocalizationHe":{"WidgetsLocalizations":[]},"WidgetsLocalizationHi":{"WidgetsLocalizations":[]},"WidgetsLocalizationHr":{"WidgetsLocalizations":[]},"WidgetsLocalizationHu":{"WidgetsLocalizations":[]},"WidgetsLocalizationHy":{"WidgetsLocalizations":[]},"WidgetsLocalizationId":{"WidgetsLocalizations":[]},"WidgetsLocalizationIs":{"WidgetsLocalizations":[]},"WidgetsLocalizationIt":{"WidgetsLocalizations":[]},"WidgetsLocalizationJa":{"WidgetsLocalizations":[]},"WidgetsLocalizationKa":{"WidgetsLocalizations":[]},"WidgetsLocalizationKk":{"WidgetsLocalizations":[]},"WidgetsLocalizationKm":{"WidgetsLocalizations":[]},"WidgetsLocalizationKn":{"WidgetsLocalizations":[]},"WidgetsLocalizationKo":{"WidgetsLocalizations":[]},"WidgetsLocalizationKy":{"WidgetsLocalizations":[]},"WidgetsLocalizationLo":{"WidgetsLocalizations":[]},"WidgetsLocalizationLt":{"WidgetsLocalizations":[]},"WidgetsLocalizationLv":{"WidgetsLocalizations":[]},"WidgetsLocalizationMk":{"WidgetsLocalizations":[]},"WidgetsLocalizationMl":{"WidgetsLocalizations":[]},"WidgetsLocalizationMn":{"WidgetsLocalizations":[]},"WidgetsLocalizationMr":{"WidgetsLocalizations":[]},"WidgetsLocalizationMs":{"WidgetsLocalizations":[]},"WidgetsLocalizationMy":{"WidgetsLocalizations":[]},"WidgetsLocalizationNb":{"WidgetsLocalizations":[]},"WidgetsLocalizationNe":{"WidgetsLocalizations":[]},"WidgetsLocalizationNl":{"WidgetsLocalizations":[]},"WidgetsLocalizationNo":{"WidgetsLocalizations":[]},"WidgetsLocalizationOr":{"WidgetsLocalizations":[]},"WidgetsLocalizationPa":{"WidgetsLocalizations":[]},"WidgetsLocalizationPl":{"WidgetsLocalizations":[]},"WidgetsLocalizationPs":{"WidgetsLocalizations":[]},"WidgetsLocalizationPt":{"WidgetsLocalizations":[]},"WidgetsLocalizationPtPt":{"WidgetsLocalizations":[]},"WidgetsLocalizationRo":{"WidgetsLocalizations":[]},"WidgetsLocalizationRu":{"WidgetsLocalizations":[]},"WidgetsLocalizationSi":{"WidgetsLocalizations":[]},"WidgetsLocalizationSk":{"WidgetsLocalizations":[]},"WidgetsLocalizationSl":{"WidgetsLocalizations":[]},"WidgetsLocalizationSq":{"WidgetsLocalizations":[]},"WidgetsLocalizationSr":{"WidgetsLocalizations":[]},"WidgetsLocalizationSrCyrl":{"WidgetsLocalizations":[]},"WidgetsLocalizationSrLatn":{"WidgetsLocalizations":[]},"WidgetsLocalizationSv":{"WidgetsLocalizations":[]},"WidgetsLocalizationSw":{"WidgetsLocalizations":[]},"WidgetsLocalizationTa":{"WidgetsLocalizations":[]},"WidgetsLocalizationTe":{"WidgetsLocalizations":[]},"WidgetsLocalizationTh":{"WidgetsLocalizations":[]},"WidgetsLocalizationTl":{"WidgetsLocalizations":[]},"WidgetsLocalizationTr":{"WidgetsLocalizations":[]},"WidgetsLocalizationUk":{"WidgetsLocalizations":[]},"WidgetsLocalizationUr":{"WidgetsLocalizations":[]},"WidgetsLocalizationUz":{"WidgetsLocalizations":[]},"WidgetsLocalizationVi":{"WidgetsLocalizations":[]},"WidgetsLocalizationZh":{"WidgetsLocalizations":[]},"WidgetsLocalizationZhHans":{"WidgetsLocalizations":[]},"WidgetsLocalizationZhHant":{"WidgetsLocalizations":[]},"WidgetsLocalizationZhHantHk":{"WidgetsLocalizations":[]},"WidgetsLocalizationZhHantTw":{"WidgetsLocalizations":[]},"WidgetsLocalizationZu":{"WidgetsLocalizations":[]},"GlobalMaterialLocalizations":{"MaterialLocalizations":[]},"_MaterialLocalizationsDelegate0":{"LocalizationsDelegate":["MaterialLocalizations"],"LocalizationsDelegate.T":"MaterialLocalizations"},"GlobalWidgetsLocalizations":{"WidgetsLocalizations":[]},"_WidgetsLocalizationsDelegate0":{"LocalizationsDelegate":["WidgetsLocalizations"],"LocalizationsDelegate.T":"WidgetsLocalizations"},"StoreProvider":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"StoreConnector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StoreStreamListener":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"StoreBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StoreStreamListenerState":{"State":["_StoreStreamListener<1,2>"]},"StoreProviderError":{"Error":[]},"ConverterError":{"Error":[]},"ActionPaneConfiguration":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerMotion":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomSlidableAction":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAction":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableAutoCloseData":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseBarrierNotificationSender":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseBarrierBehaviorListener":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableNotificationSender":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseBehaviorInteractor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseInteractor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseBehaviorListener":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseNotificationSender":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseBarrierInteractor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableAutoCloseBarrierNotificationSenderState":{"State":["SlidableAutoCloseBarrierNotificationSender"]},"_SlidableAutoCloseBarrierBehaviorListenerState":{"State":["SlidableAutoCloseBarrierBehaviorListener"]},"_SlidableNotificationSenderState0":{"State":["_SlidableNotificationSender"]},"_ValueNotifier":{"ValueNotifier":["1"],"Listenable":[]},"SlidableDismissal":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableDismissalState":{"State":["SlidableDismissal"]},"_SizeTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FlexEntranceTransitionParentData":{"FlexParentData":[],"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"FlexEntranceTransition":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderFlexEntranceTransition":{"RenderBoxContainerDefaultsMixin":["RenderBox","_FlexEntranceTransitionParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","_FlexEntranceTransitionParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"_FlexEntranceTransitionParentData","RenderBoxContainerDefaultsMixin.1":"_FlexEntranceTransitionParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"SlidableGestureDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableGestureDetectorState":{"State":["SlidableGestureDetector"]},"_InheritedSlidableNotification":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableGroupBehaviorListener":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableGroupBehaviorListenerState":{"State":["SlidableGroupBehaviorListener<1>"]},"_SlidableNotificationListenerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableNotificationSender":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableNotificationSenderState":{"State":["SlidableNotificationSender"]},"SlidableScrollingBehavior":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableScrollingBehaviorState":{"State":["SlidableScrollingBehavior"]},"ActionPane":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ActionPaneScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Slidable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableControllerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ActionPaneState":{"State":["ActionPane"]},"_SlidableState":{"State":["Slidable"]},"_SlidableClipper":{"CustomClipper":["Rect"],"Listenable":[]},"StaggeredGridParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"RenderStaggeredGrid":{"RenderBoxContainerDefaultsMixin":["RenderBox","StaggeredGridParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","StaggeredGridParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"StaggeredGridParentData","RenderBoxContainerDefaultsMixin.1":"StaggeredGridParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"StaggeredGrid":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomSizeTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"StyledToast":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StyledToastWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"StyledToastWidgetState":{"State":["_StyledToastWidget"],"WidgetsBindingObserver":[]},"_StyledToastState":{"State":["StyledToast"]},"StyledToastTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"BuildInOrder":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderBuildInOrder":{"RenderBoxContainerDefaultsMixin":["RenderBox","ContainerBoxParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","ContainerBoxParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"ContainerBoxParentData","RenderBoxContainerDefaultsMixin.1":"ContainerBoxParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"Follower":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderFollower":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"FollowerLayer":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"FollowerFadeOutBeyondBoundary":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Leader":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderLeader":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"LeaderLayer":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"LeaderLink":{"Listenable":[]},"AttributeName":{"Comparable":["Object"]},"Element":{"Node0":[]},"Document":{"Node0":[]},"DocumentType":{"Node0":[]},"Text0":{"Node0":[]},"Comment":{"Node0":[]},"NodeList":{"ListProxy":["Node0"],"ListBase":["Node0"],"List":["Node0"],"EfficientLengthIterable":["Node0"],"Iterable":["Node0"],"ListBase.E":"Node0","Iterable.E":"Node0"},"FilteredElementList":{"ListBase":["Element"],"List":["Element"],"EfficientLengthIterable":["Element"],"Iterable":["Element"],"ListBase.E":"Element","Iterable.E":"Element"},"ParseError":{"Exception":[]},"InitialPhase":{"Phase":[]},"BeforeHtmlPhase":{"Phase":[]},"BeforeHeadPhase":{"Phase":[]},"InHeadPhase":{"Phase":[]},"AfterHeadPhase":{"Phase":[]},"InBodyPhase":{"Phase":[]},"TextPhase":{"Phase":[]},"InTablePhase":{"Phase":[]},"InTableTextPhase":{"Phase":[]},"InCaptionPhase":{"Phase":[]},"InColumnGroupPhase":{"Phase":[]},"InTableBodyPhase":{"Phase":[]},"InRowPhase":{"Phase":[]},"InCellPhase":{"Phase":[]},"InSelectPhase":{"Phase":[]},"InSelectInTablePhase":{"Phase":[]},"InForeignContentPhase":{"Phase":[]},"AfterBodyPhase":{"Phase":[]},"InFramesetPhase":{"Phase":[]},"AfterFramesetPhase":{"Phase":[]},"AfterAfterBodyPhase":{"Phase":[]},"AfterAfterFramesetPhase":{"Phase":[]},"ElementCssClassSet":{"SetBase":["String"],"Set":["String"],"EfficientLengthIterable":["String"],"Iterable":["String"],"Iterable.E":"String","SetBase.E":"String"},"_CssClassSetImpl":{"SetBase":["String"],"Set":["String"],"EfficientLengthIterable":["String"],"Iterable":["String"]},"_EncodingRangeException":{"Exception":[]},"ListProxy":{"ListBase":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"StringToken":{"Token0":[]},"TagToken":{"Token0":[]},"StartTagToken":{"TagToken":[],"Token0":[]},"EndTagToken":{"TagToken":[],"Token0":[]},"ParseErrorToken":{"StringToken":[],"Token0":[]},"CharactersToken":{"StringToken":[],"Token0":[]},"SpaceCharactersToken":{"StringToken":[],"Token0":[]},"CommentToken":{"StringToken":[],"Token0":[]},"DoctypeToken":{"Token0":[]},"ActiveFormattingElements":{"ListProxy":["Element?"],"ListBase":["Element?"],"List":["Element?"],"EfficientLengthIterable":["Element?"],"Iterable":["Element?"],"ListBase.E":"Element?","Iterable.E":"Element?"},"BaseClient":{"Client0":[]},"BrowserClient":{"Client0":[]},"ByteStream":{"Stream":["List"],"Stream.T":"List"},"ClientException":{"Exception":[]},"CaseInsensitiveMap":{"CanonicalizedMap":["String","String","1"],"Map":["String","1"],"CanonicalizedMap.V":"1","CanonicalizedMap.K":"String","CanonicalizedMap.C":"String"},"ColorFloat16":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorFloat32":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorFloat64":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorInt16":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorInt32":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorInt8":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorUint1":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorUint16":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorUint2":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorUint32":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorUint4":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorUint8":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorRgb8":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorRgba8":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"IfdByteValue":{"IfdValue":[]},"IfdValueAscii":{"IfdValue":[]},"InternalPngFrame":{"PngFrame":[]},"Image0":{"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageData0":{"Iterable":["Pixel"]},"ImageDataFloat16":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataFloat32":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataFloat64":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataInt16":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataInt32":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataInt8":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataUint1":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataUint16":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataUint2":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataUint32":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataUint4":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataUint8":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"PixelFloat16":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelFloat32":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelFloat64":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelInt16":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelInt32":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelInt8":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelUint1":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelUint16":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelUint2":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelUint32":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelUint4":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelUint8":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelUndefined":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ImageException":{"Exception":[]},"BillingResultWrapper":{"HasBillingResponse":[]},"ProductDetailsResponseWrapper":{"HasBillingResponse":[]},"PurchasesResultWrapper":{"HasBillingResponse":[]},"GooglePlayProductDetails":{"ProductDetails":[]},"GooglePlayPurchaseDetails":{"PurchaseDetails":[]},"InAppPurchaseException":{"Exception":[]},"AppStoreProductDetails":{"ProductDetails":[]},"AppStorePurchaseDetails":{"PurchaseDetails":[]},"_DateFormatLiteralField":{"_DateFormatField":[]},"_DateFormatQuotedField":{"_DateFormatField":[]},"_DateFormatPatternField":{"_DateFormatField":[]},"LocaleDataException":{"Exception":[]},"CountryPickerDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CountryPickerDialogState":{"State":["CountryPickerDialog"]},"IntlPhoneField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_IntlPhoneFieldState":{"State":["IntlPhoneField"]},"_$AccountEntitySerializer":{"StructuredSerializer":["AccountEntity"],"Serializer":["AccountEntity"]},"_$AccountEntity":{"AccountEntity":[]},"BankAccountEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$BankAccountListResponseSerializer":{"StructuredSerializer":["BankAccountListResponse"],"Serializer":["BankAccountListResponse"]},"_$BankAccountItemResponseSerializer":{"StructuredSerializer":["BankAccountItemResponse"],"Serializer":["BankAccountItemResponse"]},"_$BankAccountEntitySerializer":{"StructuredSerializer":["BankAccountEntity"],"Serializer":["BankAccountEntity"]},"_$BankAccountListResponse":{"BankAccountListResponse":[]},"_$BankAccountItemResponse":{"BankAccountItemResponse":[]},"_$BankAccountEntity":{"BankAccountEntity":[],"BaseEntity":[],"SelectableEntity":[]},"ClientEntity":{"BaseEntity":[],"SelectableEntity":[],"HasActivities":[]},"ClientContactEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$ClientListResponseSerializer":{"StructuredSerializer":["ClientListResponse"],"Serializer":["ClientListResponse"]},"_$ClientItemResponseSerializer":{"StructuredSerializer":["ClientItemResponse"],"Serializer":["ClientItemResponse"]},"_$ClientEntitySerializer":{"StructuredSerializer":["ClientEntity"],"Serializer":["ClientEntity"]},"_$ClientContactEntitySerializer":{"StructuredSerializer":["ClientContactEntity"],"Serializer":["ClientContactEntity"]},"_$ClientListResponse":{"ClientListResponse":[]},"_$ClientItemResponse":{"ClientItemResponse":[]},"_$ClientEntity":{"ClientEntity":[],"BaseEntity":[],"SelectableEntity":[],"HasActivities":[]},"_$ClientContactEntity":{"ClientContactEntity":[],"BaseEntity":[],"SelectableEntity":[]},"CompanyGatewayEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$CompanyGatewayListResponseSerializer":{"StructuredSerializer":["CompanyGatewayListResponse"],"Serializer":["CompanyGatewayListResponse"]},"_$CompanyGatewayItemResponseSerializer":{"StructuredSerializer":["CompanyGatewayItemResponse"],"Serializer":["CompanyGatewayItemResponse"]},"_$CompanyGatewayEntitySerializer":{"StructuredSerializer":["CompanyGatewayEntity"],"Serializer":["CompanyGatewayEntity"]},"_$FeesAndLimitsSettingsSerializer":{"StructuredSerializer":["FeesAndLimitsSettings"],"Serializer":["FeesAndLimitsSettings"]},"_$CompanyGatewayListResponse":{"CompanyGatewayListResponse":[]},"_$CompanyGatewayItemResponse":{"CompanyGatewayItemResponse":[]},"_$CompanyGatewayEntity":{"CompanyGatewayEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$FeesAndLimitsSettings":{"FeesAndLimitsSettings":[]},"CompanyEntity":{"BaseEntity":[],"SelectableEntity":[]},"GatewayEntity":{"SelectableEntity":[]},"_$CompanyEntitySerializer":{"StructuredSerializer":["CompanyEntity"],"Serializer":["CompanyEntity"]},"_$GatewayEntitySerializer":{"StructuredSerializer":["GatewayEntity"],"Serializer":["GatewayEntity"]},"_$GatewayOptionsEntitySerializer":{"StructuredSerializer":["GatewayOptionsEntity"],"Serializer":["GatewayOptionsEntity"]},"_$UserCompanyEntitySerializer":{"StructuredSerializer":["UserCompanyEntity"],"Serializer":["UserCompanyEntity"]},"_$UserSettingsEntitySerializer":{"StructuredSerializer":["UserSettingsEntity"],"Serializer":["UserSettingsEntity"]},"_$ReportSettingsEntitySerializer":{"StructuredSerializer":["ReportSettingsEntity"],"Serializer":["ReportSettingsEntity"]},"_$CompanyItemResponseSerializer":{"StructuredSerializer":["CompanyItemResponse"],"Serializer":["CompanyItemResponse"]},"_$RegistrationFieldEntitySerializer":{"StructuredSerializer":["RegistrationFieldEntity"],"Serializer":["RegistrationFieldEntity"]},"_$DashboardFieldSerializer":{"StructuredSerializer":["DashboardField"],"Serializer":["DashboardField"]},"_$CompanyEntity":{"CompanyEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$GatewayEntity":{"GatewayEntity":[],"SelectableEntity":[]},"_$GatewayOptionsEntity":{"GatewayOptionsEntity":[]},"_$UserCompanyEntity":{"UserCompanyEntity":[]},"_$UserSettingsEntity":{"UserSettingsEntity":[]},"_$ReportSettingsEntity":{"ReportSettingsEntity":[]},"_$CompanyItemResponse":{"CompanyItemResponse":[]},"_$RegistrationFieldEntity":{"RegistrationFieldEntity":[]},"_$DashboardField":{"DashboardField":[]},"_$CreditListResponseSerializer":{"StructuredSerializer":["CreditListResponse"],"Serializer":["CreditListResponse"]},"_$CreditItemResponseSerializer":{"StructuredSerializer":["CreditItemResponse"],"Serializer":["CreditItemResponse"]},"_$DateRangeSerializer":{"PrimitiveSerializer":["DateRange"],"Serializer":["DateRange"]},"_$DateRangeComparisonSerializer":{"PrimitiveSerializer":["DateRangeComparison"],"Serializer":["DateRangeComparison"]},"DesignEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$DesignListResponseSerializer":{"StructuredSerializer":["DesignListResponse"],"Serializer":["DesignListResponse"]},"_$DesignItemResponseSerializer":{"StructuredSerializer":["DesignItemResponse"],"Serializer":["DesignItemResponse"]},"_$DesignPreviewRequestSerializer":{"StructuredSerializer":["DesignPreviewRequest"],"Serializer":["DesignPreviewRequest"]},"_$DesignEntitySerializer":{"StructuredSerializer":["DesignEntity"],"Serializer":["DesignEntity"]},"_$DesignListResponse":{"DesignListResponse":[]},"_$DesignItemResponse":{"DesignItemResponse":[]},"_$DesignEntity":{"DesignEntity":[],"BaseEntity":[],"SelectableEntity":[]},"DocumentEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$DocumentListResponseSerializer":{"StructuredSerializer":["DocumentListResponse"],"Serializer":["DocumentListResponse"]},"_$DocumentItemResponseSerializer":{"StructuredSerializer":["DocumentItemResponse"],"Serializer":["DocumentItemResponse"]},"_$DocumentEntitySerializer":{"StructuredSerializer":["DocumentEntity"],"Serializer":["DocumentEntity"]},"_$DocumentListResponse":{"DocumentListResponse":[]},"_$DocumentItemResponse":{"DocumentItemResponse":[]},"_$DocumentEntity":{"DocumentEntity":[],"BaseEntity":[],"SelectableEntity":[]},"BaseEntity":{"SelectableEntity":[]},"_$EntityTypeSerializer":{"PrimitiveSerializer":["EntityType"],"Serializer":["EntityType"]},"_$EntityStateSerializer":{"PrimitiveSerializer":["EntityState"],"Serializer":["EntityState"]},"_$EmailTemplateSerializer":{"PrimitiveSerializer":["EmailTemplate"],"Serializer":["EmailTemplate"]},"_$LoginResponseSerializer":{"StructuredSerializer":["LoginResponse"],"Serializer":["LoginResponse"]},"_$ActivityEntitySerializer":{"StructuredSerializer":["ActivityEntity"],"Serializer":["ActivityEntity"]},"_$LedgerEntitySerializer":{"StructuredSerializer":["LedgerEntity"],"Serializer":["LedgerEntity"]},"_$LoginResponse":{"LoginResponse":[]},"_$ActivityEntity":{"ActivityEntity":[]},"_$LedgerEntity":{"LedgerEntity":[]},"ExpenseCategoryEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$ExpenseCategoryListResponseSerializer":{"StructuredSerializer":["ExpenseCategoryListResponse"],"Serializer":["ExpenseCategoryListResponse"]},"_$ExpenseCategoryItemResponseSerializer":{"StructuredSerializer":["ExpenseCategoryItemResponse"],"Serializer":["ExpenseCategoryItemResponse"]},"_$ExpenseCategoryEntitySerializer":{"StructuredSerializer":["ExpenseCategoryEntity"],"Serializer":["ExpenseCategoryEntity"]},"_$ExpenseCategoryListResponse":{"ExpenseCategoryListResponse":[]},"_$ExpenseCategoryItemResponse":{"ExpenseCategoryItemResponse":[]},"_$ExpenseCategoryEntity":{"ExpenseCategoryEntity":[],"BaseEntity":[],"SelectableEntity":[]},"ExpenseEntity":{"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"ExpenseStatusEntity":{"EntityStatus":[],"SelectableEntity":[]},"_$ExpenseListResponseSerializer":{"StructuredSerializer":["ExpenseListResponse"],"Serializer":["ExpenseListResponse"]},"_$ExpenseItemResponseSerializer":{"StructuredSerializer":["ExpenseItemResponse"],"Serializer":["ExpenseItemResponse"]},"_$ExpenseEntitySerializer":{"StructuredSerializer":["ExpenseEntity"],"Serializer":["ExpenseEntity"]},"_$ExpenseScheduleEntitySerializer":{"StructuredSerializer":["ExpenseScheduleEntity"],"Serializer":["ExpenseScheduleEntity"]},"_$ExpenseStatusEntitySerializer":{"StructuredSerializer":["ExpenseStatusEntity"],"Serializer":["ExpenseStatusEntity"]},"_$ExpenseListResponse":{"ExpenseListResponse":[]},"_$ExpenseItemResponse":{"ExpenseItemResponse":[]},"_$ExpenseEntity":{"ExpenseEntity":[],"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"_$ExpenseScheduleEntity":{"ExpenseScheduleEntity":[]},"_$ExpenseStatusEntity":{"ExpenseStatusEntity":[],"EntityStatus":[],"SelectableEntity":[]},"GatewayTokenEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$GatewayTokenListResponseSerializer":{"StructuredSerializer":["GatewayTokenListResponse"],"Serializer":["GatewayTokenListResponse"]},"_$GatewayTokenItemResponseSerializer":{"StructuredSerializer":["GatewayTokenItemResponse"],"Serializer":["GatewayTokenItemResponse"]},"_$GatewayTokenEntitySerializer":{"StructuredSerializer":["GatewayTokenEntity"],"Serializer":["GatewayTokenEntity"]},"_$GatewayTokenMetaEntitySerializer":{"StructuredSerializer":["GatewayTokenMetaEntity"],"Serializer":["GatewayTokenMetaEntity"]},"_$GatewayTokenEntity":{"GatewayTokenEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$GatewayTokenMetaEntity":{"GatewayTokenMetaEntity":[]},"GroupEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$GroupListResponseSerializer":{"StructuredSerializer":["GroupListResponse"],"Serializer":["GroupListResponse"]},"_$GroupItemResponseSerializer":{"StructuredSerializer":["GroupItemResponse"],"Serializer":["GroupItemResponse"]},"_$GroupEntitySerializer":{"StructuredSerializer":["GroupEntity"],"Serializer":["GroupEntity"]},"_$GroupListResponse":{"GroupListResponse":[]},"_$GroupItemResponse":{"GroupItemResponse":[]},"_$GroupEntity":{"GroupEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$HealthCheckResponseSerializer":{"StructuredSerializer":["HealthCheckResponse"],"Serializer":["HealthCheckResponse"]},"_$HealthCheckPHPResponseSerializer":{"StructuredSerializer":["HealthCheckPHPResponse"],"Serializer":["HealthCheckPHPResponse"]},"_$HealthCheckResponse":{"HealthCheckResponse":[]},"_$HealthCheckPHPResponse":{"HealthCheckPHPResponse":[]},"_$PreImportResponseSerializer":{"StructuredSerializer":["PreImportResponse"],"Serializer":["PreImportResponse"]},"_$PreImportResponseEntityDetailsSerializer":{"StructuredSerializer":["PreImportResponseEntityDetails"],"Serializer":["PreImportResponseEntityDetails"]},"_$ImportRequestSerializer":{"StructuredSerializer":["ImportRequest"],"Serializer":["ImportRequest"]},"_$ImportRequestMappingSerializer":{"StructuredSerializer":["ImportRequestMapping"],"Serializer":["ImportRequestMapping"]},"_$PreImportResponse":{"PreImportResponse":[]},"_$PreImportResponseEntityDetails":{"PreImportResponseEntityDetails":[]},"_$ImportRequestMapping":{"ImportRequestMapping":[]},"InvoiceEntity":{"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[],"BelongsToVendor":[]},"InvitationEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$InvoiceListResponseSerializer":{"StructuredSerializer":["InvoiceListResponse"],"Serializer":["InvoiceListResponse"]},"_$InvoiceItemResponseSerializer":{"StructuredSerializer":["InvoiceItemResponse"],"Serializer":["InvoiceItemResponse"]},"_$InvoiceEntitySerializer":{"StructuredSerializer":["InvoiceEntity"],"Serializer":["InvoiceEntity"]},"_$InvoiceItemEntitySerializer":{"StructuredSerializer":["InvoiceItemEntity"],"Serializer":["InvoiceItemEntity"]},"_$InvitationEntitySerializer":{"StructuredSerializer":["InvitationEntity"],"Serializer":["InvitationEntity"]},"_$InvoiceScheduleEntitySerializer":{"StructuredSerializer":["InvoiceScheduleEntity"],"Serializer":["InvoiceScheduleEntity"]},"_$InvoiceHistoryEntitySerializer":{"StructuredSerializer":["InvoiceHistoryEntity"],"Serializer":["InvoiceHistoryEntity"]},"_$InvoiceListResponse":{"InvoiceListResponse":[]},"_$InvoiceItemResponse":{"InvoiceItemResponse":[]},"_$InvoiceEntity":{"InvoiceEntity":[],"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[],"BelongsToVendor":[]},"_$InvoiceItemEntity":{"InvoiceItemEntity":[]},"_$InvitationEntity":{"InvitationEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$InvoiceScheduleEntity":{"InvoiceScheduleEntity":[]},"_$InvoiceHistoryEntity":{"InvoiceHistoryEntity":[]},"PaymentEntity":{"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"PaymentableEntity":{"SelectableEntity":[]},"_$PaymentListResponseSerializer":{"StructuredSerializer":["PaymentListResponse"],"Serializer":["PaymentListResponse"]},"_$PaymentItemResponseSerializer":{"StructuredSerializer":["PaymentItemResponse"],"Serializer":["PaymentItemResponse"]},"_$PaymentEntitySerializer":{"StructuredSerializer":["PaymentEntity"],"Serializer":["PaymentEntity"]},"_$PaymentableEntitySerializer":{"StructuredSerializer":["PaymentableEntity"],"Serializer":["PaymentableEntity"]},"_$PaymentListResponse":{"PaymentListResponse":[]},"_$PaymentItemResponse":{"PaymentItemResponse":[]},"_$PaymentEntity":{"PaymentEntity":[],"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"_$PaymentableEntity":{"PaymentableEntity":[],"SelectableEntity":[]},"PaymentTermEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$PaymentTermListResponseSerializer":{"StructuredSerializer":["PaymentTermListResponse"],"Serializer":["PaymentTermListResponse"]},"_$PaymentTermItemResponseSerializer":{"StructuredSerializer":["PaymentTermItemResponse"],"Serializer":["PaymentTermItemResponse"]},"_$PaymentTermEntitySerializer":{"StructuredSerializer":["PaymentTermEntity"],"Serializer":["PaymentTermEntity"]},"_$PaymentTermListResponse":{"PaymentTermListResponse":[]},"_$PaymentTermItemResponse":{"PaymentTermItemResponse":[]},"_$PaymentTermEntity":{"PaymentTermEntity":[],"BaseEntity":[],"SelectableEntity":[]},"ProductEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$ProductListResponseSerializer":{"StructuredSerializer":["ProductListResponse"],"Serializer":["ProductListResponse"]},"_$ProductItemResponseSerializer":{"StructuredSerializer":["ProductItemResponse"],"Serializer":["ProductItemResponse"]},"_$ProductEntitySerializer":{"StructuredSerializer":["ProductEntity"],"Serializer":["ProductEntity"]},"_$ProductListResponse":{"ProductListResponse":[]},"_$ProductItemResponse":{"ProductItemResponse":[]},"_$ProductEntity":{"ProductEntity":[],"BaseEntity":[],"SelectableEntity":[]},"ProjectEntity":{"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"_$ProjectListResponseSerializer":{"StructuredSerializer":["ProjectListResponse"],"Serializer":["ProjectListResponse"]},"_$ProjectItemResponseSerializer":{"StructuredSerializer":["ProjectItemResponse"],"Serializer":["ProjectItemResponse"]},"_$ProjectEntitySerializer":{"StructuredSerializer":["ProjectEntity"],"Serializer":["ProjectEntity"]},"_$ProjectListResponse":{"ProjectListResponse":[]},"_$ProjectItemResponse":{"ProjectItemResponse":[]},"_$ProjectEntity":{"ProjectEntity":[],"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"ScheduleEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$ScheduleListResponseSerializer":{"StructuredSerializer":["ScheduleListResponse"],"Serializer":["ScheduleListResponse"]},"_$ScheduleItemResponseSerializer":{"StructuredSerializer":["ScheduleItemResponse"],"Serializer":["ScheduleItemResponse"]},"_$ScheduleEntitySerializer":{"StructuredSerializer":["ScheduleEntity"],"Serializer":["ScheduleEntity"]},"_$ScheduleParametersSerializer":{"StructuredSerializer":["ScheduleParameters"],"Serializer":["ScheduleParameters"]},"_$ScheduleListResponse":{"ScheduleListResponse":[]},"_$ScheduleItemResponse":{"ScheduleItemResponse":[]},"_$ScheduleEntity":{"ScheduleEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$ScheduleParameters":{"ScheduleParameters":[]},"_$SettingsEntitySerializer":{"StructuredSerializer":["SettingsEntity"],"Serializer":["SettingsEntity"]},"_$PdfPreviewRequestSerializer":{"StructuredSerializer":["PdfPreviewRequest"],"Serializer":["PdfPreviewRequest"]},"_$SettingsEntity":{"SettingsEntity":[]},"CountryEntity":{"SelectableEntity":[]},"_$CountryListResponseSerializer":{"StructuredSerializer":["CountryListResponse"],"Serializer":["CountryListResponse"]},"_$CountryItemResponseSerializer":{"StructuredSerializer":["CountryItemResponse"],"Serializer":["CountryItemResponse"]},"_$CountryEntitySerializer":{"StructuredSerializer":["CountryEntity"],"Serializer":["CountryEntity"]},"_$CountryEntity":{"CountryEntity":[],"SelectableEntity":[]},"CurrencyEntity":{"SelectableEntity":[]},"_$CurrencyListResponseSerializer":{"StructuredSerializer":["CurrencyListResponse"],"Serializer":["CurrencyListResponse"]},"_$CurrencyItemResponseSerializer":{"StructuredSerializer":["CurrencyItemResponse"],"Serializer":["CurrencyItemResponse"]},"_$CurrencyEntitySerializer":{"StructuredSerializer":["CurrencyEntity"],"Serializer":["CurrencyEntity"]},"_$CurrencyEntity":{"CurrencyEntity":[],"SelectableEntity":[]},"DateFormatEntity":{"SelectableEntity":[]},"_$DateFormatListResponseSerializer":{"StructuredSerializer":["DateFormatListResponse"],"Serializer":["DateFormatListResponse"]},"_$DateFormatItemResponseSerializer":{"StructuredSerializer":["DateFormatItemResponse"],"Serializer":["DateFormatItemResponse"]},"_$DateFormatEntitySerializer":{"StructuredSerializer":["DateFormatEntity"],"Serializer":["DateFormatEntity"]},"_$DateFormatEntity":{"DateFormatEntity":[],"SelectableEntity":[]},"_$DatetimeFormatListResponseSerializer":{"StructuredSerializer":["DatetimeFormatListResponse"],"Serializer":["DatetimeFormatListResponse"]},"_$DatetimeFormatItemResponseSerializer":{"StructuredSerializer":["DatetimeFormatItemResponse"],"Serializer":["DatetimeFormatItemResponse"]},"_$DatetimeFormatEntitySerializer":{"StructuredSerializer":["DatetimeFormatEntity"],"Serializer":["DatetimeFormatEntity"]},"_$DatetimeFormatEntity":{"DatetimeFormatEntity":[]},"DocumentStatusEntity":{"EntityStatus":[],"SelectableEntity":[]},"_$DocumentStatusEntity":{"DocumentStatusEntity":[],"EntityStatus":[],"SelectableEntity":[]},"FontEntity":{"SelectableEntity":[]},"_$FontEntity":{"SelectableEntity":[]},"IndustryEntity":{"SelectableEntity":[]},"_$IndustryListResponseSerializer":{"StructuredSerializer":["IndustryListResponse"],"Serializer":["IndustryListResponse"]},"_$IndustryItemResponseSerializer":{"StructuredSerializer":["IndustryItemResponse"],"Serializer":["IndustryItemResponse"]},"_$IndustryEntitySerializer":{"StructuredSerializer":["IndustryEntity"],"Serializer":["IndustryEntity"]},"_$IndustryEntity":{"IndustryEntity":[],"SelectableEntity":[]},"InvoiceStatusEntity":{"EntityStatus":[],"SelectableEntity":[]},"_$InvoiceStatusEntitySerializer":{"StructuredSerializer":["InvoiceStatusEntity"],"Serializer":["InvoiceStatusEntity"]},"_$InvoiceStatusEntity":{"InvoiceStatusEntity":[],"EntityStatus":[],"SelectableEntity":[]},"LanguageEntity":{"SelectableEntity":[]},"_$LanguageListResponseSerializer":{"StructuredSerializer":["LanguageListResponse"],"Serializer":["LanguageListResponse"]},"_$LanguageItemResponseSerializer":{"StructuredSerializer":["LanguageItemResponse"],"Serializer":["LanguageItemResponse"]},"_$LanguageEntitySerializer":{"StructuredSerializer":["LanguageEntity"],"Serializer":["LanguageEntity"]},"_$LanguageEntity":{"LanguageEntity":[],"SelectableEntity":[]},"PaymentStatusEntity":{"EntityStatus":[],"SelectableEntity":[]},"_$PaymentStatusEntity":{"PaymentStatusEntity":[],"EntityStatus":[],"SelectableEntity":[]},"PaymentTypeEntity":{"SelectableEntity":[]},"_$PaymentTypeListResponseSerializer":{"StructuredSerializer":["PaymentTypeListResponse"],"Serializer":["PaymentTypeListResponse"]},"_$PaymentTypeItemResponseSerializer":{"StructuredSerializer":["PaymentTypeItemResponse"],"Serializer":["PaymentTypeItemResponse"]},"_$PaymentTypeEntitySerializer":{"StructuredSerializer":["PaymentTypeEntity"],"Serializer":["PaymentTypeEntity"]},"_$PaymentTypeEntity":{"PaymentTypeEntity":[],"SelectableEntity":[]},"SizeEntity":{"SelectableEntity":[]},"_$SizeListResponseSerializer":{"StructuredSerializer":["SizeListResponse"],"Serializer":["SizeListResponse"]},"_$SizeItemResponseSerializer":{"StructuredSerializer":["SizeItemResponse"],"Serializer":["SizeItemResponse"]},"_$SizeEntitySerializer":{"StructuredSerializer":["SizeEntity"],"Serializer":["SizeEntity"]},"_$SizeEntity":{"SizeEntity":[],"SelectableEntity":[]},"_$StaticDataItemResponseSerializer":{"StructuredSerializer":["StaticDataItemResponse"],"Serializer":["StaticDataItemResponse"]},"_$StaticDataEntitySerializer":{"StructuredSerializer":["StaticDataEntity"],"Serializer":["StaticDataEntity"]},"_$TemplateEntitySerializer":{"StructuredSerializer":["TemplateEntity"],"Serializer":["TemplateEntity"]},"_$StaticDataEntity":{"StaticDataEntity":[]},"_$TemplateEntity":{"TemplateEntity":[]},"TimezoneEntity":{"SelectableEntity":[]},"_$TimezoneListResponseSerializer":{"StructuredSerializer":["TimezoneListResponse"],"Serializer":["TimezoneListResponse"]},"_$TimezoneItemResponseSerializer":{"StructuredSerializer":["TimezoneItemResponse"],"Serializer":["TimezoneItemResponse"]},"_$TimezoneEntitySerializer":{"StructuredSerializer":["TimezoneEntity"],"Serializer":["TimezoneEntity"]},"_$TimezoneEntity":{"TimezoneEntity":[],"SelectableEntity":[]},"SubscriptionEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$SubscriptionListResponseSerializer":{"StructuredSerializer":["SubscriptionListResponse"],"Serializer":["SubscriptionListResponse"]},"_$SubscriptionItemResponseSerializer":{"StructuredSerializer":["SubscriptionItemResponse"],"Serializer":["SubscriptionItemResponse"]},"_$SubscriptionEntitySerializer":{"StructuredSerializer":["SubscriptionEntity"],"Serializer":["SubscriptionEntity"]},"_$WebhookConfigurationEntitySerializer":{"StructuredSerializer":["WebhookConfigurationEntity"],"Serializer":["WebhookConfigurationEntity"]},"_$SubscriptionListResponse":{"SubscriptionListResponse":[]},"_$SubscriptionItemResponse":{"SubscriptionItemResponse":[]},"_$SubscriptionEntity":{"SubscriptionEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$WebhookConfigurationEntity":{"WebhookConfigurationEntity":[]},"_$SystemLogEntitySerializer":{"StructuredSerializer":["SystemLogEntity"],"Serializer":["SystemLogEntity"]},"_$SystemLogEntity":{"SystemLogEntity":[]},"TaskEntity":{"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"_$TaskListResponseSerializer":{"StructuredSerializer":["TaskListResponse"],"Serializer":["TaskListResponse"]},"_$TaskItemResponseSerializer":{"StructuredSerializer":["TaskItemResponse"],"Serializer":["TaskItemResponse"]},"_$TaskEntitySerializer":{"StructuredSerializer":["TaskEntity"],"Serializer":["TaskEntity"]},"_$TaskListResponse":{"TaskListResponse":[]},"_$TaskItemResponse":{"TaskItemResponse":[]},"_$TaskTime":{"TaskTime":[]},"_$TaskEntity":{"TaskEntity":[],"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"TaskStatusEntity":{"BaseEntity":[],"SelectableEntity":[],"EntityStatus":[]},"_$TaskStatusListResponseSerializer":{"StructuredSerializer":["TaskStatusListResponse"],"Serializer":["TaskStatusListResponse"]},"_$TaskStatusItemResponseSerializer":{"StructuredSerializer":["TaskStatusItemResponse"],"Serializer":["TaskStatusItemResponse"]},"_$TaskStatusEntitySerializer":{"StructuredSerializer":["TaskStatusEntity"],"Serializer":["TaskStatusEntity"]},"_$TaskStatusListResponse":{"TaskStatusListResponse":[]},"_$TaskStatusItemResponse":{"TaskStatusItemResponse":[]},"_$TaskStatusEntity":{"TaskStatusEntity":[],"BaseEntity":[],"SelectableEntity":[],"EntityStatus":[]},"_$TaxDataEntitySerializer":{"StructuredSerializer":["TaxDataEntity"],"Serializer":["TaxDataEntity"]},"_$TaxConfigEntitySerializer":{"StructuredSerializer":["TaxConfigEntity"],"Serializer":["TaxConfigEntity"]},"_$TaxConfigRegionEntitySerializer":{"StructuredSerializer":["TaxConfigRegionEntity"],"Serializer":["TaxConfigRegionEntity"]},"_$TaxConfigSubregionEntitySerializer":{"StructuredSerializer":["TaxConfigSubregionEntity"],"Serializer":["TaxConfigSubregionEntity"]},"_$TaxDataEntity":{"TaxDataEntity":[]},"_$TaxConfigEntity":{"TaxConfigEntity":[]},"_$TaxConfigRegionEntity":{"TaxConfigRegionEntity":[]},"_$TaxConfigSubregionEntity":{"TaxConfigSubregionEntity":[]},"TaxRateEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$TaxRateListResponseSerializer":{"StructuredSerializer":["TaxRateListResponse"],"Serializer":["TaxRateListResponse"]},"_$TaxRateItemResponseSerializer":{"StructuredSerializer":["TaxRateItemResponse"],"Serializer":["TaxRateItemResponse"]},"_$TaxRateEntitySerializer":{"StructuredSerializer":["TaxRateEntity"],"Serializer":["TaxRateEntity"]},"_$TaxRateListResponse":{"TaxRateListResponse":[]},"_$TaxRateItemResponse":{"TaxRateItemResponse":[]},"_$TaxRateEntity":{"TaxRateEntity":[],"BaseEntity":[],"SelectableEntity":[]},"TokenEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$TokenListResponseSerializer":{"StructuredSerializer":["TokenListResponse"],"Serializer":["TokenListResponse"]},"_$TokenItemResponseSerializer":{"StructuredSerializer":["TokenItemResponse"],"Serializer":["TokenItemResponse"]},"_$TokenEntitySerializer":{"StructuredSerializer":["TokenEntity"],"Serializer":["TokenEntity"]},"_$TokenListResponse":{"TokenListResponse":[]},"_$TokenItemResponse":{"TokenItemResponse":[]},"_$TokenEntity":{"TokenEntity":[],"BaseEntity":[],"SelectableEntity":[]},"TransactionEntity":{"BaseEntity":[],"SelectableEntity":[]},"TransactionStatusEntity":{"EntityStatus":[],"SelectableEntity":[]},"_$TransactionListResponseSerializer":{"StructuredSerializer":["TransactionListResponse"],"Serializer":["TransactionListResponse"]},"_$TransactionItemResponseSerializer":{"StructuredSerializer":["TransactionItemResponse"],"Serializer":["TransactionItemResponse"]},"_$TransactionEntitySerializer":{"StructuredSerializer":["TransactionEntity"],"Serializer":["TransactionEntity"]},"_$TransactionStatusEntitySerializer":{"StructuredSerializer":["TransactionStatusEntity"],"Serializer":["TransactionStatusEntity"]},"_$TransactionListResponse":{"TransactionListResponse":[]},"_$TransactionItemResponse":{"TransactionItemResponse":[]},"_$TransactionEntity":{"TransactionEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$TransactionStatusEntity":{"TransactionStatusEntity":[],"EntityStatus":[],"SelectableEntity":[]},"TransactionRuleEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$TransactionRuleListResponseSerializer":{"StructuredSerializer":["TransactionRuleListResponse"],"Serializer":["TransactionRuleListResponse"]},"_$TransactionRuleItemResponseSerializer":{"StructuredSerializer":["TransactionRuleItemResponse"],"Serializer":["TransactionRuleItemResponse"]},"_$TransactionRuleEntitySerializer":{"StructuredSerializer":["TransactionRuleEntity"],"Serializer":["TransactionRuleEntity"]},"_$TransactionRuleCriteriaEntitySerializer":{"StructuredSerializer":["TransactionRuleCriteriaEntity"],"Serializer":["TransactionRuleCriteriaEntity"]},"_$TransactionRuleListResponse":{"TransactionRuleListResponse":[]},"_$TransactionRuleItemResponse":{"TransactionRuleItemResponse":[]},"_$TransactionRuleEntity":{"TransactionRuleEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$TransactionRuleCriteriaEntity":{"TransactionRuleCriteriaEntity":[]},"UserEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$UserListResponseSerializer":{"StructuredSerializer":["UserListResponse"],"Serializer":["UserListResponse"]},"_$UserItemResponseSerializer":{"StructuredSerializer":["UserItemResponse"],"Serializer":["UserItemResponse"]},"_$UserTwoFactorResponseSerializer":{"StructuredSerializer":["UserTwoFactorResponse"],"Serializer":["UserTwoFactorResponse"]},"_$UserTwoFactorDataSerializer":{"StructuredSerializer":["UserTwoFactorData"],"Serializer":["UserTwoFactorData"]},"_$UserCompanyItemResponseSerializer":{"StructuredSerializer":["UserCompanyItemResponse"],"Serializer":["UserCompanyItemResponse"]},"_$UserEntitySerializer":{"StructuredSerializer":["UserEntity"],"Serializer":["UserEntity"]},"_$UserListResponse":{"UserListResponse":[]},"_$UserItemResponse":{"UserItemResponse":[]},"_$UserTwoFactorResponse":{"UserTwoFactorResponse":[]},"_$UserTwoFactorData":{"UserTwoFactorData":[]},"_$UserCompanyItemResponse":{"UserCompanyItemResponse":[]},"_$UserEntity":{"UserEntity":[],"BaseEntity":[],"SelectableEntity":[]},"VendorEntity":{"BaseEntity":[],"SelectableEntity":[],"HasActivities":[]},"VendorContactEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$VendorListResponseSerializer":{"StructuredSerializer":["VendorListResponse"],"Serializer":["VendorListResponse"]},"_$VendorItemResponseSerializer":{"StructuredSerializer":["VendorItemResponse"],"Serializer":["VendorItemResponse"]},"_$VendorEntitySerializer":{"StructuredSerializer":["VendorEntity"],"Serializer":["VendorEntity"]},"_$VendorContactEntitySerializer":{"StructuredSerializer":["VendorContactEntity"],"Serializer":["VendorContactEntity"]},"_$VendorListResponse":{"VendorListResponse":[]},"_$VendorItemResponse":{"VendorItemResponse":[]},"_$VendorEntity":{"VendorEntity":[],"BaseEntity":[],"SelectableEntity":[],"HasActivities":[]},"_$VendorContactEntity":{"VendorContactEntity":[],"BaseEntity":[],"SelectableEntity":[]},"WebhookEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$WebhookListResponseSerializer":{"StructuredSerializer":["WebhookListResponse"],"Serializer":["WebhookListResponse"]},"_$WebhookItemResponseSerializer":{"StructuredSerializer":["WebhookItemResponse"],"Serializer":["WebhookItemResponse"]},"_$WebhookEntitySerializer":{"StructuredSerializer":["WebhookEntity"],"Serializer":["WebhookEntity"]},"_$WebhookListResponse":{"WebhookListResponse":[]},"_$WebhookItemResponse":{"WebhookItemResponse":[]},"_$WebhookEntity":{"WebhookEntity":[],"BaseEntity":[],"SelectableEntity":[]},"InvoiceNinjaApp":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceNinjaAppState":{"State":["InvoiceNinjaApp"]},"SwitchListTableLayout":{"PersistUI":[],"PersistPrefs":[]},"PopLastHistory":{"PersistUI":[]},"UpdateLastHistory":{"PersistUI":[]},"DismissNativeWarning":{"PersistUI":[]},"DismissNativeWarningPermanently":{"PersistUI":[],"PersistPrefs":[]},"DismissGatewayWarningPermanently":{"PersistUI":[],"PersistPrefs":[]},"DismissReviewAppPermanently":{"PersistUI":[],"PersistPrefs":[]},"DismissOneYearReviewAppPermanently":{"PersistUI":[],"PersistPrefs":[]},"DismissTwoYearReviewAppPermanently":{"PersistUI":[],"PersistPrefs":[]},"DismissTaskExtensionBanner":{"PersistUI":[],"PersistPrefs":[]},"LoadStaticSuccess":{"PersistStatic":[]},"ToggleEditorLayout":{"PersistPrefs":[]},"ToggleViewerLayout":{"PersistPrefs":[]},"UpdateUserPreferences":{"PersistPrefs":[]},"LoadAccountSuccess":{"StopLoading":[]},"ResendConfirmation":{"StartLoading":[]},"RefreshData":{"StartLoading":[]},"RefreshDataSuccess":{"StopLoading":[]},"RefreshDataFailure":{"StopLoading":[]},"FilterByEntity":{"PersistUI":[]},"FilterCompany":{"PersistUI":[]},"ResendConfirmationFailure":{"StopLoading":[]},"ResendConfirmationSuccess":{"StopLoading":[]},"_$AppStateSerializer":{"StructuredSerializer":["AppState"],"Serializer":["AppState"]},"_$AppState":{"AppState":[]},"OAuthLoginRequest":{"StartLoading":[]},"UserLoginRequest":{"StartLoading":[]},"UserLoginSuccess":{"StopLoading":[]},"RecoverPasswordRequest":{"StartLoading":[]},"UserLogout":{"PersistData":[],"PersistUI":[]},"UserLogoutAll":{"StartLoading":[]},"UserSignUpRequest":{"StartLoading":[]},"OAuthSignUpRequest":{"StartLoading":[]},"UserLoginFailure":{"StopLoading":[]},"RecoverPasswordSuccess":{"StopLoading":[]},"RecoverPasswordFailure":{"StopLoading":[]},"UserLogoutAllSuccess":{"StopLoading":[]},"UserLogoutAllFailure":{"StopLoading":[]},"_$AuthStateSerializer":{"StructuredSerializer":["AuthState"],"Serializer":["AuthState"]},"_$AuthState":{"AuthState":[]},"ViewBankAccountList":{"PersistUI":[]},"ViewBankAccount":{"PersistUI":[],"PersistPrefs":[]},"EditBankAccount":{"PersistUI":[],"PersistPrefs":[]},"UpdateBankAccount":{"PersistUI":[]},"LoadBankAccountSuccess":{"StopLoading":[],"PersistData":[]},"LoadBankAccountsFailure":{"StopLoading":[]},"LoadBankAccountsSuccess":{"StopLoading":[]},"SaveBankAccountRequest":{"StartSaving":[]},"SaveBankAccountSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddBankAccountSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveBankAccountsRequest":{"StartSaving":[]},"ArchiveBankAccountsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteBankAccountsRequest":{"StartSaving":[]},"DeleteBankAccountsSuccess":{"StopSaving":[],"PersistData":[]},"RestoreBankAccountsRequest":{"StartSaving":[]},"RestoreBankAccountsSuccess":{"StopSaving":[],"PersistData":[]},"FilterBankAccounts":{"PersistUI":[]},"SortBankAccounts":{"PersistUI":[],"PersistPrefs":[]},"FilterBankAccountsByState":{"PersistUI":[]},"FilterBankAccountsByCustom1":{"PersistUI":[]},"FilterBankAccountsByCustom2":{"PersistUI":[]},"FilterBankAccountsByCustom3":{"PersistUI":[]},"FilterBankAccountsByCustom4":{"PersistUI":[]},"UpdateBankAccountTab":{"PersistUI":[]},"LoadBankAccountRequest":{"StartLoading":[]},"LoadBankAccountFailure":{"StopLoading":[]},"LoadBankAccountsRequest":{"StartLoading":[]},"SaveBankAccountFailure":{"StopSaving":[]},"ArchiveBankAccountsFailure":{"StopSaving":[]},"DeleteBankAccountsFailure":{"StopSaving":[]},"RestoreBankAccountsFailure":{"StopSaving":[]},"_$BankAccountStateSerializer":{"StructuredSerializer":["BankAccountState"],"Serializer":["BankAccountState"]},"_$BankAccountUIStateSerializer":{"StructuredSerializer":["BankAccountUIState"],"Serializer":["BankAccountUIState"]},"_$BankAccountState":{"BankAccountState":[]},"_$BankAccountUIState":{"BankAccountUIState":[]},"ViewClientList":{"PersistUI":[]},"ViewClient":{"PersistUI":[],"PersistPrefs":[]},"EditClient":{"PersistUI":[],"PersistPrefs":[]},"EditContact":{"PersistUI":[]},"UpdateClient":{"PersistUI":[]},"LoadClientSuccess":{"StopLoading":[],"PersistData":[]},"LoadClientsRequest":{"StartLoading":[]},"LoadClientsFailure":{"StopLoading":[]},"LoadClientsSuccess":{"StopLoading":[]},"AddContact":{"PersistUI":[]},"UpdateContact":{"PersistUI":[]},"DeleteContact":{"PersistUI":[]},"SaveClientRequest":{"StartSaving":[]},"SaveClientSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddClientSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveClientsRequest":{"StartSaving":[]},"ArchiveClientsSuccess":{"StopSaving":[],"PersistData":[]},"MergeClientsRequest":{"StartSaving":[]},"MergeClientsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteClientsRequest":{"StartSaving":[]},"DeleteClientsSuccess":{"StopSaving":[],"PersistData":[]},"PurgeClientRequest":{"StartSaving":[]},"PurgeClientSuccess":{"StopSaving":[],"PersistData":[]},"RestoreClientsRequest":{"StartSaving":[]},"RestoreClientSuccess":{"StopSaving":[],"PersistData":[]},"FilterClients":{"PersistUI":[]},"SortClients":{"PersistUI":[],"PersistPrefs":[]},"FilterClientsByState":{"PersistUI":[]},"FilterClientsByCustom1":{"PersistUI":[]},"FilterClientsByCustom2":{"PersistUI":[]},"FilterClientsByCustom3":{"PersistUI":[]},"FilterClientsByCustom4":{"PersistUI":[]},"SaveClientDocumentRequest":{"StartSaving":[]},"UpdateClientTab":{"PersistUI":[]},"_MergClientPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"LoadClientRequest":{"StartLoading":[]},"LoadClientFailure":{"StopLoading":[]},"SaveClientFailure":{"StopSaving":[]},"ArchiveClientsFailure":{"StopSaving":[]},"MergeClientsFailure":{"StopSaving":[]},"DeleteClientsFailure":{"StopSaving":[]},"PurgeClientFailure":{"StopSaving":[]},"RestoreClientFailure":{"StopSaving":[]},"SaveClientDocumentFailure":{"StopSaving":[]},"__MergClientPickerState":{"State":["_MergClientPicker"]},"_$ClientStateSerializer":{"StructuredSerializer":["ClientState"],"Serializer":["ClientState"]},"_$ClientUIStateSerializer":{"StructuredSerializer":["ClientUIState"],"Serializer":["ClientUIState"]},"_$ClientState":{"ClientState":[]},"_$ClientUIState":{"ClientUIState":[]},"SelectCompany":{"ClearClientMultiselect":[]},"UpdateCompany":{"PersistUI":[]},"SaveCompanyRequest":{"StartSaving":[]},"SaveCompanySuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"SaveEInvoiceCertificateRequest":{"StartSaving":[]},"SaveEInvoiceCertificateSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddCompany":{"StartSaving":[]},"DeleteCompanyRequest":{"StartSaving":[]},"PurgeDataRequest":{"StartSaving":[]},"PurgeDataSuccess":{"StopSaving":[],"PersistData":[]},"SaveCompanyDocumentRequest":{"StartSaving":[]},"SetDefaultCompanyRequest":{"StartSaving":[]},"SaveCompanyFailure":{"StopSaving":[]},"SaveEInvoiceCertificateFailure":{"StopSaving":[]},"AddCompanySuccess":{"StopSaving":[]},"DeleteCompanySuccess":{"StopSaving":[],"PersistData":[]},"DeleteCompanyFailure":{"StopSaving":[]},"PurgeDataFailure":{"StopSaving":[]},"SaveCompanyDocumentFailure":{"StopSaving":[]},"SetDefaultCompanySuccess":{"StopSaving":[]},"SetDefaultCompanyFailure":{"StopSaving":[]},"_$UserCompanyStateSerializer":{"StructuredSerializer":["UserCompanyState"],"Serializer":["UserCompanyState"]},"_$UserCompanyState":{"UserCompanyState":[]},"ViewCompanyGatewayList":{"PersistUI":[]},"ViewCompanyGateway":{"PersistUI":[],"PersistPrefs":[]},"EditCompanyGateway":{"PersistUI":[],"PersistPrefs":[]},"UpdateCompanyGateway":{"PersistUI":[]},"LoadCompanyGatewaySuccess":{"StopLoading":[],"PersistData":[]},"LoadCompanyGatewaysSuccess":{"StopLoading":[]},"SaveCompanyGatewayRequest":{"StartSaving":[]},"SaveCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveCompanyGatewayRequest":{"StartSaving":[]},"ArchiveCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[]},"DeleteCompanyGatewayRequest":{"StartSaving":[]},"DeleteCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[]},"DisconnectCompanyGatewayRequest":{"StartSaving":[]},"RestoreCompanyGatewayRequest":{"StartSaving":[]},"RestoreCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[]},"FilterCompanyGateways":{"PersistUI":[]},"SortCompanyGateways":{"PersistUI":[],"PersistPrefs":[]},"FilterCompanyGatewaysByState":{"PersistUI":[]},"FilterCompanyGatewaysByCustom1":{"PersistUI":[]},"FilterCompanyGatewaysByCustom2":{"PersistUI":[]},"FilterCompanyGatewaysByCustom3":{"PersistUI":[]},"FilterCompanyGatewaysByCustom4":{"PersistUI":[]},"LoadCompanyGatewayRequest":{"StartLoading":[]},"LoadCompanyGatewayFailure":{"StopLoading":[]},"LoadCompanyGatewaysRequest":{"StartLoading":[]},"LoadCompanyGatewaysFailure":{"StopLoading":[]},"SaveCompanyGatewayFailure":{"StopSaving":[]},"ArchiveCompanyGatewayFailure":{"StopSaving":[]},"DeleteCompanyGatewayFailure":{"StopSaving":[]},"DisconnectCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[]},"DisconnectCompanyGatewayFailure":{"StopSaving":[]},"RestoreCompanyGatewayFailure":{"StopSaving":[]},"_$CompanyGatewayStateSerializer":{"StructuredSerializer":["CompanyGatewayState"],"Serializer":["CompanyGatewayState"]},"_$CompanyGatewayUIStateSerializer":{"StructuredSerializer":["CompanyGatewayUIState"],"Serializer":["CompanyGatewayUIState"]},"_$CompanyGatewayState":{"CompanyGatewayState":[]},"_$CompanyGatewayUIState":{"CompanyGatewayUIState":[]},"ViewCreditList":{"PersistUI":[]},"ViewCredit":{"PersistUI":[],"PersistPrefs":[]},"EditCredit":{"PersistUI":[],"PersistPrefs":[]},"EditCreditItem":{"PersistUI":[]},"UpdateCredit":{"PersistUI":[]},"UpdateCreditClient":{"PersistUI":[]},"LoadCreditSuccess":{"StopLoading":[],"PersistData":[]},"LoadCreditsRequest":{"StartLoading":[]},"LoadCreditsFailure":{"StopLoading":[]},"LoadCreditsSuccess":{"StopLoading":[]},"AddCreditContact":{"PersistUI":[]},"RemoveCreditContact":{"PersistUI":[]},"AddCreditItem":{"PersistUI":[]},"MoveCreditItem":{"PersistUI":[]},"AddCreditItems":{"PersistUI":[]},"UpdateCreditItem":{"PersistUI":[]},"DeleteCreditItem":{"PersistUI":[]},"SaveCreditRequest":{"StartSaving":[]},"SaveCreditSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddCreditSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"EmailCreditRequest":{"StartSaving":[]},"MarkSentCreditRequest":{"StartSaving":[]},"MarkSentCreditSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailCreditsRequest":{"StartSaving":[]},"MarkCreditsPaidRequest":{"StartSaving":[]},"ArchiveCreditsRequest":{"StartSaving":[]},"ArchiveCreditsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteCreditsRequest":{"StartSaving":[]},"DeleteCreditsSuccess":{"StopSaving":[],"PersistData":[]},"DownloadCreditsRequest":{"StartSaving":[]},"RestoreCreditsRequest":{"StartSaving":[]},"RestoreCreditsSuccess":{"StopSaving":[],"PersistData":[]},"FilterCredits":{"PersistUI":[]},"SortCredits":{"PersistUI":[],"PersistPrefs":[]},"FilterCreditsByState":{"PersistUI":[]},"FilterCreditsByStatus":{"PersistUI":[]},"FilterCreditsByCustom1":{"PersistUI":[]},"FilterCreditsByCustom2":{"PersistUI":[]},"FilterCreditsByCustom3":{"PersistUI":[]},"FilterCreditsByCustom4":{"PersistUI":[]},"SaveCreditDocumentRequest":{"StartSaving":[]},"UpdateCreditTab":{"PersistUI":[]},"LoadCreditRequest":{"StartLoading":[]},"LoadCreditFailure":{"StopLoading":[]},"SaveCreditFailure":{"StopSaving":[]},"EmailCreditSuccess":{"StopSaving":[],"PersistData":[]},"EmailCreditFailure":{"StopSaving":[]},"MarkSentCreditFailure":{"StopSaving":[]},"BulkEmailCreditsSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailCreditsFailure":{"StopSaving":[]},"MarkCreditsPaidSuccess":{"StopSaving":[]},"MarkCreditsPaidFailure":{"StopSaving":[]},"ArchiveCreditsFailure":{"StopSaving":[]},"DeleteCreditsFailure":{"StopSaving":[]},"DownloadCreditsSuccess":{"StopSaving":[]},"DownloadCreditsFailure":{"StopSaving":[]},"RestoreCreditsFailure":{"StopSaving":[]},"SaveCreditDocumentFailure":{"StopSaving":[]},"_$CreditStateSerializer":{"StructuredSerializer":["CreditState"],"Serializer":["CreditState"]},"_$CreditUIStateSerializer":{"StructuredSerializer":["CreditUIState"],"Serializer":["CreditUIState"]},"_$CreditState":{"CreditState":[]},"_$CreditUIState":{"CreditUIState":[]},"ViewDashboard":{"PersistUI":[]},"UpdateDashboardFields":{"PersistUI":[]},"UpdateDashboardFieldSettingss":{"PersistUI":[]},"UpdateDashboardSelection":{"PersistUI":[]},"UpdateDashboardEntityType":{"PersistUI":[]},"UpdateDashboardSidebar":{"PersistUI":[]},"UpdateDashboardSettings":{"PersistUI":[]},"_$DashboardUIStateSerializer":{"StructuredSerializer":["DashboardUIState"],"Serializer":["DashboardUIState"]},"_$DashboardUISettingsSerializer":{"StructuredSerializer":["DashboardUISettings"],"Serializer":["DashboardUISettings"]},"_$DashboardUIState":{"DashboardUIState":[]},"_$DashboardUISettings":{"DashboardUISettings":[]},"ViewDesignList":{"PersistUI":[]},"ViewDesign":{"PersistUI":[],"PersistPrefs":[]},"EditDesign":{"PersistUI":[],"PersistPrefs":[]},"UpdateDesign":{"PersistUI":[]},"LoadDesignSuccess":{"StopLoading":[],"PersistData":[]},"LoadDesignsFailure":{"StopLoading":[]},"LoadDesignsSuccess":{"StopLoading":[]},"SaveDesignRequest":{"StartSaving":[]},"SaveDesignSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddDesignSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveDesignsRequest":{"StartSaving":[]},"ArchiveDesignsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteDesignsRequest":{"StartSaving":[]},"DeleteDesignsSuccess":{"StopSaving":[],"PersistData":[]},"RestoreDesignsRequest":{"StartSaving":[]},"RestoreDesignsSuccess":{"StopSaving":[],"PersistData":[]},"FilterDesigns":{"PersistUI":[]},"SortDesigns":{"PersistUI":[],"PersistPrefs":[]},"FilterDesignsByState":{"PersistUI":[]},"FilterDesignsByCustom1":{"PersistUI":[]},"FilterDesignsByCustom2":{"PersistUI":[]},"FilterDesignsByCustom3":{"PersistUI":[]},"FilterDesignsByCustom4":{"PersistUI":[]},"LoadDesignRequest":{"StartLoading":[]},"LoadDesignFailure":{"StopLoading":[]},"LoadDesignsRequest":{"StartLoading":[]},"SaveDesignFailure":{"StopSaving":[]},"ArchiveDesignsFailure":{"StopSaving":[]},"DeleteDesignsFailure":{"StopSaving":[]},"RestoreDesignsFailure":{"StopSaving":[]},"_$DesignStateSerializer":{"StructuredSerializer":["DesignState"],"Serializer":["DesignState"]},"_$DesignUIStateSerializer":{"StructuredSerializer":["DesignUIState"],"Serializer":["DesignUIState"]},"_$DesignState":{"DesignState":[]},"_$DesignUIState":{"DesignUIState":[]},"ViewDocumentList":{"PersistUI":[]},"ViewDocument":{"PersistUI":[]},"EditDocument":{"PersistUI":[]},"UpdateDocument":{"PersistUI":[]},"LoadDocumentSuccess":{"StopLoading":[],"PersistData":[]},"LoadDocumentsSuccess":{"StopLoading":[]},"SaveDocumentRequest":{"StartSaving":[]},"SaveDocumentSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddDocumentSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"DownloadDocumentsRequest":{"StartSaving":[]},"ArchiveDocumentRequest":{"StartSaving":[]},"ArchiveDocumentSuccess":{"StopSaving":[],"PersistData":[]},"DeleteDocumentRequest":{"StartSaving":[]},"DeleteDocumentSuccess":{"StopSaving":[],"PersistData":[],"UserVerifiedPassword":[]},"RestoreDocumentRequest":{"StartSaving":[]},"RestoreDocumentSuccess":{"StopSaving":[],"PersistData":[]},"FilterDocuments":{"PersistUI":[]},"FilterDocumentsByStatus":{"PersistUI":[]},"SortDocuments":{"PersistUI":[],"PersistPrefs":[]},"FilterDocumentsByState":{"PersistUI":[]},"FilterDocumentsByCustom1":{"PersistUI":[]},"FilterDocumentsByCustom2":{"PersistUI":[]},"FilterDocumentsByCustom3":{"PersistUI":[]},"FilterDocumentsByCustom4":{"PersistUI":[]},"LoadDocumentRequest":{"StartLoading":[]},"LoadDocumentFailure":{"StopLoading":[]},"SaveDocumentFailure":{"StopSaving":[]},"DownloadDocumentsSuccess":{"StopSaving":[]},"DownloadDocumentsFailure":{"StopSaving":[]},"ArchiveDocumentFailure":{"StopSaving":[]},"DeleteDocumentFailure":{"StopSaving":[]},"RestoreDocumentFailure":{"StopSaving":[]},"_$DocumentStateSerializer":{"StructuredSerializer":["DocumentState"],"Serializer":["DocumentState"]},"_$DocumentUIStateSerializer":{"StructuredSerializer":["DocumentUIState"],"Serializer":["DocumentUIState"]},"_$DocumentState":{"DocumentState":[]},"_$DocumentUIState":{"DocumentUIState":[]},"ViewExpenseList":{"PersistUI":[]},"ViewExpense":{"PersistUI":[],"PersistPrefs":[]},"EditExpense":{"PersistUI":[],"PersistPrefs":[]},"UpdateExpense":{"PersistUI":[]},"LoadExpenseSuccess":{"StopLoading":[],"PersistData":[]},"LoadExpensesRequest":{"StartLoading":[]},"LoadExpensesFailure":{"StopLoading":[]},"LoadExpensesSuccess":{"StopLoading":[]},"SaveExpenseRequest":{"StartSaving":[]},"SaveExpenseSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddExpenseSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveExpenseRequest":{"StartSaving":[]},"ArchiveExpenseSuccess":{"StopSaving":[],"PersistData":[]},"DeleteExpenseRequest":{"StartSaving":[]},"DeleteExpenseSuccess":{"StopSaving":[],"PersistData":[]},"RestoreExpenseRequest":{"StartSaving":[]},"RestoreExpenseSuccess":{"StopSaving":[],"PersistData":[]},"FilterExpenses":{"PersistUI":[]},"SortExpenses":{"PersistUI":[],"PersistPrefs":[]},"FilterExpensesByState":{"PersistUI":[]},"FilterExpensesByStatus":{"PersistUI":[]},"FilterExpensesByCustom1":{"PersistUI":[]},"FilterExpensesByCustom2":{"PersistUI":[]},"FilterExpensesByCustom3":{"PersistUI":[]},"FilterExpensesByCustom4":{"PersistUI":[]},"SaveExpenseDocumentRequest":{"StartSaving":[]},"UpdateExpenseTab":{"PersistUI":[]},"LoadExpenseRequest":{"StartLoading":[]},"LoadExpenseFailure":{"StopLoading":[]},"SaveExpenseFailure":{"StopSaving":[]},"ArchiveExpenseFailure":{"StopSaving":[]},"DeleteExpenseFailure":{"StopSaving":[]},"RestoreExpenseFailure":{"StopSaving":[]},"SaveExpenseDocumentFailure":{"StopSaving":[]},"_$ExpenseStateSerializer":{"StructuredSerializer":["ExpenseState"],"Serializer":["ExpenseState"]},"_$ExpenseUIStateSerializer":{"StructuredSerializer":["ExpenseUIState"],"Serializer":["ExpenseUIState"]},"_$ExpenseState":{"ExpenseState":[]},"_$ExpenseUIState":{"ExpenseUIState":[]},"ViewExpenseCategoryList":{"PersistUI":[]},"ViewExpenseCategory":{"PersistUI":[],"PersistPrefs":[]},"EditExpenseCategory":{"PersistUI":[],"PersistPrefs":[]},"UpdateExpenseCategory":{"PersistUI":[]},"LoadExpenseCategorySuccess":{"StopLoading":[],"PersistData":[]},"LoadExpenseCategoriesSuccess":{"StopLoading":[]},"SaveExpenseCategoryRequest":{"StartSaving":[]},"SaveExpenseCategorySuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddExpenseCategorySuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveExpenseCategoriesRequest":{"StartSaving":[]},"ArchiveExpenseCategoriesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteExpenseCategoriesRequest":{"StartSaving":[]},"DeleteExpenseCategoriesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreExpenseCategoriesRequest":{"StartSaving":[]},"RestoreExpenseCategoriesSuccess":{"StopSaving":[],"PersistData":[]},"FilterExpenseCategories":{"PersistUI":[]},"SortExpenseCategories":{"PersistUI":[],"PersistPrefs":[]},"FilterExpenseCategoriesByState":{"PersistUI":[]},"FilterExpenseCategoriesByCustom1":{"PersistUI":[]},"FilterExpenseCategoriesByCustom2":{"PersistUI":[]},"FilterExpenseCategoriesByCustom3":{"PersistUI":[]},"FilterExpenseCategoriesByCustom4":{"PersistUI":[]},"LoadExpenseCategoryRequest":{"StartLoading":[]},"LoadExpenseCategoryFailure":{"StopLoading":[]},"LoadExpenseCategoriesRequest":{"StartLoading":[]},"LoadExpenseCategoriesFailure":{"StopLoading":[]},"SaveExpenseCategoryFailure":{"StopSaving":[]},"ArchiveExpenseCategoriesFailure":{"StopSaving":[]},"DeleteExpenseCategoriesFailure":{"StopSaving":[]},"RestoreExpenseCategoriesFailure":{"StopSaving":[]},"_$ExpenseCategoryStateSerializer":{"StructuredSerializer":["ExpenseCategoryState"],"Serializer":["ExpenseCategoryState"]},"_$ExpenseCategoryUIStateSerializer":{"StructuredSerializer":["ExpenseCategoryUIState"],"Serializer":["ExpenseCategoryUIState"]},"_$ExpenseCategoryState":{"ExpenseCategoryState":[]},"_$ExpenseCategoryUIState":{"ExpenseCategoryUIState":[]},"ViewGroupList":{"PersistUI":[]},"ViewGroup":{"PersistUI":[],"PersistPrefs":[]},"EditGroup":{"PersistUI":[],"PersistPrefs":[]},"UpdateGroup":{"PersistUI":[]},"LoadGroupSuccess":{"StopLoading":[],"PersistData":[]},"LoadGroupsSuccess":{"StopLoading":[]},"SaveGroupRequest":{"StartSaving":[]},"SaveGroupSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddGroupSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveGroupRequest":{"StartSaving":[]},"ArchiveGroupSuccess":{"StopSaving":[],"PersistData":[]},"DeleteGroupRequest":{"StartSaving":[]},"DeleteGroupSuccess":{"StopSaving":[],"PersistData":[]},"RestoreGroupRequest":{"StartSaving":[]},"RestoreGroupSuccess":{"StopSaving":[],"PersistData":[]},"FilterGroups":{"PersistUI":[]},"SortGroups":{"PersistUI":[],"PersistPrefs":[]},"FilterGroupsByState":{"PersistUI":[]},"SaveGroupDocumentRequest":{"StartSaving":[]},"LoadGroupRequest":{"StartLoading":[]},"LoadGroupFailure":{"StopLoading":[]},"LoadGroupsRequest":{"StartLoading":[]},"LoadGroupsFailure":{"StopLoading":[]},"SaveGroupFailure":{"StopSaving":[]},"ArchiveGroupFailure":{"StopSaving":[]},"DeleteGroupFailure":{"StopSaving":[]},"RestoreGroupFailure":{"StopSaving":[]},"SaveGroupDocumentFailure":{"StopSaving":[]},"_$GroupStateSerializer":{"StructuredSerializer":["GroupState"],"Serializer":["GroupState"]},"_$GroupUIStateSerializer":{"StructuredSerializer":["GroupUIState"],"Serializer":["GroupUIState"]},"_$GroupState":{"GroupState":[]},"_$GroupUIState":{"GroupUIState":[]},"ViewInvoiceList":{"PersistUI":[]},"ViewInvoice":{"PersistUI":[],"PersistPrefs":[]},"EditInvoice":{"PersistUI":[],"PersistPrefs":[]},"EditInvoiceItem":{"PersistUI":[]},"UpdateInvoice":{"PersistUI":[]},"UpdateInvoiceClient":{"PersistUI":[]},"LoadInvoiceSuccess":{"StopLoading":[],"PersistData":[]},"LoadInvoicesRequest":{"StartLoading":[]},"LoadInvoicesFailure":{"StopLoading":[]},"LoadInvoicesSuccess":{"StopLoading":[]},"AddInvoiceContact":{"PersistUI":[]},"RemoveInvoiceContact":{"PersistUI":[]},"AddInvoiceItem":{"PersistUI":[]},"MoveInvoiceItem":{"PersistUI":[]},"AddInvoiceItems":{"PersistUI":[]},"UpdateInvoiceItem":{"PersistUI":[]},"DeleteInvoiceItem":{"PersistUI":[]},"SaveInvoiceRequest":{"StartSaving":[]},"SaveInvoiceSuccess":{"StopSaving":[],"PersistUI":[]},"AddInvoiceSuccess":{"StopSaving":[],"PersistUI":[]},"EmailInvoiceRequest":{"StartSaving":[]},"EmailInvoiceSuccess":{"StopSaving":[],"PersistData":[]},"MarkInvoicesSentRequest":{"StartSaving":[]},"MarkInvoicesSentSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailInvoicesRequest":{"StartSaving":[]},"MarkInvoicesPaidRequest":{"StartSaving":[]},"MarkInvoicesPaidSuccess":{"StopSaving":[]},"AutoBillInvoicesRequest":{"StartSaving":[]},"CancelInvoicesRequest":{"StartSaving":[]},"CancelInvoicesSuccess":{"StopSaving":[]},"ArchiveInvoicesRequest":{"StartSaving":[]},"ArchiveInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteInvoicesRequest":{"StartSaving":[]},"DeleteInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"DownloadInvoicesRequest":{"StartSaving":[]},"RestoreInvoicesRequest":{"StartSaving":[]},"RestoreInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"FilterInvoices":{"PersistUI":[]},"SortInvoices":{"PersistUI":[],"PersistPrefs":[]},"FilterInvoicesByState":{"PersistUI":[]},"FilterInvoicesByStatus":{"PersistUI":[]},"FilterInvoicesByCustom1":{"PersistUI":[]},"FilterInvoicesByCustom2":{"PersistUI":[]},"FilterInvoicesByCustom3":{"PersistUI":[]},"FilterInvoicesByCustom4":{"PersistUI":[]},"SaveInvoiceDocumentRequest":{"StartSaving":[]},"UpdateInvoiceTab":{"PersistUI":[]},"LoadInvoiceRequest":{"StartLoading":[]},"LoadInvoiceFailure":{"StopLoading":[]},"SaveInvoiceFailure":{"StopSaving":[]},"EmailInvoiceFailure":{"StopSaving":[]},"MarkInvoicesSentFailure":{"StopSaving":[]},"BulkEmailInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailInvoicesFailure":{"StopSaving":[]},"MarkInvoicesPaidFailure":{"StopSaving":[]},"AutoBillInvoicesSuccess":{"StopSaving":[]},"AutoBillInvoicesFailure":{"StopSaving":[]},"CancelInvoicesFailure":{"StopSaving":[]},"ArchiveInvoicesFailure":{"StopSaving":[]},"DeleteInvoicesFailure":{"StopSaving":[]},"DownloadInvoicesSuccess":{"StopSaving":[]},"DownloadInvoicesFailure":{"StopSaving":[]},"RestoreInvoicesFailure":{"StopSaving":[]},"SaveInvoiceDocumentFailure":{"StopSaving":[]},"_$InvoiceStateSerializer":{"StructuredSerializer":["InvoiceState"],"Serializer":["InvoiceState"]},"_$InvoiceUIStateSerializer":{"StructuredSerializer":["InvoiceUIState"],"Serializer":["InvoiceUIState"]},"_$InvoiceState":{"InvoiceState":[]},"_$InvoiceUIState":{"InvoiceUIState":[]},"ViewPaymentList":{"PersistUI":[]},"ViewPayment":{"PersistUI":[],"PersistPrefs":[]},"EditPayment":{"PersistUI":[],"PersistPrefs":[]},"ViewRefundPayment":{"PersistUI":[],"PersistPrefs":[]},"UpdatePayment":{"PersistUI":[]},"LoadPaymentSuccess":{"StopLoading":[],"PersistData":[]},"LoadPaymentsRequest":{"StartLoading":[]},"LoadPaymentsFailure":{"StopLoading":[]},"LoadPaymentsSuccess":{"StopLoading":[]},"SavePaymentRequest":{"StartSaving":[]},"SavePaymentSuccess":{"StopSaving":[],"PersistUI":[]},"AddPaymentSuccess":{"StopSaving":[],"PersistUI":[]},"RefundPaymentRequest":{"StartSaving":[]},"ArchivePaymentsRequest":{"StartSaving":[]},"ArchivePaymentsSuccess":{"StopSaving":[],"PersistData":[]},"DeletePaymentsRequest":{"StartSaving":[]},"DeletePaymentsSuccess":{"StopSaving":[]},"RestorePaymentsRequest":{"StartSaving":[]},"RestorePaymentsSuccess":{"StopSaving":[]},"EmailPaymentRequest":{"StartSaving":[]},"FilterPayments":{"PersistUI":[]},"SortPayments":{"PersistUI":[],"PersistPrefs":[]},"FilterPaymentsByState":{"PersistUI":[]},"FilterPaymentsByStatus":{"PersistUI":[]},"FilterPaymentsByCustom1":{"PersistUI":[]},"FilterPaymentsByCustom2":{"PersistUI":[]},"FilterPaymentsByCustom3":{"PersistUI":[]},"FilterPaymentsByCustom4":{"PersistUI":[]},"UpdatePaymentTab":{"PersistUI":[]},"LoadPaymentRequest":{"StartLoading":[]},"LoadPaymentFailure":{"StopLoading":[]},"SavePaymentFailure":{"StopSaving":[]},"RefundPaymentSuccess":{"StopSaving":[],"PersistUI":[]},"RefundPaymentFailure":{"StopSaving":[]},"ArchivePaymentsFailure":{"StopSaving":[]},"DeletePaymentsFailure":{"StopSaving":[]},"RestorePaymentsFailure":{"StopSaving":[]},"EmailPaymentSuccess":{"StopSaving":[],"PersistData":[]},"_$PaymentStateSerializer":{"StructuredSerializer":["PaymentState"],"Serializer":["PaymentState"]},"_$PaymentUIStateSerializer":{"StructuredSerializer":["PaymentUIState"],"Serializer":["PaymentUIState"]},"_$PaymentState":{"PaymentState":[]},"_$PaymentUIState":{"PaymentUIState":[]},"ViewPaymentTermList":{"PersistUI":[]},"ViewPaymentTerm":{"PersistUI":[],"PersistPrefs":[]},"EditPaymentTerm":{"PersistUI":[],"PersistPrefs":[]},"UpdatePaymentTerm":{"PersistUI":[]},"LoadPaymentTermSuccess":{"StopLoading":[],"PersistData":[]},"LoadPaymentTermsFailure":{"StopLoading":[]},"LoadPaymentTermsSuccess":{"StopLoading":[]},"SavePaymentTermRequest":{"StartSaving":[]},"SavePaymentTermSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddPaymentTermSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchivePaymentTermsRequest":{"StartSaving":[]},"ArchivePaymentTermsSuccess":{"StopSaving":[],"PersistData":[]},"DeletePaymentTermsRequest":{"StartSaving":[]},"DeletePaymentTermsSuccess":{"StopSaving":[],"PersistData":[]},"RestorePaymentTermsRequest":{"StartSaving":[]},"RestorePaymentTermsSuccess":{"StopSaving":[],"PersistData":[]},"FilterPaymentTerms":{"PersistUI":[]},"SortPaymentTerms":{"PersistUI":[],"PersistPrefs":[]},"FilterPaymentTermsByState":{"PersistUI":[]},"FilterPaymentTermsByCustom1":{"PersistUI":[]},"FilterPaymentTermsByCustom2":{"PersistUI":[]},"FilterPaymentTermsByCustom3":{"PersistUI":[]},"FilterPaymentTermsByCustom4":{"PersistUI":[]},"LoadPaymentTermRequest":{"StartLoading":[]},"LoadPaymentTermFailure":{"StopLoading":[]},"LoadPaymentTermsRequest":{"StartLoading":[]},"SavePaymentTermFailure":{"StopSaving":[]},"ArchivePaymentTermsFailure":{"StopSaving":[]},"DeletePaymentTermsFailure":{"StopSaving":[]},"RestorePaymentTermsFailure":{"StopSaving":[]},"_$PaymentTermStateSerializer":{"StructuredSerializer":["PaymentTermState"],"Serializer":["PaymentTermState"]},"_$PaymentTermUIStateSerializer":{"StructuredSerializer":["PaymentTermUIState"],"Serializer":["PaymentTermUIState"]},"_$PaymentTermState":{"PaymentTermState":[]},"_$PaymentTermUIState":{"PaymentTermUIState":[]},"ViewProductList":{"PersistUI":[]},"ViewProduct":{"PersistUI":[],"PersistPrefs":[]},"EditProduct":{"PersistUI":[],"PersistPrefs":[]},"UpdateProduct":{"PersistUI":[]},"LoadProductSuccess":{"StopLoading":[],"PersistData":[]},"LoadProductsRequest":{"StartLoading":[]},"LoadProductsFailure":{"StopLoading":[]},"LoadProductsSuccess":{"StopLoading":[]},"SaveProductRequest":{"StartSaving":[]},"SaveProductSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddProductSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveProductsRequest":{"StartSaving":[]},"ArchiveProductsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteProductsRequest":{"StartSaving":[]},"DeleteProductsSuccess":{"StopSaving":[],"PersistData":[]},"RestoreProductsRequest":{"StartSaving":[]},"RestoreProductsSuccess":{"StopSaving":[],"PersistData":[]},"SetTaxCategoryProductsRequest":{"StartSaving":[]},"SetTaxCategoryProductsSuccess":{"StopSaving":[],"PersistData":[]},"FilterProducts":{"PersistUI":[]},"SortProducts":{"PersistUI":[],"PersistPrefs":[]},"FilterProductsByState":{"PersistUI":[]},"FilterProductsByCustom1":{"PersistUI":[]},"FilterProductsByCustom2":{"PersistUI":[]},"FilterProductsByCustom3":{"PersistUI":[]},"FilterProductsByCustom4":{"PersistUI":[]},"SaveProductDocumentRequest":{"StartSaving":[]},"UpdateProductTab":{"PersistUI":[]},"LoadProductRequest":{"StartLoading":[]},"LoadProductFailure":{"StopLoading":[]},"SaveProductFailure":{"StopSaving":[]},"ArchiveProductsFailure":{"StopSaving":[]},"DeleteProductsFailure":{"StopSaving":[]},"RestoreProductsFailure":{"StopSaving":[]},"SetTaxCategoryProductsFailure":{"StopSaving":[]},"SaveProductDocumentFailure":{"StopSaving":[]},"_$ProductStateSerializer":{"StructuredSerializer":["ProductState"],"Serializer":["ProductState"]},"_$ProductUIStateSerializer":{"StructuredSerializer":["ProductUIState"],"Serializer":["ProductUIState"]},"_$ProductState":{"ProductState":[]},"_$ProductUIState":{"ProductUIState":[]},"ViewProjectList":{"PersistUI":[]},"ViewProject":{"PersistUI":[],"PersistPrefs":[]},"EditProject":{"PersistUI":[],"PersistPrefs":[]},"UpdateProject":{"PersistUI":[]},"LoadProjectSuccess":{"StopLoading":[],"PersistData":[]},"LoadProjectsRequest":{"StartLoading":[]},"LoadProjectsFailure":{"StopLoading":[]},"LoadProjectsSuccess":{"StopLoading":[]},"SaveProjectRequest":{"StartSaving":[]},"SaveProjectSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddProjectSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveProjectRequest":{"StartSaving":[]},"ArchiveProjectSuccess":{"StopSaving":[],"PersistData":[]},"DeleteProjectRequest":{"StartSaving":[]},"DeleteProjectSuccess":{"StopSaving":[],"PersistData":[]},"RestoreProjectRequest":{"StartSaving":[]},"RestoreProjectSuccess":{"StopSaving":[],"PersistData":[]},"FilterProjects":{"PersistUI":[]},"SortProjects":{"PersistUI":[],"PersistPrefs":[]},"FilterProjectsByState":{"PersistUI":[]},"FilterProjectsByCustom1":{"PersistUI":[]},"FilterProjectsByCustom2":{"PersistUI":[]},"FilterProjectsByCustom3":{"PersistUI":[]},"FilterProjectsByCustom4":{"PersistUI":[]},"SaveProjectDocumentRequest":{"StartSaving":[]},"UpdateProjectTab":{"PersistUI":[]},"LoadProjectRequest":{"StartLoading":[]},"LoadProjectFailure":{"StopLoading":[]},"SaveProjectFailure":{"StopSaving":[]},"ArchiveProjectFailure":{"StopSaving":[]},"DeleteProjectFailure":{"StopSaving":[]},"RestoreProjectFailure":{"StopSaving":[]},"SaveProjectDocumentFailure":{"StopSaving":[]},"_$ProjectStateSerializer":{"StructuredSerializer":["ProjectState"],"Serializer":["ProjectState"]},"_$ProjectUIStateSerializer":{"StructuredSerializer":["ProjectUIState"],"Serializer":["ProjectUIState"]},"_$ProjectState":{"ProjectState":[]},"_$ProjectUIState":{"ProjectUIState":[]},"ViewPurchaseOrderList":{"PersistUI":[]},"ViewPurchaseOrder":{"PersistUI":[],"PersistPrefs":[]},"EditPurchaseOrder":{"PersistUI":[],"PersistPrefs":[]},"EditPurchaseOrderItem":{"PersistUI":[]},"UpdatePurchaseOrder":{"PersistUI":[]},"UpdatePurchaseOrderVendor":{"PersistUI":[]},"LoadPurchaseOrderSuccess":{"StopLoading":[],"PersistData":[]},"LoadPurchaseOrdersRequest":{"StartLoading":[]},"LoadPurchaseOrdersFailure":{"StopLoading":[]},"LoadPurchaseOrdersSuccess":{"StopLoading":[]},"SavePurchaseOrderDocumentRequest":{"StartSaving":[]},"SavePurchaseOrderRequest":{"StartSaving":[]},"SavePurchaseOrderSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddPurchaseOrderSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"BulkEmailPurchaseOrdersRequest":{"StartSaving":[]},"ArchivePurchaseOrdersRequest":{"StartSaving":[]},"ArchivePurchaseOrdersSuccess":{"StopSaving":[],"PersistData":[]},"DeletePurchaseOrdersRequest":{"StartSaving":[]},"DeletePurchaseOrdersSuccess":{"StopSaving":[],"PersistData":[]},"DownloadPurchaseOrdersRequest":{"StartSaving":[]},"AcceptPurchaseOrdersRequest":{"StartSaving":[]},"AcceptPurchaseOrderSuccess":{"StopSaving":[]},"CancelPurchaseOrdersRequest":{"StartSaving":[]},"CancelPurchaseOrderSuccess":{"StopSaving":[]},"RestorePurchaseOrdersRequest":{"StartSaving":[]},"RestorePurchaseOrdersSuccess":{"StopSaving":[],"PersistData":[]},"EmailPurchaseOrderRequest":{"StartSaving":[]},"EmailPurchaseOrderSuccess":{"StopSaving":[],"PersistData":[]},"MarkPurchaseOrdersSentRequest":{"StartSaving":[]},"MarkPurchaseOrderSentSuccess":{"StopSaving":[],"PersistData":[]},"ConvertPurchaseOrdersToExpensesRequest":{"StartSaving":[]},"ConvertPurchaseOrdersToExpensesSuccess":{"StopSaving":[],"PersistData":[]},"AddPurchaseOrdersToInventoryRequest":{"StartSaving":[]},"AddPurchaseOrdersToInventorySuccess":{"StopSaving":[],"PersistData":[]},"ApprovePurchaseOrders":{"StartSaving":[]},"ApprovePurchaseOrderSuccess":{"StopSaving":[]},"AddPurchaseOrderContact":{"PersistUI":[]},"RemovePurchaseOrderContact":{"PersistUI":[]},"AddPurchaseOrderItem":{"PersistUI":[]},"MovePurchaseOrderItem":{"PersistUI":[]},"AddPurchaseOrderItems":{"PersistUI":[]},"UpdatePurchaseOrderItem":{"PersistUI":[]},"DeletePurchaseOrderItem":{"PersistUI":[]},"FilterPurchaseOrders":{"PersistUI":[]},"SortPurchaseOrders":{"PersistUI":[],"PersistPrefs":[]},"FilterPurchaseOrdersByState":{"PersistUI":[]},"FilterPurchaseOrdersByStatus":{"PersistUI":[]},"FilterPurchaseOrdersByCustom1":{"PersistUI":[]},"FilterPurchaseOrdersByCustom2":{"PersistUI":[]},"FilterPurchaseOrdersByCustom3":{"PersistUI":[]},"FilterPurchaseOrdersByCustom4":{"PersistUI":[]},"UpdatePurchaseOrderTab":{"PersistUI":[]},"LoadPurchaseOrderRequest":{"StartLoading":[]},"LoadPurchaseOrderFailure":{"StopLoading":[]},"SavePurchaseOrderDocumentFailure":{"StopSaving":[]},"SavePurchaseOrderFailure":{"StopSaving":[]},"BulkEmailPurchaseOrdersSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailPurchaseOrdersFailure":{"StopSaving":[]},"ArchivePurchaseOrdersFailure":{"StopSaving":[]},"DeletePurchaseOrdersFailure":{"StopSaving":[]},"DownloadPurchaseOrdersSuccess":{"StopSaving":[]},"DownloadPurchaseOrdersFailure":{"StopSaving":[]},"AcceptPurchaseOrderFailure":{"StopSaving":[]},"CancelPurchaseOrderFailure":{"StopSaving":[]},"RestorePurchaseOrdersFailure":{"StopSaving":[]},"EmailPurchaseOrderFailure":{"StopSaving":[]},"MarkPurchaseOrderSentFailure":{"StopSaving":[]},"ConvertPurchaseOrdersToExpensesFailure":{"StopSaving":[]},"AddPurchaseOrdersToInventoryFailure":{"StopSaving":[]},"ApprovePurchaseOrderFailure":{"StopSaving":[]},"_$PurchaseOrderStateSerializer":{"StructuredSerializer":["PurchaseOrderState"],"Serializer":["PurchaseOrderState"]},"_$PurchaseOrderUIStateSerializer":{"StructuredSerializer":["PurchaseOrderUIState"],"Serializer":["PurchaseOrderUIState"]},"_$PurchaseOrderState":{"PurchaseOrderState":[]},"_$PurchaseOrderUIState":{"PurchaseOrderUIState":[]},"ViewQuoteList":{"PersistUI":[]},"ViewQuote":{"PersistUI":[],"PersistPrefs":[]},"EditQuote":{"PersistUI":[],"PersistPrefs":[]},"EditQuoteItem":{"PersistUI":[]},"UpdateQuote":{"PersistUI":[]},"UpdateQuoteClient":{"PersistUI":[]},"LoadQuoteSuccess":{"StopLoading":[],"PersistData":[]},"LoadQuotesRequest":{"StartLoading":[]},"LoadQuotesFailure":{"StopLoading":[]},"LoadQuotesSuccess":{"StopLoading":[]},"AddQuoteContact":{"PersistUI":[]},"RemoveQuoteContact":{"PersistUI":[]},"AddQuoteItem":{"PersistUI":[]},"MoveQuoteItem":{"PersistUI":[]},"AddQuoteItems":{"PersistUI":[]},"UpdateQuoteItem":{"PersistUI":[]},"DeleteQuoteItem":{"PersistUI":[]},"SaveQuoteRequest":{"StartSaving":[]},"SaveQuoteSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddQuoteSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"EmailQuoteRequest":{"StartSaving":[]},"EmailQuoteSuccess":{"StopSaving":[],"PersistData":[]},"MarkSentQuotesRequest":{"StartSaving":[]},"MarkSentQuoteSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailQuotesRequest":{"StartSaving":[]},"ArchiveQuotesRequest":{"StartSaving":[]},"ArchiveQuotesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteQuotesRequest":{"StartSaving":[]},"DeleteQuotesSuccess":{"StopSaving":[],"PersistData":[]},"DownloadQuotesRequest":{"StartSaving":[]},"RestoreQuotesRequest":{"StartSaving":[]},"RestoreQuotesSuccess":{"StopSaving":[],"PersistData":[]},"FilterQuotes":{"PersistUI":[]},"SortQuotes":{"PersistUI":[],"PersistPrefs":[]},"FilterQuotesByState":{"PersistUI":[]},"FilterQuotesByStatus":{"PersistUI":[]},"FilterQuotesByCustom1":{"PersistUI":[]},"FilterQuotesByCustom2":{"PersistUI":[]},"FilterQuotesByCustom3":{"PersistUI":[]},"FilterQuotesByCustom4":{"PersistUI":[]},"ConvertQuotesToInvoices":{"StartSaving":[]},"ConvertQuotesToInvoicesSuccess":{"StopSaving":[]},"ConvertQuotesToProjects":{"StartSaving":[]},"ConvertQuotesToProjectsSuccess":{"StopSaving":[]},"ApproveQuotes":{"StartSaving":[]},"SaveQuoteDocumentRequest":{"StartSaving":[]},"UpdateQuoteTab":{"PersistUI":[]},"LoadQuoteRequest":{"StartLoading":[]},"LoadQuoteFailure":{"StopLoading":[]},"SaveQuoteFailure":{"StopSaving":[]},"EmailQuoteFailure":{"StopSaving":[]},"MarkSentQuoteFailure":{"StopSaving":[]},"BulkEmailQuotesSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailQuotesFailure":{"StopSaving":[]},"ArchiveQuotesFailure":{"StopSaving":[]},"DeleteQuotesFailure":{"StopSaving":[]},"DownloadQuotesSuccess":{"StopSaving":[]},"DownloadQuotesFailure":{"StopSaving":[]},"RestoreQuotesFailure":{"StopSaving":[]},"ConvertQuotesToInvoicesFailure":{"StopSaving":[]},"ConvertQuotesToProjectsFailure":{"StopSaving":[]},"ApproveQuoteSuccess":{"StopSaving":[]},"ApproveQuoteFailure":{"StopSaving":[]},"SaveQuoteDocumentFailure":{"StopSaving":[]},"_$QuoteStateSerializer":{"StructuredSerializer":["QuoteState"],"Serializer":["QuoteState"]},"_$QuoteUIStateSerializer":{"StructuredSerializer":["QuoteUIState"],"Serializer":["QuoteUIState"]},"_$QuoteState":{"QuoteState":[]},"_$QuoteUIState":{"QuoteUIState":[]},"ViewRecurringExpenseList":{"PersistUI":[]},"ViewRecurringExpense":{"PersistUI":[],"PersistPrefs":[]},"EditRecurringExpense":{"PersistUI":[],"PersistPrefs":[]},"UpdateRecurringExpense":{"PersistUI":[]},"LoadRecurringExpenseSuccess":{"StopLoading":[],"PersistData":[]},"LoadRecurringExpensesRequest":{"StartLoading":[]},"LoadRecurringExpensesFailure":{"StopLoading":[]},"LoadRecurringExpensesSuccess":{"StopLoading":[]},"SaveRecurringExpenseRequest":{"StartSaving":[]},"SaveRecurringExpenseSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddRecurringExpenseSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveRecurringExpensesRequest":{"StartSaving":[]},"ArchiveRecurringExpensesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteRecurringExpensesRequest":{"StartSaving":[]},"DeleteRecurringExpensesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreRecurringExpensesRequest":{"StartSaving":[]},"RestoreRecurringExpensesSuccess":{"StopSaving":[],"PersistData":[]},"FilterRecurringExpenses":{"PersistUI":[]},"SortRecurringExpenses":{"PersistUI":[],"PersistPrefs":[]},"FilterRecurringExpensesByState":{"PersistUI":[]},"FilterRecurringExpensesByStatus":{"PersistUI":[]},"FilterRecurringExpensesByCustom1":{"PersistUI":[]},"FilterRecurringExpensesByCustom2":{"PersistUI":[]},"FilterRecurringExpensesByCustom3":{"PersistUI":[]},"FilterRecurringExpensesByCustom4":{"PersistUI":[]},"UpdateRecurringExpenseTab":{"PersistUI":[]},"StartRecurringExpensesRequest":{"StartSaving":[]},"StartRecurringExpensesSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"StopRecurringExpensesRequest":{"StartSaving":[]},"StopRecurringExpensesSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"SaveRecurringExpenseDocumentRequest":{"StartSaving":[]},"LoadRecurringExpenseRequest":{"StartLoading":[]},"LoadRecurringExpenseFailure":{"StopLoading":[]},"SaveRecurringExpenseFailure":{"StopSaving":[]},"ArchiveRecurringExpensesFailure":{"StopSaving":[]},"DeleteRecurringExpensesFailure":{"StopSaving":[]},"RestoreRecurringExpensesFailure":{"StopSaving":[]},"StartRecurringExpensesFailure":{"StopSaving":[]},"StopRecurringExpensesFailure":{"StopSaving":[]},"SaveRecurringExpenseDocumentFailure":{"StopSaving":[]},"_$RecurringExpenseStateSerializer":{"StructuredSerializer":["RecurringExpenseState"],"Serializer":["RecurringExpenseState"]},"_$RecurringExpenseUIStateSerializer":{"StructuredSerializer":["RecurringExpenseUIState"],"Serializer":["RecurringExpenseUIState"]},"_$RecurringExpenseState":{"RecurringExpenseState":[]},"_$RecurringExpenseUIState":{"RecurringExpenseUIState":[]},"ViewRecurringInvoiceList":{"PersistUI":[]},"ViewRecurringInvoice":{"PersistUI":[],"PersistPrefs":[]},"EditRecurringInvoice":{"PersistUI":[],"PersistPrefs":[]},"EditRecurringInvoiceItem":{"PersistUI":[]},"UpdateRecurringInvoice":{"PersistUI":[]},"UpdateRecurringInvoiceClient":{"PersistUI":[]},"LoadRecurringInvoiceSuccess":{"StopLoading":[],"PersistData":[]},"LoadRecurringInvoicesRequest":{"StartLoading":[]},"LoadRecurringInvoicesFailure":{"StopLoading":[]},"LoadRecurringInvoicesSuccess":{"StopLoading":[]},"AddRecurringInvoiceContact":{"PersistUI":[]},"RemoveRecurringInvoiceContact":{"PersistUI":[]},"SaveRecurringInvoiceRequest":{"StartSaving":[]},"SaveRecurringInvoiceSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddRecurringInvoiceSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddRecurringInvoiceItem":{"PersistUI":[]},"MoveRecurringInvoiceItem":{"PersistUI":[]},"AddRecurringInvoiceItems":{"PersistUI":[]},"UpdateRecurringInvoiceItem":{"PersistUI":[]},"DeleteRecurringInvoiceItem":{"PersistUI":[]},"EmailRecurringInvoiceSuccess":{"StopSaving":[],"PersistData":[]},"ArchiveRecurringInvoicesRequest":{"StartSaving":[]},"ArchiveRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"SendNowRecurringInvoicesRequest":{"StartSaving":[]},"SendNowRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"UpdatePricesRecurringInvoicesRequest":{"StartSaving":[]},"IncreasePricesRecurringInvoicesRequest":{"StartSaving":[]},"DeleteRecurringInvoicesRequest":{"StartSaving":[]},"DeleteRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreRecurringInvoicesRequest":{"StartSaving":[]},"RestoreRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"FilterRecurringInvoices":{"PersistUI":[]},"SortRecurringInvoices":{"PersistUI":[],"PersistPrefs":[]},"FilterRecurringInvoicesByState":{"PersistUI":[]},"FilterRecurringInvoicesByStatus":{"PersistUI":[]},"FilterRecurringInvoicesByCustom1":{"PersistUI":[]},"FilterRecurringInvoicesByCustom2":{"PersistUI":[]},"FilterRecurringInvoicesByCustom3":{"PersistUI":[]},"FilterRecurringInvoicesByCustom4":{"PersistUI":[]},"SaveRecurringInvoiceDocumentRequest":{"StartSaving":[]},"StartRecurringInvoicesRequest":{"StartSaving":[]},"StartRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"StopRecurringInvoicesRequest":{"StartSaving":[]},"StopRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"UpdateRecurringInvoiceTab":{"PersistUI":[]},"LoadRecurringInvoiceRequest":{"StartLoading":[]},"LoadRecurringInvoiceFailure":{"StopLoading":[]},"SaveRecurringInvoiceFailure":{"StopSaving":[]},"ArchiveRecurringInvoicesFailure":{"StopSaving":[]},"SendNowRecurringInvoicesFailure":{"StopSaving":[]},"UpdatePricesRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"UpdatePricesRecurringInvoicesFailure":{"StopSaving":[]},"IncreasePricesRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"IncreasePricesRecurringInvoicesFailure":{"StopSaving":[]},"DeleteRecurringInvoicesFailure":{"StopSaving":[]},"RestoreRecurringInvoicesFailure":{"StopSaving":[]},"SaveRecurringInvoiceDocumentFailure":{"StopSaving":[]},"StartRecurringInvoicesFailure":{"StopSaving":[]},"StopRecurringInvoicesFailure":{"StopSaving":[]},"_$RecurringInvoiceStateSerializer":{"StructuredSerializer":["RecurringInvoiceState"],"Serializer":["RecurringInvoiceState"]},"_$RecurringInvoiceUIStateSerializer":{"StructuredSerializer":["RecurringInvoiceUIState"],"Serializer":["RecurringInvoiceUIState"]},"_$RecurringInvoiceState":{"RecurringInvoiceState":[]},"_$RecurringInvoiceUIState":{"RecurringInvoiceUIState":[]},"ViewReports":{"PersistUI":[]},"UpdateReportSettings":{"PersistUI":[]},"_$ReportsUIStateSerializer":{"StructuredSerializer":["ReportsUIState"],"Serializer":["ReportsUIState"]},"_$ReportsUIState":{"ReportsUIState":[]},"ViewScheduleList":{"PersistUI":[]},"ViewSchedule":{"PersistUI":[],"PersistPrefs":[]},"EditSchedule":{"PersistUI":[],"PersistPrefs":[]},"UpdateSchedule":{"PersistUI":[]},"LoadScheduleSuccess":{"StopLoading":[],"PersistData":[]},"LoadSchedulesFailure":{"StopLoading":[]},"LoadSchedulesSuccess":{"StopLoading":[]},"SaveScheduleRequest":{"StartSaving":[]},"SaveScheduleSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddScheduleSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveSchedulesRequest":{"StartSaving":[]},"ArchiveSchedulesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteSchedulesRequest":{"StartSaving":[]},"DeleteSchedulesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreSchedulesRequest":{"StartSaving":[]},"RestoreSchedulesSuccess":{"StopSaving":[],"PersistData":[]},"FilterSchedules":{"PersistUI":[]},"SortSchedules":{"PersistUI":[],"PersistPrefs":[]},"FilterSchedulesByState":{"PersistUI":[]},"FilterSchedulesByCustom1":{"PersistUI":[]},"FilterSchedulesByCustom2":{"PersistUI":[]},"FilterSchedulesByCustom3":{"PersistUI":[]},"FilterSchedulesByCustom4":{"PersistUI":[]},"UpdateScheduleTab":{"PersistUI":[]},"LoadScheduleRequest":{"StartLoading":[]},"LoadScheduleFailure":{"StopLoading":[]},"LoadSchedulesRequest":{"StartLoading":[]},"SaveScheduleFailure":{"StopSaving":[]},"ArchiveSchedulesFailure":{"StopSaving":[]},"DeleteSchedulesFailure":{"StopSaving":[]},"RestoreSchedulesFailure":{"StopSaving":[]},"_$ScheduleStateSerializer":{"StructuredSerializer":["ScheduleState"],"Serializer":["ScheduleState"]},"_$ScheduleUIStateSerializer":{"StructuredSerializer":["ScheduleUIState"],"Serializer":["ScheduleUIState"]},"_$ScheduleState":{"ScheduleState":[]},"_$ScheduleUIState":{"ScheduleUIState":[]},"ViewSettings":{"PersistUI":[]},"ClearSettingsFilter":{"PersistUI":[]},"UpdateSettings":{"PersistUI":[]},"UpdateSettingsTab":{"PersistUI":[]},"UpdatedSettingUI":{"PersistUI":[]},"UpdateSettingsTemplate":{"PersistUI":[]},"UpdateUserSettings":{"PersistUI":[]},"UploadLogoRequest":{"StartSaving":[]},"SaveUserSettingsRequest":{"StartSaving":[]},"SaveUserSettingsSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"SaveAuthUserRequest":{"StartSaving":[]},"SaveAuthUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"ConnecOAuthUserRequest":{"StartSaving":[]},"ConnectOAuthUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"DisconnecOAuthUserRequest":{"StartSaving":[]},"DisconnectOAuthUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"DisconnectOAuthMailerRequest":{"StartSaving":[]},"DisconnectOAuthMailerSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"DisableTwoFactorRequest":{"StartSaving":[]},"DisableTwoFactorSuccess":{"StopSaving":[],"PersistData":[],"UserVerifiedPassword":[]},"ConnecGmailUserRequest":{"StartSaving":[]},"ConnecGmailUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"FilterSettings":{"PersistUI":[]},"UpdatedSetting":{"PersistUI":[]},"UploadLogoFailure":{"StopSaving":[]},"SaveUserSettingsFailure":{"StopSaving":[]},"SaveAuthUserFailure":{"StopSaving":[]},"ConnecOAuthUserFailure":{"StopSaving":[]},"DisconnecOAuthUserFailure":{"StopSaving":[]},"DisconnectOAuthMailerFailure":{"StopSaving":[]},"DisableTwoFactorFailure":{"StopSaving":[]},"ConnecGmailUserFailure":{"StopSaving":[]},"_$SettingsUIStateSerializer":{"StructuredSerializer":["SettingsUIState"],"Serializer":["SettingsUIState"]},"_$SettingsUIState":{"SettingsUIState":[]},"_$StaticStateSerializer":{"StructuredSerializer":["StaticState"],"Serializer":["StaticState"]},"_$StaticState":{"StaticState":[]},"ViewSubscriptionList":{"PersistUI":[]},"ViewSubscription":{"PersistUI":[],"PersistPrefs":[]},"EditSubscription":{"PersistUI":[],"PersistPrefs":[]},"UpdateSubscription":{"PersistUI":[]},"LoadSubscriptionSuccess":{"StopLoading":[],"PersistData":[]},"LoadSubscriptionsFailure":{"StopLoading":[]},"LoadSubscriptionsSuccess":{"StopLoading":[]},"SaveSubscriptionRequest":{"StartSaving":[]},"SaveSubscriptionSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddSubscriptionSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveSubscriptionsRequest":{"StartSaving":[]},"ArchiveSubscriptionsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteSubscriptionsRequest":{"StartSaving":[]},"DeleteSubscriptionsSuccess":{"StopSaving":[],"PersistData":[]},"RestoreSubscriptionsRequest":{"StartSaving":[]},"RestoreSubscriptionsSuccess":{"StopSaving":[],"PersistData":[]},"FilterSubscriptions":{"PersistUI":[]},"SortSubscriptions":{"PersistUI":[],"PersistPrefs":[]},"FilterSubscriptionsByState":{"PersistUI":[]},"FilterSubscriptionsByCustom1":{"PersistUI":[]},"FilterSubscriptionsByCustom2":{"PersistUI":[]},"FilterSubscriptionsByCustom3":{"PersistUI":[]},"FilterSubscriptionsByCustom4":{"PersistUI":[]},"UpdateSubscriptionTab":{"PersistUI":[]},"LoadSubscriptionRequest":{"StartLoading":[]},"LoadSubscriptionFailure":{"StopLoading":[]},"LoadSubscriptionsRequest":{"StartLoading":[]},"SaveSubscriptionFailure":{"StopSaving":[]},"ArchiveSubscriptionsFailure":{"StopSaving":[]},"DeleteSubscriptionsFailure":{"StopSaving":[]},"RestoreSubscriptionsFailure":{"StopSaving":[]},"_$SubscriptionStateSerializer":{"StructuredSerializer":["SubscriptionState"],"Serializer":["SubscriptionState"]},"_$SubscriptionUIStateSerializer":{"StructuredSerializer":["SubscriptionUIState"],"Serializer":["SubscriptionUIState"]},"_$SubscriptionState":{"SubscriptionState":[]},"_$SubscriptionUIState":{"SubscriptionUIState":[]},"ViewTaskList":{"PersistUI":[]},"ViewTask":{"PersistUI":[],"PersistPrefs":[]},"EditTask":{"PersistUI":[],"PersistPrefs":[]},"UpdateTask":{"PersistUI":[]},"LoadTaskSuccess":{"StopLoading":[],"PersistData":[]},"EditTaskTime":{"PersistUI":[]},"AddTaskTime":{"PersistUI":[]},"UpdateTaskTime":{"PersistUI":[]},"DeleteTaskTime":{"PersistUI":[]},"LoadTasksRequest":{"StartLoading":[]},"LoadTasksFailure":{"StopLoading":[]},"LoadTasksSuccess":{"StopLoading":[]},"SaveTaskRequest":{"StartSaving":[]},"SaveTaskSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddTaskSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveTaskRequest":{"StartSaving":[]},"ArchiveTaskSuccess":{"StopSaving":[],"PersistData":[]},"StartTasksRequest":{"StartSaving":[]},"StartTasksSuccess":{"StopSaving":[],"PersistData":[]},"StopTasksRequest":{"StartSaving":[]},"StopTasksSuccess":{"StopSaving":[],"PersistData":[]},"DeleteTaskRequest":{"StartSaving":[]},"DeleteTaskSuccess":{"StopSaving":[],"PersistData":[]},"RestoreTaskRequest":{"StartSaving":[]},"RestoreTaskSuccess":{"StopSaving":[],"PersistData":[]},"SortTasksRequest":{"StartSaving":[]},"SortTasksSuccess":{"StopSaving":[],"PersistData":[]},"FilterTasks":{"PersistUI":[]},"SortTasks":{"PersistUI":[],"PersistPrefs":[]},"FilterTasksByState":{"PersistUI":[]},"FilterTasksByStatus":{"PersistUI":[]},"FilterTasksByCustom1":{"PersistUI":[]},"FilterTasksByCustom2":{"PersistUI":[]},"FilterTasksByCustom3":{"PersistUI":[]},"FilterTasksByCustom4":{"PersistUI":[]},"SaveTaskDocumentRequest":{"StartSaving":[]},"UpdateTaskTab":{"PersistUI":[]},"LoadTaskRequest":{"StartLoading":[]},"LoadTaskFailure":{"StopLoading":[]},"SaveTaskFailure":{"StopSaving":[]},"ArchiveTaskFailure":{"StopSaving":[]},"StartTasksFailure":{"StopSaving":[]},"StopTasksFailure":{"StopSaving":[]},"DeleteTaskFailure":{"StopSaving":[]},"RestoreTaskFailure":{"StopSaving":[]},"SortTasksFailure":{"StopSaving":[]},"SaveTaskDocumentFailure":{"StopSaving":[]},"_$TaskStateSerializer":{"StructuredSerializer":["TaskState"],"Serializer":["TaskState"]},"_$TaskUIStateSerializer":{"StructuredSerializer":["TaskUIState"],"Serializer":["TaskUIState"]},"_$TaskState":{"TaskState":[]},"_$TaskUIState":{"TaskUIState":[]},"ViewTaskStatusList":{"PersistUI":[]},"ViewTaskStatus":{"PersistUI":[],"PersistPrefs":[]},"EditTaskStatus":{"PersistUI":[],"PersistPrefs":[]},"UpdateTaskStatus":{"PersistUI":[]},"LoadTaskStatusSuccess":{"StopLoading":[],"PersistData":[]},"LoadTaskStatusesFailure":{"StopLoading":[]},"LoadTaskStatusesSuccess":{"StopLoading":[]},"SaveTaskStatusRequest":{"StartSaving":[]},"SaveTaskStatusSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddTaskStatusSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveTaskStatusesRequest":{"StartSaving":[]},"ArchiveTaskStatusesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteTaskStatusesRequest":{"StartSaving":[]},"DeleteTaskStatusesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreTaskStatusesRequest":{"StartSaving":[]},"RestoreTaskStatusesSuccess":{"StopSaving":[],"PersistData":[]},"FilterTaskStatuses":{"PersistUI":[]},"SortTaskStatuses":{"PersistUI":[],"PersistPrefs":[]},"FilterTaskStatusesByState":{"PersistUI":[]},"FilterTaskStatusesByCustom1":{"PersistUI":[]},"FilterTaskStatusesByCustom2":{"PersistUI":[]},"FilterTaskStatusesByCustom3":{"PersistUI":[]},"FilterTaskStatusesByCustom4":{"PersistUI":[]},"LoadTaskStatusRequest":{"StartLoading":[]},"LoadTaskStatusFailure":{"StopLoading":[]},"LoadTaskStatusesRequest":{"StartLoading":[]},"SaveTaskStatusFailure":{"StopSaving":[]},"ArchiveTaskStatusesFailure":{"StopSaving":[]},"DeleteTaskStatusesFailure":{"StopSaving":[]},"RestoreTaskStatusesFailure":{"StopSaving":[]},"_$TaskStatusStateSerializer":{"StructuredSerializer":["TaskStatusState"],"Serializer":["TaskStatusState"]},"_$TaskStatusUIStateSerializer":{"StructuredSerializer":["TaskStatusUIState"],"Serializer":["TaskStatusUIState"]},"_$TaskStatusState":{"TaskStatusState":[]},"_$TaskStatusUIState":{"TaskStatusUIState":[]},"ViewTaxRateList":{"PersistUI":[]},"ViewTaxRate":{"PersistUI":[]},"EditTaxRate":{"PersistUI":[]},"UpdateTaxRate":{"PersistUI":[]},"LoadTaxRateSuccess":{"StopLoading":[],"PersistData":[]},"LoadTaxRatesSuccess":{"StopLoading":[]},"SaveTaxRateRequest":{"StartSaving":[]},"SaveTaxRateSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddTaxRateSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveTaxRateRequest":{"StartSaving":[]},"ArchiveTaxRatesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteTaxRateRequest":{"StartSaving":[]},"DeleteTaxRatesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreTaxRateRequest":{"StartSaving":[]},"RestoreTaxRatesSuccess":{"StopSaving":[],"PersistData":[]},"FilterTaxRates":{"PersistUI":[]},"SortTaxRates":{"PersistUI":[],"PersistPrefs":[]},"FilterTaxRatesByState":{"PersistUI":[]},"LoadTaxRateRequest":{"StartLoading":[]},"LoadTaxRateFailure":{"StopLoading":[]},"LoadTaxRatesRequest":{"StartLoading":[]},"LoadTaxRatesFailure":{"StopLoading":[]},"SaveTaxRateFailure":{"StopSaving":[]},"ArchiveTaxRateFailure":{"StopSaving":[]},"DeleteTaxRateFailure":{"StopSaving":[]},"RestoreTaxRateFailure":{"StopSaving":[]},"_$TaxRateStateSerializer":{"StructuredSerializer":["TaxRateState"],"Serializer":["TaxRateState"]},"_$TaxRateUIStateSerializer":{"StructuredSerializer":["TaxRateUIState"],"Serializer":["TaxRateUIState"]},"_$TaxRateState":{"TaxRateState":[]},"_$TaxRateUIState":{"TaxRateUIState":[]},"ViewTokenList":{"PersistUI":[]},"ViewToken":{"PersistUI":[],"PersistPrefs":[]},"EditToken":{"PersistUI":[],"PersistPrefs":[]},"UpdateToken":{"PersistUI":[]},"LoadTokenSuccess":{"StopLoading":[],"PersistData":[]},"LoadTokensFailure":{"StopLoading":[]},"LoadTokensSuccess":{"StopLoading":[]},"SaveTokenRequest":{"StartSaving":[]},"SaveTokenSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"AddTokenSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"ArchiveTokensRequest":{"StartSaving":[]},"ArchiveTokensSuccess":{"StopSaving":[],"PersistData":[]},"DeleteTokensRequest":{"StartSaving":[]},"DeleteTokensSuccess":{"StopSaving":[],"PersistData":[]},"RestoreTokensRequest":{"StartSaving":[]},"RestoreTokensSuccess":{"StopSaving":[],"PersistData":[]},"FilterTokens":{"PersistUI":[]},"SortTokens":{"PersistUI":[],"PersistPrefs":[]},"FilterTokensByState":{"PersistUI":[]},"FilterTokensByCustom1":{"PersistUI":[]},"FilterTokensByCustom2":{"PersistUI":[]},"FilterTokensByCustom3":{"PersistUI":[]},"FilterTokensByCustom4":{"PersistUI":[]},"LoadTokenRequest":{"StartLoading":[]},"LoadTokenFailure":{"StopLoading":[]},"LoadTokensRequest":{"StartLoading":[]},"SaveTokenFailure":{"StopSaving":[]},"ArchiveTokensFailure":{"StopSaving":[]},"DeleteTokensFailure":{"StopSaving":[]},"RestoreTokensFailure":{"StopSaving":[]},"_$TokenStateSerializer":{"StructuredSerializer":["TokenState"],"Serializer":["TokenState"]},"_$TokenUIStateSerializer":{"StructuredSerializer":["TokenUIState"],"Serializer":["TokenUIState"]},"_$TokenState":{"TokenState":[]},"_$TokenUIState":{"TokenUIState":[]},"ViewTransactionList":{"PersistUI":[]},"ViewTransaction":{"PersistUI":[],"PersistPrefs":[]},"EditTransaction":{"PersistUI":[],"PersistPrefs":[]},"UpdateTransaction":{"PersistUI":[]},"LoadTransactionSuccess":{"StopLoading":[],"PersistData":[]},"LoadTransactionsRequest":{"StartLoading":[]},"LoadTransactionsFailure":{"StopLoading":[]},"LoadTransactionsSuccess":{"StopLoading":[]},"SaveTransactionRequest":{"StartSaving":[]},"SaveTransactionSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddTransactionSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveTransactionsRequest":{"StartSaving":[]},"ArchiveTransactionsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteTransactionsRequest":{"StartSaving":[]},"DeleteTransactionsSuccess":{"StopSaving":[],"PersistData":[]},"RestoreTransactionsRequest":{"StartSaving":[]},"RestoreTransactionsSuccess":{"StopSaving":[],"PersistData":[]},"ConvertTransactionToPaymentRequest":{"StartSaving":[]},"ConvertTransactionToPaymentSuccess":{"StopSaving":[],"PersistData":[]},"LinkTransactionToPaymentRequest":{"StartSaving":[]},"LinkTransactionToPaymentSuccess":{"StopSaving":[],"PersistData":[]},"UnlinkTransactionsRequest":{"StartSaving":[]},"LinkTransactionToExpenseRequest":{"StartSaving":[]},"LinkTransactionToExpenseSuccess":{"StopSaving":[],"PersistData":[]},"ConvertTransactionsToExpensesRequest":{"StartSaving":[]},"ConvertTransactionsToExpensesSuccess":{"StopSaving":[],"PersistData":[]},"ConvertTransactionsRequest":{"StartSaving":[]},"ConvertTransactionsSuccess":{"StopSaving":[],"PersistData":[]},"FilterTransactions":{"PersistUI":[]},"SortTransactions":{"PersistUI":[],"PersistPrefs":[]},"FilterTransactionsByState":{"PersistUI":[]},"FilterTransactionsByStatus":{"PersistUI":[]},"FilterTransactionsByCustom1":{"PersistUI":[]},"FilterTransactionsByCustom2":{"PersistUI":[]},"FilterTransactionsByCustom3":{"PersistUI":[]},"FilterTransactionsByCustom4":{"PersistUI":[]},"UpdateTransactionTab":{"PersistUI":[]},"LoadTransactionRequest":{"StartLoading":[]},"LoadTransactionFailure":{"StopLoading":[]},"SaveTransactionFailure":{"StopSaving":[]},"ArchiveTransactionsFailure":{"StopSaving":[]},"DeleteTransactionsFailure":{"StopSaving":[]},"RestoreTransactionsFailure":{"StopSaving":[]},"ConvertTransactionToPaymentFailure":{"StopSaving":[]},"LinkTransactionToPaymentFailure":{"StopSaving":[]},"UnlinkTransactionsSuccess":{"StopSaving":[],"PersistData":[]},"UnlinkTransactionsFailure":{"StopSaving":[]},"LinkTransactionToExpenseFailure":{"StopSaving":[]},"ConvertTransactionsToExpensesFailure":{"StopSaving":[]},"ConvertTransactionsFailure":{"StopSaving":[]},"_$TransactionStateSerializer":{"StructuredSerializer":["TransactionState"],"Serializer":["TransactionState"]},"_$TransactionUIStateSerializer":{"StructuredSerializer":["TransactionUIState"],"Serializer":["TransactionUIState"]},"_$TransactionState":{"TransactionState":[]},"_$TransactionUIState":{"TransactionUIState":[]},"ViewTransactionRuleList":{"PersistUI":[]},"ViewTransactionRule":{"PersistUI":[],"PersistPrefs":[]},"EditTransactionRule":{"PersistUI":[],"PersistPrefs":[]},"UpdateTransactionRule":{"PersistUI":[]},"LoadTransactionRuleSuccess":{"StopLoading":[],"PersistData":[]},"LoadTransactionRulesFailure":{"StopLoading":[]},"LoadTransactionRulesSuccess":{"StopLoading":[]},"SaveTransactionRuleRequest":{"StartSaving":[]},"SaveTransactionRuleSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddTransactionRuleSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveTransactionRulesRequest":{"StartSaving":[]},"ArchiveTransactionRulesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteTransactionRulesRequest":{"StartSaving":[]},"DeleteTransactionRulesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreTransactionRulesRequest":{"StartSaving":[]},"RestoreTransactionRulesSuccess":{"StopSaving":[],"PersistData":[]},"FilterTransactionRules":{"PersistUI":[]},"SortTransactionRules":{"PersistUI":[],"PersistPrefs":[]},"FilterTransactionRulesByState":{"PersistUI":[]},"FilterTransactionRulesByCustom1":{"PersistUI":[]},"FilterTransactionRulesByCustom2":{"PersistUI":[]},"FilterTransactionRulesByCustom3":{"PersistUI":[]},"FilterTransactionRulesByCustom4":{"PersistUI":[]},"UpdateTransactionRuleTab":{"PersistUI":[]},"LoadTransactionRuleRequest":{"StartLoading":[]},"LoadTransactionRuleFailure":{"StopLoading":[]},"LoadTransactionRulesRequest":{"StartLoading":[]},"SaveTransactionRuleFailure":{"StopSaving":[]},"ArchiveTransactionRulesFailure":{"StopSaving":[]},"DeleteTransactionRulesFailure":{"StopSaving":[]},"RestoreTransactionRulesFailure":{"StopSaving":[]},"_$TransactionRuleStateSerializer":{"StructuredSerializer":["TransactionRuleState"],"Serializer":["TransactionRuleState"]},"_$TransactionRuleUIStateSerializer":{"StructuredSerializer":["TransactionRuleUIState"],"Serializer":["TransactionRuleUIState"]},"_$TransactionRuleState":{"TransactionRuleState":[]},"_$TransactionRuleUIState":{"TransactionRuleUIState":[]},"_$ListUIStateSerializer":{"StructuredSerializer":["ListUIState"],"Serializer":["ListUIState"]},"_$ListUIState":{"ListUIState":[]},"_$PrefStateSerializer":{"StructuredSerializer":["PrefState"],"Serializer":["PrefState"]},"_$PrefStateSortFieldSerializer":{"StructuredSerializer":["PrefStateSortField"],"Serializer":["PrefStateSortField"]},"_$CompanyPrefStateSerializer":{"StructuredSerializer":["CompanyPrefState"],"Serializer":["CompanyPrefState"]},"_$AppLayoutSerializer":{"PrimitiveSerializer":["AppLayout"],"Serializer":["AppLayout"]},"_$ModuleLayoutSerializer":{"PrimitiveSerializer":["ModuleLayout"],"Serializer":["ModuleLayout"]},"_$AppSidebarModeSerializer":{"PrimitiveSerializer":["AppSidebarMode"],"Serializer":["AppSidebarMode"]},"_$HistoryRecordSerializer":{"StructuredSerializer":["HistoryRecord"],"Serializer":["HistoryRecord"]},"_$PrefState":{"PrefState":[]},"_$PrefStateSortField":{"PrefStateSortField":[]},"_$CompanyPrefState":{"CompanyPrefState":[]},"_$HistoryRecord":{"HistoryRecord":[]},"_$UIStateSerializer":{"StructuredSerializer":["UIState"],"Serializer":["UIState"]},"_$UIState":{"UIState":[]},"ViewUserList":{"PersistUI":[]},"ViewUser":{"PersistUI":[],"PersistPrefs":[]},"EditUser":{"PersistUI":[],"PersistPrefs":[]},"UpdateUser":{"PersistUI":[]},"LoadUserSuccess":{"StopLoading":[],"PersistData":[]},"LoadUsersSuccess":{"StopLoading":[]},"SaveUserRequest":{"StartSaving":[]},"SaveUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"AddUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"ArchiveUserRequest":{"StartSaving":[]},"ArchiveUserSuccess":{"StopSaving":[],"PersistData":[],"UserVerifiedPassword":[]},"DeleteUserRequest":{"StartSaving":[]},"DeleteUserSuccess":{"StopSaving":[],"PersistData":[],"UserVerifiedPassword":[]},"RestoreUserRequest":{"StartSaving":[]},"RestoreUserSuccess":{"StopSaving":[],"PersistData":[],"UserVerifiedPassword":[]},"RemoveUserRequest":{"StartSaving":[]},"RemoveUserSuccess":{"StopSaving":[],"PersistData":[]},"ResendInviteRequest":{"StartSaving":[]},"SortUsers":{"PersistUI":[],"PersistPrefs":[]},"FilterUsersByState":{"PersistUI":[]},"FilterUsersByCustom1":{"PersistUI":[]},"FilterUsersByCustom2":{"PersistUI":[]},"FilterUsersByCustom3":{"PersistUI":[]},"FilterUsersByCustom4":{"PersistUI":[]},"LoadUserRequest":{"StartLoading":[]},"LoadUserFailure":{"StopLoading":[]},"LoadUsersRequest":{"StartLoading":[]},"LoadUsersFailure":{"StopLoading":[]},"SaveUserFailure":{"StopSaving":[]},"ArchiveUserFailure":{"StopSaving":[]},"DeleteUserFailure":{"StopSaving":[]},"RestoreUserFailure":{"StopSaving":[]},"RemoveUserFailure":{"StopSaving":[]},"ResendInviteSuccess":{"StopSaving":[],"PersistData":[]},"ResendInviteFailure":{"StopSaving":[]},"_$UserStateSerializer":{"StructuredSerializer":["UserState"],"Serializer":["UserState"]},"_$UserUIStateSerializer":{"StructuredSerializer":["UserUIState"],"Serializer":["UserUIState"]},"_$UserState":{"UserState":[]},"_$UserUIState":{"UserUIState":[]},"ViewVendorList":{"PersistUI":[]},"ViewVendor":{"PersistUI":[],"PersistPrefs":[]},"EditVendor":{"PersistUI":[],"PersistPrefs":[]},"UpdateVendor":{"PersistUI":[]},"LoadVendorSuccess":{"StopLoading":[],"PersistData":[]},"LoadVendorsRequest":{"StartLoading":[]},"LoadVendorsFailure":{"StopLoading":[]},"LoadVendorsSuccess":{"StopLoading":[]},"SaveVendorRequest":{"StartSaving":[]},"SaveVendorSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddVendorSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveVendorRequest":{"StartSaving":[]},"ArchiveVendorSuccess":{"StopSaving":[],"PersistData":[]},"DeleteVendorRequest":{"StartSaving":[]},"DeleteVendorSuccess":{"StopSaving":[],"PersistData":[]},"RestoreVendorRequest":{"StartSaving":[]},"RestoreVendorSuccess":{"StopSaving":[],"PersistData":[]},"EditVendorContact":{"PersistUI":[]},"AddVendorContact":{"PersistUI":[]},"UpdateVendorContact":{"PersistUI":[]},"DeleteVendorContact":{"PersistUI":[]},"FilterVendors":{"PersistUI":[]},"SortVendors":{"PersistUI":[],"PersistPrefs":[]},"FilterVendorsByState":{"PersistUI":[]},"FilterVendorsByCustom1":{"PersistUI":[]},"FilterVendorsByCustom2":{"PersistUI":[]},"FilterVendorsByCustom3":{"PersistUI":[]},"FilterVendorsByCustom4":{"PersistUI":[]},"SaveVendorDocumentRequest":{"StartSaving":[]},"UpdateVendorTab":{"PersistUI":[]},"LoadVendorRequest":{"StartLoading":[]},"LoadVendorFailure":{"StopLoading":[]},"SaveVendorFailure":{"StopSaving":[]},"ArchiveVendorFailure":{"StopSaving":[]},"DeleteVendorFailure":{"StopSaving":[]},"RestoreVendorFailure":{"StopSaving":[]},"SaveVendorDocumentFailure":{"StopSaving":[]},"_$VendorStateSerializer":{"StructuredSerializer":["VendorState"],"Serializer":["VendorState"]},"_$VendorUIStateSerializer":{"StructuredSerializer":["VendorUIState"],"Serializer":["VendorUIState"]},"_$VendorState":{"VendorState":[]},"_$VendorUIState":{"VendorUIState":[]},"ViewWebhookList":{"PersistUI":[]},"ViewWebhook":{"PersistUI":[],"PersistPrefs":[]},"EditWebhook":{"PersistUI":[],"PersistPrefs":[]},"UpdateWebhook":{"PersistUI":[]},"LoadWebhookSuccess":{"StopLoading":[],"PersistData":[]},"LoadWebhooksFailure":{"StopLoading":[]},"LoadWebhooksSuccess":{"StopLoading":[]},"SaveWebhookRequest":{"StartSaving":[]},"SaveWebhookSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddWebhookSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveWebhooksRequest":{"StartSaving":[]},"ArchiveWebhooksSuccess":{"StopSaving":[],"PersistData":[]},"DeleteWebhooksRequest":{"StartSaving":[]},"DeleteWebhooksSuccess":{"StopSaving":[],"PersistData":[]},"RestoreWebhooksRequest":{"StartSaving":[]},"RestoreWebhooksSuccess":{"StopSaving":[],"PersistData":[]},"FilterWebhooks":{"PersistUI":[]},"SortWebhooks":{"PersistUI":[],"PersistPrefs":[]},"FilterWebhooksByState":{"PersistUI":[]},"FilterWebhooksByCustom1":{"PersistUI":[]},"FilterWebhooksByCustom2":{"PersistUI":[]},"FilterWebhooksByCustom3":{"PersistUI":[]},"FilterWebhooksByCustom4":{"PersistUI":[]},"LoadWebhookRequest":{"StartLoading":[]},"LoadWebhookFailure":{"StopLoading":[]},"LoadWebhooksRequest":{"StartLoading":[]},"SaveWebhookFailure":{"StopSaving":[]},"ArchiveWebhooksFailure":{"StopSaving":[]},"DeleteWebhooksFailure":{"StopSaving":[]},"RestoreWebhooksFailure":{"StopSaving":[]},"_$WebhookStateSerializer":{"StructuredSerializer":["WebhookState"],"Serializer":["WebhookState"]},"_$WebhookUIStateSerializer":{"StructuredSerializer":["WebhookUIState"],"Serializer":["WebhookUIState"]},"_$WebhookState":{"WebhookState":[]},"_$WebhookUIState":{"WebhookUIState":[]},"FieldGrid":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ActionMenuButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ViewActionMenuButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppBorder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppBottomBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomFieldSelector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AppBottomBarState":{"State":["AppBottomBar"]},"AppBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppBuilderState":{"State":["AppBuilder"]},"AppHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppWebView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebWebView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AutobillDropdownMenuItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BlankScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppTextButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BottomButtons":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ChangeLayoutBanner":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ChangeLayoutBannerState":{"State":["ChangeLayoutBanner"]},"ConfirmEmail":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ConfirmEmailBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CopyToClipboard":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashedRect":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashRectPainter":{"Listenable":[]},"DesktopSessionTimeout":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DesktopSessionTimeoutState":{"State":["DesktopSessionTimeout"]},"MessageDialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ErrorDialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"HealthCheckDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HealthCheckDialogState":{"State":["HealthCheckDialog"]},"_HealthListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LoadingDialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"MultiSelectList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"MultiSelectListState":{"State":["MultiSelectList"]},"DismissibleEntity":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentGrid":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DocumentGridState":{"State":["DocumentGrid"]},"DocumentPreview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EditScaffold":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityActionListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityListTile":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntitiesListTile":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EntityListTileState":{"State":["EntityListTile"]},"_EntitiesListTileState":{"State":["EntitiesListTile"]},"EntityStatusChip":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityDropdown":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityDropdownDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityAutocompleteListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EntityDropdownState":{"State":["EntityDropdown"]},"_EntityDropdownDialogState":{"State":["EntityDropdownDialog"]},"_AutocompleteEntity":{"SelectableEntity":[]},"EntityHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityStateLabel":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityTopFilter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityTopFilterHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"FormCard":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppDropdownButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppForm":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppTabForm":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppTabBar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppToggleButtons":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoolDropdownButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientPicker":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"FormColorPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FormColorPickerState":{"State":["FormColorPicker"]},"CustomField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CustomFieldState":{"State":["CustomField"]},"CustomSurcharges":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DatePicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DatePickerState":{"State":["DatePicker"]},"DecoratedFormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DecoratedFormFieldState":{"State":["DecoratedFormField"]},"DesignPicker":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DiscountField":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DurationPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DurationPickerState":{"State":["DurationPicker"]},"DynamicSelector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GrowableFormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_GrowableFormFieldState":{"State":["GrowableFormField"]},"LearnMoreUrl":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"NotificationSettings":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_NotificationSelector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PasswordFormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PasswordFormFieldState":{"State":["PasswordFormField"]},"ProjectPicker":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SaveCancelButtons":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TimePicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TimePickerState":{"State":["TimePicker"]},"UserPicker":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorPicker":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenMeta":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"HelpText":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"HistoryDrawer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"HistoryListTile":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HistoryListTileState":{"State":["HistoryListTile"]},"HistoryDrawerBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IconMessage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IconText":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEmailView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceEmailViewState":{"State":["InvoiceEmailView"]},"InvoiceItemListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateDropdown":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaxRateDropdownState":{"State":["TaxRateDropdown"]},"TaxRateField":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LinkTextRelatedEntity":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LinkTextRelatedEntityState":{"State":["LinkTextRelatedEntity"]},"LinkTextSpan":{"TextSpan":[],"InlineSpan":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[],"HitTestTarget":[]},"ListFilter":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ListFilterState":{"State":["ListFilter"]},"ListScaffold":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ActivityListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ListDivider":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ListFilterMessage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"FilterListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SelectedIndicator":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LiveText":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LiveTextState":{"State":["LiveText"]},"LoadingIndicator":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"MainScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityScreens":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsScreens":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"MenuDrawer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerTile":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContactUsDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MenuDrawerState":{"State":["MenuDrawer"]},"_DrawerTileState":{"State":["DrawerTile"]},"SidebarFooter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SidebarFooterCollapsed":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ContactUsDialogState":{"State":["ContactUsDialog"]},"MenuDrawerBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectRow":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DropDownMultiSelect":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropDownMultiSelectState":{"State":["DropDownMultiSelect"]},"AppPinput":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PortalLinks":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TableTooltip":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CachedImage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ResponsivePadding":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReviewApp":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ReviewAppState":{"State":["ReviewApp"]},"ScrollableListView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollableListViewBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScrollableListViewState":{"State":["ScrollableListView"]},"_ScrollableListViewBuilderState":{"State":["ScrollableListViewBuilder"]},"SearchText":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AccountSmsVerification":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserSmsVerification":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AccountSmsVerificationState":{"State":["AccountSmsVerification"]},"_UserSmsVerificationState":{"State":["UserSmsVerification"]},"SystemLogViewer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SystemLogViewerState":{"State":["SystemLogViewer"]},"AppPaginatedDataTable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppPaginatedDataTableState":{"State":["AppPaginatedDataTable"]},"EntityDataTableSource":{"Listenable":[]},"EntityList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EntityListState":{"State":["EntityList"]},"UpgradeDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_UpgradeDialogState":{"State":["UpgradeDialog"]},"VariablesHelp":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VariablesHelpState":{"State":["VariablesHelp"]},"_VariableGrid":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ViewScaffold":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebSessionTimeout":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebSessionTimeoutState":{"State":["WebSessionTimeout"]},"WebSocketRefresh":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebSocketRefreshState":{"State":["WebSocketRefresh"]},"WindowManager":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WindowManagerState":{"State":["WindowManager"]},"InitScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LockScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LoginView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LoginState":{"State":["LoginView"]},"RuledText":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LoginScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BankAccountListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BankAccountListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BankAccountScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BankAccountScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BankAccountEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BankAccountEditState":{"State":["BankAccountEdit"]},"BankAccountEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BankAccountView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BankAccountViewState":{"State":["BankAccountView"]},"BankAccountViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientPdfView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientPdfViewState":{"State":["ClientPdfView"]},"ClientPdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientEditState":{"State":["ClientEdit"]},"ClientEditBillingAddress":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditBillingAddressState":{"State":["ClientEditBillingAddress"]},"ClientEditContacts":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContactListTile0":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContactEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientEditContactsState":{"State":["ClientEditContacts"]},"ContactEditDetailsState":{"State":["ContactEditDetails"]},"ClientEditContactsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditDesktop":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditDetailsState":{"State":["ClientEditDetails"]},"ClientEditFooter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditNotes":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditNotesState":{"State":["ClientEditNotes"]},"ClientEditSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditSettingsState":{"State":["ClientEditSettings"]},"ClientEditShippingAddress":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditShippingAddressState":{"State":["ClientEditShippingAddress"]},"ClientEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewState":{"State":["ClientView"]},"ClientViewActivity":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewActivityState":{"State":["ClientViewActivity"]},"ClientViewDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewDetailsState":{"State":["ClientViewDetails"]},"ClientViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientViewFullwidth":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewFullwidthState":{"State":["ClientViewFullwidth"]},"ClientViewLedger":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewLedgerState":{"State":["ClientViewLedger"]},"ClientOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientViewPaymentMethods":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientViewSystemLogs":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewSystemLogsState":{"State":["ClientViewSystemLogs"]},"ClientViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CompanyGatewayListState":{"State":["CompanyGatewayList"]},"CompanyGatewayListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"GatewayConfigField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"LimitEditor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FeesEditor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CompanyGatewayEditState":{"State":["CompanyGatewayEdit"]},"GatewayConfigSettings":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_GatewayConfigFieldState":{"State":["GatewayConfigField"]},"_LimitEditorState":{"State":["LimitEditor"]},"_FeesEditorState":{"State":["FeesEditor"]},"CompanyGatewayEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CompanyGatewaySystemLog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CompanyGatewayViewState":{"State":["CompanyGatewayView"]},"_CompanyGatewayOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"__CompanyGatewaySystemLogState":{"State":["_CompanyGatewaySystemLog"]},"CompanyGatewayViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEmailScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditPdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CreditEditState":{"State":["CreditEdit"]},"CreditEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEditItemsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEditNotesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEditPDFScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashboardActivity":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashboardChart":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DashboardChartState":{"State":["DashboardChart"]},"DashboardDateRangePicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DashboardDateRangePickerState":{"State":["DashboardDateRangePicker"]},"_DashboardPanel":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OverviewPanel":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DashboardSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DashboardField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashboardPanels":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"__DashboardPanelState":{"State":["_DashboardPanel"]},"__OverviewPanelState":{"State":["_OverviewPanel"]},"__DashboardSettingsState":{"State":["_DashboardSettings"]},"_DashboardFieldState":{"State":["_DashboardField"]},"DashboardScreen":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DashboardScreenState":{"State":["DashboardScreen"]},"_CustomTabBarView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashboardScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SidebarScaffold":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceSidebar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentSidebar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteSidebar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskSidebar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseSidbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DashboardSidebar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashboardSystemLogs":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfDesignPreview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InsertTabIntent":{"Intent":[]},"_DesignImportDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DesignEditState":{"State":["DesignEdit"]},"DesignSection":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DesignSettingsState":{"State":["DesignSettings"]},"_PdfDesignPreviewState":{"State":["PdfDesignPreview"]},"HtmlDesignPreview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InsertTabAction":{"Action":["Intent"],"Action.T":"Intent"},"__DesignImportDialogState":{"State":["_DesignImportDialog"]},"DesignEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DesignViewState":{"State":["DesignView"]},"DesignViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentEdit0":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DocumentEditState":{"State":["DocumentEdit0"]},"DocumentEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DocumentViewState":{"State":["DocumentView"]},"DocumentViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseEditState":{"State":["ExpenseEdit"]},"ExpenseEditDesktop":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseEditDetailsState":{"State":["ExpenseEditDetails"]},"ExpenseEditNotes":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseEditNotesState":{"State":["ExpenseEditNotes"]},"ExpenseEditSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseEditSettingsState":{"State":["ExpenseEditSettings"]},"ExpenseEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseViewState":{"State":["ExpenseView"]},"ExpenseViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseViewSchedule":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseViewScheduleState":{"State":["ExpenseViewSchedule"]},"ExpenseViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseCategoryEditState":{"State":["ExpenseCategoryEdit"]},"ExpenseCategoryEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseCategoryViewState":{"State":["ExpenseCategoryView"]},"ExpenseCategoryViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_GroupEditState":{"State":["GroupEdit"]},"GroupEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_GroupViewState":{"State":["GroupView"]},"SettingsViewer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceEditState":{"State":["InvoiceEdit"]},"InvoiceEditContacts":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ContactListTile":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ContactListTileState":{"State":["_ContactListTile"]},"InvoiceEditContactsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditDesktop":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PdfPreview0":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditDesktopState":{"State":["InvoiceEditDesktop"]},"__PdfPreviewState":{"State":["_PdfPreview0"]},"InvoiceEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditDetailsState":{"State":["InvoiceEditDetails"]},"InvoiceEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditFooter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditItems":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ItemEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceEditItemsState":{"State":["InvoiceEditItems"]},"ItemEditDetailsState":{"State":["ItemEditDetails"]},"InvoiceEditItemsDesktop":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceEditItemsDesktopState":{"State":["InvoiceEditItemsDesktop"]},"TableHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditItemsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditNotes":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditNotesState":{"State":["InvoiceEditNotes"]},"InvoiceEditNotesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditPDF":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditPDFState":{"State":["InvoiceEditPDF"]},"InvoiceEditPDFScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceItemSelector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceItemSelectorState":{"State":["InvoiceItemSelector"]},"InvoiceTaxDetails":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEmailScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoicePdfView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoicePdfViewState":{"State":["InvoicePdfView"]},"InvoicePdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceViewState":{"State":["InvoiceView"]},"InvoiceViewActivity":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceViewActivityState":{"State":["InvoiceViewActivity"]},"_InvitationListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceViewContacts":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceViewHistory":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceViewHistoryState":{"State":["InvoiceViewHistory"]},"InvoiceOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceViewSchedule":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceViewScheduleState":{"State":["InvoiceViewSchedule"]},"InvoiceViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentableEditor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentEditState":{"State":["PaymentEdit"]},"_PaymentableEditorState":{"State":["PaymentableEditor"]},"PaymentEditFooter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentRefund":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentableEditor0":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentRefundState":{"State":["PaymentRefund"]},"_PaymentableEditorState0":{"State":["PaymentableEditor0"]},"PaymentRefundScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentViewState":{"State":["PaymentView"]},"PaymentViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentTermEditState":{"State":["PaymentTermEdit"]},"PaymentTermEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentTermViewState":{"State":["PaymentTermView"]},"PaymentTermViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProductEditState":{"State":["ProductEdit"]},"ProductEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProductViewState":{"State":["ProductView"]},"ProductViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductOverview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProductOverviewState":{"State":["ProductOverview"]},"ProductViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProjectEditState":{"State":["ProjectEdit"]},"ProjectEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProjectViewState":{"State":["ProjectView"]},"ProjectViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectOverview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProjectOverviewState":{"State":["ProjectOverview"]},"ProjectViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PurchaseOrderEditState":{"State":["PurchaseOrderEdit"]},"PurchaseOrderEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEditItemsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEditNotesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEditPDFScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEmailScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderPdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_QuoteEditState":{"State":["QuoteEdit"]},"QuoteEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEditItemsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEditNotesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEditPDFScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEmailScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuotePdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RecurringInvoiceEditState":{"State":["RecurringInvoiceEdit"]},"RecurringInvoiceEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceEditItemsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceEditNotesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceEditPDFScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoicePdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReportCharts":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReportsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReportDataTable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ReportDataTableState":{"State":["ReportDataTable"]},"TotalsDataTable":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReportDataTableSource":{"Listenable":[]},"ReportStringValue":{"ReportElement":[]},"ReportEntityTypeValue":{"ReportElement":[]},"ReportAgeValue":{"ReportElement":[]},"ReportDurationValue":{"ReportElement":[]},"ReportIntValue":{"ReportElement":[]},"ReportNumberValue":{"ReportElement":[]},"ReportBoolValue":{"ReportElement":[]},"ReportsScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScheduleEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScheduleEditState":{"State":["ScheduleEdit"]},"ScheduleEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScheduleListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScheduleListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScheduleScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScheduleScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScheduleView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScheduleViewState":{"State":["ScheduleView"]},"ScheduleViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AccountManagement":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AccountManagementState":{"State":["AccountManagement"]},"_AccountOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AccountManagementScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientPortal":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientPortalState":{"State":["ClientPortal"]},"ClientPortalScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CompanyDetailsState":{"State":["CompanyDetails"]},"CompanyDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditCardsAndBanks":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CreditCardsAndBanksState":{"State":["CreditCardsAndBanks"]},"CreditCardsAndBanksScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomFields":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomFormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CustomFieldsState":{"State":["CustomFields"]},"CustomFieldsSettings":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CustomFormFieldState":{"State":["CustomFormField"]},"CustomFieldsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DataVisualizations":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DataVisualizationsState":{"State":["DataVisualizations"]},"DataVisualizationsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DeviceSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DeviceSettingsState":{"State":["DeviceSettings"]},"DeviceSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EmailSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EmailSettingsState":{"State":["EmailSettings"]},"EmailSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseSettingsState":{"State":["ExpenseSettings"]},"ExpenseSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GeneratedNumbers":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityNumberSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_GeneratedNumbersState":{"State":["GeneratedNumbers"]},"_EntityNumberSettingsState":{"State":["EntityNumberSettings"]},"HelpPanel":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GeneratedNumbersScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ImportExport":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FileImport":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FileMapper":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ImportExportState":{"State":["ImportExport"]},"_FileImportState":{"State":["_FileImport"]},"__FileMapperState":{"State":["_FileMapper"]},"_FieldMapper":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ImportExportScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceDesign":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PdfPreview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceDesignState":{"State":["InvoiceDesign"]},"_PdfPreviewState":{"State":["_PdfPreview"]},"InvoiceDesignScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LocalizationSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AddCompanyDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LocalizationSettingsState":{"State":["LocalizationSettings"]},"_AddCompanyDialogState":{"State":["_AddCompanyDialog"]},"LocalizationScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentSettingsState":{"State":["PaymentSettings"]},"PaymentsSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProductSettingsState":{"State":["ProductSettings"]},"ProductSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsListTile":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SettingsListState":{"State":["SettingsList"]},"_SettingsListTileState":{"State":["SettingsListTile"]},"SettingsSearch":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsWizard":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SettingsWizardState":{"State":["SettingsWizard"]},"TaskSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskSettingsState":{"State":["TaskSettings"]},"TaskSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EditSubregionDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaxSettingsState":{"State":["TaxSettings"]},"NumberOfRatesSelector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"__EditSubregionDialogState":{"State":["_EditSubregionDialog"]},"TaxSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TemplatesAndReminders":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReminderSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TemplatesAndRemindersState":{"State":["TemplatesAndReminders"]},"_ReminderSettingsState":{"State":["ReminderSettings"]},"EmailPreview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TemplatesAndRemindersScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EnableTwoFactor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_UserDetailsState":{"State":["UserDetails"]},"_EnableTwoFactorState":{"State":["_EnableTwoFactor"]},"UserDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WorkflowSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WorkflowSettingsState":{"State":["WorkflowSettings"]},"WorkflowSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SubscriptionEditState":{"State":["SubscriptionEdit"]},"SubscriptionEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SubscriptionViewState":{"State":["SubscriptionView"]},"SubscriptionViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UpdateDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_UpdateDialogState":{"State":["UpdateDialog"]},"TaskEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskEditState":{"State":["TaskEdit"]},"_BottomBar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskEditDesktop":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskEditDesktopState":{"State":["TaskEditDesktop"]},"TaskEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskEditDetailsState":{"State":["TaskEditDetails"]},"TaskEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskEditTimes":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TimeEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskEditTimesState":{"State":["TaskEditTimes"]},"TimeEditDetailsState":{"State":["TimeEditDetails"]},"TaskEditTimesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"KanbanTaskCard":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_KanbanTaskCardState":{"State":["KanbanTaskCard"]},"KanbanStatusCard":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_KanbanStatusCardState":{"State":["KanbanStatusCard"]},"KanbanView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"KanbanViewState":{"State":["KanbanView"]},"KanbanViewBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_KanbanViewBuilderState":{"State":["KanbanViewBuilder"]},"TaskListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskTimeListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskViewState":{"State":["TaskView"]},"TaskViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskOverview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskOverviewState":{"State":["TaskOverview"]},"TaskViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskStatusEditState":{"State":["TaskStatusEdit"]},"TaskStatusEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskStatusListState":{"State":["TaskStatusList"]},"TaskStatusListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskStatusViewState":{"State":["TaskStatusView"]},"TaskStatusViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaxRateEditState":{"State":["TaxRateEdit"]},"TaxRateEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaxRateViewState":{"State":["TaxRateView"]},"TaxRateViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TokenEditState":{"State":["TokenEdit"]},"TokenEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TokenViewState":{"State":["TokenView"]},"_TokenListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TransactionEditState":{"State":["TransactionEdit"]},"TransactionEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MatchDeposits":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MatchWithdrawals":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TransactionViewState":{"State":["TransactionView"]},"_MatchDepositsState":{"State":["_MatchDeposits"]},"_MatchWithdrawalsState":{"State":["_MatchWithdrawals"]},"TransactionViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionRuleEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RuleCriteria":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TransactionRuleEditState":{"State":["TransactionRuleEdit"]},"__RuleCriteriaState":{"State":["_RuleCriteria"]},"TransactionRuleEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionRuleListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionRuleListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionRuleScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionRuleScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionRuleView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TransactionRuleViewState":{"State":["TransactionRuleView"]},"TransactionRuleViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_UserEditState":{"State":["UserEdit"]},"_PermissionCheckbox":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorEditState":{"State":["VendorEdit"]},"VendorEditAddress":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditAddressState":{"State":["VendorEditAddress"]},"VendorEditContacts":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContactListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorContactEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorEditContactsState":{"State":["VendorEditContacts"]},"VendorContactEditDetailsState":{"State":["VendorContactEditDetails"]},"VendorEditContactsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditDesktop":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditDetailsState":{"State":["VendorEditDetails"]},"VendorEditFooter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditNotes":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditNotesState":{"State":["VendorEditNotes"]},"VendorEditSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditSettingsState":{"State":["VendorEditSettings"]},"VendorEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorViewState":{"State":["VendorView"]},"VendorViewActivity":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorViewActivityState":{"State":["VendorViewActivity"]},"VendorViewDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorViewDetailsState":{"State":["VendorViewDetails"]},"VendorViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorViewFullwidth":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorViewFullwidthState":{"State":["VendorViewFullwidth"]},"VendorOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebhookEditState":{"State":["WebhookEdit"]},"WebhookEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebhookViewState":{"State":["WebhookView"]},"TargetListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PasswordConfirmation":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FieldConfirmation":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RunTemplateDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PasswordConfirmationState":{"State":["PasswordConfirmation"]},"_FieldConfirmationState":{"State":["FieldConfirmation"]},"_RunTemplateDialogState":{"State":["RunTemplateDialog"]},"AppLocalizationsDelegate":{"LocalizationsDelegate":["AppLocalization"],"LocalizationsDelegate.T":"AppLocalization"},"_EmptyParagraphSyntax":{"BlockSyntax":[]},"ExampleEditor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExampleEditorState":{"State":["ExampleEditor"]},"EditorToolbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ImageFormatToolbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EditorToolbarState":{"State":["EditorToolbar"]},"_ImageFormatToolbarState":{"State":["ImageFormatToolbar"]},"_PositionedToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SingleLineAttributedTextEditingController":{"Listenable":[]},"LinkableElement":{"LinkifyElement":[]},"TextElement0":{"LinkifyElement":[]},"EmailLinkifier":{"Linkifier":[]},"EmailElement":{"LinkifyElement":[]},"UrlLinkifier":{"Linkifier":[]},"UrlElement":{"LinkifyElement":[]},"AndroidAuthMessages":{"AuthMessages":[]},"IOSAuthMessages":{"AuthMessages":[]},"WindowsAuthMessages":{"AuthMessages":[]},"Level":{"Comparable":["Level"]},"Element1":{"Node2":[]},"Text1":{"Node2":[]},"UnparsedContent":{"Node2":[]},"EmptyBlockSyntax":{"BlockSyntax":[]},"SetextHeaderSyntax":{"BlockSyntax":[]},"HeaderSyntax":{"BlockSyntax":[]},"BlockquoteSyntax":{"BlockSyntax":[]},"CodeBlockSyntax":{"BlockSyntax":[]},"FencedCodeBlockSyntax":{"BlockSyntax":[]},"HorizontalRuleSyntax":{"BlockSyntax":[]},"BlockHtmlSyntax":{"BlockSyntax":[]},"BlockTagBlockHtmlSyntax":{"BlockSyntax":[]},"OtherTagBlockHtmlSyntax":{"BlockSyntax":[]},"LongBlockHtmlSyntax":{"BlockSyntax":[]},"ListSyntax":{"BlockSyntax":[]},"UnorderedListSyntax":{"BlockSyntax":[]},"OrderedListSyntax":{"BlockSyntax":[]},"ParagraphSyntax":{"BlockSyntax":[]},"LineBreakSyntax":{"InlineSyntax":[]},"TextSyntax":{"InlineSyntax":[]},"EscapeSyntax":{"InlineSyntax":[]},"InlineHtmlSyntax":{"InlineSyntax":[]},"EmailAutolinkSyntax":{"InlineSyntax":[]},"AutolinkSyntax":{"InlineSyntax":[]},"SimpleDelimiter":{"Delimiter":[]},"DelimiterRun":{"Delimiter":[]},"TagSyntax":{"InlineSyntax":[]},"LinkSyntax":{"InlineSyntax":[]},"ImageSyntax":{"InlineSyntax":[]},"CodeSyntax":{"InlineSyntax":[]},"_MdiIconData":{"IconData":[]},"MsalJsException":{"Exception":[]},"AuthException":{"Exception":[]},"ClientAuthException":{"Exception":[]},"ClientConfigurationException":{"Exception":[]},"InteractionRequiredAuthException":{"Exception":[]},"ServerException":{"Exception":[]},"BrowserAuthException":{"Exception":[]},"BrowserConfigurationAuthException":{"Exception":[]},"OverflowViewParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"RenderOverflowView":{"RenderBoxContainerDefaultsMixin":["RenderBox","OverflowViewParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","OverflowViewParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"OverflowViewParentData","RenderBoxContainerDefaultsMixin.1":"OverflowViewParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"OverflowView":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OverflowViewElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"CupertinoPopoverMenu":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderPopover":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"CupertinoPopoverToolbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_IosPagerParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"_CupertinoPopoverToolbarState":{"State":["CupertinoPopoverToolbar"]},"_MenuPageController":{"Listenable":[]},"_IosToolbarMenuContent":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderIosPagedMenu":{"RenderBoxContainerDefaultsMixin":["RenderBox","_IosPagerParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","_IosPagerParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"_IosPagerParentData","RenderBoxContainerDefaultsMixin.1":"_IosPagerParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"PathException":{"Exception":[]},"MissingPlatformDirectoryException":{"Exception":[]},"PinchZoom":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PinchZoomState":{"State":["PinchZoom"]},"Pinput":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PinItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PinputAnimatedCursor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PinputState":{"State":["Pinput"],"WidgetsBindingObserver":[],"AutofillClient":[]},"_PinputFormField":{"FormField":["String"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"FormField.T":"String"},"_SeparatedRaw":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PinputCursor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PinputAnimatedCursorState":{"State":["_PinputAnimatedCursor"]},"PointerInterceptor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebPdfRaster":{"PdfRaster":[]},"PdfPreviewAction":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfPrintAction":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfShareAction":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfPreviewController":{"InheritedNotifier":["Listenable"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"Listenable"},"PdfPreviewData":{"Listenable":[]},"PdfPreviewCustom":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfPreviewCustomState":{"State":["PdfPreviewCustom"]},"PdfPreviewPage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfPreview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfPreviewState":{"State":["PdfPreview"]},"QrBitBuffer":{"ListBase":["bool"],"List":["bool"],"EfficientLengthIterable":["bool"],"Iterable":["bool"],"ListBase.E":"bool","Iterable.E":"bool"},"QrByte":{"QrDatum":[]},"InputTooLongException":{"Exception":[]},"QrImageView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_QrImageViewState":{"State":["QrImageView"]},"_QrContentView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QrPainter":{"Listenable":[]},"LoggingMiddleware":{"MiddlewareClass":["1"]},"RoundedLoadingButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RoundedLoadingButtonState":{"State":["RoundedLoadingButton"]},"DeferStream":{"Stream":["1"],"Stream.T":"1"},"ValueStreamError":{"Error":[]},"BehaviorSubject":{"Subject":["1"],"EventSink":["1"],"Stream":["1"],"Stream.T":"1"},"_BehaviorSubjectStream":{"Stream":["1"],"Stream.T":"1"},"Subject":{"EventSink":["1"],"Stream":["1"]},"_SubjectStream":{"Stream":["1"],"Stream.T":"1"},"_MultiControllerSink":{"EventSink":["1"]},"NoOpClient":{"Client0":[]},"SentryNavigatorObserver":{"RouteObserver":["PageRoute<@>"],"NavigatorObserver":[],"RouteObserver.R":"PageRoute<@>"},"AppleLogoPainter":{"Listenable":[]},"SignInWithAppleButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UnknownSignInWithAppleException":{"Exception":[]},"SignInWithAppleNotSupportedException":{"Exception":[]},"SignInWithAppleAuthorizationException":{"Exception":[]},"SignInWithAppleCredentialsException":{"Exception":[]},"FileLocation":{"SourceLocation":[],"Comparable":["SourceLocation"]},"_FileSpan":{"SourceSpanWithContext":[],"Comparable":["SourceSpan"]},"SourceLocation":{"Comparable":["SourceLocation"]},"SourceLocationMixin":{"SourceLocation":[],"Comparable":["SourceLocation"]},"SourceSpan":{"Comparable":["SourceSpan"]},"SourceSpanBase":{"Comparable":["SourceSpan"]},"SourceSpanException":{"Exception":[]},"SourceSpanFormatException":{"FormatException":[],"Exception":[]},"SourceSpanMixin":{"Comparable":["SourceSpan"]},"SourceSpanWithContext":{"Comparable":["SourceSpan"]},"MyStatefulWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InheritedInjected":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Injected":{"ReactiveModel":["1"]},"InjectedImp":{"ReactiveModelImp":["1"],"ReactiveModel":["1"]},"ReactiveModelImp":{"ReactiveModel":["1"]},"OnBuilder":{"MyStatefulWidget":["1"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MyStatefulWidgetState":{"ExtendedState":["MyStatefulWidget<1>"],"State":["MyStatefulWidget<1>"]},"IStatefulWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"MyElement":{"StatefulElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"ExtendedState":{"State":["1"]},"StringScannerException":{"FormatException":[],"Exception":[]},"DocumentNode":{"Listenable":[]},"NodeInsertedEvent":{"DocumentChange":[]},"NodeRemovedEvent":{"DocumentChange":[]},"NodeChangeEvent":{"DocumentChange":[]},"MutableDocumentComposer":{"Listenable":[],"Editable":[]},"ChangeSelectionCommand":{"EditCommand":[]},"ChangeComposingRegionCommand":{"EditCommand":[]},"ChangeInteractionModeCommand":{"EditCommand":[]},"DocumentComposer":{"Listenable":[]},"ComposerPreferences":{"Listenable":[]},"ClearSelectionRequest":{"EditRequest":[]},"ChangeSelectionRequest":{"EditRequest":[]},"SelectionChangeEvent":{"EditEvent":[]},"ComposingRegionChangeEvent":{"EditEvent":[]},"ChangeComposingRegionRequest":{"EditRequest":[]},"ChangeInteractionModeRequest":{"EditRequest":[]},"DocumentLayoutEditable":{"Editable":[]},"DocumentEdit":{"EditEvent":[]},"MutableDocument":{"Document2":[],"Editable":[]},"LinkAttribution":{"Attribution":[]},"BlockquoteComponentBuilder":{"ComponentBuilder":[]},"BlockquoteComponentViewModel":{"TextComponentViewModel":[],"SingleColumnLayoutComponentViewModel":[]},"BlockquoteComponent":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoxComponent":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DeleteUpstreamAtBeginningOfBlockNodeCommand":{"EditCommand":[]},"BlockNode":{"DocumentNode":[],"Listenable":[]},"_BoxComponentState":{"DocumentComponent":["BoxComponent"],"State":["BoxComponent"]},"SelectableBox":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PasteEditorCommand":{"EditCommand":[]},"DeleteUpstreamCharacterCommand":{"EditCommand":[]},"DeleteDownstreamCharacterCommand":{"EditCommand":[]},"PasteEditorRequest":{"EditRequest":[]},"DeleteUpstreamCharacterRequest":{"EditRequest":[]},"UpdateComposerTextStylesReaction":{"EditReaction":[]},"SuperEditorDebugVisuals":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorFocusDebugVisuals":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorImeDebugVisuals":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"HeaderConversionReaction":{"EditReaction":[]},"UnorderedListItemConversionReaction":{"EditReaction":[]},"OrderedListItemConversionReaction":{"EditReaction":[]},"BlockquoteConversionReaction":{"EditReaction":[]},"HorizontalRuleConversionReaction":{"EditReaction":[]},"ParagraphPrefixConversionReaction":{"EditReaction":[]},"ImageUrlConversionReaction":{"EditReaction":[]},"LinkifyReaction":{"EditReaction":[]},"CaretDocumentOverlay":{"StatefulWidget":[],"ContentLayerWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CaretDocumentOverlayState":{"State":["CaretDocumentOverlay"]},"EditorSelectionAndFocusPolicy":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EditorSelectionAndFocusPolicyState":{"State":["EditorSelectionAndFocusPolicy"]},"DocumentMouseInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DocumentMouseInteractorState":{"State":["DocumentMouseInteractor"]},"SuperEditorAndroidControlsScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidDocumentTouchInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorAndroidControlsOverlayManager":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorAndroidToolbarFocalPointDocumentLayerBuilder":{"SuperEditorLayerBuilder":[]},"SuperEditorAndroidHandlesDocumentLayerBuilder":{"SuperEditorLayerBuilder":[]},"_AndroidDocumentTouchInteractorState":{"State":["AndroidDocumentTouchInteractor"],"WidgetsBindingObserver":[]},"SuperEditorAndroidControlsOverlayManagerState":{"State":["SuperEditorAndroidControlsOverlayManager"]},"IosDocumentTouchInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorIosToolbarOverlayManager":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorIosMagnifierOverlayManager":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EditorFloatingCursor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorIosControlsScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_IosDocumentTouchInteractorState":{"State":["IosDocumentTouchInteractor"],"WidgetsBindingObserver":[]},"SuperEditorIosToolbarOverlayManagerState":{"State":["SuperEditorIosToolbarOverlayManager"]},"SuperEditorIosMagnifierOverlayManagerState":{"State":["SuperEditorIosMagnifierOverlayManager"]},"_EditorFloatingCursorState":{"State":["EditorFloatingCursor"]},"SuperEditorHardwareKeyHandler":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SuperEditorHardwareKeyHandlerState":{"State":["SuperEditorHardwareKeyHandler"]},"DocumentImeInputClient":{"DeltaTextInputClient":[]},"ImeFocusPolicy":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentSelectionOpenAndCloseImePolicy":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ImeFocusPolicyState":{"State":["ImeFocusPolicy"]},"_DocumentSelectionOpenAndCloseImePolicyState":{"State":["DocumentSelectionOpenAndCloseImePolicy"]},"DeltaTextInputClientDecorator":{"DeltaTextInputClient":[]},"SoftwareKeyboardOpener":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SoftwareKeyboardOpenerState":{"State":["SoftwareKeyboardOpener"]},"KeyboardEditingToolbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"KeyboardHeightBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_KeyboardEditingToolbarState":{"State":["KeyboardEditingToolbar"],"WidgetsBindingObserver":[]},"_KeyboardHeightBuilderState":{"State":["KeyboardHeightBuilder"],"WidgetsBindingObserver":[]},"SuperEditorImeInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorImeInteractorState":{"State":["SuperEditorImeInteractor"]},"DocumentScrollable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DocumentScrollableState":{"State":["DocumentScrollable"]},"AutoScrollController":{"Listenable":[]},"HorizontalRuleNode":{"DocumentNode":[],"Listenable":[]},"HorizontalRuleComponentBuilder":{"ComponentBuilder":[]},"HorizontalRuleComponentViewModel":{"SingleColumnLayoutComponentViewModel":[]},"HorizontalRuleComponent":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ImageNode":{"DocumentNode":[],"Listenable":[]},"ImageComponentBuilder":{"ComponentBuilder":[]},"ImageComponentViewModel":{"SingleColumnLayoutComponentViewModel":[]},"ImageComponent":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SingleColumnDocumentLayout":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PresenterComponentBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_Component":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SingleColumnDocumentLayoutState":{"State":["SingleColumnDocumentLayout"],"DocumentLayout":[]},"_PresenterComponentBuilderState":{"State":["_PresenterComponentBuilder"]},"SingleColumnLayoutComposingRegionStyler":{"SingleColumnLayoutStylePhase":[]},"SingleColumnLayoutCustomComponentStyler":{"SingleColumnLayoutStylePhase":[]},"SingleColumnStylesheetStyler":{"SingleColumnLayoutStylePhase":[]},"SingleColumnLayoutSelectionStyler":{"SingleColumnLayoutStylePhase":[]},"UnorderedListItemComponent":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"OrderedListItemComponent":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IndentListItemCommand":{"EditCommand":[]},"UnIndentListItemCommand":{"EditCommand":[]},"ConvertListItemToParagraphCommand":{"EditCommand":[]},"ConvertParagraphToListItemCommand":{"EditCommand":[]},"ChangeListItemTypeCommand":{"EditCommand":[]},"SplitListItemCommand":{"EditCommand":[]},"ListItemNode":{"TextNode":[],"DocumentNode":[],"Listenable":[]},"ListItemComponentBuilder":{"ComponentBuilder":[]},"ListItemComponentViewModel":{"TextComponentViewModel":[],"SingleColumnLayoutComponentViewModel":[]},"IndentListItemRequest":{"EditRequest":[]},"UnIndentListItemRequest":{"EditRequest":[]},"SplitListItemRequest":{"EditRequest":[]},"SplitListItemIntention":{"EditEvent":[]},"InsertNodeAtIndexCommand":{"EditCommand":[]},"InsertNodeBeforeNodeCommand":{"EditCommand":[]},"InsertNodeAfterNodeCommand":{"EditCommand":[]},"InsertNodeAtCaretCommand":{"EditCommand":[]},"MoveNodeCommand":{"EditCommand":[]},"ReplaceNodeCommand":{"EditCommand":[]},"ReplaceNodeWithEmptyParagraphWithCaretCommand":{"EditCommand":[]},"DeleteContentCommand":{"EditCommand":[]},"DeleteNodeCommand":{"EditCommand":[]},"InsertNodeAtIndexRequest":{"EditRequest":[]},"InsertNodeBeforeNodeRequest":{"EditRequest":[]},"InsertNodeAfterNodeRequest":{"EditRequest":[]},"ReplaceNodeRequest":{"EditRequest":[]},"ReplaceNodeWithEmptyParagraphWithCaretRequest":{"EditRequest":[]},"DeleteContentRequest":{"EditRequest":[]},"DeleteUpstreamAtBeginningOfNodeRequest":{"EditRequest":[]},"DeleteNodeRequest":{"EditRequest":[]},"ParagraphNode":{"TextNode":[],"DocumentNode":[],"Listenable":[]},"ChangeParagraphBlockTypeCommand":{"EditCommand":[]},"CombineParagraphsCommand":{"EditCommand":[]},"SplitParagraphCommand":{"EditCommand":[]},"DeleteUpstreamAtBeginningOfParagraphCommand":{"EditCommand":[]},"ParagraphComponentBuilder":{"ComponentBuilder":[]},"ParagraphComponentViewModel":{"TextComponentViewModel":[],"SingleColumnLayoutComponentViewModel":[]},"ChangeParagraphBlockTypeRequest":{"EditRequest":[]},"CombineParagraphsRequest":{"EditRequest":[]},"SplitParagraphRequest":{"EditRequest":[]},"Intention":{"EditEvent":[]},"SplitParagraphIntention":{"EditEvent":[]},"SubmitParagraphIntention":{"EditEvent":[]},"SuperEditor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorLaunchLinkTapHandler":{"Listenable":[]},"SuperEditorState":{"State":["SuperEditor"]},"DefaultAndroidEditorToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectionLeadersDocumentLayerBuilder":{"SuperEditorLayerBuilder":[]},"DefaultCaretOverlayBuilder":{"SuperEditorLayerBuilder":[]},"TaskComponent":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ChangeTaskCompletionCommand":{"EditCommand":[]},"ConvertParagraphToTaskCommand":{"EditCommand":[]},"ConvertTaskToParagraphCommand":{"EditCommand":[]},"SplitExistingTaskCommand":{"EditCommand":[]},"TaskNode":{"TextNode":[],"DocumentNode":[],"Listenable":[]},"TaskComponentBuilder":{"ComponentBuilder":[]},"TaskComponentViewModel":{"TextComponentViewModel":[],"SingleColumnLayoutComponentViewModel":[]},"_TaskComponentState":{"ProxyDocumentComponent":["TaskComponent"],"DocumentComponent":["TaskComponent"],"State":["TaskComponent"],"ProxyTextComposable":[],"TextComposable":[]},"ChangeTaskCompletionRequest":{"EditRequest":[]},"SplitExistingTaskRequest":{"EditRequest":[]},"SplitTaskIntention":{"EditEvent":[]},"TextNode":{"DocumentNode":[],"Listenable":[]},"TextComponent":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AddTextAttributionsCommand":{"EditCommand":[]},"RemoveTextAttributionsCommand":{"EditCommand":[]},"ToggleTextAttributionsCommand":{"EditCommand":[]},"InsertTextCommand":{"EditCommand":[]},"ConvertTextNodeToParagraphCommand":{"EditCommand":[]},"InsertCharacterAtCaretCommand":{"EditCommand":[]},"TextNodeSelection":{"TextSelection":[],"TextRange":[]},"TextNodePosition":{"TextPosition":[]},"TextComponentState":{"DocumentComponent":["TextComponent"],"State":["TextComponent"],"TextComposable":[]},"ToggleTextAttributionsRequest":{"EditRequest":[]},"InsertTextRequest":{"EditRequest":[]},"TextInsertionEvent":{"NodeChangeEvent":[],"DocumentChange":[]},"TextDeletedEvent":{"NodeChangeEvent":[],"DocumentChange":[]},"ConvertTextNodeToParagraphRequest":{"EditRequest":[]},"InsertAttributedTextCommand":{"EditCommand":[]},"InsertCharacterAtCaretRequest":{"EditRequest":[]},"UnknownComponentBuilder":{"ComponentBuilder":[]},"ContentLayerWidget":{"Widget":[],"DiagnosticableTree":[]},"ContentLayers":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContentLayersElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"RenderContentLayers":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_NullElement1":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_NullWidget5":{"Widget":[],"DiagnosticableTree":[]},"ContentLayerProxyWidget":{"StatelessWidget":[],"ContentLayerWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContentLayerStatelessWidget":{"StatelessWidget":[],"ContentLayerWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContentLayerStatefulWidget":{"StatefulWidget":[],"ContentLayerWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContentLayerStatefulElement":{"StatefulElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"ContentLayerState":{"State":["1"]},"ContentTapDelegate":{"Listenable":[]},"DocumentLayoutLayerStatefulWidget":{"StatefulWidget":[],"ContentLayerWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentLayoutLayerState":{"State":["1"]},"DocumentScaffold":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DocumentScaffoldState":{"State":["DocumentScaffold<@>"]},"SelectionLeadersDocumentLayer":{"StatefulWidget":[],"ContentLayerWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectionLeadersDocumentLayerState":{"State":["SelectionLeadersDocumentLayer"]},"CupertinoScrollbarWithCustomPhysics":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoScrollbarState0":{"RawScrollbarWithCustomPhysicsState":["CupertinoScrollbarWithCustomPhysics"],"State":["CupertinoScrollbarWithCustomPhysics"]},"_MaterialScrollbar0":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollbarWithCustomPhysics":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialScrollbarState0":{"RawScrollbarWithCustomPhysicsState":["_MaterialScrollbar0"],"State":["_MaterialScrollbar0"]},"OverlayGroupPriority":{"Comparable":["OverlayGroupPriority"]},"RawScrollbarWithCustomPhysics":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ThumbPressGestureRecognizer0":{"LongPressGestureRecognizer":[],"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_TrackTapGestureRecognizer0":{"TapGestureRecognizer":[],"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"RawScrollbarWithCustomPhysicsState":{"State":["1"]},"ScrollbarPainter0":{"Listenable":[]},"NonReparentingFocus":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FocusWithCustomParent":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_NonReparentingFocusState":{"State":["NonReparentingFocus"]},"_FocusWithCustomParentState":{"State":["FocusWithCustomParent"]},"_FocusMarker":{"InheritedNotifier":["FocusNode"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"FocusNode"},"MultiListenableBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MultiListenableBuilderState":{"State":["MultiListenableBuilder"]},"TapSequenceGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"PausableValueNotifier":{"ValueNotifier":["1"],"Listenable":[]},"AndroidToolbarFocalPointDocumentLayer":{"StatefulWidget":[],"ContentLayerWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidHandlesDocumentLayer":{"StatefulWidget":[],"ContentLayerWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AndroidToolbarFocalPointDocumentLayerState":{"State":["AndroidToolbarFocalPointDocumentLayer"]},"AndroidControlsDocumentLayerState":{"State":["AndroidHandlesDocumentLayer"]},"AndroidFollowingMagnifier":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidMagnifyingGlass":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidSelectionHandle":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidTextEditingFloatingToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IosFloatingToolbarOverlay":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_IosFloatingToolbarOverlayState":{"State":["IosFloatingToolbarOverlay"]},"IOSFollowingMagnifier":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IOSRoundedRectangleMagnifyingGlass":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IOSSelectionHandle":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IOSTextEditingFloatingToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PreventPrioritizedIntentsFromBubblingUp":{"Action":["PrioritizedIntents"],"Action.T":"PrioritizedIntents"},"MagnifierAndToolbarController":{"Listenable":[]},"SuperEditorPopover":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SignalNotifier":{"Listenable":[]},"ViewportBoundsReporter":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderViewportBoundsReporter":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"ViewportBoundsReplicator":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderViewportBoundsReplicator":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"AndroidEditingOverlayControls":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidEditingOverlayController":{"Listenable":[]},"_AndroidEditingOverlayControlsState":{"State":["AndroidEditingOverlayControls"],"WidgetsBindingObserver":[]},"AndroidTextFieldTouchInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidTextFieldTouchInteractorState":{"State":["AndroidTextFieldTouchInteractor"]},"SuperAndroidTextField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperAndroidTextFieldState":{"State":["SuperAndroidTextField"],"WidgetsBindingObserver":[]},"SuperDesktopTextField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperTextFieldGestureInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperTextFieldKeyboardInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperTextFieldImeInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperTextFieldScrollview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperTextFieldScrollviewState":{"State":["SuperTextFieldScrollview"]},"SuperDesktopTextFieldState":{"State":["SuperDesktopTextField"]},"_SuperTextFieldGestureInteractorState":{"State":["SuperTextFieldGestureInteractor"]},"_SuperTextFieldKeyboardInteractorState":{"State":["SuperTextFieldKeyboardInteractor"]},"_SuperTextFieldImeInteractorState":{"State":["SuperTextFieldImeInteractor"]},"AttributedTextEditingController":{"Listenable":[]},"FillWidthIfConstrained":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderFillWidthIfConstrained":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"MagnifyingGlass":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"OuterBoxShadow":{"BoxShadow":[],"Shadow":[]},"TextScrollView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextScrollViewState":{"State":["TextScrollView"]},"TextScrollController":{"Listenable":[]},"_TextLinesLimiter":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderTextViewport":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"ImeAttributedTextEditingController":{"DeltaTextInputClient":[],"Listenable":[]},"IOSEditingControls":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"IOSEditingOverlayController":{"Listenable":[]},"_IOSEditingControlsState":{"State":["IOSEditingControls"],"WidgetsBindingObserver":[]},"IOSFloatingCursor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"FloatingCursorController":{"Listenable":[]},"IOSTextFieldTouchInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"IOSTextFieldTouchInteractorState":{"State":["IOSTextFieldTouchInteractor"]},"SuperIOSTextField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperIOSTextFieldState":{"State":["SuperIOSTextField"],"WidgetsBindingObserver":[]},"SuperTextField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperTextFieldState":{"State":["SuperTextField"]},"TextLayoutCaret":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextLayoutCaretState":{"State":["TextLayoutCaret"]},"CaretPainter":{"Listenable":[]},"BlinkController":{"Listenable":[]},"SuperText":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SuperTextLayoutParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"SuperTextState":{"ProseTextState":["SuperText"],"State":["SuperText"]},"_SuperTextLayout":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderSuperTextLayout":{"RenderBoxContainerDefaultsMixin":["RenderBox","_SuperTextLayoutParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","_SuperTextLayoutParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"_SuperTextLayoutParentData","RenderBoxContainerDefaultsMixin.1":"_SuperTextLayoutParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"LayoutAwareRichText":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderLayoutAwareParagraph":{"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","TextParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"TextParentData","ContainerRenderObjectMixin.0":"RenderBox"},"ProseTextState":{"State":["1"]},"ProseTextLayout":{"TextLayout":[]},"RenderParagraphProseTextLayout":{"ProseTextLayout":[],"TextLayout":[]},"TextLayoutSelectionHighlight":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextLayoutEmptyHighlight":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EmptyHighlightPainter":{"Listenable":[]},"TextSelectionPainter":{"Listenable":[]},"TextUnderlineLayer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextUnderlineLayerState":{"State":["TextUnderlineLayer"]},"_UnderlinePainter":{"Listenable":[]},"ArMessages":{"LookupMessages":[]},"CaMessages":{"LookupMessages":[]},"CsMessages":{"LookupMessages":[]},"DaMessages":{"LookupMessages":[]},"DeMessages":{"LookupMessages":[]},"EnMessages":{"LookupMessages":[]},"EnShortMessages":{"LookupMessages":[]},"EsMessages":{"LookupMessages":[]},"EsShortMessages":{"LookupMessages":[]},"FaMessages":{"LookupMessages":[]},"FrMessages":{"LookupMessages":[]},"FrShortMessages":{"LookupMessages":[]},"HuMessages":{"LookupMessages":[]},"HuShortMessages":{"LookupMessages":[]},"ItMessages":{"LookupMessages":[]},"ItShortMessages":{"LookupMessages":[]},"JaMessages":{"LookupMessages":[]},"NbNoShortMessages":{"LookupMessages":[]},"NbNoMessages":{"LookupMessages":[]},"NlMessages":{"LookupMessages":[]},"NlShortMessages":{"LookupMessages":[]},"PlMessages":{"LookupMessages":[]},"PtBrMessages":{"LookupMessages":[]},"PtBrShortMessages":{"LookupMessages":[]},"RoMessages":{"LookupMessages":[]},"RoShortMessages":{"LookupMessages":[]},"RuMessages":{"LookupMessages":[]},"RuShortMessages":{"LookupMessages":[]},"SvMessages":{"LookupMessages":[]},"SvShortMessages":{"LookupMessages":[]},"ThMessages":{"LookupMessages":[]},"ThShortMessages":{"LookupMessages":[]},"ZhMessages":{"LookupMessages":[]},"BoxValueConstraints":{"BoxConstraints":[],"Constraints":[]},"ValueLayoutBuilder":{"ConstrainedLayoutBuilder":["BoxValueConstraints<1>"],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[],"ConstrainedLayoutBuilder.0":"BoxValueConstraints<1>"},"_RenderValueLayoutBuilder":{"RenderConstrainedLayoutBuilder":["BoxValueConstraints<1>","RenderBox"],"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"RenderConstrainedLayoutBuilder.0":"BoxValueConstraints<1>"},"Version":{"Comparable":["Version"]},"VsScrollbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialScrollbar1":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScrollbarState":{"State":["VsScrollbar"]},"_MaterialScrollbarState1":{"RawScrollbarState":["_MaterialScrollbar1"],"State":["_MaterialScrollbar1"]},"_EventStream0":{"Stream":["1"],"Stream.T":"1"},"CupertinoUserInterfaceLevel":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialBanner":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TooltipVisibilityScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Pixel":{"Color1":[],"Iterable":["num"]},"LinkViewController":{"PlatformViewController":[]}}')); - A._Universe_addErasedTypes(init.typeUniverse, JSON.parse('{"FixedLengthListMixin":1,"UnmodifiableListMixin":1,"UnmodifiableListBase":1,"__CastListBase__CastIterableBase_ListMixin":2,"ConstantSet":1,"NativeTypedArray":1,"EventSink":1,"MultiStreamController":1,"StreamView":1,"StreamTransformerBase":2,"_SyncStreamControllerDispatch":1,"_DelayedEvent":1,"UnmodifiableMapBase":2,"_UnmodifiableSetMixin":1,"_SplayTreeNode":2,"_SplayTree":2,"_SplayTreeMap__SplayTree_MapMixin":2,"_SplayTreeSet__SplayTree_Iterable":1,"_SplayTreeSet__SplayTree_Iterable_SetMixin":1,"_UnmodifiableMapView_MapView__UnmodifiableMapMixin":2,"_UnmodifiableSetView_SetBase__UnmodifiableSetMixin":1,"ChunkedConversionSink":1,"Codec0":2,"_StringSinkConversionSink":1,"Comparable":1,"Iterator":1,"_JsArray_JsObject_ListMixin":1,"Serializer":1,"BaseBarRendererConfig":1,"BaseRenderSpec":1,"Scale":1,"Extents":1,"TypedKey":1,"_BaseChartState_State_TickerProviderStateMixin":1,"CartesianChart0":1,"AnimationWithParentMixin":1,"CompoundAnimation":1,"_CompoundAnimation_Animation_AnimationLazyListenerMixin":1,"_CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin":1,"_CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin":1,"ParametricCurve":1,"__AnimatedEvaluation_Animation_AnimationWithParentMixin":1,"__CupertinoRadioState_State_TickerProviderStateMixin":1,"__CupertinoRadioState_State_TickerProviderStateMixin_ToggleableStateMixin":1,"ToggleableStateMixin":1,"__DropdownButtonState_State_WidgetsBindingObserver":1,"MaterialStateMixin":1,"_MaterialPageRoute_PageRoute_MaterialRouteTransitionMixin":1,"_ZoomTransitionBase":1,"__RadioState_State_TickerProviderStateMixin":1,"__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin":1,"ToggleableStateMixin0":1,"_ContainerBoxParentData_BoxParentData_ContainerParentDataMixin":1,"ContainerParentDataMixin":1,"RenderProxyBoxMixin":1,"RenderAnimatedOpacityMixin":1,"_RenderCustomClip":1,"_RenderPhysicalModelBase":1,"RenderViewportBase":1,"AutomaticKeepAliveClientMixin":1,"_FormFieldState_State_RestorationMixin":1,"ImplicitlyAnimatedWidgetState":1,"AnimatedWidgetBaseState":1,"_ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin":1,"Page":1,"TransitionDelegate":1,"PageStorageKey":1,"PageRoute":1,"RestorableProperty":1,"RestorationMixin":1,"RestorableValue":1,"_RestorablePrimitiveValue":1,"RestorableListenable":1,"RestorableChangeNotifier":1,"__RouterState_State_RestorationMixin":1,"OverlayRoute":1,"LocalHistoryRoute":1,"PopupRoute":1,"RawDialogRoute":1,"_ModalRoute_TransitionRoute_LocalHistoryRoute":1,"_RawScrollbarState_State_TickerProviderStateMixin":1,"SlottedMultiChildRenderObjectWidget":2,"_SlottedMultiChildRenderObjectWidget_RenderObjectWidget_SlottedMultiChildRenderObjectWidgetMixin":2,"SingleTickerProviderStateMixin":1,"TickerProviderStateMixin":1,"_UndoHistoryState_State_UndoManagerClient":1,"ForwardingSink":2,"IObservable":1,"_ReactiveModel_Object_IObservable":1,"ContentLayerStatefulWidget":1,"ContentLayerState":2,"DocumentLayoutLayerState":2,"_RawScrollbarWithCustomPhysicsState_State_TickerProviderStateMixin":1,"_ProseTextState_State_ProseTextBlock":1,"__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder":1,"Factory":1,"ExceptionCauseExtractor":1,"ExceptionStackTraceExtractor":1}')); + A._Universe_addRules(init.typeUniverse, JSON.parse('{"PlainJavaScriptObject":"LegacyJavaScriptObject","UnknownJavaScriptObject":"LegacyJavaScriptObject","JavaScriptFunction":"LegacyJavaScriptObject","LoadConfig":"LegacyJavaScriptObject","GoogleAuthInitFailureError":"LegacyJavaScriptObject","GoogleAuth":"LegacyJavaScriptObject","GoogleUser":"LegacyJavaScriptObject","GoogleAuthSignInError":"LegacyJavaScriptObject","OfflineAccessResponse":"LegacyJavaScriptObject","_GoogleAuth":"LegacyJavaScriptObject","IsSignedIn":"LegacyJavaScriptObject","CurrentUser":"LegacyJavaScriptObject","SigninOptions":"LegacyJavaScriptObject","OfflineAccessOptions":"LegacyJavaScriptObject","ClientConfig":"LegacyJavaScriptObject","SigninOptionsBuilder":"LegacyJavaScriptObject","BasicProfile":"LegacyJavaScriptObject","AuthResponse":"LegacyJavaScriptObject","AuthorizeConfig":"LegacyJavaScriptObject","AuthorizeResponse":"LegacyJavaScriptObject","_GoogleUser":"LegacyJavaScriptObject","Promise":"LegacyJavaScriptObject","Promise0":"LegacyJavaScriptObject","BindConfiguration":"LegacyJavaScriptObject","Data":"LegacyJavaScriptObject","Boundary":"LegacyJavaScriptObject","ViewPort":"LegacyJavaScriptObject","Options":"LegacyJavaScriptObject","CroppieJS":"LegacyJavaScriptObject","AuthenticationResult0":"LegacyJavaScriptObject","AccountInfo":"LegacyJavaScriptObject","Configuration0":"LegacyJavaScriptObject","BrowserAuthOptions":"LegacyJavaScriptObject","CacheOptions":"LegacyJavaScriptObject","BrowserSystemOptions":"LegacyJavaScriptObject","LoggerOptions":"LegacyJavaScriptObject","AuthError":"LegacyJavaScriptObject","EventMessage":"LegacyJavaScriptObject","Logger1":"LegacyJavaScriptObject","NavigationOptions":"LegacyJavaScriptObject","NetworkRequestOptions":"LegacyJavaScriptObject","NetworkResponse":"LegacyJavaScriptObject","PublicClientApplication0":"LegacyJavaScriptObject","SsoSilentRequest":"LegacyJavaScriptObject","EndSessionRequest":"LegacyJavaScriptObject","EndSessionPopupRequest":"LegacyJavaScriptObject","SilentRequest":"LegacyJavaScriptObject","RedirectRequest":"LegacyJavaScriptObject","PopupRequest0":"LegacyJavaScriptObject","CommonSilentFlowRequest":"LegacyJavaScriptObject","CommonAuthorizationUrlRequest0":"LegacyJavaScriptObject","CommonEndSessionRequest":"LegacyJavaScriptObject","JsError":"LegacyJavaScriptObject","Promise1":"LegacyJavaScriptObject","Array":"LegacyJavaScriptObject","Object0":"LegacyJavaScriptObject","Reflect":"LegacyJavaScriptObject","NodeCrypto":"LegacyJavaScriptObject","PdfJsDoc":"LegacyJavaScriptObject","PdfJsPage":"LegacyJavaScriptObject","PdfJs":"LegacyJavaScriptObject","Settings":"LegacyJavaScriptObject","PdfJsDocLoader":"LegacyJavaScriptObject","PdfJsViewport":"LegacyJavaScriptObject","PdfJsRender":"LegacyJavaScriptObject","SignInResponseI":"LegacyJavaScriptObject","SignInWithAppleInitOptions":"LegacyJavaScriptObject","AuthorizationI":"LegacyJavaScriptObject","UserI":"LegacyJavaScriptObject","NameI":"LegacyJavaScriptObject","KeyframeEffect":"JavaScriptObject","KeyframeEffectReadOnly":"JavaScriptObject","AnimationEffectReadOnly":"JavaScriptObject","AnimationEvent":"Event","AudioContext":"BaseAudioContext","AbsoluteOrientationSensor":"EventTarget","OrientationSensor":"EventTarget","Sensor":"EventTarget","AElement":"SvgElement","GraphicsElement":"SvgElement","OpenDBRequest":"Request0","_WorkerNavigator":"NavigatorConcurrentHardware","_ResourceProgressEvent":"ProgressEvent","AudioElement":"HtmlElement","MediaElement":"HtmlElement","ShadowRoot":"Node1","DocumentFragment":"Node1","XmlDocument":"Document1","WindowClient":"Client","PointerEvent0":"MouseEvent","VttCue":"TextTrackCue","CompositionEvent":"UIEvent","AbortPaymentEvent":"ExtendableEvent","DedicatedWorkerGlobalScope":"WorkerGlobalScope","FederatedCredential":"Credential","CDataSection":"CharacterData","Text2":"CharacterData","MidiInput":"MidiPort","MathMLElement":"Element2","HttpRequestUpload":"HttpRequestEventTarget","HtmlFormControlsCollection":"HtmlCollection","CssCharsetRule":"CssRule","CssMatrixComponent":"CssTransformComponent","CssStyleSheet":"StyleSheet","CssurlImageValue":"CssStyleValue","CssImageValue":"CssStyleValue","CssResourceValue":"CssStyleValue","CanvasCaptureMediaStreamTrack":"MediaStreamTrack","BackgroundFetchClickEvent":"BackgroundFetchEvent","CkImage":{"Image1":[]},"CkBrowserImageDecoder":{"Codec":[]},"FontLoadError":{"Error":[]},"PersistedContainerSurface":{"PersistedSurface":[]},"EngineLineMetrics":{"LineMetrics":[]},"CkColorFilter":{"CkManagedSkImageFilterConvertible":[]},"CkBlendModeColorFilter":{"CkManagedSkImageFilterConvertible":[]},"CkMatrixColorFilter":{"CkManagedSkImageFilterConvertible":[]},"CkLinearToSrgbGammaColorFilter":{"CkManagedSkImageFilterConvertible":[]},"CkSrgbToLinearGammaColorFilter":{"CkManagedSkImageFilterConvertible":[]},"CkComposeColorFilter":{"CkManagedSkImageFilterConvertible":[]},"MutatorsStack":{"Iterable":["Mutator"],"Iterable.E":"Mutator"},"ImageCodecException":{"Exception":[]},"CkImageFilter":{"CkManagedSkImageFilterConvertible":[]},"_CkBlurImageFilter":{"CkManagedSkImageFilterConvertible":[]},"_CkMatrixImageFilter":{"CkManagedSkImageFilterConvertible":[]},"CkAnimatedImage":{"Codec":[]},"ContainerLayer":{"Layer":[]},"RootLayer":{"Layer":[]},"BackdropFilterEngineLayer":{"Layer":[],"BackdropFilterEngineLayer0":[]},"ClipPathEngineLayer":{"Layer":[],"ClipPathEngineLayer0":[]},"ClipRectEngineLayer":{"Layer":[],"ClipRectEngineLayer0":[]},"ClipRRectEngineLayer":{"Layer":[],"ClipRRectEngineLayer0":[]},"OpacityEngineLayer":{"Layer":[],"OpacityEngineLayer0":[]},"TransformEngineLayer":{"Layer":[],"TransformEngineLayer0":[]},"OffsetEngineLayer":{"Layer":[],"TransformEngineLayer0":[],"OffsetEngineLayer0":[]},"ImageFilterEngineLayer":{"Layer":[],"ImageFilterEngineLayer0":[]},"PictureLayer":{"Layer":[]},"PlatformViewLayer0":{"Layer":[]},"CkPaint":{"Paint":[]},"CkPath":{"Path":[]},"SimpleCkShader":{"CkShader":[]},"CkGradientLinear":{"CkShader":[]},"CkLineMetrics":{"LineMetrics":[]},"CanvasKitError":{"Error":[]},"HttpFetchResponseImpl":{"HttpFetchResponse":[]},"HttpFetchNoPayloadError":{"Exception":[]},"HttpFetchError":{"Exception":[]},"_DomListWrapper":{"Iterable":["1"],"Iterable.E":"1"},"_DomTouchListWrapper":{"Iterable":["1"],"Iterable.E":"1"},"FontNotFoundError":{"FontLoadError":[],"Error":[]},"FontDownloadError":{"FontLoadError":[],"Error":[]},"FontInvalidDataError":{"FontLoadError":[],"Error":[]},"PersistedBackdropFilter":{"PersistedContainerSurface":[],"PersistedSurface":[],"BackdropFilterEngineLayer0":[]},"PersistedClipRect":{"PersistedContainerSurface":[],"PersistedSurface":[],"ClipRectEngineLayer0":[]},"PersistedClipRRect":{"PersistedContainerSurface":[],"PersistedSurface":[],"ClipRRectEngineLayer0":[]},"PersistedClipPath":{"PersistedContainerSurface":[],"PersistedSurface":[],"ClipPathEngineLayer0":[]},"PersistedImageFilter":{"PersistedContainerSurface":[],"PersistedSurface":[],"ImageFilterEngineLayer0":[]},"PersistedOffset":{"PersistedContainerSurface":[],"PersistedSurface":[],"OffsetEngineLayer0":[]},"PersistedOpacity":{"PersistedContainerSurface":[],"PersistedSurface":[],"OpacityEngineLayer0":[]},"SurfacePaint":{"Paint":[]},"SurfacePath":{"Path":[]},"PersistedPicture":{"PersistedSurface":[]},"PersistedPlatformView":{"PersistedSurface":[]},"DrawCommand":{"PaintCommand":[]},"PaintSave":{"PaintCommand":[]},"PaintRestore":{"PaintCommand":[]},"PaintTranslate":{"PaintCommand":[]},"PaintScale":{"PaintCommand":[]},"PaintRotate":{"PaintCommand":[]},"PaintTransform":{"PaintCommand":[]},"PaintClipRect":{"PaintCommand":[]},"PaintClipRRect":{"PaintCommand":[]},"PaintClipPath":{"PaintCommand":[]},"PaintDrawLine":{"PaintCommand":[]},"PaintDrawPaint":{"PaintCommand":[]},"PaintDrawRect":{"PaintCommand":[]},"PaintDrawRRect":{"PaintCommand":[]},"PaintDrawDRRect":{"PaintCommand":[]},"PaintDrawOval":{"PaintCommand":[]},"PaintDrawCircle":{"PaintCommand":[]},"PaintDrawPath":{"PaintCommand":[]},"PaintDrawShadow":{"PaintCommand":[]},"PaintDrawImageRect":{"PaintCommand":[]},"PaintDrawParagraph":{"PaintCommand":[]},"PersistedScene":{"PersistedContainerSurface":[],"PersistedSurface":[]},"_BlurEngineImageFilter":{"EngineImageFilter":[]},"_MatrixEngineImageFilter":{"EngineImageFilter":[]},"EngineHtmlColorFilter":{"EngineImageFilter":[]},"ModeHtmlColorFilter":{"EngineImageFilter":[]},"PersistedLeafSurface":{"PersistedSurface":[]},"PersistedTransform":{"PersistedContainerSurface":[],"PersistedSurface":[],"TransformEngineLayer0":[]},"HtmlCodec":{"Codec":[]},"HtmlBlobCodec":{"Codec":[]},"SingleFrameInfo":{"FrameInfo":[]},"HtmlImage":{"Image1":[]},"BrowserImageDecoder":{"Codec":[]},"AnimatedImageFrameInfo":{"FrameInfo":[]},"RouteName":{"RoleManager":[]},"Focusable":{"RoleManager":[]},"LabelAndValue":{"RoleManager":[]},"LiveRegion":{"RoleManager":[]},"SemanticsUpdate":{"SemanticsUpdate0":[]},"Tappable":{"RoleManager":[]},"_TypedDataBuffer":{"ListBase":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_IntBuffer":{"_TypedDataBuffer":["int"],"ListBase":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"]},"Uint8Buffer":{"_TypedDataBuffer":["int"],"ListBase":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListBase.E":"int","Iterable.E":"int","_TypedDataBuffer.E":"int"},"PlaceholderSpan":{"ParagraphSpan":[]},"ChildStyleNode":{"StyleNode":[]},"RootStyleNode":{"StyleNode":[]},"EllipsisFragment":{"LayoutFragment":[]},"EngineFlutterWindow":{"FlutterView":[]},"JavaScriptObject":{"JSObject":[]},"JSBool":{"bool":[],"TrustedGetRuntimeType":[]},"JSNull":{"Null":[],"TrustedGetRuntimeType":[]},"LegacyJavaScriptObject":{"JavaScriptObject":[],"JSObject":[],"GoogleAuthInitFailureError":[],"GoogleAuthSignInError":[],"GoogleAuth":[],"GoogleUser":[],"AuthenticationResult0":[],"JsError":[],"PdfJsDoc":[],"PdfJsPage":[],"SignInResponseI":[]},"JSArray":{"List":["1"],"JavaScriptObject":[],"EfficientLengthIterable":["1"],"JSObject":[],"Iterable":["1"],"JSIndexable":["1"],"Iterable.E":"1"},"JSUnmodifiableArray":{"JSArray":["1"],"List":["1"],"JavaScriptObject":[],"EfficientLengthIterable":["1"],"JSObject":[],"Iterable":["1"],"JSIndexable":["1"],"Iterable.E":"1"},"JSNumber":{"double":[],"num":[],"Comparable":["num"]},"JSInt":{"double":[],"int":[],"num":[],"Comparable":["num"],"TrustedGetRuntimeType":[]},"JSNumNotInt":{"double":[],"num":[],"Comparable":["num"],"TrustedGetRuntimeType":[]},"JSString":{"String":[],"Comparable":["String"],"Pattern":[],"JSIndexable":["@"],"TrustedGetRuntimeType":[]},"_CastIterableBase":{"Iterable":["2"]},"CastIterable":{"_CastIterableBase":["1","2"],"Iterable":["2"],"Iterable.E":"2"},"_EfficientLengthCastIterable":{"CastIterable":["1","2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"_CastListBase":{"ListBase":["2"],"List":["2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"]},"CastList":{"_CastListBase":["1","2"],"ListBase":["2"],"List":["2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"ListBase.E":"2","Iterable.E":"2"},"CastSet":{"Set":["2"],"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"CastMap":{"MapBase":["3","4"],"Map":["3","4"],"MapBase.V":"4","MapBase.K":"3"},"CastQueue":{"_CastIterableBase":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"LateError":{"Error":[]},"CodeUnits":{"ListBase":["int"],"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"ListBase.E":"int","Iterable.E":"int"},"EfficientLengthIterable":{"Iterable":["1"]},"ListIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"SubListIterable":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","ListIterable.E":"1"},"MappedIterable":{"Iterable":["2"],"Iterable.E":"2"},"EfficientLengthMappedIterable":{"MappedIterable":["1","2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"MappedListIterable":{"ListIterable":["2"],"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2","ListIterable.E":"2"},"WhereIterable":{"Iterable":["1"],"Iterable.E":"1"},"ExpandIterable":{"Iterable":["2"],"Iterable.E":"2"},"TakeIterable":{"Iterable":["1"],"Iterable.E":"1"},"EfficientLengthTakeIterable":{"TakeIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"SkipIterable":{"Iterable":["1"],"Iterable.E":"1"},"EfficientLengthSkipIterable":{"SkipIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"SkipWhileIterable":{"Iterable":["1"],"Iterable.E":"1"},"EmptyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"FollowedByIterable":{"Iterable":["1"],"Iterable.E":"1"},"EfficientLengthFollowedByIterable":{"FollowedByIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"WhereTypeIterable":{"Iterable":["1"],"Iterable.E":"1"},"UnmodifiableListBase":{"ListBase":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_ListIndicesIterable":{"ListIterable":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"Iterable.E":"int","ListIterable.E":"int"},"ListMapView":{"MapBase":["int","1"],"_UnmodifiableMapMixin":["int","1"],"Map":["int","1"],"MapBase.V":"1","MapBase.K":"int"},"ReversedListIterable":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","ListIterable.E":"1"},"Symbol":{"Symbol0":[]},"ConstantMapView":{"UnmodifiableMapView":["1","2"],"MapView":["1","2"],"_UnmodifiableMapMixin":["1","2"],"Map":["1","2"]},"ConstantMap":{"Map":["1","2"]},"ConstantStringMap":{"ConstantMap":["1","2"],"Map":["1","2"]},"_KeysOrValues":{"Iterable":["1"],"Iterable.E":"1"},"GeneralConstantMap":{"ConstantMap":["1","2"],"Map":["1","2"]},"ConstantSet":{"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"ConstantStringSet":{"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","SetBase.E":"1"},"GeneralConstantSet":{"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","SetBase.E":"1"},"Instantiation":{"Function":[]},"Instantiation1":{"Function":[]},"NullError":{"TypeError":[],"Error":[]},"JsNoSuchMethodError":{"Error":[]},"UnknownJsTypeError":{"Error":[]},"NullThrownFromJavaScriptException":{"Exception":[]},"_StackTrace":{"StackTrace":[]},"Closure":{"Function":[]},"Closure0Args":{"Function":[]},"Closure2Args":{"Function":[]},"TearOffClosure":{"Function":[]},"StaticClosure":{"Function":[]},"BoundClosure":{"Function":[]},"_CyclicInitializationError":{"Error":[]},"RuntimeError":{"Error":[]},"JsLinkedHashMap":{"MapBase":["1","2"],"Map":["1","2"],"MapBase.V":"2","MapBase.K":"1"},"LinkedHashMapKeyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"JsIdentityLinkedHashMap":{"JsLinkedHashMap":["1","2"],"MapBase":["1","2"],"Map":["1","2"],"MapBase.V":"2","MapBase.K":"1"},"JsConstantLinkedHashMap":{"JsLinkedHashMap":["1","2"],"MapBase":["1","2"],"Map":["1","2"],"MapBase.V":"2","MapBase.K":"1"},"JSSyntaxRegExp":{"RegExp":[],"Pattern":[]},"_MatchImplementation":{"RegExpMatch":[],"Match":[]},"_AllMatchesIterable":{"Iterable":["RegExpMatch"],"Iterable.E":"RegExpMatch"},"StringMatch":{"Match":[]},"_StringAllMatchesIterable":{"Iterable":["Match"],"Iterable.E":"Match"},"NativeByteBuffer":{"JavaScriptObject":[],"JSObject":[],"ByteBuffer":[],"TrustedGetRuntimeType":[]},"NativeTypedData":{"JavaScriptObject":[],"JSObject":[],"TypedData":[]},"NativeByteData":{"JavaScriptObject":[],"ByteData":[],"JSObject":[],"TypedData":[],"TrustedGetRuntimeType":[]},"NativeTypedArray":{"JavaScriptIndexingBehavior":["1"],"JavaScriptObject":[],"JSObject":[],"TypedData":[],"JSIndexable":["1"]},"NativeTypedArrayOfDouble":{"ListBase":["double"],"List":["double"],"JavaScriptIndexingBehavior":["double"],"JavaScriptObject":[],"EfficientLengthIterable":["double"],"JSObject":[],"TypedData":[],"JSIndexable":["double"],"Iterable":["double"]},"NativeTypedArrayOfInt":{"ListBase":["int"],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"]},"NativeFloat32List":{"NativeTypedArrayOfDouble":[],"ListBase":["double"],"Float32List":[],"List":["double"],"JavaScriptIndexingBehavior":["double"],"JavaScriptObject":[],"EfficientLengthIterable":["double"],"JSObject":[],"TypedData":[],"JSIndexable":["double"],"Iterable":["double"],"TrustedGetRuntimeType":[],"ListBase.E":"double","Iterable.E":"double"},"NativeFloat64List":{"NativeTypedArrayOfDouble":[],"ListBase":["double"],"Float64List":[],"List":["double"],"JavaScriptIndexingBehavior":["double"],"JavaScriptObject":[],"EfficientLengthIterable":["double"],"JSObject":[],"TypedData":[],"JSIndexable":["double"],"Iterable":["double"],"TrustedGetRuntimeType":[],"ListBase.E":"double","Iterable.E":"double"},"NativeInt16List":{"NativeTypedArrayOfInt":[],"ListBase":["int"],"Int16List":[],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int"},"NativeInt32List":{"NativeTypedArrayOfInt":[],"ListBase":["int"],"Int32List":[],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int"},"NativeInt8List":{"NativeTypedArrayOfInt":[],"ListBase":["int"],"Int8List":[],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int"},"NativeUint16List":{"NativeTypedArrayOfInt":[],"ListBase":["int"],"Uint16List":[],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int"},"NativeUint32List":{"NativeTypedArrayOfInt":[],"ListBase":["int"],"Uint32List":[],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int"},"NativeUint8ClampedList":{"NativeTypedArrayOfInt":[],"ListBase":["int"],"Uint8ClampedList":[],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int"},"NativeUint8List":{"NativeTypedArrayOfInt":[],"ListBase":["int"],"Uint8List":[],"List":["int"],"JavaScriptIndexingBehavior":["int"],"JavaScriptObject":[],"EfficientLengthIterable":["int"],"JSObject":[],"TypedData":[],"JSIndexable":["int"],"Iterable":["int"],"TrustedGetRuntimeType":[],"ListBase.E":"int","Iterable.E":"int"},"_Type":{"Type":[]},"_Error":{"Error":[]},"_TypeError":{"TypeError":[],"Error":[]},"_Future":{"Future":["1"]},"MultiStreamController":{"EventSink":["1"]},"_BufferingStreamSubscription":{"_BufferingStreamSubscription.T":"1"},"_HandlerEventSink":{"EventSink":["1"]},"_TimerImpl":{"Timer":[]},"_AsyncAwaitCompleter":{"Completer":["1"]},"_SyncStarIterable":{"Iterable":["1"],"Iterable.E":"1"},"AsyncError":{"Error":[]},"_BroadcastStream":{"_ControllerStream":["1"],"_StreamImpl":["1"],"Stream":["1"],"Stream.T":"1"},"_BroadcastSubscription":{"_ControllerSubscription":["1"],"_BufferingStreamSubscription":["1"],"_BufferingStreamSubscription.T":"1"},"_BroadcastStreamController":{"EventSink":["1"]},"_SyncBroadcastStreamController":{"_BroadcastStreamController":["1"],"EventSink":["1"]},"_AsyncBroadcastStreamController":{"_BroadcastStreamController":["1"],"EventSink":["1"]},"TimeoutException":{"Exception":[]},"_Completer":{"Completer":["1"]},"_AsyncCompleter":{"_Completer":["1"],"Completer":["1"]},"StreamView":{"Stream":["1"]},"_StreamController":{"EventSink":["1"]},"_AsyncStreamController":{"_AsyncStreamControllerDispatch":["1"],"_StreamController":["1"],"EventSink":["1"]},"_SyncStreamController":{"_StreamController":["1"],"EventSink":["1"]},"_ControllerStream":{"_StreamImpl":["1"],"Stream":["1"],"Stream.T":"1"},"_ControllerSubscription":{"_BufferingStreamSubscription":["1"],"_BufferingStreamSubscription.T":"1"},"_StreamControllerAddStreamState":{"_AddStreamState":["1"]},"_StreamImpl":{"Stream":["1"]},"_EmptyStream":{"Stream":["1"],"Stream.T":"1"},"_MultiStream":{"Stream":["1"],"Stream.T":"1"},"_MultiStreamController":{"_AsyncStreamController":["1"],"_AsyncStreamControllerDispatch":["1"],"_StreamController":["1"],"MultiStreamController":["1"],"EventSink":["1"]},"_ForwardingStream":{"Stream":["2"]},"_ForwardingStreamSubscription":{"_BufferingStreamSubscription":["2"],"_BufferingStreamSubscription.T":"2"},"_WhereStream":{"_ForwardingStream":["1","1"],"Stream":["1"],"Stream.T":"1","_ForwardingStream.S":"1","_ForwardingStream.T":"1"},"_MapStream":{"_ForwardingStream":["1","2"],"Stream":["2"],"Stream.T":"2","_ForwardingStream.S":"1","_ForwardingStream.T":"2"},"_EventSinkWrapper":{"EventSink":["1"]},"_SinkTransformerStreamSubscription":{"_BufferingStreamSubscription":["2"],"_BufferingStreamSubscription.T":"2"},"_BoundSinkStream":{"Stream":["2"],"Stream.T":"2"},"_StreamHandlerTransformer":{"_StreamSinkTransformer":["1","2"]},"_HashMap":{"MapBase":["1","2"],"Map":["1","2"],"MapBase.V":"2","MapBase.K":"1"},"_IdentityHashMap":{"_HashMap":["1","2"],"MapBase":["1","2"],"Map":["1","2"],"MapBase.V":"2","MapBase.K":"1"},"_CustomHashMap":{"_HashMap":["1","2"],"MapBase":["1","2"],"Map":["1","2"],"MapBase.V":"2","MapBase.K":"1"},"_HashMapKeyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"_LinkedCustomHashMap":{"JsLinkedHashMap":["1","2"],"MapBase":["1","2"],"Map":["1","2"],"MapBase.V":"2","MapBase.K":"1"},"_HashSet":{"_SetBase":["1"],"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","SetBase.E":"1"},"_LinkedHashSet":{"_SetBase":["1"],"SetBase":["1"],"LinkedHashSet":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","SetBase.E":"1"},"UnmodifiableListView":{"ListBase":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListBase.E":"1","Iterable.E":"1"},"LinkedList":{"Iterable":["1"],"Iterable.E":"1"},"ListBase":{"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"MapBase":{"Map":["1","2"]},"UnmodifiableMapBase":{"MapBase":["1","2"],"_UnmodifiableMapMixin":["1","2"],"Map":["1","2"]},"_MapBaseValueIterable":{"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"MapView":{"Map":["1","2"]},"UnmodifiableMapView":{"MapView":["1","2"],"_UnmodifiableMapMixin":["1","2"],"Map":["1","2"]},"_DoubleLinkedQueueElement":{"_DoubleLinkedQueueEntry":["1"],"DoubleLinkedQueueEntry":["1"]},"_DoubleLinkedQueueSentinel":{"_DoubleLinkedQueueEntry":["1"]},"DoubleLinkedQueue":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"ListQueue":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","ListIterable.E":"1"},"SetBase":{"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"_SetBase":{"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"UnmodifiableSetView":{"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","SetBase.E":"1"},"SplayTreeMap":{"MapBase":["1","2"],"Map":["1","2"],"MapBase.V":"2","MapBase.K":"1"},"_SplayTreeKeyIterable":{"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"_SplayTreeValueIterable":{"EfficientLengthIterable":["2"],"Iterable":["2"],"Iterable.E":"2"},"_SplayTreeMapEntryIterable":{"EfficientLengthIterable":["MapEntry<1,2>"],"Iterable":["MapEntry<1,2>"],"Iterable.E":"MapEntry<1,2>"},"_SplayTreeKeyIterator":{"_SplayTreeIterator":["1","2","1"],"_SplayTreeIterator.T":"1"},"_SplayTreeValueIterator":{"_SplayTreeIterator":["1","_SplayTreeMapNode<1,2>","2"],"_SplayTreeIterator.T":"2"},"_SplayTreeMapEntryIterator":{"_SplayTreeIterator":["1","_SplayTreeMapNode<1,2>","MapEntry<1,2>"],"_SplayTreeIterator.T":"MapEntry<1,2>"},"SplayTreeSet":{"SetBase":["1"],"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","SetBase.E":"1"},"_JsonMap":{"MapBase":["String","@"],"Map":["String","@"],"MapBase.V":"@","MapBase.K":"String"},"_JsonMapKeyIterable":{"ListIterable":["String"],"EfficientLengthIterable":["String"],"Iterable":["String"],"Iterable.E":"String","ListIterable.E":"String"},"_JsonDecoderSink":{"StringConversionSink":[]},"AsciiCodec":{"Encoding":[]},"_UnicodeSubsetEncoder":{"Converter":["String","List"]},"AsciiEncoder":{"Converter":["String","List"],"Converter.S":"String","Converter.T":"List"},"_UnicodeSubsetEncoderSink":{"StringConversionSink":[]},"_UnicodeSubsetDecoder":{"Converter":["List","String"]},"AsciiDecoder":{"Converter":["List","String"],"Converter.S":"List","Converter.T":"String"},"Base64Encoder":{"Converter":["List","String"],"Converter.S":"List","Converter.T":"String"},"Base64Decoder":{"Converter":["String","List"],"Converter.S":"String","Converter.T":"List"},"_Base64DecoderSink":{"StringConversionSink":[]},"_FusedConverter":{"Converter":["1","3"],"Converter.S":"1","Converter.T":"3"},"HtmlEscape":{"Converter":["String","String"],"Converter.S":"String","Converter.T":"String"},"_HtmlEscapeSink":{"StringConversionSink":[]},"JsonUnsupportedObjectError":{"Error":[]},"JsonCyclicError":{"Error":[]},"JsonEncoder":{"Converter":["Object?","String"],"Converter.S":"Object?","Converter.T":"String"},"JsonDecoder":{"Converter":["String","Object?"],"Converter.S":"String","Converter.T":"Object?"},"Latin1Codec":{"Encoding":[]},"Latin1Encoder":{"Converter":["String","List"],"Converter.S":"String","Converter.T":"List"},"Latin1Decoder":{"Converter":["List","String"],"Converter.S":"List","Converter.T":"String"},"_StringSinkConversionSink":{"StringConversionSink":[]},"_StringAdapterSink":{"StringConversionSink":[]},"Utf8Codec":{"Encoding":[]},"Utf8Encoder":{"Converter":["String","List"],"Converter.S":"String","Converter.T":"List"},"_Utf8EncoderSink":{"StringConversionSink":[]},"Utf8Decoder":{"Converter":["List","String"],"Converter.S":"List","Converter.T":"String"},"BigInt":{"Comparable":["BigInt"]},"DateTime":{"Comparable":["DateTime"]},"double":{"num":[],"Comparable":["num"]},"Duration":{"Comparable":["Duration"]},"int":{"num":[],"Comparable":["num"]},"List":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"num":{"Comparable":["num"]},"RegExp":{"Pattern":[]},"RegExpMatch":{"Match":[]},"Set":{"EfficientLengthIterable":["1"],"Iterable":["1"]},"String":{"Comparable":["String"],"Pattern":[]},"_BigIntImpl":{"Comparable":["BigInt"]},"AssertionError":{"Error":[]},"TypeError":{"Error":[]},"ArgumentError":{"Error":[]},"RangeError":{"Error":[]},"IndexError":{"Error":[]},"NoSuchMethodError":{"Error":[]},"UnsupportedError":{"Error":[]},"UnimplementedError":{"Error":[]},"StateError":{"Error":[]},"ConcurrentModificationError":{"Error":[]},"OutOfMemoryError":{"Error":[]},"StackOverflowError":{"Error":[]},"_Exception":{"Exception":[]},"FormatException":{"Exception":[]},"IntegerDivisionByZeroException":{"Exception":[],"Error":[]},"_GeneratorIterable":{"ListIterable":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1","ListIterable.E":"1"},"_StringStackTrace":{"StackTrace":[]},"Runes":{"Iterable":["int"],"Iterable.E":"int"},"_Uri":{"Uri":[]},"_SimpleUri":{"Uri":[]},"_DataUri":{"Uri":[]},"HtmlElement":{"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"BeforeUnloadEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"Blob":{"JavaScriptObject":[],"JSObject":[]},"CssRule":{"JavaScriptObject":[],"JSObject":[]},"Element2":{"Node1":[],"JavaScriptObject":[],"JSObject":[]},"Event":{"JavaScriptObject":[],"JSObject":[]},"File":{"Blob":[],"JavaScriptObject":[],"JSObject":[]},"Gamepad":{"JavaScriptObject":[],"JSObject":[]},"HttpRequest":{"JavaScriptObject":[],"JSObject":[]},"IFrameElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"MimeType":{"JavaScriptObject":[],"JSObject":[]},"MouseEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"Node1":{"JavaScriptObject":[],"JSObject":[]},"Plugin":{"JavaScriptObject":[],"JSObject":[]},"ProgressEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"SourceBuffer":{"JavaScriptObject":[],"JSObject":[]},"SpeechGrammar":{"JavaScriptObject":[],"JSObject":[]},"SpeechRecognitionResult":{"JavaScriptObject":[],"JSObject":[]},"StyleSheet":{"JavaScriptObject":[],"JSObject":[]},"TextTrack":{"JavaScriptObject":[],"JSObject":[]},"TextTrackCue":{"JavaScriptObject":[],"JSObject":[]},"Touch":{"JavaScriptObject":[],"JSObject":[]},"AccessibleNodeList":{"JavaScriptObject":[],"JSObject":[]},"AnchorElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"Animation":{"JavaScriptObject":[],"JSObject":[]},"ApplicationCacheErrorEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"AreaElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"BackgroundFetchEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"BackgroundFetchRegistration":{"JavaScriptObject":[],"JSObject":[]},"BluetoothRemoteGattDescriptor":{"JavaScriptObject":[],"JSObject":[]},"ButtonElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"CanvasElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"CanvasRenderingContext2D":{"JavaScriptObject":[],"JSObject":[]},"CharacterData":{"Node1":[],"JavaScriptObject":[],"JSObject":[]},"Client":{"JavaScriptObject":[],"JSObject":[]},"Credential":{"JavaScriptObject":[],"JSObject":[]},"CssKeywordValue":{"JavaScriptObject":[],"JSObject":[]},"CssNumericValue":{"JavaScriptObject":[],"JSObject":[]},"CssPerspective":{"JavaScriptObject":[],"JSObject":[]},"CssStyleDeclaration":{"JavaScriptObject":[],"JSObject":[]},"CssStyleValue":{"JavaScriptObject":[],"JSObject":[]},"CssTransformComponent":{"JavaScriptObject":[],"JSObject":[]},"CssTransformValue":{"JavaScriptObject":[],"JSObject":[]},"CssUnitValue":{"JavaScriptObject":[],"JSObject":[]},"CssUnparsedValue":{"JavaScriptObject":[],"JSObject":[]},"DataElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"DataTransferItemList":{"JavaScriptObject":[],"JSObject":[]},"DeprecationReport":{"JavaScriptObject":[],"JSObject":[]},"Document1":{"Node1":[],"JavaScriptObject":[],"JSObject":[]},"DomError":{"JavaScriptObject":[],"JSObject":[]},"DomException0":{"JavaScriptObject":[],"JSObject":[]},"DomRectList":{"ListBase":["Rectangle"],"ImmutableListMixin":["Rectangle"],"List":["Rectangle"],"JavaScriptIndexingBehavior":["Rectangle"],"JavaScriptObject":[],"EfficientLengthIterable":["Rectangle"],"JSObject":[],"Iterable":["Rectangle"],"JSIndexable":["Rectangle"],"ImmutableListMixin.E":"Rectangle","ListBase.E":"Rectangle","Iterable.E":"Rectangle"},"DomRectReadOnly0":{"JavaScriptObject":[],"Rectangle":["num"],"JSObject":[]},"DomStringList":{"ListBase":["String"],"ImmutableListMixin":["String"],"List":["String"],"JavaScriptIndexingBehavior":["String"],"JavaScriptObject":[],"EfficientLengthIterable":["String"],"JSObject":[],"Iterable":["String"],"JSIndexable":["String"],"ImmutableListMixin.E":"String","ListBase.E":"String","Iterable.E":"String"},"DomTokenList0":{"JavaScriptObject":[],"JSObject":[]},"_ChildrenElementList":{"ListBase":["Element2"],"List":["Element2"],"EfficientLengthIterable":["Element2"],"Iterable":["Element2"],"ListBase.E":"Element2","Iterable.E":"Element2"},"ErrorEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"EventTarget":{"JavaScriptObject":[],"JSObject":[]},"ExtendableEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"FileList":{"ListBase":["File"],"ImmutableListMixin":["File"],"List":["File"],"JavaScriptIndexingBehavior":["File"],"JavaScriptObject":[],"EfficientLengthIterable":["File"],"JSObject":[],"Iterable":["File"],"JSIndexable":["File"],"ImmutableListMixin.E":"File","ListBase.E":"File","Iterable.E":"File"},"FileReader":{"JavaScriptObject":[],"JSObject":[]},"FileWriter":{"JavaScriptObject":[],"JSObject":[]},"FontFaceSet":{"JavaScriptObject":[],"JSObject":[]},"FormElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"GamepadButton":{"JavaScriptObject":[],"JSObject":[]},"History":{"JavaScriptObject":[],"JSObject":[]},"HtmlCollection":{"ListBase":["Node1"],"ImmutableListMixin":["Node1"],"List":["Node1"],"JavaScriptIndexingBehavior":["Node1"],"JavaScriptObject":[],"EfficientLengthIterable":["Node1"],"JSObject":[],"Iterable":["Node1"],"JSIndexable":["Node1"],"ImmutableListMixin.E":"Node1","ListBase.E":"Node1","Iterable.E":"Node1"},"HtmlDocument":{"Document1":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"HttpRequestEventTarget":{"JavaScriptObject":[],"JSObject":[]},"ImageData":{"JavaScriptObject":[],"JSObject":[]},"InputElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"InterventionReport":{"JavaScriptObject":[],"JSObject":[]},"LIElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"Location":{"JavaScriptObject":[],"JSObject":[]},"MediaError":{"JavaScriptObject":[],"JSObject":[]},"MediaKeyMessageEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"MediaList":{"JavaScriptObject":[],"JSObject":[]},"MediaQueryList":{"JavaScriptObject":[],"JSObject":[]},"MediaStream":{"JavaScriptObject":[],"JSObject":[]},"MediaStreamTrack":{"JavaScriptObject":[],"JSObject":[]},"MessagePort":{"JavaScriptObject":[],"JSObject":[]},"MeterElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"MidiInputMap":{"JavaScriptObject":[],"MapBase":["String","@"],"JSObject":[],"Map":["String","@"],"MapBase.V":"@","MapBase.K":"String"},"MidiOutputMap":{"JavaScriptObject":[],"MapBase":["String","@"],"JSObject":[],"Map":["String","@"],"MapBase.V":"@","MapBase.K":"String"},"MidiPort":{"JavaScriptObject":[],"JSObject":[]},"MimeTypeArray":{"ListBase":["MimeType"],"ImmutableListMixin":["MimeType"],"List":["MimeType"],"JavaScriptIndexingBehavior":["MimeType"],"JavaScriptObject":[],"EfficientLengthIterable":["MimeType"],"JSObject":[],"Iterable":["MimeType"],"JSIndexable":["MimeType"],"ImmutableListMixin.E":"MimeType","ListBase.E":"MimeType","Iterable.E":"MimeType"},"Navigator0":{"JavaScriptObject":[],"JSObject":[]},"NavigatorConcurrentHardware":{"JavaScriptObject":[],"JSObject":[]},"NavigatorUserMediaError":{"JavaScriptObject":[],"JSObject":[]},"_ChildNodeListLazy":{"ListBase":["Node1"],"List":["Node1"],"EfficientLengthIterable":["Node1"],"Iterable":["Node1"],"ListBase.E":"Node1","Iterable.E":"Node1"},"NodeList0":{"ListBase":["Node1"],"ImmutableListMixin":["Node1"],"List":["Node1"],"JavaScriptIndexingBehavior":["Node1"],"JavaScriptObject":[],"EfficientLengthIterable":["Node1"],"JSObject":[],"Iterable":["Node1"],"JSIndexable":["Node1"],"ImmutableListMixin.E":"Node1","ListBase.E":"Node1","Iterable.E":"Node1"},"Notification":{"JavaScriptObject":[],"JSObject":[]},"OptionElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"OutputElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"OverconstrainedError":{"JavaScriptObject":[],"JSObject":[]},"ParamElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"PaymentRequest":{"JavaScriptObject":[],"JSObject":[]},"PluginArray":{"ListBase":["Plugin"],"ImmutableListMixin":["Plugin"],"List":["Plugin"],"JavaScriptIndexingBehavior":["Plugin"],"JavaScriptObject":[],"EfficientLengthIterable":["Plugin"],"JSObject":[],"Iterable":["Plugin"],"JSIndexable":["Plugin"],"ImmutableListMixin.E":"Plugin","ListBase.E":"Plugin","Iterable.E":"Plugin"},"PositionError":{"JavaScriptObject":[],"JSObject":[]},"PresentationAvailability":{"JavaScriptObject":[],"JSObject":[]},"PresentationConnection":{"JavaScriptObject":[],"JSObject":[]},"PresentationConnectionCloseEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"ProgressElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"RelatedApplication":{"JavaScriptObject":[],"JSObject":[]},"ReportBody":{"JavaScriptObject":[],"JSObject":[]},"RtcDataChannel":{"JavaScriptObject":[],"JSObject":[]},"RtcLegacyStatsReport":{"JavaScriptObject":[],"JSObject":[]},"RtcStatsReport":{"JavaScriptObject":[],"MapBase":["String","@"],"JSObject":[],"Map":["String","@"],"MapBase.V":"@","MapBase.K":"String"},"SelectElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"SourceBufferList":{"ListBase":["SourceBuffer"],"ImmutableListMixin":["SourceBuffer"],"List":["SourceBuffer"],"JavaScriptIndexingBehavior":["SourceBuffer"],"JavaScriptObject":[],"EfficientLengthIterable":["SourceBuffer"],"JSObject":[],"Iterable":["SourceBuffer"],"JSIndexable":["SourceBuffer"],"ImmutableListMixin.E":"SourceBuffer","ListBase.E":"SourceBuffer","Iterable.E":"SourceBuffer"},"SpeechGrammarList":{"ListBase":["SpeechGrammar"],"ImmutableListMixin":["SpeechGrammar"],"List":["SpeechGrammar"],"JavaScriptIndexingBehavior":["SpeechGrammar"],"JavaScriptObject":[],"EfficientLengthIterable":["SpeechGrammar"],"JSObject":[],"Iterable":["SpeechGrammar"],"JSIndexable":["SpeechGrammar"],"ImmutableListMixin.E":"SpeechGrammar","ListBase.E":"SpeechGrammar","Iterable.E":"SpeechGrammar"},"SpeechRecognitionError":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"Storage":{"JavaScriptObject":[],"MapBase":["String","String"],"JSObject":[],"Map":["String","String"],"MapBase.V":"String","MapBase.K":"String"},"TextAreaElement":{"HtmlElement":[],"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"TextTrackCueList":{"ListBase":["TextTrackCue"],"ImmutableListMixin":["TextTrackCue"],"List":["TextTrackCue"],"JavaScriptIndexingBehavior":["TextTrackCue"],"JavaScriptObject":[],"EfficientLengthIterable":["TextTrackCue"],"JSObject":[],"Iterable":["TextTrackCue"],"JSIndexable":["TextTrackCue"],"ImmutableListMixin.E":"TextTrackCue","ListBase.E":"TextTrackCue","Iterable.E":"TextTrackCue"},"TextTrackList":{"ListBase":["TextTrack"],"ImmutableListMixin":["TextTrack"],"List":["TextTrack"],"JavaScriptIndexingBehavior":["TextTrack"],"JavaScriptObject":[],"EfficientLengthIterable":["TextTrack"],"JSObject":[],"Iterable":["TextTrack"],"JSIndexable":["TextTrack"],"ImmutableListMixin.E":"TextTrack","ListBase.E":"TextTrack","Iterable.E":"TextTrack"},"TimeRanges":{"JavaScriptObject":[],"JSObject":[]},"TouchList":{"ListBase":["Touch"],"ImmutableListMixin":["Touch"],"List":["Touch"],"JavaScriptIndexingBehavior":["Touch"],"JavaScriptObject":[],"EfficientLengthIterable":["Touch"],"JSObject":[],"Iterable":["Touch"],"JSIndexable":["Touch"],"ImmutableListMixin.E":"Touch","ListBase.E":"Touch","Iterable.E":"Touch"},"TrackDefaultList":{"JavaScriptObject":[],"JSObject":[]},"UIEvent":{"Event":[],"JavaScriptObject":[],"JSObject":[]},"Url":{"JavaScriptObject":[],"JSObject":[]},"VideoTrack":{"JavaScriptObject":[],"JSObject":[]},"VideoTrackList":{"JavaScriptObject":[],"JSObject":[]},"VttRegion":{"JavaScriptObject":[],"JSObject":[]},"Window":{"JavaScriptObject":[],"JSObject":[]},"WorkerGlobalScope":{"JavaScriptObject":[],"JSObject":[]},"_Attr":{"Node1":[],"JavaScriptObject":[],"JSObject":[]},"_CssRuleList":{"ListBase":["CssRule"],"ImmutableListMixin":["CssRule"],"List":["CssRule"],"JavaScriptIndexingBehavior":["CssRule"],"JavaScriptObject":[],"EfficientLengthIterable":["CssRule"],"JSObject":[],"Iterable":["CssRule"],"JSIndexable":["CssRule"],"ImmutableListMixin.E":"CssRule","ListBase.E":"CssRule","Iterable.E":"CssRule"},"_DomRect":{"JavaScriptObject":[],"Rectangle":["num"],"JSObject":[]},"_GamepadList":{"ListBase":["Gamepad?"],"ImmutableListMixin":["Gamepad?"],"List":["Gamepad?"],"JavaScriptIndexingBehavior":["Gamepad?"],"JavaScriptObject":[],"EfficientLengthIterable":["Gamepad?"],"JSObject":[],"Iterable":["Gamepad?"],"JSIndexable":["Gamepad?"],"ImmutableListMixin.E":"Gamepad?","ListBase.E":"Gamepad?","Iterable.E":"Gamepad?"},"_NamedNodeMap":{"ListBase":["Node1"],"ImmutableListMixin":["Node1"],"List":["Node1"],"JavaScriptIndexingBehavior":["Node1"],"JavaScriptObject":[],"EfficientLengthIterable":["Node1"],"JSObject":[],"Iterable":["Node1"],"JSIndexable":["Node1"],"ImmutableListMixin.E":"Node1","ListBase.E":"Node1","Iterable.E":"Node1"},"_Report":{"JavaScriptObject":[],"JSObject":[]},"_SpeechRecognitionResultList":{"ListBase":["SpeechRecognitionResult"],"ImmutableListMixin":["SpeechRecognitionResult"],"List":["SpeechRecognitionResult"],"JavaScriptIndexingBehavior":["SpeechRecognitionResult"],"JavaScriptObject":[],"EfficientLengthIterable":["SpeechRecognitionResult"],"JSObject":[],"Iterable":["SpeechRecognitionResult"],"JSIndexable":["SpeechRecognitionResult"],"ImmutableListMixin.E":"SpeechRecognitionResult","ListBase.E":"SpeechRecognitionResult","Iterable.E":"SpeechRecognitionResult"},"_StyleSheetList":{"ListBase":["StyleSheet"],"ImmutableListMixin":["StyleSheet"],"List":["StyleSheet"],"JavaScriptIndexingBehavior":["StyleSheet"],"JavaScriptObject":[],"EfficientLengthIterable":["StyleSheet"],"JSObject":[],"Iterable":["StyleSheet"],"JSIndexable":["StyleSheet"],"ImmutableListMixin.E":"StyleSheet","ListBase.E":"StyleSheet","Iterable.E":"StyleSheet"},"_AttributeMap":{"MapBase":["String","String"],"Map":["String","String"]},"_ElementAttributeMap":{"MapBase":["String","String"],"Map":["String","String"],"MapBase.V":"String","MapBase.K":"String"},"_DataAttributeMap":{"MapBase":["String","String"],"Map":["String","String"],"MapBase.V":"String","MapBase.K":"String"},"_EventStream":{"Stream":["1"],"Stream.T":"1"},"_ElementEventStreamImpl":{"_EventStream":["1"],"Stream":["1"],"Stream.T":"1"},"FilteredElementList0":{"ListBase":["Element2"],"List":["Element2"],"EfficientLengthIterable":["Element2"],"Iterable":["Element2"],"ListBase.E":"Element2","Iterable.E":"Element2"},"Transaction":{"JavaScriptObject":[],"JSObject":[]},"Cursor":{"JavaScriptObject":[],"JSObject":[]},"CursorWithValue":{"JavaScriptObject":[],"JSObject":[]},"Database":{"JavaScriptObject":[],"JSObject":[]},"KeyRange":{"JavaScriptObject":[],"JSObject":[]},"ObjectStore":{"JavaScriptObject":[],"JSObject":[]},"Observation":{"JavaScriptObject":[],"JSObject":[]},"ObserverChanges":{"JavaScriptObject":[],"JSObject":[]},"Request0":{"JavaScriptObject":[],"JSObject":[]},"Directory":{"FileSystemEntity":[]},"File0":{"FileSystemEntity":[]},"_RandomAccessFile":{"RandomAccessFile":[]},"OSError":{"Exception":[]},"_Directory":{"Directory":[],"FileSystemEntity":[]},"FileSystemException":{"Exception":[]},"PathAccessException":{"Exception":[]},"PathExistsException":{"Exception":[]},"PathNotFoundException":{"Exception":[]},"_FileStream":{"Stream":["List"],"Stream.T":"List"},"_File":{"File0":[],"FileSystemEntity":[]},"SystemEncoding":{"Encoding":[]},"JsArray":{"ListBase":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"ListBase.E":"1","Iterable.E":"1"},"NullRejectionException":{"Exception":[]},"Rectangle":{"_RectangleBase":["1"]},"Length":{"JavaScriptObject":[],"JSObject":[]},"Number":{"JavaScriptObject":[],"JSObject":[]},"Transform0":{"JavaScriptObject":[],"JSObject":[]},"Angle":{"JavaScriptObject":[],"JSObject":[]},"LengthList":{"ListBase":["Length"],"ImmutableListMixin":["Length"],"List":["Length"],"JavaScriptObject":[],"EfficientLengthIterable":["Length"],"JSObject":[],"Iterable":["Length"],"ImmutableListMixin.E":"Length","ListBase.E":"Length","Iterable.E":"Length"},"NumberList":{"ListBase":["Number"],"ImmutableListMixin":["Number"],"List":["Number"],"JavaScriptObject":[],"EfficientLengthIterable":["Number"],"JSObject":[],"Iterable":["Number"],"ImmutableListMixin.E":"Number","ListBase.E":"Number","Iterable.E":"Number"},"PointList":{"JavaScriptObject":[],"JSObject":[]},"StringList":{"ListBase":["String"],"ImmutableListMixin":["String"],"List":["String"],"JavaScriptObject":[],"EfficientLengthIterable":["String"],"JSObject":[],"Iterable":["String"],"ImmutableListMixin.E":"String","ListBase.E":"String","Iterable.E":"String"},"SvgElement":{"Element2":[],"Node1":[],"JavaScriptObject":[],"JSObject":[]},"TransformList":{"ListBase":["Transform0"],"ImmutableListMixin":["Transform0"],"List":["Transform0"],"JavaScriptObject":[],"EfficientLengthIterable":["Transform0"],"JSObject":[],"Iterable":["Transform0"],"ImmutableListMixin.E":"Transform0","ListBase.E":"Transform0","Iterable.E":"Transform0"},"ByteData":{"TypedData":[]},"Int8List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Uint8List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Uint8ClampedList":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Int16List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Uint16List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Int32List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Uint32List":{"List":["int"],"EfficientLengthIterable":["int"],"Iterable":["int"],"TypedData":[]},"Float32List":{"List":["double"],"EfficientLengthIterable":["double"],"Iterable":["double"],"TypedData":[]},"Float64List":{"List":["double"],"EfficientLengthIterable":["double"],"Iterable":["double"],"TypedData":[]},"_UnmodifiableInt64ListView":{"ListBase.E":"int","Iterable.E":"int"},"SingletonFlutterWindow":{"FlutterView":[]},"AudioBuffer":{"JavaScriptObject":[],"JSObject":[]},"AudioParam":{"JavaScriptObject":[],"JSObject":[]},"AudioParamMap":{"JavaScriptObject":[],"MapBase":["String","@"],"JSObject":[],"Map":["String","@"],"MapBase.V":"@","MapBase.K":"String"},"AudioTrack":{"JavaScriptObject":[],"JSObject":[]},"AudioTrackList":{"JavaScriptObject":[],"JSObject":[]},"BaseAudioContext":{"JavaScriptObject":[],"JSObject":[]},"OfflineAudioContext":{"JavaScriptObject":[],"JSObject":[]},"ArchiveException":{"FormatException":[],"Exception":[]},"InputStream":{"InputStreamBase":[]},"SpanMarker":{"Comparable":["SpanMarker"]},"IncompatibleOverlappingAttributionsException":{"Exception":[]},"NamedAttribution":{"Attribution":[]},"BoardItem":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoardItemState":{"State":["BoardItem"]},"BoardList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoardListState":{"State":["BoardList"]},"BoardView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoardViewState":{"State":["BoardView"]},"CopyOnWriteList":{"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"CopyOnWriteMap":{"Map":["1","2"]},"CopyOnWriteSet":{"Set":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"],"Iterable.E":"1"},"BuiltList":{"Iterable":["1"]},"_BuiltList":{"BuiltList":["1"],"Iterable":["1"],"Iterable.E":"1"},"_BuiltListMultimap":{"BuiltListMultimap":["1","2"]},"_BuiltMap":{"BuiltMap":["1","2"]},"BuiltSet":{"Iterable":["1"]},"_BuiltSet":{"BuiltSet":["1"],"Iterable":["1"],"Iterable.E":"1"},"_BuiltSetMultimap":{"BuiltSetMultimap":["1","2"]},"BuiltValueNullFieldError":{"Error":[]},"BuiltValueNestedFieldError":{"Error":[]},"DeserializationError":{"Error":[]},"BigIntSerializer":{"PrimitiveSerializer":["BigInt"],"Serializer":["BigInt"]},"BoolSerializer":{"PrimitiveSerializer":["bool"],"Serializer":["bool"]},"BuiltListMultimapSerializer":{"StructuredSerializer":["BuiltListMultimap<@,@>"],"Serializer":["BuiltListMultimap<@,@>"]},"BuiltListSerializer":{"StructuredSerializer":["BuiltList<@>"],"Serializer":["BuiltList<@>"]},"BuiltMapSerializer":{"StructuredSerializer":["BuiltMap<@,@>"],"Serializer":["BuiltMap<@,@>"]},"BuiltSetMultimapSerializer":{"StructuredSerializer":["BuiltSetMultimap<@,@>"],"Serializer":["BuiltSetMultimap<@,@>"]},"BuiltSetSerializer":{"StructuredSerializer":["BuiltSet<@>"],"Serializer":["BuiltSet<@>"]},"DateTimeSerializer":{"PrimitiveSerializer":["DateTime"],"Serializer":["DateTime"]},"DoubleSerializer":{"PrimitiveSerializer":["double"],"Serializer":["double"]},"DurationSerializer":{"PrimitiveSerializer":["Duration"],"Serializer":["Duration"]},"Int32Serializer":{"PrimitiveSerializer":["Int32"],"Serializer":["Int32"]},"Int64Serializer":{"PrimitiveSerializer":["Int64"],"Serializer":["Int64"]},"IntSerializer":{"PrimitiveSerializer":["int"],"Serializer":["int"]},"JsonObjectSerializer":{"PrimitiveSerializer":["JsonObject"],"Serializer":["JsonObject"]},"NullSerializer":{"PrimitiveSerializer":["Null"],"Serializer":["Null"]},"NumSerializer":{"PrimitiveSerializer":["num"],"Serializer":["num"]},"RegExpSerializer":{"PrimitiveSerializer":["RegExp"],"Serializer":["RegExp"]},"StringSerializer":{"PrimitiveSerializer":["String"],"Serializer":["String"]},"Uint8ListSerializer":{"PrimitiveSerializer":["Uint8List"],"Serializer":["Uint8List"]},"UriSerializer":{"PrimitiveSerializer":["Uri"],"Serializer":["Uri"]},"StandardJsonPlugin":{"SerializerPlugin":[]},"StringCharacters":{"Iterable":["String"],"Iterable.E":"String"},"BarChart0":{"CartesianChart":["String"],"BaseChart0":["String"],"BaseChart0.D":"String","CartesianChart.D":"String"},"BarRendererElement":{"BaseBarRendererElement":[]},"AnimatedBar":{"BaseAnimatedBar":["1","BarRendererElement<1>"]},"BarRenderer":{"BaseBarRenderer":["1","BarRendererElement<1>","AnimatedBar<1>"],"BaseCartesianRenderer":["1"],"BaseSeriesRenderer":["1"],"SeriesRenderer":["1"],"LayoutView":[],"BaseBarRenderer.D":"1","BaseBarRenderer.B":"AnimatedBar<1>","BaseBarRenderer.R":"BarRendererElement<1>"},"BaseBarRenderer":{"BaseCartesianRenderer":["1"],"BaseSeriesRenderer":["1"],"SeriesRenderer":["1"],"LayoutView":[]},"_ReversedSeriesIterable":{"Iterable":["1"],"Iterable.E":"1"},"Axis":{"ImmutableAxis":["1"],"LayoutView":[]},"NumericAxis":{"Axis":["num"],"ImmutableAxis":["num"],"LayoutView":[],"Axis.D":"num"},"OrdinalAxis":{"Axis":["String"],"ImmutableAxis":["String"],"LayoutView":[],"Axis.D":"String"},"AxisTicks":{"Tick":["1"],"Comparable":["AxisTicks<1>"]},"GridlineRendererSpec":{"SmallTickRendererSpec":["1"]},"GridlineTickDrawStrategy":{"BaseTickDrawStrategy":["1"]},"SmallTickDrawStrategy":{"BaseTickDrawStrategy":["1"]},"NumericTickProvider":{"BaseTickProvider":["num"],"BaseTickProvider.D":"num"},"OrdinalTickProvider":{"BaseTickProvider":["String"],"BaseTickProvider.D":"String"},"SimpleOrdinalScale":{"OrdinalScale":[]},"DateTimeAxisSpec":{"AxisSpec":["DateTime"]},"NumericAxisSpec":{"AxisSpec":["num"]},"OrdinalAxisSpec":{"AxisSpec":["String"]},"OrdinalTickFormatter":{"SimpleTickFormatterBase":["String"],"SimpleTickFormatterBase.D":"String"},"NumericTickFormatter":{"SimpleTickFormatterBase":["num"],"SimpleTickFormatterBase.D":"num"},"_TimeStepIteratorFactoryImpl":{"Iterable":["DateTime"],"Iterable.E":"DateTime"},"DateTimeAxis":{"Axis":["DateTime"],"ImmutableAxis":["DateTime"],"LayoutView":[],"Axis.D":"DateTime"},"DateTimeScale":{"MutableScale":["DateTime"]},"HourTickFormatter":{"TimeTickFormatter":[]},"TimeRangeTickProvider":{"BaseTickProvider":["DateTime"]},"TimeRangeTickProviderImpl":{"TimeRangeTickProvider":[],"BaseTickProvider":["DateTime"],"BaseTickProvider.D":"DateTime"},"TimeStepIteratorFactory":{"Iterable":["DateTime"]},"TimeTickFormatterImpl":{"TimeTickFormatter":[]},"OrdinalCartesianChart":{"CartesianChart":["String"],"BaseChart0":["String"]},"CartesianChart":{"BaseChart0":["1"]},"BaseCartesianRenderer":{"BaseSeriesRenderer":["1"],"SeriesRenderer":["1"],"LayoutView":[]},"DomainHighlighter0":{"ChartBehavior0":["1"]},"Legend":{"ChartBehavior0":["1"],"LayoutView":[]},"SeriesLegend0":{"Legend":["1"],"ChartBehavior0":["1"],"LayoutView":[]},"LinePointHighlighter0":{"ChartBehavior0":["1"]},"_LinePointLayoutView":{"LayoutView":[]},"SelectNearest0":{"ChartBehavior0":["1"]},"MutableSeries":{"ImmutableSeries":["1"]},"MutableSelectionModel":{"SelectionModel":["1"]},"SeriesRenderer":{"LayoutView":[]},"BaseSeriesRenderer":{"SeriesRenderer":["1"],"LayoutView":[]},"LineRenderer":{"BaseCartesianRenderer":["1"],"BaseSeriesRenderer":["1"],"SeriesRenderer":["1"],"LayoutView":[]},"PointRenderer":{"BaseCartesianRenderer":["1"],"BaseSeriesRenderer":["1"],"SeriesRenderer":["1"],"LayoutView":[]},"TimeSeriesChart":{"CartesianChart":["DateTime"],"BaseChart0":["DateTime"],"BaseChart0.D":"DateTime","CartesianChart.D":"DateTime"},"MaterialBlue":{"Palette":[]},"MaterialRed":{"Palette":[]},"MaterialYellow":{"Palette":[]},"MaterialGreen":{"Palette":[]},"MaterialPurple":{"Palette":[]},"MaterialCyan":{"Palette":[]},"MaterialDeepOrange":{"Palette":[]},"MaterialLime":{"Palette":[]},"MaterialIndigo":{"Palette":[]},"MaterialPink":{"Palette":[]},"MaterialTeal":{"Palette":[]},"AttributeKey":{"TypedKey":["1"]},"BarChart":{"BaseChart":["String"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"BaseChart.D":"String"},"BaseChart":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"BaseChartState":{"State":["BaseChart<1>"]},"DomainHighlighter":{"ChartBehavior":["1"]},"SeriesLegend":{"ChartBehavior":["1"]},"_FlutterSeriesLegend":{"SeriesLegend0":["1"],"Legend":["1"],"ChartBehavior0":["1"],"LayoutView":[],"BuildableBehavior":["ChartBehavior0<@>"]},"LinePointHighlighter":{"ChartBehavior":["1"]},"SelectNearest":{"ChartBehavior":["1"]},"CartesianChart0":{"BaseChart":["1"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ChartContainerRenderObject":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"ChartContainer":{"CustomPaint":[],"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ChartContainerCustomPaint":{"Listenable":[]},"_SymbolCustomPaint":{"Listenable":[]},"TextElement":{"TextElement2":[]},"TimeSeriesChart0":{"BaseChart":["DateTime"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"BaseChart.D":"DateTime"},"CanonicalizedMap":{"Map":["2","3"]},"UnorderedIterableEquality":{"_UnorderedEquality":["1","Iterable<1>"],"_UnorderedEquality.E":"1"},"SetEquality":{"_UnorderedEquality":["1","Set<1>"],"_UnorderedEquality.E":"1"},"Selector":{"TreeNode":[]},"SimpleSelectorSequence":{"TreeNode":[]},"Expression":{"TreeNode":[]},"Identifier":{"TreeNode":[]},"Wildcard":{"TreeNode":[]},"ThisOperator":{"TreeNode":[]},"Negation":{"TreeNode":[]},"SelectorGroup":{"TreeNode":[]},"SimpleSelector":{"TreeNode":[]},"ElementSelector":{"SimpleSelector":[],"TreeNode":[]},"NamespaceSelector":{"SimpleSelector":[],"TreeNode":[]},"AttributeSelector":{"SimpleSelector":[],"TreeNode":[]},"IdSelector":{"SimpleSelector":[],"TreeNode":[]},"ClassSelector":{"SimpleSelector":[],"TreeNode":[]},"PseudoClassSelector":{"SimpleSelector":[],"TreeNode":[]},"PseudoElementSelector":{"SimpleSelector":[],"TreeNode":[]},"PseudoClassFunctionSelector":{"SimpleSelector":[],"TreeNode":[]},"PseudoElementFunctionSelector":{"SimpleSelector":[],"TreeNode":[]},"SelectorExpression":{"TreeNode":[]},"NegationSelector":{"SimpleSelector":[],"TreeNode":[]},"OperatorPlus":{"Expression":[],"TreeNode":[]},"OperatorMinus":{"Expression":[],"TreeNode":[]},"LiteralTerm":{"Expression":[],"TreeNode":[]},"NumberTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"UnitTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"LengthTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"PercentageTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"EmTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"ExTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"AngleTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"TimeTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"FreqTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"FractionTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"ResolutionTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"ChTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"RemTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"LineHeightTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"ViewportTerm":{"LiteralTerm":[],"Expression":[],"TreeNode":[]},"DropTarget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropTargetState":{"State":["DropTarget"]},"DropEnterEvent":{"DropEvent":[]},"DropExitEvent":{"DropEvent":[]},"DropUpdateEvent":{"DropEvent":[]},"DropDoneEvent":{"DropEvent":[]},"Int32":{"Comparable":["Object"]},"Int64":{"Comparable":["Object"]},"Animation0":{"Listenable":[]},"AnimationController":{"Animation0":["double"],"Listenable":[]},"_AlwaysCompleteAnimation":{"Animation0":["double"],"Listenable":[]},"_AlwaysDismissedAnimation":{"Animation0":["double"],"Listenable":[]},"AlwaysStoppedAnimation":{"Animation0":["1"],"Listenable":[]},"ProxyAnimation":{"Animation0":["double"],"Listenable":[]},"ReverseAnimation":{"Animation0":["double"],"Listenable":[]},"CurvedAnimation":{"Animation0":["double"],"Listenable":[]},"TrainHoppingAnimation":{"Animation0":["double"],"Listenable":[]},"CompoundAnimation":{"Animation0":["1"],"Listenable":[]},"AnimationMin":{"Animation0":["1"],"Listenable":[]},"_Linear":{"Curve":[]},"SawTooth":{"Curve":[]},"Interval":{"Curve":[]},"Threshold":{"Curve":[]},"Cubic":{"Curve":[]},"ThreePointCubic":{"Curve":[]},"FlippedCurve":{"Curve":[]},"_DecelerateCurve":{"Curve":[]},"ElasticOutCurve":{"Curve":[]},"Tween":{"Animatable":["1"],"Animatable.T":"1","Tween.T":"1"},"ColorTween":{"Tween":["Color?"],"Animatable":["Color?"],"Animatable.T":"Color?","Tween.T":"Color?"},"_AnimatedEvaluation":{"Animation0":["1"],"Listenable":[]},"_ChainedEvaluation":{"Animatable":["1"],"Animatable.T":"1"},"ReverseTween":{"Tween":["1"],"Animatable":["1"],"Animatable.T":"1","Tween.T":"1"},"SizeTween":{"Tween":["Size?"],"Animatable":["Size?"],"Animatable.T":"Size?","Tween.T":"Size?"},"RectTween":{"Tween":["Rect?"],"Animatable":["Rect?"],"Animatable.T":"Rect?","Tween.T":"Rect?"},"IntTween":{"Tween":["int"],"Animatable":["int"],"Animatable.T":"int","Tween.T":"int"},"ConstantTween":{"Tween":["1"],"Animatable":["1"],"Animatable.T":"1","Tween.T":"1"},"CurveTween":{"Animatable":["double"],"Animatable.T":"double"},"TweenSequence":{"Animatable":["1"],"Animatable.T":"1"},"CupertinoActivityIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoActivityIndicatorState":{"State":["CupertinoActivityIndicator"]},"_CupertinoActivityIndicatorPainter":{"Listenable":[]},"CupertinoButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoButtonState":{"State":["CupertinoButton"]},"CupertinoCheckbox":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoCheckboxState":{"State":["CupertinoCheckbox"]},"_CheckboxPainter0":{"Listenable":[]},"CupertinoDynamicColor":{"Color":[]},"_CupertinoDesktopTextSelectionHandleControls":{"TextSelectionHandleControls":[]},"CupertinoDesktopTextSelectionToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CupertinoDesktopTextSelectionToolbarButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoDesktopTextSelectionToolbarButtonState":{"State":["CupertinoDesktopTextSelectionToolbarButton"]},"CupertinoIconThemeData":{"IconThemeData":[]},"_CupertinoLocalizationsDelegate":{"LocalizationsDelegate":["CupertinoLocalizations"],"LocalizationsDelegate.T":"CupertinoLocalizations"},"DefaultCupertinoLocalizations":{"CupertinoLocalizations":[]},"CupertinoTextMagnifier":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoTextMagnifierState":{"State":["CupertinoTextMagnifier"]},"CupertinoMagnifier":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CupertinoRadio":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoRadioState":{"State":["CupertinoRadio<1>"]},"_RadioPainter0":{"Listenable":[]},"_CupertinoBackGestureDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"CupertinoPageTransition":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoBackGestureDetectorState":{"State":["_CupertinoBackGestureDetector<1>"]},"_CupertinoEdgeShadowDecoration":{"Decoration":[]},"_CupertinoEdgeShadowPainter":{"BoxPainter":[]},"CupertinoScrollbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoScrollbarState":{"RawScrollbarState":["CupertinoScrollbar"],"State":["CupertinoScrollbar"]},"CupertinoSwitch":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoSwitchState":{"State":["CupertinoSwitch"]},"_CupertinoSwitchRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderCupertinoSwitch":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_TextSelectionHandlePainter0":{"Listenable":[]},"CupertinoTextSelectionHandleControls":{"TextSelectionHandleControls":[]},"_CupertinoTextSelectionToolbarContent":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"CupertinoTextSelectionToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoTextSelectionToolbarShape":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderCupertinoTextSelectionToolbarShape":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_CupertinoTextSelectionToolbarContentState":{"State":["_CupertinoTextSelectionToolbarContent"]},"_LeftCupertinoChevronPainter":{"Listenable":[]},"_RightCupertinoChevronPainter":{"Listenable":[]},"_CupertinoChevronPainter":{"Listenable":[]},"_CupertinoTextSelectionToolbarItems":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoTextSelectionToolbarItemsElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_RenderCupertinoTextSelectionToolbarItems":{"RenderBoxContainerDefaultsMixin":["RenderBox","ToolbarItemsParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","ToolbarItemsParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"ToolbarItemsParentData","RenderBoxContainerDefaultsMixin.1":"ToolbarItemsParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"_NullElement0":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_NullWidget":{"Widget":[],"DiagnosticableTree":[]},"CupertinoTextSelectionToolbarButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoTextSelectionToolbarButtonState":{"State":["CupertinoTextSelectionToolbarButton"]},"_LiveTextIconPainter":{"Listenable":[]},"_InheritedCupertinoTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"CupertinoTheme":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ToggleablePainter":{"Listenable":[]},"ErrorDescription":{"DiagnosticsProperty":["List"],"DiagnosticsNode":[]},"_ErrorDiagnostic":{"DiagnosticsProperty":["List"],"DiagnosticsNode":[]},"ErrorSummary":{"DiagnosticsProperty":["List"],"DiagnosticsNode":[]},"ErrorHint":{"DiagnosticsProperty":["List"],"DiagnosticsNode":[]},"ErrorSpacer":{"DiagnosticsProperty":["~"],"DiagnosticsNode":[]},"FlutterError":{"DiagnosticableTree":[],"AssertionError":[],"Error":[]},"DiagnosticsStackTrace":{"DiagnosticsNode":[]},"_FlutterErrorDetailsNode":{"DiagnosticableNode":["FlutterErrorDetails"],"DiagnosticsNode":[]},"ChangeNotifier":{"Listenable":[]},"ValueNotifier":{"Listenable":[]},"_MergingListenable":{"Listenable":[]},"DiagnosticsProperty":{"DiagnosticsNode":[]},"DiagnosticableNode":{"DiagnosticsNode":[]},"DiagnosticableTreeNode":{"DiagnosticableNode":["DiagnosticableTree"],"DiagnosticsNode":[]},"DiagnosticsBlock":{"DiagnosticsNode":[]},"LocalKey":{"Key":[]},"ValueKey":{"LocalKey":[],"Key":[],"ValueKey.T":"1"},"UniqueKey":{"LocalKey":[],"Key":[]},"LicenseEntryWithLineBreaks":{"LicenseEntry":[]},"ObserverList":{"Iterable":["1"],"Iterable.E":"1"},"HashedObserverList":{"Iterable":["1"],"Iterable.E":"1"},"SynchronousFuture":{"Future":["1"]},"GestureBinding":{"HitTestTarget":[]},"FlutterErrorDetailsForPointerEventDispatcher":{"FlutterErrorDetails":[]},"_PointerEventDescription":{"PointerEvent":[]},"PointerHoverEvent":{"PointerEvent":[]},"PointerEnterEvent":{"PointerEvent":[]},"PointerExitEvent":{"PointerEvent":[]},"PointerDownEvent":{"PointerEvent":[]},"PointerMoveEvent":{"PointerEvent":[]},"PointerUpEvent":{"PointerEvent":[]},"PointerSignalEvent":{"PointerEvent":[]},"PointerPanZoomStartEvent":{"PointerEvent":[]},"_AbstractPointerEvent":{"PointerEvent":[]},"_TransformedPointerEvent":{"PointerEvent":[]},"PointerAddedEvent":{"PointerEvent":[]},"_TransformedPointerAddedEvent":{"PointerAddedEvent":[],"PointerEvent":[]},"PointerRemovedEvent":{"PointerEvent":[]},"_TransformedPointerRemovedEvent":{"PointerRemovedEvent":[],"PointerEvent":[]},"_TransformedPointerHoverEvent":{"PointerHoverEvent":[],"PointerEvent":[]},"_TransformedPointerEnterEvent":{"PointerEnterEvent":[],"PointerEvent":[]},"_TransformedPointerExitEvent":{"PointerExitEvent":[],"PointerEvent":[]},"_TransformedPointerDownEvent":{"PointerDownEvent":[],"PointerEvent":[]},"_TransformedPointerMoveEvent":{"PointerMoveEvent":[],"PointerEvent":[]},"_TransformedPointerUpEvent":{"PointerUpEvent":[],"PointerEvent":[]},"PointerScrollEvent":{"PointerSignalEvent":[],"PointerEvent":[]},"_TransformedPointerScrollEvent":{"PointerScrollEvent":[],"PointerSignalEvent":[],"PointerEvent":[]},"PointerScrollInertiaCancelEvent":{"PointerSignalEvent":[],"PointerEvent":[]},"_TransformedPointerScrollInertiaCancelEvent":{"PointerScrollInertiaCancelEvent":[],"PointerSignalEvent":[],"PointerEvent":[]},"PointerScaleEvent":{"PointerSignalEvent":[],"PointerEvent":[]},"_TransformedPointerScaleEvent":{"PointerScaleEvent":[],"PointerSignalEvent":[],"PointerEvent":[]},"_TransformedPointerPanZoomStartEvent":{"PointerPanZoomStartEvent":[],"PointerEvent":[]},"PointerPanZoomUpdateEvent":{"PointerEvent":[]},"_TransformedPointerPanZoomUpdateEvent":{"PointerPanZoomUpdateEvent":[],"PointerEvent":[]},"PointerPanZoomEndEvent":{"PointerEvent":[]},"_TransformedPointerPanZoomEndEvent":{"PointerPanZoomEndEvent":[],"PointerEvent":[]},"PointerCancelEvent":{"PointerEvent":[]},"_TransformedPointerCancelEvent":{"PointerCancelEvent":[],"PointerEvent":[]},"ForcePressGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_MatrixTransformPart":{"_TransformPart":[]},"_OffsetTransformPart":{"_TransformPart":[]},"LongPressGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"VerticalDragGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"HorizontalDragGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"PanGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"DragGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"MultiDragGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_ImmediatePointerState":{"MultiDragPointerState":[]},"ImmediateMultiDragGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_DelayedPointerState":{"MultiDragPointerState":[]},"DelayedMultiDragGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"DoubleTapGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"GestureRecognizer":{"DiagnosticableTree":[],"GestureArenaMember":[]},"OneSequenceGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"PrimaryPointerGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"ScaleGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"TapGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"BaseTapGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"TapAndHorizontalDragGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"TapAndPanGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"BaseTapAndDragGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_CombiningGestureArenaMember":{"GestureArenaMember":[]},"_CombiningGestureArenaEntry":{"GestureArenaEntry":[]},"IOSScrollViewFlingVelocityTracker":{"VelocityTracker":[]},"MacOSScrollViewFlingVelocityTracker":{"VelocityTracker":[]},"LicensePage":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PackagesView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PackageLicensePage":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MasterDetailFlow":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MasterDetailFlowState":{"State":["_MasterDetailFlow"]},"_MasterDetailScaffold":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MasterDetailScaffoldState":{"State":["_MasterDetailScaffold"]},"_LicensePageState":{"State":["LicensePage"]},"_AboutProgram":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PackagesViewState":{"State":["_PackagesView"]},"_PackageListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PackageLicensePageState":{"State":["_PackageLicensePage"]},"_PackageLicensePageTitle":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MasterPage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DetailView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ActionButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ActionIcon":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BackButtonIcon":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BackButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerButtonIcon":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EndDrawerButtonIcon":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EndDrawerButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ActionIconTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"AdaptiveTextSelectionToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialApp":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialAppState":{"State":["MaterialApp"]},"AppBar":{"StatefulWidget":[],"PreferredSizeWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverAppBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PreferredAppBarSize":{"Size":[]},"_AppBarState":{"State":["AppBar"]},"_SliverAppBarState":{"State":["SliverAppBar"]},"_AppBarTitleBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderAppBarTitleBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"MaterialRectArcTween":{"Tween":["Rect?"],"Animatable":["Rect?"],"Animatable.T":"Rect?","Tween.T":"Rect?"},"MaterialPointArcTween":{"Tween":["Offset"],"Animatable":["Offset"],"Animatable.T":"Offset","Tween.T":"Offset"},"MaterialBannerTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"BottomAppBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BottomAppBarState":{"State":["BottomAppBar"]},"_BottomAppBarClipper":{"CustomClipper":["Path"],"Listenable":[]},"BottomSheet":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BottomSheetState":{"State":["BottomSheet"]},"_DragHandle":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BottomSheetGestureDetector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RawMaterialButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RawMaterialButtonState":{"State":["RawMaterialButton"]},"_InputPadding":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInputPadding":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_LerpSides":{"MaterialStateProperty":["BorderSide?"]},"ButtonStyleButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ButtonStyleState":{"State":["ButtonStyleButton"]},"_MouseCursor":{"MouseCursor0":[],"MaterialStateProperty":["MouseCursor0"]},"_InputPadding0":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInputPadding0":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"ButtonTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"CalendarDatePicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DatePickerModeToggleButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MonthPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FocusedDate":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DayPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_Day":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"YearPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CalendarDatePickerState":{"State":["CalendarDatePicker"]},"_DatePickerModeToggleButtonState":{"State":["_DatePickerModeToggleButton"]},"_MonthPickerState":{"State":["_MonthPicker"]},"_DayPickerState":{"State":["_DayPicker"]},"_DayState":{"State":["_Day"]},"_YearPickerState":{"State":["YearPicker"]},"Card":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Checkbox":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CheckboxState":{"State":["Checkbox"]},"_CheckboxPainter":{"Listenable":[]},"CheckboxListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CheckboxTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialColor":{"ColorSwatch":["int"],"Color":[],"ColorSwatch.T":"int"},"MaterialAccentColor":{"ColorSwatch":["int"],"Color":[],"ColorSwatch.T":"int"},"_SortArrow":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DataTable":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TableRowInkWell":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SortArrowState":{"State":["_SortArrow"]},"_NullTableColumnWidth":{"TableColumnWidth":[]},"_NullWidget0":{"Widget":[],"DiagnosticableTree":[]},"DataTableSource":{"Listenable":[]},"DataTableTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DatePickerDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DatePickerDialogState":{"State":["DatePickerDialog"]},"_RestorableDatePickerEntryMode":{"RestorableProperty":["DatePickerEntryMode"],"Listenable":[],"RestorableValue.T":"DatePickerEntryMode"},"_RestorableAutovalidateMode":{"RestorableProperty":["AutovalidateMode"],"Listenable":[],"RestorableValue.T":"AutovalidateMode"},"_DatePickerHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DatePickerTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DatePickerDefaultsM2":{"DatePickerThemeData":[]},"_DatePickerDefaultsM3":{"DatePickerThemeData":[]},"_DesktopTextSelectionHandleControls":{"TextSelectionHandleControls":[]},"DesktopTextSelectionToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesktopTextSelectionToolbarButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AlertDialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SimpleDialogOption":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SimpleDialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Dialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DialogRoute":{"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"],"ModalRoute.T":"1"},"Divider":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VerticalDivider":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DividerTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DrawerControllerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerController":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerControllerState":{"State":["DrawerController"]},"Drawer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownMenuItemButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownMenu":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownRoutePage":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MenuItem":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"DropdownMenuItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DropdownButtonHideUnderline":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DropdownButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownMenuPainter":{"Listenable":[]},"_DropdownMenuItemButtonState":{"State":["_DropdownMenuItemButton<1>"]},"_DropdownMenuState":{"State":["_DropdownMenu<1>"]},"_DropdownRoute":{"ModalRoute":["_DropdownRouteResult<1>"],"TransitionRoute":["_DropdownRouteResult<1>"],"Route":["_DropdownRouteResult<1>"],"ModalRoute.T":"_DropdownRouteResult<1>"},"_DropdownRoutePageState":{"State":["_DropdownRoutePage<1>"]},"_RenderMenuItem":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_DropdownMenuItemContainer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropdownButtonState":{"State":["DropdownButton<1>"],"WidgetsBindingObserver":[]},"DropdownButtonFormField":{"FormField":["1"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"FormField.T":"1"},"_DropdownButtonFormFieldState":{"FormFieldState":["1"],"State":["FormField<1>"]},"ElevatedButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ElevatedButtonDefaultColor":{"MaterialStateProperty":["Color?"]},"_ElevatedButtonDefaultOverlay":{"MaterialStateProperty":["Color?"]},"_ElevatedButtonDefaultElevation":{"MaterialStateProperty":["double"]},"_ElevatedButtonDefaultMouseCursor":{"MaterialStateProperty":["MouseCursor0?"]},"_ElevatedButtonDefaultsM3":{"ButtonStyle":[]},"ElevatedButtonTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpandIcon":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpandIconState":{"State":["ExpandIcon"]},"ExpansionPanelRadio":{"ExpansionPanel":[]},"ExpansionPanelList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SaltedKey":{"LocalKey":[],"Key":[]},"_ExpansionPanelListState":{"State":["ExpansionPanelList"]},"FlexibleSpaceBarSettings":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"FloatingActionButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EffectiveMouseCursor":{"MouseCursor0":[],"MaterialStateProperty":["MouseCursor0"]},"_ChildOverflowBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderChildOverflowBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_AnimationSwap":{"Animation0":["1"],"Listenable":[]},"IconButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectableIconButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectableIconButtonState":{"State":["_SelectableIconButton"]},"_IconButtonM3":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_IconButtonDefaultForeground":{"MaterialStateProperty":["Color?"]},"_IconButtonDefaultOverlay":{"MaterialStateProperty":["Color?"]},"_IconButtonDefaultMouseCursor":{"MaterialStateProperty":["MouseCursor0?"]},"_IconButtonDefaultsM3":{"ButtonStyle":[]},"_FilledIconButtonDefaultsM3":{"ButtonStyle":[]},"_FilledTonalIconButtonDefaultsM3":{"ButtonStyle":[]},"_OutlinedIconButtonDefaultsM3":{"ButtonStyle":[]},"IconButtonTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Ink":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InkState":{"State":["Ink"]},"InkDecoration":{"InkFeature":[]},"InkHighlight":{"InteractiveInkFeature":[],"InkFeature":[]},"InkRipple":{"InteractiveInkFeature":[],"InkFeature":[]},"InkSplash":{"InteractiveInkFeature":[],"InkFeature":[]},"InteractiveInkFeature":{"InkFeature":[]},"_ParentInkResponseProvider":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InkResponseStateWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InkWell":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InkResponse":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InkResponseState":{"State":["_InkResponseStateWidget"],"_ParentInkResponseState":[]},"InputBorder":{"ShapeBorder":[]},"_NoInputBorder":{"InputBorder":[],"ShapeBorder":[]},"UnderlineInputBorder":{"InputBorder":[],"ShapeBorder":[]},"OutlineInputBorder":{"InputBorder":[],"ShapeBorder":[]},"InputDatePickerFormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InputDatePickerFormFieldState":{"State":["InputDatePickerFormField"]},"_BorderContainer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HelperError":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InputDecorator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InputBorderGap":{"Listenable":[]},"_InputBorderTween":{"Tween":["InputBorder"],"Animatable":["InputBorder"],"Animatable.T":"InputBorder","Tween.T":"InputBorder"},"_InputBorderPainter":{"Listenable":[]},"_BorderContainerState":{"State":["_BorderContainer"]},"_Shaker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HelperErrorState":{"State":["_HelperError"]},"_RenderDecoration":{"RenderBox":[],"SlottedContainerRenderObjectMixin":["_DecorationSlot","RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"SlottedContainerRenderObjectMixin.0":"_DecorationSlot","SlottedContainerRenderObjectMixin.1":"RenderBox"},"_Decorator":{"SlottedMultiChildRenderObjectWidgetMixin":["_DecorationSlot","RenderBox"],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[],"SlottedMultiChildRenderObjectWidgetMixin.0":"_DecorationSlot","SlottedMultiChildRenderObjectWidgetMixin.1":"RenderBox"},"_InputDecoratorState":{"State":["InputDecorator"]},"ListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_IndividualOverrides":{"MaterialStateProperty":["Color?"]},"_ListTile":{"SlottedMultiChildRenderObjectWidgetMixin":["_ListTileSlot","RenderBox"],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[],"SlottedMultiChildRenderObjectWidgetMixin.0":"_ListTileSlot","SlottedMultiChildRenderObjectWidgetMixin.1":"RenderBox"},"_RenderListTile":{"RenderBox":[],"SlottedContainerRenderObjectMixin":["_ListTileSlot","RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"SlottedContainerRenderObjectMixin.0":"_ListTileSlot","SlottedContainerRenderObjectMixin.1":"RenderBox"},"ListTileTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextMagnifier":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextMagnifierState":{"State":["TextMagnifier"]},"Magnifier":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Material":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInkFeatures":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"ShapeBorderTween":{"Tween":["ShapeBorder?"],"Animatable":["ShapeBorder?"],"Animatable.T":"ShapeBorder?","Tween.T":"ShapeBorder?"},"_MaterialInterior":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialState":{"State":["Material"]},"_InkFeatures":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialInteriorState":{"State":["_MaterialInterior"]},"_ShapeBorderPaint":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ShapeBorderPainter":{"Listenable":[]},"_MaterialLocalizationsDelegate":{"LocalizationsDelegate":["MaterialLocalizations"],"LocalizationsDelegate.T":"MaterialLocalizations"},"DefaultMaterialLocalizations":{"MaterialLocalizations":[]},"MaterialStateColor":{"Color":[],"MaterialStateProperty":["Color"]},"_MaterialStateColor":{"Color":[],"MaterialStateProperty":["Color"]},"MaterialStateMouseCursor":{"MouseCursor0":[],"MaterialStateProperty":["MouseCursor0"]},"_EnabledAndDisabledMouseCursor":{"MouseCursor0":[],"MaterialStateProperty":["MouseCursor0"]},"MaterialStateBorderSide":{"BorderSide":[],"MaterialStateProperty":["BorderSide?"]},"_MaterialStateBorderSide":{"BorderSide":[],"MaterialStateProperty":["BorderSide?"]},"MaterialStateTextStyle":{"TextStyle":[],"MaterialStateProperty":["TextStyle"]},"_MaterialStateTextStyle":{"TextStyle":[],"MaterialStateProperty":["TextStyle"]},"_LerpProperties":{"MaterialStateProperty":["1?"]},"_MaterialStatePropertyWith":{"MaterialStateProperty":["1"]},"MaterialStatePropertyAll":{"MaterialStateProperty":["1"]},"MaterialStatesController":{"ValueNotifier":["Set"],"Listenable":[]},"_LerpSides1":{"MaterialStateProperty":["BorderSide?"]},"MergeableMaterial":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialSlice":{"MergeableMaterialItem":[]},"MaterialGap":{"MergeableMaterialItem":[]},"_MergeableMaterialState":{"State":["MergeableMaterial"]},"_MergeableMaterialSliceKey":{"GlobalKey":["State"],"Key":[],"GlobalKey.T":"State"},"_MergeableMaterialListBody":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderMergeableMaterialListBody":{"RenderBoxContainerDefaultsMixin":["RenderBox","ListBodyParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","ListBodyParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"ListBodyParentData","RenderBoxContainerDefaultsMixin.1":"ListBodyParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"NoSplash":{"InteractiveInkFeature":[],"InkFeature":[]},"OutlinedButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OutlinedButtonDefaultColor":{"MaterialStateProperty":["Color?"]},"_OutlinedButtonDefaultOverlay":{"MaterialStateProperty":["Color?"]},"_OutlinedButtonDefaultMouseCursor":{"MaterialStateProperty":["MouseCursor0?"]},"_OutlinedButtonDefaultsM3":{"ButtonStyle":[]},"OutlinedButtonTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialPageRoute":{"MaterialRouteTransitionMixin":["1"],"PageRoute":["1"],"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"],"ModalRoute.T":"1"},"_ZoomEnterTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ZoomExitTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FadeUpwardsPageTransition":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ZoomPageTransition":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ZoomEnterTransitionState":{"State":["_ZoomEnterTransition"]},"_ZoomExitTransitionState":{"State":["_ZoomExitTransition"]},"ZoomPageTransitionsBuilder":{"PageTransitionsBuilder":[]},"CupertinoPageTransitionsBuilder":{"PageTransitionsBuilder":[]},"_ZoomEnterTransitionPainter":{"Listenable":[]},"_ZoomExitTransitionPainter":{"Listenable":[]},"PopupMenuEntry":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PopupMenuDivider":{"PopupMenuEntry":["0&"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PopupMenuItem":{"PopupMenuEntry":["1"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PopupMenuButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PopupMenuDividerState":{"State":["PopupMenuDivider"]},"_MenuItem0":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderMenuItem0":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"PopupMenuItemState":{"State":["2"]},"_PopupMenu":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PopupMenuRoute":{"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"],"ModalRoute.T":"1"},"PopupMenuButtonState":{"State":["PopupMenuButton<1>"]},"_EffectiveMouseCursor0":{"MouseCursor0":[],"MaterialStateProperty":["MouseCursor0"]},"PopupMenuTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"LinearProgressIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"CircularProgressIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProgressIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LinearProgressIndicatorPainter":{"Listenable":[]},"_LinearProgressIndicatorState":{"State":["LinearProgressIndicator"]},"_CircularProgressIndicatorPainter":{"Listenable":[]},"_CircularProgressIndicatorState":{"State":["CircularProgressIndicator"]},"_RefreshProgressIndicatorPainter":{"Listenable":[]},"RefreshProgressIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RefreshProgressIndicatorState":{"State":["CircularProgressIndicator"]},"ProgressIndicatorTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Radio":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RadioState":{"State":["Radio<1>"]},"_RadioPainter":{"Listenable":[]},"RadioListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RadioTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"RefreshIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RefreshIndicatorState":{"State":["RefreshIndicator"]},"ReorderableListView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ReorderableListViewState":{"State":["ReorderableListView"]},"_ReorderableListViewChildGlobalKey":{"GlobalObjectKey":["State"],"GlobalKey":["State"],"Key":[],"GlobalKey.T":"State","GlobalObjectKey.T":"State"},"ScaffoldMessenger":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScaffoldMessengerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FloatingActionButtonTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"Scaffold":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScaffoldState":{"State":["Scaffold"]},"_StandardBottomSheet":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StandardBottomSheetState":{"State":["_StandardBottomSheet"]},"_ScaffoldScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScaffoldMessengerState":{"State":["ScaffoldMessenger"]},"_ScaffoldGeometryNotifier":{"Listenable":[]},"_BodyBoxConstraints":{"BoxConstraints":[],"Constraints":[]},"_BodyBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FloatingActionButtonTransitionState":{"State":["_FloatingActionButtonTransition"]},"_DismissDrawerAction":{"Action":["DismissIntent"],"Action.T":"DismissIntent"},"PersistentBottomSheetController":{"ScaffoldFeatureController":["_StandardBottomSheet","1"]},"_MaterialScrollbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"Scrollbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialScrollbarState":{"RawScrollbarState":["_MaterialScrollbar"],"State":["_MaterialScrollbar"]},"ScrollbarTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LerpSides0":{"MaterialStateProperty":["BorderSide?"]},"SelectableText":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextSpanEditingController":{"TextEditingController":[],"ValueNotifier":["TextEditingValue"],"Listenable":[]},"_SelectableTextState":{"State":["SelectableText"]},"SnackBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialSwitch":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"Switch":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialSwitchState":{"State":["_MaterialSwitch"]},"_SwitchPainter":{"Listenable":[]},"SwitchListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SwitchTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TabControllerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DefaultTabController":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TabController":{"Listenable":[]},"_DefaultTabControllerState":{"State":["DefaultTabController"]},"UnderlineTabIndicator":{"Decoration":[]},"_UnderlinePainter0":{"BoxPainter":[]},"Tab":{"StatelessWidget":[],"PreferredSizeWidget":[],"Widget":[],"DiagnosticableTree":[]},"TabBar":{"StatefulWidget":[],"PreferredSizeWidget":[],"Widget":[],"DiagnosticableTree":[]},"TabBarView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TabStyle":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TabLabelBarRenderer":{"RenderBoxContainerDefaultsMixin":["RenderBox","FlexParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","FlexParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"FlexParentData","RenderBoxContainerDefaultsMixin.1":"FlexParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"_TabLabelBar":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DividerPainter":{"Listenable":[]},"_IndicatorPainter":{"Listenable":[]},"_ChangeAnimation":{"Animation0":["double"],"Listenable":[]},"_DragAnimation":{"Animation0":["double"],"Listenable":[]},"_TabBarScrollPosition":{"ScrollPosition":[],"ViewportOffset":[],"Listenable":[],"ScrollMetrics":[]},"_TabBarScrollController":{"ScrollController":[],"Listenable":[]},"_TabBarState":{"State":["TabBar"]},"_TabBarViewState":{"State":["TabBarView"]},"TextButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextButtonDefaultColor":{"MaterialStateProperty":["Color?"]},"_TextButtonDefaultOverlay":{"MaterialStateProperty":["Color?"]},"_TextButtonDefaultMouseCursor":{"MaterialStateProperty":["MouseCursor0?"]},"_TextButtonDefaultsM3":{"ButtonStyle":[]},"TextButtonTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextFieldState":{"State":["TextField"],"AutofillClient":[]},"TextFormField":{"FormField":["String"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"FormField.T":"String"},"_TextFormFieldState":{"FormFieldState":["String"],"State":["FormField"]},"MaterialTextSelectionHandleControls":{"TextSelectionHandleControls":[]},"_TextSelectionHandlePainter":{"Listenable":[]},"TextSelectionTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextSelectionToolbarOverflowable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextSelectionToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextSelectionToolbarOverflowableState":{"State":["_TextSelectionToolbarOverflowable"]},"_TextSelectionToolbarTrailingEdgeAlign":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextSelectionToolbarTrailingEdgeAlignRenderBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_TextSelectionToolbarItemsLayout":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextSelectionToolbarItemsLayoutElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_RenderTextSelectionToolbarItemsLayout":{"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","ToolbarItemsParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"ToolbarItemsParentData","ContainerRenderObjectMixin.0":"RenderBox"},"_TextSelectionToolbarContainer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextSelectionToolbarOverflowButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextSelectionToolbarTextButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Theme":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InheritedTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ThemeDataTween":{"Tween":["ThemeData"],"Animatable":["ThemeData"],"Animatable.T":"ThemeData","Tween.T":"ThemeData"},"AnimatedTheme":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedThemeState":{"State":["AnimatedTheme"]},"RestorableTimeOfDay":{"RestorableProperty":["TimeOfDay"],"Listenable":[],"RestorableValue.T":"TimeOfDay"},"_TimePickerModel":{"InheritedModel":["_TimePickerAspect"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedModel.T":"_TimePickerAspect"},"_Dial":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TimePickerInput":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HourMinuteTextField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TimePickerDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TimePicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TimePickerHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HourMinuteControl":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HourControl":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StringFragment":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MinuteControl":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DayPeriodControl":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AmPmButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DayPeriodInputPadding":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInputPadding2":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_DialPainter":{"Listenable":[]},"_DialState":{"State":["_Dial"]},"_TimePickerInputState":{"State":["_TimePickerInput"]},"_HourTextField":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MinuteTextField":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HourMinuteTextFieldState":{"State":["_HourMinuteTextField"]},"_TimePickerDialogState":{"State":["TimePickerDialog"]},"_TimePickerState0":{"State":["_TimePicker"]},"TimePickerTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ToggleButtons":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ResolveFillColor":{"MaterialStateProperty":["Color?"]},"_DefaultFillColor":{"MaterialStateProperty":["Color"]},"_ToggleButtonDefaultOverlay":{"MaterialStateProperty":["Color?"]},"_SelectToggleButton":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectToggleButtonRenderObject":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_InputPadding1":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderInputPadding1":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"ToggleButtonsTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ToggleablePainter0":{"Listenable":[]},"Tooltip":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TooltipState":{"State":["Tooltip"]},"_ExclusiveMouseRegion":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderExclusiveMouseRegion":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[],"HitTestTarget":[]},"_TooltipOverlay":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TooltipTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"NetworkImage":{"ImageProvider":["NetworkImage0"],"ImageProvider.T":"NetworkImage0"},"Alignment":{"AlignmentGeometry":[]},"AlignmentDirectional":{"AlignmentGeometry":[]},"_MixedAlignment":{"AlignmentGeometry":[]},"PaintingBinding":{"SchedulerBinding":[]},"_SystemFontsNotifier":{"Listenable":[]},"OutlinedBorder":{"ShapeBorder":[]},"_CompoundBorder":{"ShapeBorder":[]},"BoxBorder":{"ShapeBorder":[]},"Border":{"ShapeBorder":[]},"BorderDirectional":{"ShapeBorder":[]},"BoxDecoration":{"Decoration":[]},"_BoxDecorationPainter":{"BoxPainter":[]},"BoxShadow":{"Shadow":[]},"CircleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"ColorSwatch":{"Color":[]},"EdgeInsets":{"EdgeInsetsGeometry":[]},"EdgeInsetsDirectional":{"EdgeInsetsGeometry":[]},"_MixedEdgeInsets":{"EdgeInsetsGeometry":[]},"FractionalOffset":{"AlignmentGeometry":[]},"NetworkImage0":{"ImageProvider":["NetworkImage0"]},"MemoryImage":{"ImageProvider":["MemoryImage"],"ImageProvider.T":"MemoryImage"},"AssetBundleImageProvider":{"ImageProvider":["AssetBundleImageKey"]},"NetworkImageLoadException":{"Exception":[]},"AssetImage":{"ImageProvider":["AssetBundleImageKey"],"ImageProvider.T":"AssetBundleImageKey"},"InlineSpan":{"DiagnosticableTree":[]},"PlaceholderSpan0":{"InlineSpan":[],"DiagnosticableTree":[]},"RoundedRectangleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"_RoundedRectangleToCircleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"ShapeDecoration":{"Decoration":[]},"_ShapeDecorationPainter":{"BoxPainter":[]},"StadiumBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"_StadiumToCircleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"_StadiumToRoundedRectangleBorder":{"OutlinedBorder":[],"ShapeBorder":[]},"WordBoundary":{"TextBoundary":[]},"_UntilTextBoundary":{"TextBoundary":[]},"_LinearTextScaler":{"TextScaler":[]},"TextSpan":{"InlineSpan":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[],"HitTestTarget":[]},"RenderAnimatedSize":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RendererBinding":{"SchedulerBinding":[],"HitTestTarget":[]},"_BindingPipelineManifold":{"Listenable":[]},"_DefaultRootPipelineOwner":{"PipelineOwner":[],"DiagnosticableTree":[]},"_ReusableRenderView":{"RenderView":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"BoxConstraints":{"Constraints":[]},"BoxHitTestResult":{"HitTestResult":[]},"ContainerBoxParentData":{"BoxParentData":[],"ContainerParentDataMixin":["1"],"ParentData":[]},"RenderBox":{"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"BoxHitTestEntry":{"HitTestEntry":["RenderBox"]},"BoxParentData":{"ParentData":[]},"MultiChildLayoutParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"RenderCustomMultiChildLayoutBox":{"RenderBoxContainerDefaultsMixin":["RenderBox","MultiChildLayoutParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","MultiChildLayoutParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"MultiChildLayoutParentData","RenderBoxContainerDefaultsMixin.1":"MultiChildLayoutParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"CustomPainter":{"Listenable":[]},"RenderCustomPaint":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderEditablePainter":{"Listenable":[]},"RenderEditable":{"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","TextParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"TextParentData","ContainerRenderObjectMixin.0":"RenderBox"},"_RenderEditableCustomPaint":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_TextHighlightPainter":{"RenderEditablePainter":[],"Listenable":[]},"_CaretPainter":{"RenderEditablePainter":[],"Listenable":[]},"_CompositeRenderEditablePainter":{"RenderEditablePainter":[],"Listenable":[]},"RenderErrorBox":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"FlexParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"RenderFlex":{"RenderBoxContainerDefaultsMixin":["RenderBox","FlexParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","FlexParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"FlexParentData","RenderBoxContainerDefaultsMixin.1":"FlexParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"RenderImage":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"Layer0":{"DiagnosticableTree":[]},"ContainerLayer0":{"Layer0":[],"DiagnosticableTree":[]},"ClipRectLayer":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"ClipRRectLayer":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"ClipPathLayer":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"TransformLayer":{"OffsetLayer":[],"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"OpacityLayer":{"OffsetLayer":[],"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"PictureLayer0":{"Layer0":[],"DiagnosticableTree":[]},"PlatformViewLayer":{"Layer0":[],"DiagnosticableTree":[]},"OffsetLayer":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"ImageFilterLayer":{"OffsetLayer":[],"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"BackdropFilterLayer":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"LeaderLayer0":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"FollowerLayer0":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"AnnotatedRegionLayer":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"ListBodyParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"RenderListBody":{"RenderBoxContainerDefaultsMixin":["RenderBox","ListBodyParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","ListBodyParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"ListBodyParentData","RenderBoxContainerDefaultsMixin.1":"ListBodyParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"MouseTracker":{"Listenable":[]},"PipelineOwner":{"DiagnosticableTree":[]},"RenderObject":{"DiagnosticableTree":[],"HitTestTarget":[]},"ContainerParentDataMixin":{"ParentData":[]},"_RootSemanticsFragment":{"_InterestingSemanticsFragment":[]},"_IncompleteSemanticsFragment":{"_InterestingSemanticsFragment":[]},"_SwitchableSemanticsFragment":{"_InterestingSemanticsFragment":[]},"PlaceholderSpanIndexSemanticsTag":{"SemanticsTag":[]},"TextParentData":{"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"_SelectableFragment":{"Selectable":[],"Listenable":[]},"RenderParagraph":{"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","TextParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"TextParentData","ContainerRenderObjectMixin.0":"RenderBox"},"_PlatformViewGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"PlatformViewRenderBox":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[],"HitTestTarget":[]},"ShapeBorderClipper":{"CustomClipper":["Path"],"Listenable":[]},"RenderAbsorbPointer":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderSemanticsGestureHandler":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderProxyBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderProxyBoxWithHitTestBehavior":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderConstrainedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderLimitedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderAspectRatio":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderIntrinsicWidth":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderIntrinsicHeight":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderOpacity":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderAnimatedOpacity":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderBackdropFilter":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"CustomClipper":{"Listenable":[]},"_RenderCustomClip":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderClipRect":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderClipRRect":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderClipOval":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderClipPath":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_RenderPhysicalModelBase":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderPhysicalModel":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderPhysicalShape":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderDecoratedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderTransform":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderFittedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderFractionalTranslation":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderPointerListener":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderMouseRegion":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[],"HitTestTarget":[]},"RenderRepaintBoundary":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderIgnorePointer":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderOffstage":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderSemanticsAnnotations":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderBlockSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderMergeSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderExcludeSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderIndexedSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderLeaderLayer":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderFollowerLayer":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderAnnotatedRegion":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"Selectable":{"Listenable":[]},"RenderShiftedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderPadding":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderAligningShiftedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderPositionedBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderConstrainedOverflowBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderFractionallySizedOverflowBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderCustomSingleChildLayoutBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"SliverConstraints":{"Constraints":[]},"SliverHitTestResult":{"HitTestResult":[]},"SliverLogicalContainerParentData":{"SliverLogicalParentData":[],"ContainerParentDataMixin":["RenderSliver"],"ParentData":[]},"SliverPhysicalContainerParentData":{"SliverPhysicalParentData":[],"ContainerParentDataMixin":["RenderSliver"],"ParentData":[]},"RenderSliver":{"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"SliverHitTestEntry":{"HitTestEntry":["RenderSliver"]},"SliverLogicalParentData":{"ParentData":[]},"SliverPhysicalParentData":{"ParentData":[]},"RenderSliverFillViewport":{"RenderSliverMultiBoxAdaptor":[],"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"SliverMultiBoxAdaptorParentData","ContainerRenderObjectMixin.0":"RenderBox"},"RenderSliverFixedExtentBoxAdaptor":{"RenderSliverMultiBoxAdaptor":[],"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"SliverGridParentData":{"SliverMultiBoxAdaptorParentData":[],"SliverLogicalParentData":[],"ContainerParentDataMixin":["RenderBox"],"KeepAliveParentDataMixin":[],"ParentData":[]},"RenderSliverGrid":{"RenderSliverMultiBoxAdaptor":[],"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"SliverMultiBoxAdaptorParentData","ContainerRenderObjectMixin.0":"RenderBox"},"RenderSliverList":{"RenderSliverMultiBoxAdaptor":[],"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"SliverMultiBoxAdaptorParentData","ContainerRenderObjectMixin.0":"RenderBox"},"KeepAliveParentDataMixin":{"ParentData":[]},"SliverMultiBoxAdaptorParentData":{"SliverLogicalParentData":[],"ContainerParentDataMixin":["RenderBox"],"KeepAliveParentDataMixin":[],"ParentData":[]},"RenderSliverMultiBoxAdaptor":{"RenderSliver":[],"ContainerRenderObjectMixin":["RenderBox","SliverMultiBoxAdaptorParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderSliverEdgeInsetsPadding":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderSliver"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderSliverPadding":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderSliver"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderSliverFloatingPersistentHeader":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderSliverPersistentHeader":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderSliverPinnedPersistentHeader":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"StackParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"RenderStack":{"RenderBoxContainerDefaultsMixin":["RenderBox","StackParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","StackParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"StackParentData","RenderBoxContainerDefaultsMixin.1":"StackParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"RenderIndexedStack":{"RenderBoxContainerDefaultsMixin":["RenderBox","StackParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","StackParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"StackParentData","RenderBoxContainerDefaultsMixin.1":"StackParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"TableCellParentData":{"BoxParentData":[],"ParentData":[]},"IntrinsicColumnWidth":{"TableColumnWidth":[]},"FixedColumnWidth":{"TableColumnWidth":[]},"FlexColumnWidth":{"TableColumnWidth":[]},"RenderTable":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"AlignmentGeometryTween":{"Tween":["AlignmentGeometry?"],"Animatable":["AlignmentGeometry?"],"Animatable.T":"AlignmentGeometry?","Tween.T":"AlignmentGeometry?"},"RenderView":{"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderViewportBase":{"_RenderViewportBase_RenderBox_ContainerRenderObjectMixin":["1"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderSliver","1"],"RenderAbstractViewport":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"RenderViewport":{"_RenderViewportBase_RenderBox_ContainerRenderObjectMixin":["SliverPhysicalContainerParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderSliver","SliverPhysicalContainerParentData"],"RenderAbstractViewport":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"SliverPhysicalContainerParentData","_RenderViewportBase_RenderBox_ContainerRenderObjectMixin.0":"SliverPhysicalContainerParentData","ContainerRenderObjectMixin.0":"RenderSliver"},"RenderShrinkWrappingViewport":{"_RenderViewportBase_RenderBox_ContainerRenderObjectMixin":["SliverLogicalContainerParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderSliver","SliverLogicalContainerParentData"],"RenderAbstractViewport":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"SliverLogicalContainerParentData","_RenderViewportBase_RenderBox_ContainerRenderObjectMixin.0":"SliverLogicalContainerParentData","ContainerRenderObjectMixin.0":"RenderSliver"},"ViewportOffset":{"Listenable":[]},"WrapParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"RenderWrap":{"RenderBoxContainerDefaultsMixin":["RenderBox","WrapParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","WrapParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"WrapParentData","RenderBoxContainerDefaultsMixin.1":"WrapParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"TickerFuture":{"Future":["~"]},"TickerCanceled":{"Exception":[]},"SemanticsNode":{"DiagnosticableTree":[]},"_BoxEdge":{"Comparable":["_BoxEdge"]},"_SemanticsSortGroup":{"Comparable":["_SemanticsSortGroup"]},"_TraversalSortNode":{"Comparable":["_TraversalSortNode"]},"SemanticsSortKey":{"Comparable":["SemanticsSortKey"]},"_SemanticsDiagnosticableNode":{"DiagnosticableNode":["SemanticsNode"],"DiagnosticsNode":[]},"SemanticsHintOverrides":{"DiagnosticableTree":[]},"SemanticsProperties":{"DiagnosticableTree":[]},"SemanticsOwner":{"Listenable":[]},"OrdinalSortKey":{"Comparable":["SemanticsSortKey"]},"_AssetManifestBin":{"AssetManifest":[]},"_AutofillScopeTextInputConfiguration":{"TextInputConfiguration":[]},"ServicesBinding":{"SchedulerBinding":[]},"KeyDownEvent":{"KeyEvent":[]},"KeyUpEvent":{"KeyEvent":[]},"KeyRepeatEvent":{"KeyEvent":[]},"PlatformException":{"Exception":[]},"MissingPluginException":{"Exception":[]},"SystemMouseCursor":{"MouseCursor0":[]},"_DeferringMouseCursor":{"MouseCursor0":[]},"_NoopMouseCursorSession":{"MouseCursorSession":[]},"_NoopMouseCursor":{"MouseCursor0":[]},"_SystemMouseCursorSession":{"MouseCursorSession":[]},"RawKeyDownEvent":{"RawKeyEvent":[]},"RawKeyUpEvent":{"RawKeyEvent":[]},"RestorationManager":{"Listenable":[]},"CharacterBoundary":{"TextBoundary":[]},"LineBoundary":{"TextBoundary":[]},"ParagraphBoundary":{"TextBoundary":[]},"DocumentBoundary":{"TextBoundary":[]},"TextSelection":{"TextRange":[]},"TextEditingDeltaInsertion":{"TextEditingDelta":[]},"TextEditingDeltaDeletion":{"TextEditingDelta":[]},"TextEditingDeltaReplacement":{"TextEditingDelta":[]},"TextEditingDeltaNonTextUpdate":{"TextEditingDelta":[]},"FilteringTextInputFormatter":{"TextInputFormatter":[]},"LengthLimitingTextInputFormatter":{"TextInputFormatter":[]},"_PlatformTextInputControl":{"TextInputControl":[]},"_HtmlElementViewController":{"PlatformViewController":[]},"Actions":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ActionsScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"FocusableActionDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"VoidCallbackIntent":{"Intent":[]},"DoNothingIntent":{"Intent":[]},"DoNothingAndStopPropagationIntent":{"Intent":[]},"ActivateIntent":{"Intent":[]},"ButtonActivateIntent":{"Intent":[]},"DismissIntent":{"Intent":[]},"PrioritizedIntents":{"Intent":[]},"ContextAction":{"Action":["1"]},"CallbackAction":{"Action":["1"],"Action.T":"1"},"_ActionsState":{"State":["Actions"]},"_FocusableActionDetectorState":{"State":["FocusableActionDetector"]},"VoidCallbackAction":{"Action":["VoidCallbackIntent"],"Action.T":"VoidCallbackIntent"},"DoNothingAction":{"Action":["Intent"],"Action.T":"Intent"},"DismissAction":{"Action":["DismissIntent"]},"PrioritizedAction":{"ContextAction":["PrioritizedIntents"],"Action":["PrioritizedIntents"],"Action.T":"PrioritizedIntents","ContextAction.T":"PrioritizedIntents"},"_OverridableAction":{"__OverridableAction_ContextAction__OverridableActionMixin":["1"],"ContextAction":["1"],"_OverridableActionMixin":["1"],"Action":["1"],"Action.T":"1","ContextAction.T":"1"},"_OverridableContextAction":{"__OverridableContextAction_ContextAction__OverridableActionMixin":["1"],"ContextAction":["1"],"_OverridableActionMixin":["1"],"Action":["1"],"Action.T":"1","ContextAction.T":"1"},"_ContextActionToActionAdapter":{"Action":["1"],"Action.T":"1"},"AnimatedCrossFade":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedCrossFadeState":{"State":["AnimatedCrossFade"]},"AnimatedSize":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedSizeState":{"State":["AnimatedSize"]},"_AnimatedSize":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedSwitcher":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedSwitcherState":{"State":["AnimatedSwitcher"]},"AnnotatedRegion":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"WidgetsApp":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WidgetsAppState":{"State":["WidgetsApp"],"WidgetsBindingObserver":[]},"StreamBuilderBase":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FutureBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StreamBuilderBaseState":{"State":["StreamBuilderBase<1,2>"]},"StreamBuilder":{"StreamBuilderBase":["1","AsyncSnapshot<1>"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"StreamBuilderBase.T":"1","StreamBuilderBase.S":"AsyncSnapshot<1>"},"_FutureBuilderState":{"State":["FutureBuilder<1>"]},"RawAutocomplete":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AutocompletePreviousOptionIntent":{"Intent":[]},"AutocompleteNextOptionIntent":{"Intent":[]},"AutocompleteHighlightedOption":{"InheritedNotifier":["ValueNotifier"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"ValueNotifier"},"_RawAutocompleteState":{"State":["RawAutocomplete<1>"]},"_AutocompleteCallbackAction":{"CallbackAction":["1"],"Action":["1"],"Action.T":"1"},"AutofillGroup":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AutofillScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"AutofillGroupState":{"State":["AutofillGroup"]},"AutomaticKeepAlive":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AutomaticKeepAliveState":{"State":["AutomaticKeepAlive"]},"KeepAliveHandle":{"Listenable":[]},"_NullWidget1":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Directionality":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClipRect":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClipPath":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompositedTransformTarget":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompositedTransformFollower":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Padding":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Align":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Center":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomSingleChildLayout":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"LayoutId":{"ParentDataWidget":["MultiChildLayoutParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"MultiChildLayoutParentData"},"SizedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Stack":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Positioned":{"ParentDataWidget":["StackParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"StackParentData"},"Flex":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Row":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Column":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Flexible":{"ParentDataWidget":["FlexParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"FlexParentData"},"Expanded":{"ParentDataWidget":["FlexParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"FlexParentData"},"DefaultAssetBundle":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"MouseRegion":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"IgnorePointer":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Semantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"MergeSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"BlockSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Builder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"StatefulBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ColoredBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_UbiquitousInheritedElement":{"InheritedElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_UbiquitousInheritedWidget":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Opacity":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"BackdropFilter":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomPaint":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClipRRect":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClipOval":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"PhysicalModel":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"PhysicalShape":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Transform":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"FittedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"FractionalTranslation":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomMultiChildLayout":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ConstrainedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"FractionallySizedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"LimitedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"OverflowBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Offstage":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OffstageElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"AspectRatio":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"IntrinsicWidth":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"IntrinsicHeight":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverPadding":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ListBody":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"IndexedStack":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RawIndexedStack":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_IndexedStackElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"PositionedDirectional":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Wrap":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RichText":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RawImage":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Listener":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RepaintBoundary":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"AbsorbPointer":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExcludeSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"IndexedSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"KeyedSubtree":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StatefulBuilderState":{"State":["StatefulBuilder"]},"_RenderColoredBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"WidgetsBinding":{"SchedulerBinding":[],"HitTestTarget":[]},"RootWidget":{"Widget":[],"DiagnosticableTree":[]},"RootElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"WidgetsFlutterBinding":{"SchedulerBinding":[],"HitTestTarget":[]},"Container":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DecoratedBox":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DecorationClipper":{"CustomClipper":["Path"],"Listenable":[]},"DefaultSelectionStyle":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_NullWidget2":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DefaultTextEditingShortcuts":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DisplayFeatureSubScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DraggableScrollableSheet":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DraggableScrollableNotification":{"ViewportNotificationMixin":[]},"_ResetNotifier":{"Listenable":[]},"_InheritedResetNotifier":{"InheritedNotifier":["_ResetNotifier"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"_ResetNotifier"},"_DraggableScrollableSheetState":{"State":["DraggableScrollableSheet"]},"_DraggableScrollableSheetScrollController":{"ScrollController":[],"Listenable":[]},"_DraggableScrollableSheetScrollPosition":{"ScrollPosition":[],"ViewportOffset":[],"Listenable":[],"ScrollMetrics":[]},"DualTransitionBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DualTransitionBuilderState":{"State":["DualTransitionBuilder"]},"TextEditingController":{"ValueNotifier":["TextEditingValue"],"Listenable":[]},"EditableText":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EditableTextState":{"State":["EditableText"],"WidgetsBindingObserver":[],"AutofillClient":[]},"_ScribbleFocusable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScribblePlaceholder":{"WidgetSpan":[],"InlineSpan":[],"DiagnosticableTree":[]},"_CompositionCallback":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderCompositionCallback":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_Editable":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScribbleFocusableState":{"State":["_ScribbleFocusable"],"ScribbleClient":[]},"_CodePointBoundary":{"TextBoundary":[]},"_DeleteTextAction":{"ContextAction":["1"],"Action":["1"],"Action.T":"1","ContextAction.T":"1"},"_UpdateTextSelectionAction":{"ContextAction":["1"],"Action":["1"],"Action.T":"1","ContextAction.T":"1"},"_UpdateTextSelectionVerticallyAction":{"ContextAction":["1"],"Action":["1"],"Action.T":"1","ContextAction.T":"1"},"_SelectAllAction":{"ContextAction":["SelectAllTextIntent"],"Action":["SelectAllTextIntent"],"Action.T":"SelectAllTextIntent","ContextAction.T":"SelectAllTextIntent"},"_CopySelectionAction":{"ContextAction":["CopySelectionTextIntent"],"Action":["CopySelectionTextIntent"],"Action.T":"CopySelectionTextIntent","ContextAction.T":"CopySelectionTextIntent"},"_WebClipboardStatusNotifier":{"ValueNotifier":["ClipboardStatus"],"Listenable":[],"WidgetsBindingObserver":[]},"FocusNode":{"DiagnosticableTree":[],"Listenable":[]},"FocusScopeNode":{"FocusNode":[],"DiagnosticableTree":[],"Listenable":[]},"FocusManager":{"DiagnosticableTree":[],"Listenable":[]},"Focus":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FocusInheritedScope":{"InheritedNotifier":["FocusNode"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"FocusNode"},"_FocusState":{"State":["Focus"]},"FocusScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FocusScopeState":{"State":["Focus"]},"ExcludeFocus":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"FocusTraversalGroup":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RequestFocusIntent":{"Intent":[]},"NextFocusIntent":{"Intent":[]},"PreviousFocusIntent":{"Intent":[]},"DirectionalFocusIntent":{"Intent":[]},"_FocusTraversalGroupNode":{"FocusNode":[],"DiagnosticableTree":[],"Listenable":[]},"_FocusTraversalGroupState":{"State":["FocusTraversalGroup"]},"RequestFocusAction":{"Action":["RequestFocusIntent"],"Action.T":"RequestFocusIntent"},"NextFocusAction":{"Action":["NextFocusIntent"],"Action.T":"NextFocusIntent"},"PreviousFocusAction":{"Action":["PreviousFocusIntent"],"Action.T":"PreviousFocusIntent"},"DirectionalFocusAction":{"Action":["DirectionalFocusIntent"],"Action.T":"DirectionalFocusIntent"},"Form":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FormState":{"State":["Form"]},"_FormScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"FormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FormFieldState":{"State":["FormField<1>"]},"ObjectKey":{"LocalKey":[],"Key":[]},"GlobalKey":{"Key":[]},"LabeledGlobalKey":{"GlobalKey":["1"],"Key":[],"GlobalKey.T":"1"},"Widget":{"DiagnosticableTree":[]},"StatelessWidget":{"Widget":[],"DiagnosticableTree":[]},"StatefulWidget":{"Widget":[],"DiagnosticableTree":[]},"RenderObjectWidget":{"Widget":[],"DiagnosticableTree":[]},"SingleChildRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Element0":{"DiagnosticableTree":[],"BuildContext":[]},"StatefulElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"ParentDataElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"InheritedElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"GlobalObjectKey":{"GlobalKey":["1"],"Key":[],"GlobalKey.T":"1","GlobalObjectKey.T":"1"},"ProxyWidget":{"Widget":[],"DiagnosticableTree":[]},"ParentDataWidget":{"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"InheritedWidget":{"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"LeafRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"MultiChildRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ElementDiagnosticableTreeNode":{"DiagnosticableNode":["DiagnosticableTree"],"DiagnosticsNode":[]},"ErrorWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ComponentElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"StatelessElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"ProxyElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"RenderObjectElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"LeafRenderObjectElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"SingleChildRenderObjectElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"MultiChildRenderObjectElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"RenderTreeRootElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_NullElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_NullWidget3":{"Widget":[],"DiagnosticableTree":[]},"GestureDetector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RawGestureDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RawGestureDetectorState":{"State":["RawGestureDetector"]},"GestureRecognizerFactoryWithHandlers":{"GestureRecognizerFactory":["1"]},"_GestureSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"Hero":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HeroState":{"State":["Hero"]},"HeroController":{"NavigatorObserver":[]},"Icon":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IconTheme":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Image":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ImageState":{"State":["Image"],"WidgetsBindingObserver":[]},"BoxConstraintsTween":{"Tween":["BoxConstraints"],"Animatable":["BoxConstraints"],"Animatable.T":"BoxConstraints","Tween.T":"BoxConstraints"},"DecorationTween":{"Tween":["Decoration"],"Animatable":["Decoration"],"Animatable.T":"Decoration","Tween.T":"Decoration"},"EdgeInsetsGeometryTween":{"Tween":["EdgeInsetsGeometry"],"Animatable":["EdgeInsetsGeometry"],"Animatable.T":"EdgeInsetsGeometry","Tween.T":"EdgeInsetsGeometry"},"BorderRadiusTween":{"Tween":["BorderRadius?"],"Animatable":["BorderRadius?"],"Animatable.T":"BorderRadius?","Tween.T":"BorderRadius?"},"Matrix4Tween":{"Tween":["Matrix40"],"Animatable":["Matrix40"],"Animatable.T":"Matrix40","Tween.T":"Matrix40"},"TextStyleTween":{"Tween":["TextStyle"],"Animatable":["TextStyle"],"Animatable.T":"TextStyle","Tween.T":"TextStyle"},"AnimatedContainer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedPadding":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedPositioned":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedOpacity":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedDefaultTextStyle":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedPhysicalModel":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EdgeInsetsTween":{"Tween":["EdgeInsets"],"Animatable":["EdgeInsets"],"Animatable.T":"EdgeInsets","Tween.T":"EdgeInsets"},"ImplicitlyAnimatedWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ImplicitlyAnimatedWidgetState":{"State":["1"]},"AnimatedWidgetBaseState":{"State":["1"]},"_AnimatedContainerState":{"State":["AnimatedContainer"]},"_AnimatedPaddingState":{"State":["AnimatedPadding"]},"_AnimatedPositionedState":{"State":["AnimatedPositioned"]},"_AnimatedOpacityState":{"State":["AnimatedOpacity"]},"_AnimatedDefaultTextStyleState":{"State":["AnimatedDefaultTextStyle"]},"_AnimatedPhysicalModelState":{"State":["AnimatedPhysicalModel"]},"InheritedModel":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"InheritedModelElement":{"InheritedElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"InheritedNotifier":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InheritedNotifierElement":{"InheritedElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"InheritedTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CaptureAll":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InteractiveViewer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InteractiveViewerState":{"State":["InteractiveViewer"]},"_InteractiveViewerBuilt":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransformationController":{"ValueNotifier":["Matrix40"],"Listenable":[]},"LayoutBuilder":{"ConstrainedLayoutBuilder":["BoxConstraints"],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[],"ConstrainedLayoutBuilder.0":"BoxConstraints"},"ConstrainedLayoutBuilder":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LayoutBuilderElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_RenderLayoutBuilder":{"RenderConstrainedLayoutBuilder":["BoxConstraints","RenderBox"],"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"RenderConstrainedLayoutBuilder.0":"BoxConstraints"},"_LocalizationsScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Localizations":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WidgetsLocalizationsDelegate":{"LocalizationsDelegate":["WidgetsLocalizations"],"LocalizationsDelegate.T":"WidgetsLocalizations"},"DefaultWidgetsLocalizations":{"WidgetsLocalizations":[]},"_LocalizationsState":{"State":["Localizations"]},"LookupBoundary":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"MagnifierDecoration":{"ShapeDecoration":[],"Decoration":[]},"RawMagnifier":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MagnifierStyle":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DonutClip":{"CustomClipper":["Path"],"Listenable":[]},"_Magnifier":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderMagnification":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"MediaQuery":{"InheritedModel":["_MediaQueryAspect"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedModel.T":"_MediaQueryAspect"},"_MediaQueryFromView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MediaQueryFromViewState":{"State":["_MediaQueryFromView"],"WidgetsBindingObserver":[]},"_AnyTapGestureRecognizer":{"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"ModalBarrier":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedModalBarrier":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnyTapGestureRecognizerFactory":{"GestureRecognizerFactory":["_AnyTapGestureRecognizer"]},"_ModalBarrierGestureDetector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"NavigationToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Page":{"RouteSettings":[]},"HeroControllerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Navigator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"NavigatorState":{"State":["Navigator"]},"_NotAnnounced":{"Route":["~"]},"_NavigatorPushObservation":{"_NavigatorObservation":[]},"_NavigatorPopObservation":{"_NavigatorObservation":[]},"_NavigatorRemoveObservation":{"_NavigatorObservation":[]},"_NavigatorReplaceObservation":{"_NavigatorObservation":[]},"_History":{"Iterable":["_RouteEntry"],"Listenable":[],"Iterable.E":"_RouteEntry"},"_HistoryProperty":{"RestorableProperty":["Map>?"],"Listenable":[]},"NavigatorPopHandler":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_NavigatorPopHandlerState":{"State":["NavigatorPopHandler"]},"NotificationListener":{"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_NotificationElement":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_OverflowBarParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"OverflowBar":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderOverflowBar":{"RenderBoxContainerDefaultsMixin":["RenderBox","_OverflowBarParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","_OverflowBarParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"_OverflowBarParentData","RenderBoxContainerDefaultsMixin.1":"_OverflowBarParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"OverlayEntry":{"Listenable":[]},"_OverlayEntryWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OverlayEntryWidgetState":{"State":["_OverlayEntryWidget"]},"Overlay":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"OverlayState":{"State":["Overlay"]},"_RenderTheater":{"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","StackParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"StackParentData","ContainerRenderObjectMixin.0":"RenderBox"},"OverlayPortal":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OverlayEntryLocation":{"LinkedListEntry":["_OverlayEntryLocation"],"LinkedListEntry.E":"_OverlayEntryLocation"},"_RenderTheaterMarker":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderDeferredLayoutBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"LinkedListEntry":["_RenderDeferredLayoutBox"],"LinkedListEntry.E":"_RenderDeferredLayoutBox"},"_RenderLayoutSurrogateProxyBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_Theater":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TheaterElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_TheaterParentData":{"StackParentData":[],"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"_OverlayPortalState":{"State":["OverlayPortal"]},"_OverlayPortal":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OverlayPortalElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_DeferredLayout":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"GlowingOverscrollIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"StretchingOverscrollIndicator":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"OverscrollIndicatorNotification":{"ViewportNotificationMixin":[]},"_GlowingOverscrollIndicatorState":{"State":["GlowingOverscrollIndicator"]},"_GlowController":{"Listenable":[]},"_GlowingOverscrollIndicatorPainter":{"Listenable":[]},"_StretchingOverscrollIndicatorState":{"State":["StretchingOverscrollIndicator"]},"_StretchController":{"Listenable":[]},"PageStorageKey":{"ValueKey":["1"],"LocalKey":[],"Key":[]},"PageStorage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PageView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PageController":{"ScrollController":[],"Listenable":[]},"PageMetrics":{"ScrollMetrics":[]},"_PagePosition":{"ScrollPosition":[],"PageMetrics":[],"ViewportOffset":[],"Listenable":[],"ScrollMetrics":[]},"_PageViewState":{"State":["PageView"]},"PageRoute":{"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"]},"_PlaceholderPainter":{"Listenable":[]},"Placeholder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PlatformViewLink":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PlatformViewSurface":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"HtmlElementView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PlatformViewLinkState":{"State":["PlatformViewLink"]},"_PlatformViewPlaceholderBox":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_PlatformViewPlaceHolder":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"PopScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PopScopeState":{"State":["PopScope"],"PopEntry":[]},"PreferredSize":{"StatelessWidget":[],"PreferredSizeWidget":[],"Widget":[],"DiagnosticableTree":[]},"PrimaryScrollController":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverReorderableList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverReorderableListState":{"State":["SliverReorderableList"]},"_ReorderableItem":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ReorderableItemState":{"State":["_ReorderableItem"]},"ReorderableDragStartListener":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReorderableDelayedDragStartListener":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DragItemProxy":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ReorderableItemGlobalKey":{"GlobalObjectKey":["State"],"GlobalKey":["State"],"Key":[],"GlobalKey.T":"State","GlobalObjectKey.T":"State"},"RestorationScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"UnmanagedRestorationScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"RootRestorationScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RestorableProperty":{"Listenable":[]},"_RestorationScopeState":{"State":["RestorationScope"]},"_RootRestorationScopeState":{"State":["RootRestorationScope"]},"RestorableValue":{"RestorableProperty":["1"],"Listenable":[]},"_RestorablePrimitiveValueN":{"RestorableProperty":["1"],"Listenable":[]},"_RestorablePrimitiveValue":{"_RestorablePrimitiveValueN":["1"],"RestorableProperty":["1"],"Listenable":[]},"RestorableNum":{"_RestorablePrimitiveValueN":["1"],"RestorableProperty":["1"],"Listenable":[],"RestorableValue.T":"1","_RestorablePrimitiveValueN.T":"1"},"RestorableBool":{"_RestorablePrimitiveValueN":["bool"],"RestorableProperty":["bool"],"Listenable":[],"RestorableValue.T":"bool","_RestorablePrimitiveValueN.T":"bool"},"RestorableBoolN":{"_RestorablePrimitiveValueN":["bool?"],"RestorableProperty":["bool?"],"Listenable":[],"RestorableValue.T":"bool?","_RestorablePrimitiveValueN.T":"bool?"},"RestorableStringN":{"_RestorablePrimitiveValueN":["String?"],"RestorableProperty":["String?"],"Listenable":[],"RestorableValue.T":"String?","_RestorablePrimitiveValueN.T":"String?"},"RestorableDateTimeN":{"RestorableProperty":["DateTime?"],"Listenable":[],"RestorableValue.T":"DateTime?"},"RestorableListenable":{"RestorableProperty":["1"],"Listenable":[]},"RestorableChangeNotifier":{"RestorableProperty":["1"],"Listenable":[]},"RestorableTextEditingController":{"RestorableProperty":["TextEditingController"],"Listenable":[]},"RestorableEnumN":{"RestorableProperty":["1?"],"Listenable":[],"RestorableValue.T":"1?"},"RestorableEnum":{"RestorableProperty":["1"],"Listenable":[],"RestorableValue.T":"1"},"Router":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ChildBackButtonDispatcher":{"_CallbackHookProvider":["Future"]},"_RouterState":{"State":["Router<1>"]},"_RouterScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RestorableRouteInformation":{"RestorableProperty":["RouteInformation?"],"Listenable":[],"RestorableValue.T":"RouteInformation?"},"_ModalScopeStatus":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ModalScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ModalScopeState":{"State":["_ModalScope<1>"]},"OverlayRoute":{"Route":["1"]},"TransitionRoute":{"Route":["1"]},"_DismissModalAction":{"Action":["DismissIntent"],"Action.T":"DismissIntent"},"ModalRoute":{"TransitionRoute":["1"],"Route":["1"]},"PopupRoute":{"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"]},"RouteObserver":{"NavigatorObserver":[]},"RawDialogRoute":{"ModalRoute":["1"],"TransitionRoute":["1"],"Route":["1"]},"SafeArea":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollAwareImageProvider":{"ImageProvider":["1"],"ImageProvider.T":"1"},"ScrollConfiguration":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollController":{"Listenable":[]},"_SelectionKeepAlive":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SaltedValueKey":{"ValueKey":["Key"],"LocalKey":[],"Key":[],"ValueKey.T":"Key"},"_SelectionKeepAliveState":{"State":["_SelectionKeepAlive"]},"FixedScrollMetrics":{"ScrollMetrics":[]},"ScrollNotification":{"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"ScrollUpdateNotification":{"ScrollNotification":[],"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"ScrollStartNotification":{"ScrollNotification":[],"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"OverscrollNotification":{"ScrollNotification":[],"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"ScrollEndNotification":{"ScrollNotification":[],"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"UserScrollNotification":{"ScrollNotification":[],"LayoutChangedNotification":[],"ViewportNotificationMixin":[]},"_ScrollNotificationObserverScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ListenerEntry":{"LinkedListEntry":["_ListenerEntry"],"LinkedListEntry.E":"_ListenerEntry"},"ScrollNotificationObserver":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollNotificationObserverState":{"State":["ScrollNotificationObserver"]},"ScrollPosition":{"ViewportOffset":[],"Listenable":[],"ScrollMetrics":[]},"ScrollMetricsNotification":{"ViewportNotificationMixin":[]},"ScrollPositionWithSingleContext":{"ScrollPosition":[],"ViewportOffset":[],"Listenable":[],"ScrollMetrics":[]},"GridView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomScrollView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoxScrollView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ListView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Scrollable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScrollableScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScrollableSelectionHandler":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollableState":{"State":["Scrollable"]},"_ScrollableSelectionHandlerState":{"State":["_ScrollableSelectionHandler"]},"_ScrollableSelectionContainerDelegate":{"Listenable":[]},"_ScrollSemantics":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderScrollSemantics":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_RestorableScrollOffset":{"RestorableProperty":["double?"],"Listenable":[],"RestorableValue.T":"double?"},"ScrollIntent":{"Intent":[]},"ScrollAction":{"ContextAction":["ScrollIntent"],"Action":["ScrollIntent"],"Action.T":"ScrollIntent","ContextAction.T":"ScrollIntent"},"RawScrollbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ThumbPressGestureRecognizer":{"LongPressGestureRecognizer":[],"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_TrackTapGestureRecognizer":{"TapGestureRecognizer":[],"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"ScrollbarPainter":{"Listenable":[]},"RawScrollbarState":{"State":["1"]},"MultiSelectableSelectionContainerDelegate":{"Listenable":[]},"SelectionContainer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SelectionRegistrarScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectionContainerState":{"Selectable":[],"State":["SelectionContainer"],"Listenable":[]},"SelectionContainerDelegate":{"Listenable":[]},"SharedAppData":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SharedAppDataState":{"State":["SharedAppData"]},"_SharedAppModel":{"InheritedModel":["Object"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedModel.T":"Object"},"LogicalKeySet":{"KeySet":["LogicalKeyboardKey"],"ShortcutActivator":[],"KeySet.T":"LogicalKeyboardKey"},"SingleActivator":{"ShortcutActivator":[]},"Shortcuts":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ShortcutRegistrar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ShortcutManager":{"Listenable":[]},"_ShortcutsState":{"State":["Shortcuts"]},"CallbackShortcuts":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ShortcutRegistry":{"Listenable":[]},"_ShortcutRegistrarState":{"State":["ShortcutRegistrar"]},"_ShortcutRegistrarScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SingleChildScrollView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SingleChildViewport":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SingleChildViewportElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_RenderSingleChildViewport":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderAbstractViewport":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"SliverWithKeepAliveWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverMultiBoxAdaptorWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverList":{"SliverMultiBoxAdaptorWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverGrid":{"SliverMultiBoxAdaptorWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverMultiBoxAdaptorElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"KeepAlive":{"ParentDataWidget":["KeepAliveParentDataMixin"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"KeepAliveParentDataMixin"},"SliverFillViewport":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SliverFillViewportRenderObjectWidget":{"SliverMultiBoxAdaptorWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SliverFractionalPadding":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderSliverFractionalPadding":{"RenderSliver":[],"RenderObjectWithChildMixin":["RenderSliver"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_FloatingHeader":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SliverPersistentHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FloatingHeaderState":{"State":["_FloatingHeader"]},"_SliverPersistentHeaderElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_SliverPersistentHeaderRenderObjectWidget":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SliverPinnedPersistentHeader":{"_SliverPersistentHeaderRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderSliverPinnedPersistentHeaderForWidgets":{"_RenderSliverPersistentHeaderForWidgetsMixin":[],"RenderSliver":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"SlottedMultiChildRenderObjectWidget":{"SlottedMultiChildRenderObjectWidgetMixin":["1","2"],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlottedRenderObjectElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"SnapshotController":{"Listenable":[]},"SnapshotWidget":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderSnapshotWidget":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"SnapshotPainter":{"Listenable":[]},"_DefaultSnapshotPainter":{"Listenable":[]},"Spacer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Table":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TableElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"TableCell":{"ParentDataWidget":["TableCellParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"TableCellParentData"},"RenderTapRegionSurface":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"TapRegion":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderTapRegion":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"TapRegionSurface":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextFieldTapRegion":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"DefaultTextStyle":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DefaultTextHeightBehavior":{"InheritedTheme":[],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Text":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_NullWidget4":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DoNothingAndStopPropagationTextIntent":{"Intent":[]},"DeleteCharacterIntent":{"Intent":[]},"DeleteToNextWordBoundaryIntent":{"Intent":[]},"DeleteToLineBreakIntent":{"Intent":[]},"DirectionalCaretMovementIntent":{"Intent":[]},"ExtendSelectionByCharacterIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExtendSelectionToNextWordBoundaryIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExtendSelectionToNextWordBoundaryOrCaretLocationIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExpandSelectionToDocumentBoundaryIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExpandSelectionToLineBreakIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExtendSelectionToLineBreakIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExtendSelectionVerticallyToAdjacentLineIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExtendSelectionVerticallyToAdjacentPageIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExtendSelectionToNextParagraphBoundaryIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExtendSelectionToNextParagraphBoundaryOrCaretLocationIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ExtendSelectionToDocumentBoundaryIntent":{"DirectionalCaretMovementIntent":[],"Intent":[]},"ScrollToDocumentBoundaryIntent":{"Intent":[]},"ExtendSelectionByPageIntent":{"Intent":[]},"SelectAllTextIntent":{"Intent":[]},"CopySelectionTextIntent":{"Intent":[]},"PasteTextIntent":{"Intent":[]},"RedoTextIntent":{"Intent":[]},"ReplaceTextIntent":{"Intent":[]},"UndoTextIntent":{"Intent":[]},"UpdateSelectionIntent":{"Intent":[]},"TransposeCharactersIntent":{"Intent":[]},"DirectionalTextEditingIntent":{"Intent":[]},"ToolbarItemsParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"_SelectionToolbarWrapper":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectionHandleOverlay":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextSelectionGestureDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectionToolbarWrapperState":{"State":["_SelectionToolbarWrapper"]},"_SelectionHandleOverlayState":{"State":["_SelectionHandleOverlay"]},"_TextSelectionGestureDetectorState":{"State":["TextSelectionGestureDetector"]},"ClipboardStatusNotifier":{"ValueNotifier":["ClipboardStatus"],"Listenable":[],"WidgetsBindingObserver":[]},"TickerMode":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EffectiveTickerMode":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TickerModeState":{"State":["TickerMode"]},"_ConstantValueListenable":{"Listenable":[]},"Title":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FadeTransition":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AnimatedState":{"State":["AnimatedWidget"]},"SlideTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"MatrixTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScaleTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RotationTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SizeTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DecoratedBoxTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ListenableBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AnimatedBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"UndoHistory":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"UndoHistoryState":{"State":["UndoHistory<1>"]},"UndoHistoryController":{"ValueNotifier":["UndoHistoryValue"],"Listenable":[]},"ValueListenableBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ValueListenableBuilderState":{"State":["ValueListenableBuilder<1>"]},"_ViewScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PipelineOwnerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"View":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RawView":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RawViewElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_DeprecatedRawViewKey":{"GlobalKey":["1"],"Key":[],"GlobalKey.T":"1"},"Viewport":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ViewportElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"ShrinkWrappingViewport":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VisibilityScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Visibility":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_Visibility":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderVisibility":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"WidgetSpan":{"InlineSpan":[],"DiagnosticableTree":[]},"_WidgetSpanParentData":{"ParentDataWidget":["TextParentData"],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"ParentDataWidget.T":"TextParentData"},"_AutoScaleInlineWidget":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderScaledInlineWidget":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"WillPopScope":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WillPopScopeState":{"State":["WillPopScope"]},"BlockPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BlockPickerState":{"State":["BlockPicker"]},"JsonViewer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"JsonObjectViewer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"JsonArrayViewer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_JsonViewerState":{"State":["JsonViewer"]},"JsonObjectViewerState":{"State":["JsonObjectViewer"]},"_JsonArrayViewerState":{"State":["JsonArrayViewer"]},"GlobalCupertinoLocalizations":{"CupertinoLocalizations":[]},"_GlobalCupertinoLocalizationsDelegate":{"LocalizationsDelegate":["CupertinoLocalizations"],"LocalizationsDelegate.T":"CupertinoLocalizations"},"CupertinoLocalizationAf":{"CupertinoLocalizations":[]},"CupertinoLocalizationAm":{"CupertinoLocalizations":[]},"CupertinoLocalizationAr":{"CupertinoLocalizations":[]},"CupertinoLocalizationAs":{"CupertinoLocalizations":[]},"CupertinoLocalizationAz":{"CupertinoLocalizations":[]},"CupertinoLocalizationBe":{"CupertinoLocalizations":[]},"CupertinoLocalizationBg":{"CupertinoLocalizations":[]},"CupertinoLocalizationBn":{"CupertinoLocalizations":[]},"CupertinoLocalizationBs":{"CupertinoLocalizations":[]},"CupertinoLocalizationCa":{"CupertinoLocalizations":[]},"CupertinoLocalizationCs":{"CupertinoLocalizations":[]},"CupertinoLocalizationCy":{"CupertinoLocalizations":[]},"CupertinoLocalizationDa":{"CupertinoLocalizations":[]},"CupertinoLocalizationDe":{"CupertinoLocalizations":[]},"CupertinoLocalizationDeCh":{"CupertinoLocalizations":[]},"CupertinoLocalizationEl":{"CupertinoLocalizations":[]},"CupertinoLocalizationEn":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnAu":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnCa":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnGb":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnIe":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnIn":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnNz":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnSg":{"CupertinoLocalizations":[]},"CupertinoLocalizationEnZa":{"CupertinoLocalizations":[]},"CupertinoLocalizationEs":{"CupertinoLocalizations":[]},"CupertinoLocalizationEs419":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsAr":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsBo":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsCl":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsCo":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsCr":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsDo":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsEc":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsGt":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsHn":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsMx":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsNi":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsPa":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsPe":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsPr":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsPy":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsSv":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsUs":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsUy":{"CupertinoLocalizations":[]},"CupertinoLocalizationEsVe":{"CupertinoLocalizations":[]},"CupertinoLocalizationEt":{"CupertinoLocalizations":[]},"CupertinoLocalizationEu":{"CupertinoLocalizations":[]},"CupertinoLocalizationFa":{"CupertinoLocalizations":[]},"CupertinoLocalizationFi":{"CupertinoLocalizations":[]},"CupertinoLocalizationFil":{"CupertinoLocalizations":[]},"CupertinoLocalizationFr":{"CupertinoLocalizations":[]},"CupertinoLocalizationFrCa":{"CupertinoLocalizations":[]},"CupertinoLocalizationGl":{"CupertinoLocalizations":[]},"CupertinoLocalizationGsw":{"CupertinoLocalizations":[]},"CupertinoLocalizationGu":{"CupertinoLocalizations":[]},"CupertinoLocalizationHe":{"CupertinoLocalizations":[]},"CupertinoLocalizationHi":{"CupertinoLocalizations":[]},"CupertinoLocalizationHr":{"CupertinoLocalizations":[]},"CupertinoLocalizationHu":{"CupertinoLocalizations":[]},"CupertinoLocalizationHy":{"CupertinoLocalizations":[]},"CupertinoLocalizationId":{"CupertinoLocalizations":[]},"CupertinoLocalizationIs":{"CupertinoLocalizations":[]},"CupertinoLocalizationIt":{"CupertinoLocalizations":[]},"CupertinoLocalizationJa":{"CupertinoLocalizations":[]},"CupertinoLocalizationKa":{"CupertinoLocalizations":[]},"CupertinoLocalizationKk":{"CupertinoLocalizations":[]},"CupertinoLocalizationKm":{"CupertinoLocalizations":[]},"CupertinoLocalizationKn":{"CupertinoLocalizations":[]},"CupertinoLocalizationKo":{"CupertinoLocalizations":[]},"CupertinoLocalizationKy":{"CupertinoLocalizations":[]},"CupertinoLocalizationLo":{"CupertinoLocalizations":[]},"CupertinoLocalizationLt":{"CupertinoLocalizations":[]},"CupertinoLocalizationLv":{"CupertinoLocalizations":[]},"CupertinoLocalizationMk":{"CupertinoLocalizations":[]},"CupertinoLocalizationMl":{"CupertinoLocalizations":[]},"CupertinoLocalizationMn":{"CupertinoLocalizations":[]},"CupertinoLocalizationMr":{"CupertinoLocalizations":[]},"CupertinoLocalizationMs":{"CupertinoLocalizations":[]},"CupertinoLocalizationMy":{"CupertinoLocalizations":[]},"CupertinoLocalizationNb":{"CupertinoLocalizations":[]},"CupertinoLocalizationNe":{"CupertinoLocalizations":[]},"CupertinoLocalizationNl":{"CupertinoLocalizations":[]},"CupertinoLocalizationNo":{"CupertinoLocalizations":[]},"CupertinoLocalizationOr":{"CupertinoLocalizations":[]},"CupertinoLocalizationPa":{"CupertinoLocalizations":[]},"CupertinoLocalizationPl":{"CupertinoLocalizations":[]},"CupertinoLocalizationPt":{"CupertinoLocalizations":[]},"CupertinoLocalizationPtPt":{"CupertinoLocalizations":[]},"CupertinoLocalizationRo":{"CupertinoLocalizations":[]},"CupertinoLocalizationRu":{"CupertinoLocalizations":[]},"CupertinoLocalizationSi":{"CupertinoLocalizations":[]},"CupertinoLocalizationSk":{"CupertinoLocalizations":[]},"CupertinoLocalizationSl":{"CupertinoLocalizations":[]},"CupertinoLocalizationSq":{"CupertinoLocalizations":[]},"CupertinoLocalizationSr":{"CupertinoLocalizations":[]},"CupertinoLocalizationSrCyrl":{"CupertinoLocalizations":[]},"CupertinoLocalizationSrLatn":{"CupertinoLocalizations":[]},"CupertinoLocalizationSv":{"CupertinoLocalizations":[]},"CupertinoLocalizationSw":{"CupertinoLocalizations":[]},"CupertinoLocalizationTa":{"CupertinoLocalizations":[]},"CupertinoLocalizationTe":{"CupertinoLocalizations":[]},"CupertinoLocalizationTh":{"CupertinoLocalizations":[]},"CupertinoLocalizationTl":{"CupertinoLocalizations":[]},"CupertinoLocalizationTr":{"CupertinoLocalizations":[]},"CupertinoLocalizationUk":{"CupertinoLocalizations":[]},"CupertinoLocalizationUr":{"CupertinoLocalizations":[]},"CupertinoLocalizationUz":{"CupertinoLocalizations":[]},"CupertinoLocalizationVi":{"CupertinoLocalizations":[]},"CupertinoLocalizationZh":{"CupertinoLocalizations":[]},"CupertinoLocalizationZhHans":{"CupertinoLocalizations":[]},"CupertinoLocalizationZhHant":{"CupertinoLocalizations":[]},"CupertinoLocalizationZhHantHk":{"CupertinoLocalizations":[]},"CupertinoLocalizationZhHantTw":{"CupertinoLocalizations":[]},"CupertinoLocalizationZu":{"CupertinoLocalizations":[]},"MaterialLocalizationAf":{"MaterialLocalizations":[]},"MaterialLocalizationAm":{"MaterialLocalizations":[]},"MaterialLocalizationAr":{"MaterialLocalizations":[]},"MaterialLocalizationAs":{"MaterialLocalizations":[]},"MaterialLocalizationAz":{"MaterialLocalizations":[]},"MaterialLocalizationBe":{"MaterialLocalizations":[]},"MaterialLocalizationBg":{"MaterialLocalizations":[]},"MaterialLocalizationBn":{"MaterialLocalizations":[]},"MaterialLocalizationBs":{"MaterialLocalizations":[]},"MaterialLocalizationCa":{"MaterialLocalizations":[]},"MaterialLocalizationCs":{"MaterialLocalizations":[]},"MaterialLocalizationCy":{"MaterialLocalizations":[]},"MaterialLocalizationDa":{"MaterialLocalizations":[]},"MaterialLocalizationDe":{"MaterialLocalizations":[]},"MaterialLocalizationDeCh":{"MaterialLocalizations":[]},"MaterialLocalizationEl":{"MaterialLocalizations":[]},"MaterialLocalizationEn":{"MaterialLocalizations":[]},"MaterialLocalizationEnAu":{"MaterialLocalizations":[]},"MaterialLocalizationEnCa":{"MaterialLocalizations":[]},"MaterialLocalizationEnGb":{"MaterialLocalizations":[]},"MaterialLocalizationEnIe":{"MaterialLocalizations":[]},"MaterialLocalizationEnIn":{"MaterialLocalizations":[]},"MaterialLocalizationEnNz":{"MaterialLocalizations":[]},"MaterialLocalizationEnSg":{"MaterialLocalizations":[]},"MaterialLocalizationEnZa":{"MaterialLocalizations":[]},"MaterialLocalizationEs":{"MaterialLocalizations":[]},"MaterialLocalizationEs419":{"MaterialLocalizations":[]},"MaterialLocalizationEsAr":{"MaterialLocalizations":[]},"MaterialLocalizationEsBo":{"MaterialLocalizations":[]},"MaterialLocalizationEsCl":{"MaterialLocalizations":[]},"MaterialLocalizationEsCo":{"MaterialLocalizations":[]},"MaterialLocalizationEsCr":{"MaterialLocalizations":[]},"MaterialLocalizationEsDo":{"MaterialLocalizations":[]},"MaterialLocalizationEsEc":{"MaterialLocalizations":[]},"MaterialLocalizationEsGt":{"MaterialLocalizations":[]},"MaterialLocalizationEsHn":{"MaterialLocalizations":[]},"MaterialLocalizationEsMx":{"MaterialLocalizations":[]},"MaterialLocalizationEsNi":{"MaterialLocalizations":[]},"MaterialLocalizationEsPa":{"MaterialLocalizations":[]},"MaterialLocalizationEsPe":{"MaterialLocalizations":[]},"MaterialLocalizationEsPr":{"MaterialLocalizations":[]},"MaterialLocalizationEsPy":{"MaterialLocalizations":[]},"MaterialLocalizationEsSv":{"MaterialLocalizations":[]},"MaterialLocalizationEsUs":{"MaterialLocalizations":[]},"MaterialLocalizationEsUy":{"MaterialLocalizations":[]},"MaterialLocalizationEsVe":{"MaterialLocalizations":[]},"MaterialLocalizationEt":{"MaterialLocalizations":[]},"MaterialLocalizationEu":{"MaterialLocalizations":[]},"MaterialLocalizationFa":{"MaterialLocalizations":[]},"MaterialLocalizationFi":{"MaterialLocalizations":[]},"MaterialLocalizationFil":{"MaterialLocalizations":[]},"MaterialLocalizationFr":{"MaterialLocalizations":[]},"MaterialLocalizationFrCa":{"MaterialLocalizations":[]},"MaterialLocalizationGl":{"MaterialLocalizations":[]},"MaterialLocalizationGsw":{"MaterialLocalizations":[]},"MaterialLocalizationGu":{"MaterialLocalizations":[]},"MaterialLocalizationHe":{"MaterialLocalizations":[]},"MaterialLocalizationHi":{"MaterialLocalizations":[]},"MaterialLocalizationHr":{"MaterialLocalizations":[]},"MaterialLocalizationHu":{"MaterialLocalizations":[]},"MaterialLocalizationHy":{"MaterialLocalizations":[]},"MaterialLocalizationId":{"MaterialLocalizations":[]},"MaterialLocalizationIs":{"MaterialLocalizations":[]},"MaterialLocalizationIt":{"MaterialLocalizations":[]},"MaterialLocalizationJa":{"MaterialLocalizations":[]},"MaterialLocalizationKa":{"MaterialLocalizations":[]},"MaterialLocalizationKk":{"MaterialLocalizations":[]},"MaterialLocalizationKm":{"MaterialLocalizations":[]},"MaterialLocalizationKn":{"MaterialLocalizations":[]},"MaterialLocalizationKo":{"MaterialLocalizations":[]},"MaterialLocalizationKy":{"MaterialLocalizations":[]},"MaterialLocalizationLo":{"MaterialLocalizations":[]},"MaterialLocalizationLt":{"MaterialLocalizations":[]},"MaterialLocalizationLv":{"MaterialLocalizations":[]},"MaterialLocalizationMk":{"MaterialLocalizations":[]},"MaterialLocalizationMl":{"MaterialLocalizations":[]},"MaterialLocalizationMn":{"MaterialLocalizations":[]},"MaterialLocalizationMr":{"MaterialLocalizations":[]},"MaterialLocalizationMs":{"MaterialLocalizations":[]},"MaterialLocalizationMy":{"MaterialLocalizations":[]},"MaterialLocalizationNb":{"MaterialLocalizations":[]},"MaterialLocalizationNe":{"MaterialLocalizations":[]},"MaterialLocalizationNl":{"MaterialLocalizations":[]},"MaterialLocalizationNo":{"MaterialLocalizations":[]},"MaterialLocalizationOr":{"MaterialLocalizations":[]},"MaterialLocalizationPa":{"MaterialLocalizations":[]},"MaterialLocalizationPl":{"MaterialLocalizations":[]},"MaterialLocalizationPs":{"MaterialLocalizations":[]},"MaterialLocalizationPt":{"MaterialLocalizations":[]},"MaterialLocalizationPtPt":{"MaterialLocalizations":[]},"MaterialLocalizationRo":{"MaterialLocalizations":[]},"MaterialLocalizationRu":{"MaterialLocalizations":[]},"MaterialLocalizationSi":{"MaterialLocalizations":[]},"MaterialLocalizationSk":{"MaterialLocalizations":[]},"MaterialLocalizationSl":{"MaterialLocalizations":[]},"MaterialLocalizationSq":{"MaterialLocalizations":[]},"MaterialLocalizationSr":{"MaterialLocalizations":[]},"MaterialLocalizationSrCyrl":{"MaterialLocalizations":[]},"MaterialLocalizationSrLatn":{"MaterialLocalizations":[]},"MaterialLocalizationSv":{"MaterialLocalizations":[]},"MaterialLocalizationSw":{"MaterialLocalizations":[]},"MaterialLocalizationTa":{"MaterialLocalizations":[]},"MaterialLocalizationTe":{"MaterialLocalizations":[]},"MaterialLocalizationTh":{"MaterialLocalizations":[]},"MaterialLocalizationTl":{"MaterialLocalizations":[]},"MaterialLocalizationTr":{"MaterialLocalizations":[]},"MaterialLocalizationUk":{"MaterialLocalizations":[]},"MaterialLocalizationUr":{"MaterialLocalizations":[]},"MaterialLocalizationUz":{"MaterialLocalizations":[]},"MaterialLocalizationVi":{"MaterialLocalizations":[]},"MaterialLocalizationZh":{"MaterialLocalizations":[]},"MaterialLocalizationZhHans":{"MaterialLocalizations":[]},"MaterialLocalizationZhHant":{"MaterialLocalizations":[]},"MaterialLocalizationZhHantHk":{"MaterialLocalizations":[]},"MaterialLocalizationZhHantTw":{"MaterialLocalizations":[]},"MaterialLocalizationZu":{"MaterialLocalizations":[]},"WidgetsLocalizationAf":{"WidgetsLocalizations":[]},"WidgetsLocalizationAm":{"WidgetsLocalizations":[]},"WidgetsLocalizationAr":{"WidgetsLocalizations":[]},"WidgetsLocalizationAs":{"WidgetsLocalizations":[]},"WidgetsLocalizationAz":{"WidgetsLocalizations":[]},"WidgetsLocalizationBe":{"WidgetsLocalizations":[]},"WidgetsLocalizationBg":{"WidgetsLocalizations":[]},"WidgetsLocalizationBn":{"WidgetsLocalizations":[]},"WidgetsLocalizationBs":{"WidgetsLocalizations":[]},"WidgetsLocalizationCa":{"WidgetsLocalizations":[]},"WidgetsLocalizationCs":{"WidgetsLocalizations":[]},"WidgetsLocalizationCy":{"WidgetsLocalizations":[]},"WidgetsLocalizationDa":{"WidgetsLocalizations":[]},"WidgetsLocalizationDe":{"WidgetsLocalizations":[]},"WidgetsLocalizationDeCh":{"WidgetsLocalizations":[]},"WidgetsLocalizationEl":{"WidgetsLocalizations":[]},"WidgetsLocalizationEn":{"WidgetsLocalizations":[]},"WidgetsLocalizationEnAu":{"WidgetsLocalizations":[]},"WidgetsLocalizationEnCa":{"WidgetsLocalizations":[]},"WidgetsLocalizationEnGb":{"WidgetsLocalizations":[]},"WidgetsLocalizationEnIe":{"WidgetsLocalizations":[]},"WidgetsLocalizationEnIn":{"WidgetsLocalizations":[]},"WidgetsLocalizationEnNz":{"WidgetsLocalizations":[]},"WidgetsLocalizationEnSg":{"WidgetsLocalizations":[]},"WidgetsLocalizationEnZa":{"WidgetsLocalizations":[]},"WidgetsLocalizationEs":{"WidgetsLocalizations":[]},"WidgetsLocalizationEs419":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsAr":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsBo":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsCl":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsCo":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsCr":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsDo":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsEc":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsGt":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsHn":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsMx":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsNi":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsPa":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsPe":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsPr":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsPy":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsSv":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsUs":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsUy":{"WidgetsLocalizations":[]},"WidgetsLocalizationEsVe":{"WidgetsLocalizations":[]},"WidgetsLocalizationEt":{"WidgetsLocalizations":[]},"WidgetsLocalizationEu":{"WidgetsLocalizations":[]},"WidgetsLocalizationFa":{"WidgetsLocalizations":[]},"WidgetsLocalizationFi":{"WidgetsLocalizations":[]},"WidgetsLocalizationFil":{"WidgetsLocalizations":[]},"WidgetsLocalizationFr":{"WidgetsLocalizations":[]},"WidgetsLocalizationFrCa":{"WidgetsLocalizations":[]},"WidgetsLocalizationGl":{"WidgetsLocalizations":[]},"WidgetsLocalizationGsw":{"WidgetsLocalizations":[]},"WidgetsLocalizationGu":{"WidgetsLocalizations":[]},"WidgetsLocalizationHe":{"WidgetsLocalizations":[]},"WidgetsLocalizationHi":{"WidgetsLocalizations":[]},"WidgetsLocalizationHr":{"WidgetsLocalizations":[]},"WidgetsLocalizationHu":{"WidgetsLocalizations":[]},"WidgetsLocalizationHy":{"WidgetsLocalizations":[]},"WidgetsLocalizationId":{"WidgetsLocalizations":[]},"WidgetsLocalizationIs":{"WidgetsLocalizations":[]},"WidgetsLocalizationIt":{"WidgetsLocalizations":[]},"WidgetsLocalizationJa":{"WidgetsLocalizations":[]},"WidgetsLocalizationKa":{"WidgetsLocalizations":[]},"WidgetsLocalizationKk":{"WidgetsLocalizations":[]},"WidgetsLocalizationKm":{"WidgetsLocalizations":[]},"WidgetsLocalizationKn":{"WidgetsLocalizations":[]},"WidgetsLocalizationKo":{"WidgetsLocalizations":[]},"WidgetsLocalizationKy":{"WidgetsLocalizations":[]},"WidgetsLocalizationLo":{"WidgetsLocalizations":[]},"WidgetsLocalizationLt":{"WidgetsLocalizations":[]},"WidgetsLocalizationLv":{"WidgetsLocalizations":[]},"WidgetsLocalizationMk":{"WidgetsLocalizations":[]},"WidgetsLocalizationMl":{"WidgetsLocalizations":[]},"WidgetsLocalizationMn":{"WidgetsLocalizations":[]},"WidgetsLocalizationMr":{"WidgetsLocalizations":[]},"WidgetsLocalizationMs":{"WidgetsLocalizations":[]},"WidgetsLocalizationMy":{"WidgetsLocalizations":[]},"WidgetsLocalizationNb":{"WidgetsLocalizations":[]},"WidgetsLocalizationNe":{"WidgetsLocalizations":[]},"WidgetsLocalizationNl":{"WidgetsLocalizations":[]},"WidgetsLocalizationNo":{"WidgetsLocalizations":[]},"WidgetsLocalizationOr":{"WidgetsLocalizations":[]},"WidgetsLocalizationPa":{"WidgetsLocalizations":[]},"WidgetsLocalizationPl":{"WidgetsLocalizations":[]},"WidgetsLocalizationPs":{"WidgetsLocalizations":[]},"WidgetsLocalizationPt":{"WidgetsLocalizations":[]},"WidgetsLocalizationPtPt":{"WidgetsLocalizations":[]},"WidgetsLocalizationRo":{"WidgetsLocalizations":[]},"WidgetsLocalizationRu":{"WidgetsLocalizations":[]},"WidgetsLocalizationSi":{"WidgetsLocalizations":[]},"WidgetsLocalizationSk":{"WidgetsLocalizations":[]},"WidgetsLocalizationSl":{"WidgetsLocalizations":[]},"WidgetsLocalizationSq":{"WidgetsLocalizations":[]},"WidgetsLocalizationSr":{"WidgetsLocalizations":[]},"WidgetsLocalizationSrCyrl":{"WidgetsLocalizations":[]},"WidgetsLocalizationSrLatn":{"WidgetsLocalizations":[]},"WidgetsLocalizationSv":{"WidgetsLocalizations":[]},"WidgetsLocalizationSw":{"WidgetsLocalizations":[]},"WidgetsLocalizationTa":{"WidgetsLocalizations":[]},"WidgetsLocalizationTe":{"WidgetsLocalizations":[]},"WidgetsLocalizationTh":{"WidgetsLocalizations":[]},"WidgetsLocalizationTl":{"WidgetsLocalizations":[]},"WidgetsLocalizationTr":{"WidgetsLocalizations":[]},"WidgetsLocalizationUk":{"WidgetsLocalizations":[]},"WidgetsLocalizationUr":{"WidgetsLocalizations":[]},"WidgetsLocalizationUz":{"WidgetsLocalizations":[]},"WidgetsLocalizationVi":{"WidgetsLocalizations":[]},"WidgetsLocalizationZh":{"WidgetsLocalizations":[]},"WidgetsLocalizationZhHans":{"WidgetsLocalizations":[]},"WidgetsLocalizationZhHant":{"WidgetsLocalizations":[]},"WidgetsLocalizationZhHantHk":{"WidgetsLocalizations":[]},"WidgetsLocalizationZhHantTw":{"WidgetsLocalizations":[]},"WidgetsLocalizationZu":{"WidgetsLocalizations":[]},"GlobalMaterialLocalizations":{"MaterialLocalizations":[]},"_MaterialLocalizationsDelegate0":{"LocalizationsDelegate":["MaterialLocalizations"],"LocalizationsDelegate.T":"MaterialLocalizations"},"GlobalWidgetsLocalizations":{"WidgetsLocalizations":[]},"_WidgetsLocalizationsDelegate0":{"LocalizationsDelegate":["WidgetsLocalizations"],"LocalizationsDelegate.T":"WidgetsLocalizations"},"StoreProvider":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"StoreConnector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StoreStreamListener":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"StoreBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StoreStreamListenerState":{"State":["_StoreStreamListener<1,2>"]},"StoreProviderError":{"Error":[]},"ConverterError":{"Error":[]},"ActionPaneConfiguration":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerMotion":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomSlidableAction":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAction":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableAutoCloseData":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseBarrierNotificationSender":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseBarrierBehaviorListener":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableNotificationSender":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseBehaviorInteractor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseInteractor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseBehaviorListener":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseNotificationSender":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableAutoCloseBarrierInteractor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableAutoCloseBarrierNotificationSenderState":{"State":["SlidableAutoCloseBarrierNotificationSender"]},"_SlidableAutoCloseBarrierBehaviorListenerState":{"State":["SlidableAutoCloseBarrierBehaviorListener"]},"_SlidableNotificationSenderState0":{"State":["_SlidableNotificationSender"]},"_ValueNotifier":{"ValueNotifier":["1"],"Listenable":[]},"SlidableDismissal":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableDismissalState":{"State":["SlidableDismissal"]},"_SizeTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FlexEntranceTransitionParentData":{"FlexParentData":[],"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"FlexEntranceTransition":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderFlexEntranceTransition":{"RenderBoxContainerDefaultsMixin":["RenderBox","_FlexEntranceTransitionParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","_FlexEntranceTransitionParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"_FlexEntranceTransitionParentData","RenderBoxContainerDefaultsMixin.1":"_FlexEntranceTransitionParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"SlidableGestureDetector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableGestureDetectorState":{"State":["SlidableGestureDetector"]},"_InheritedSlidableNotification":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableGroupBehaviorListener":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableGroupBehaviorListenerState":{"State":["SlidableGroupBehaviorListener<1>"]},"_SlidableNotificationListenerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SlidableNotificationSender":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableNotificationSenderState":{"State":["SlidableNotificationSender"]},"SlidableScrollingBehavior":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableScrollingBehaviorState":{"State":["SlidableScrollingBehavior"]},"ActionPane":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ActionPaneScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Slidable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SlidableControllerScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ActionPaneState":{"State":["ActionPane"]},"_SlidableState":{"State":["Slidable"]},"_SlidableClipper":{"CustomClipper":["Rect"],"Listenable":[]},"StaggeredGridParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"RenderStaggeredGrid":{"RenderBoxContainerDefaultsMixin":["RenderBox","StaggeredGridParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","StaggeredGridParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"StaggeredGridParentData","RenderBoxContainerDefaultsMixin.1":"StaggeredGridParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"StaggeredGrid":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomSizeTransition":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"StyledToast":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_StyledToastWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"StyledToastWidgetState":{"State":["_StyledToastWidget"],"WidgetsBindingObserver":[]},"_StyledToastState":{"State":["StyledToast"]},"StyledToastTheme":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"BuildInOrder":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderBuildInOrder":{"RenderBoxContainerDefaultsMixin":["RenderBox","ContainerBoxParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","ContainerBoxParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"ContainerBoxParentData","RenderBoxContainerDefaultsMixin.1":"ContainerBoxParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"Follower":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderFollower":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"FollowerLayer":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"FollowerFadeOutBeyondBoundary":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"Leader":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderLeader":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"LeaderLayer":{"ContainerLayer0":[],"Layer0":[],"DiagnosticableTree":[]},"LeaderLink":{"Listenable":[]},"AttributeName":{"Comparable":["Object"]},"Element":{"Node0":[]},"Document":{"Node0":[]},"DocumentType":{"Node0":[]},"Text0":{"Node0":[]},"Comment":{"Node0":[]},"NodeList":{"ListProxy":["Node0"],"ListBase":["Node0"],"List":["Node0"],"EfficientLengthIterable":["Node0"],"Iterable":["Node0"],"ListBase.E":"Node0","Iterable.E":"Node0"},"FilteredElementList":{"ListBase":["Element"],"List":["Element"],"EfficientLengthIterable":["Element"],"Iterable":["Element"],"ListBase.E":"Element","Iterable.E":"Element"},"ParseError":{"Exception":[]},"InitialPhase":{"Phase":[]},"BeforeHtmlPhase":{"Phase":[]},"BeforeHeadPhase":{"Phase":[]},"InHeadPhase":{"Phase":[]},"AfterHeadPhase":{"Phase":[]},"InBodyPhase":{"Phase":[]},"TextPhase":{"Phase":[]},"InTablePhase":{"Phase":[]},"InTableTextPhase":{"Phase":[]},"InCaptionPhase":{"Phase":[]},"InColumnGroupPhase":{"Phase":[]},"InTableBodyPhase":{"Phase":[]},"InRowPhase":{"Phase":[]},"InCellPhase":{"Phase":[]},"InSelectPhase":{"Phase":[]},"InSelectInTablePhase":{"Phase":[]},"InForeignContentPhase":{"Phase":[]},"AfterBodyPhase":{"Phase":[]},"InFramesetPhase":{"Phase":[]},"AfterFramesetPhase":{"Phase":[]},"AfterAfterBodyPhase":{"Phase":[]},"AfterAfterFramesetPhase":{"Phase":[]},"ElementCssClassSet":{"SetBase":["String"],"Set":["String"],"EfficientLengthIterable":["String"],"Iterable":["String"],"Iterable.E":"String","SetBase.E":"String"},"_CssClassSetImpl":{"SetBase":["String"],"Set":["String"],"EfficientLengthIterable":["String"],"Iterable":["String"]},"_EncodingRangeException":{"Exception":[]},"ListProxy":{"ListBase":["1"],"List":["1"],"EfficientLengthIterable":["1"],"Iterable":["1"]},"StringToken":{"Token0":[]},"TagToken":{"Token0":[]},"StartTagToken":{"TagToken":[],"Token0":[]},"EndTagToken":{"TagToken":[],"Token0":[]},"ParseErrorToken":{"StringToken":[],"Token0":[]},"CharactersToken":{"StringToken":[],"Token0":[]},"SpaceCharactersToken":{"StringToken":[],"Token0":[]},"CommentToken":{"StringToken":[],"Token0":[]},"DoctypeToken":{"Token0":[]},"ActiveFormattingElements":{"ListProxy":["Element?"],"ListBase":["Element?"],"List":["Element?"],"EfficientLengthIterable":["Element?"],"Iterable":["Element?"],"ListBase.E":"Element?","Iterable.E":"Element?"},"BaseClient":{"Client0":[]},"BrowserClient":{"Client0":[]},"ByteStream":{"Stream":["List"],"Stream.T":"List"},"ClientException":{"Exception":[]},"CaseInsensitiveMap":{"CanonicalizedMap":["String","String","1"],"Map":["String","1"],"CanonicalizedMap.V":"1","CanonicalizedMap.K":"String","CanonicalizedMap.C":"String"},"ColorFloat16":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorFloat32":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorFloat64":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorInt16":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorInt32":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorInt8":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorUint1":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorUint16":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorUint2":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorUint32":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorUint4":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorUint8":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorRgb8":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ColorRgba8":{"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"IfdByteValue":{"IfdValue":[]},"IfdValueAscii":{"IfdValue":[]},"InternalPngFrame":{"PngFrame":[]},"Image0":{"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageData0":{"Iterable":["Pixel"]},"ImageDataFloat16":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataFloat32":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataFloat64":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataInt16":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataInt32":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataInt8":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataUint1":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataUint16":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataUint2":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataUint32":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataUint4":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"ImageDataUint8":{"ImageData0":[],"Iterable":["Pixel"],"Iterable.E":"Pixel"},"PixelFloat16":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelFloat32":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelFloat64":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelInt16":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelInt32":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelInt8":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelUint1":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelUint16":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelUint2":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelUint32":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelUint4":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelUint8":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"PixelUndefined":{"Pixel":[],"Color1":[],"Iterable":["num"],"Iterable.E":"num"},"ImageException":{"Exception":[]},"BillingResultWrapper":{"HasBillingResponse":[]},"ProductDetailsResponseWrapper":{"HasBillingResponse":[]},"PurchasesResultWrapper":{"HasBillingResponse":[]},"GooglePlayProductDetails":{"ProductDetails":[]},"GooglePlayPurchaseDetails":{"PurchaseDetails":[]},"InAppPurchaseException":{"Exception":[]},"AppStoreProductDetails":{"ProductDetails":[]},"AppStorePurchaseDetails":{"PurchaseDetails":[]},"_DateFormatLiteralField":{"_DateFormatField":[]},"_DateFormatQuotedField":{"_DateFormatField":[]},"_DateFormatPatternField":{"_DateFormatField":[]},"LocaleDataException":{"Exception":[]},"CountryPickerDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CountryPickerDialogState":{"State":["CountryPickerDialog"]},"IntlPhoneField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_IntlPhoneFieldState":{"State":["IntlPhoneField"]},"_$AccountEntitySerializer":{"StructuredSerializer":["AccountEntity"],"Serializer":["AccountEntity"]},"_$AccountEntity":{"AccountEntity":[]},"BankAccountEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$BankAccountListResponseSerializer":{"StructuredSerializer":["BankAccountListResponse"],"Serializer":["BankAccountListResponse"]},"_$BankAccountItemResponseSerializer":{"StructuredSerializer":["BankAccountItemResponse"],"Serializer":["BankAccountItemResponse"]},"_$BankAccountEntitySerializer":{"StructuredSerializer":["BankAccountEntity"],"Serializer":["BankAccountEntity"]},"_$BankAccountListResponse":{"BankAccountListResponse":[]},"_$BankAccountItemResponse":{"BankAccountItemResponse":[]},"_$BankAccountEntity":{"BankAccountEntity":[],"BaseEntity":[],"SelectableEntity":[]},"ClientEntity":{"BaseEntity":[],"SelectableEntity":[],"HasActivities":[]},"ClientContactEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$ClientListResponseSerializer":{"StructuredSerializer":["ClientListResponse"],"Serializer":["ClientListResponse"]},"_$ClientItemResponseSerializer":{"StructuredSerializer":["ClientItemResponse"],"Serializer":["ClientItemResponse"]},"_$ClientEntitySerializer":{"StructuredSerializer":["ClientEntity"],"Serializer":["ClientEntity"]},"_$ClientContactEntitySerializer":{"StructuredSerializer":["ClientContactEntity"],"Serializer":["ClientContactEntity"]},"_$ClientListResponse":{"ClientListResponse":[]},"_$ClientItemResponse":{"ClientItemResponse":[]},"_$ClientEntity":{"ClientEntity":[],"BaseEntity":[],"SelectableEntity":[],"HasActivities":[]},"_$ClientContactEntity":{"ClientContactEntity":[],"BaseEntity":[],"SelectableEntity":[]},"CompanyGatewayEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$CompanyGatewayListResponseSerializer":{"StructuredSerializer":["CompanyGatewayListResponse"],"Serializer":["CompanyGatewayListResponse"]},"_$CompanyGatewayItemResponseSerializer":{"StructuredSerializer":["CompanyGatewayItemResponse"],"Serializer":["CompanyGatewayItemResponse"]},"_$CompanyGatewayEntitySerializer":{"StructuredSerializer":["CompanyGatewayEntity"],"Serializer":["CompanyGatewayEntity"]},"_$FeesAndLimitsSettingsSerializer":{"StructuredSerializer":["FeesAndLimitsSettings"],"Serializer":["FeesAndLimitsSettings"]},"_$CompanyGatewayListResponse":{"CompanyGatewayListResponse":[]},"_$CompanyGatewayItemResponse":{"CompanyGatewayItemResponse":[]},"_$CompanyGatewayEntity":{"CompanyGatewayEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$FeesAndLimitsSettings":{"FeesAndLimitsSettings":[]},"CompanyEntity":{"BaseEntity":[],"SelectableEntity":[]},"GatewayEntity":{"SelectableEntity":[]},"_$CompanyEntitySerializer":{"StructuredSerializer":["CompanyEntity"],"Serializer":["CompanyEntity"]},"_$GatewayEntitySerializer":{"StructuredSerializer":["GatewayEntity"],"Serializer":["GatewayEntity"]},"_$GatewayOptionsEntitySerializer":{"StructuredSerializer":["GatewayOptionsEntity"],"Serializer":["GatewayOptionsEntity"]},"_$UserCompanyEntitySerializer":{"StructuredSerializer":["UserCompanyEntity"],"Serializer":["UserCompanyEntity"]},"_$UserSettingsEntitySerializer":{"StructuredSerializer":["UserSettingsEntity"],"Serializer":["UserSettingsEntity"]},"_$ReportSettingsEntitySerializer":{"StructuredSerializer":["ReportSettingsEntity"],"Serializer":["ReportSettingsEntity"]},"_$CompanyItemResponseSerializer":{"StructuredSerializer":["CompanyItemResponse"],"Serializer":["CompanyItemResponse"]},"_$RegistrationFieldEntitySerializer":{"StructuredSerializer":["RegistrationFieldEntity"],"Serializer":["RegistrationFieldEntity"]},"_$DashboardFieldSerializer":{"StructuredSerializer":["DashboardField"],"Serializer":["DashboardField"]},"_$CompanyEntity":{"CompanyEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$GatewayEntity":{"GatewayEntity":[],"SelectableEntity":[]},"_$GatewayOptionsEntity":{"GatewayOptionsEntity":[]},"_$UserCompanyEntity":{"UserCompanyEntity":[]},"_$UserSettingsEntity":{"UserSettingsEntity":[]},"_$ReportSettingsEntity":{"ReportSettingsEntity":[]},"_$CompanyItemResponse":{"CompanyItemResponse":[]},"_$RegistrationFieldEntity":{"RegistrationFieldEntity":[]},"_$DashboardField":{"DashboardField":[]},"_$CreditListResponseSerializer":{"StructuredSerializer":["CreditListResponse"],"Serializer":["CreditListResponse"]},"_$CreditItemResponseSerializer":{"StructuredSerializer":["CreditItemResponse"],"Serializer":["CreditItemResponse"]},"_$DateRangeSerializer":{"PrimitiveSerializer":["DateRange"],"Serializer":["DateRange"]},"_$DateRangeComparisonSerializer":{"PrimitiveSerializer":["DateRangeComparison"],"Serializer":["DateRangeComparison"]},"DesignEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$DesignListResponseSerializer":{"StructuredSerializer":["DesignListResponse"],"Serializer":["DesignListResponse"]},"_$DesignItemResponseSerializer":{"StructuredSerializer":["DesignItemResponse"],"Serializer":["DesignItemResponse"]},"_$DesignPreviewRequestSerializer":{"StructuredSerializer":["DesignPreviewRequest"],"Serializer":["DesignPreviewRequest"]},"_$DesignEntitySerializer":{"StructuredSerializer":["DesignEntity"],"Serializer":["DesignEntity"]},"_$DesignListResponse":{"DesignListResponse":[]},"_$DesignItemResponse":{"DesignItemResponse":[]},"_$DesignEntity":{"DesignEntity":[],"BaseEntity":[],"SelectableEntity":[]},"DocumentEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$DocumentListResponseSerializer":{"StructuredSerializer":["DocumentListResponse"],"Serializer":["DocumentListResponse"]},"_$DocumentItemResponseSerializer":{"StructuredSerializer":["DocumentItemResponse"],"Serializer":["DocumentItemResponse"]},"_$DocumentEntitySerializer":{"StructuredSerializer":["DocumentEntity"],"Serializer":["DocumentEntity"]},"_$DocumentListResponse":{"DocumentListResponse":[]},"_$DocumentItemResponse":{"DocumentItemResponse":[]},"_$DocumentEntity":{"DocumentEntity":[],"BaseEntity":[],"SelectableEntity":[]},"BaseEntity":{"SelectableEntity":[]},"_$EntityTypeSerializer":{"PrimitiveSerializer":["EntityType"],"Serializer":["EntityType"]},"_$EntityStateSerializer":{"PrimitiveSerializer":["EntityState"],"Serializer":["EntityState"]},"_$EmailTemplateSerializer":{"PrimitiveSerializer":["EmailTemplate"],"Serializer":["EmailTemplate"]},"_$LoginResponseSerializer":{"StructuredSerializer":["LoginResponse"],"Serializer":["LoginResponse"]},"_$ActivityEntitySerializer":{"StructuredSerializer":["ActivityEntity"],"Serializer":["ActivityEntity"]},"_$LedgerEntitySerializer":{"StructuredSerializer":["LedgerEntity"],"Serializer":["LedgerEntity"]},"_$LoginResponse":{"LoginResponse":[]},"_$ActivityEntity":{"ActivityEntity":[]},"_$LedgerEntity":{"LedgerEntity":[]},"ExpenseCategoryEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$ExpenseCategoryListResponseSerializer":{"StructuredSerializer":["ExpenseCategoryListResponse"],"Serializer":["ExpenseCategoryListResponse"]},"_$ExpenseCategoryItemResponseSerializer":{"StructuredSerializer":["ExpenseCategoryItemResponse"],"Serializer":["ExpenseCategoryItemResponse"]},"_$ExpenseCategoryEntitySerializer":{"StructuredSerializer":["ExpenseCategoryEntity"],"Serializer":["ExpenseCategoryEntity"]},"_$ExpenseCategoryListResponse":{"ExpenseCategoryListResponse":[]},"_$ExpenseCategoryItemResponse":{"ExpenseCategoryItemResponse":[]},"_$ExpenseCategoryEntity":{"ExpenseCategoryEntity":[],"BaseEntity":[],"SelectableEntity":[]},"ExpenseEntity":{"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"ExpenseStatusEntity":{"EntityStatus":[],"SelectableEntity":[]},"_$ExpenseListResponseSerializer":{"StructuredSerializer":["ExpenseListResponse"],"Serializer":["ExpenseListResponse"]},"_$ExpenseItemResponseSerializer":{"StructuredSerializer":["ExpenseItemResponse"],"Serializer":["ExpenseItemResponse"]},"_$ExpenseEntitySerializer":{"StructuredSerializer":["ExpenseEntity"],"Serializer":["ExpenseEntity"]},"_$ExpenseScheduleEntitySerializer":{"StructuredSerializer":["ExpenseScheduleEntity"],"Serializer":["ExpenseScheduleEntity"]},"_$ExpenseStatusEntitySerializer":{"StructuredSerializer":["ExpenseStatusEntity"],"Serializer":["ExpenseStatusEntity"]},"_$ExpenseListResponse":{"ExpenseListResponse":[]},"_$ExpenseItemResponse":{"ExpenseItemResponse":[]},"_$ExpenseEntity":{"ExpenseEntity":[],"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"_$ExpenseScheduleEntity":{"ExpenseScheduleEntity":[]},"_$ExpenseStatusEntity":{"ExpenseStatusEntity":[],"EntityStatus":[],"SelectableEntity":[]},"GatewayTokenEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$GatewayTokenListResponseSerializer":{"StructuredSerializer":["GatewayTokenListResponse"],"Serializer":["GatewayTokenListResponse"]},"_$GatewayTokenItemResponseSerializer":{"StructuredSerializer":["GatewayTokenItemResponse"],"Serializer":["GatewayTokenItemResponse"]},"_$GatewayTokenEntitySerializer":{"StructuredSerializer":["GatewayTokenEntity"],"Serializer":["GatewayTokenEntity"]},"_$GatewayTokenMetaEntitySerializer":{"StructuredSerializer":["GatewayTokenMetaEntity"],"Serializer":["GatewayTokenMetaEntity"]},"_$GatewayTokenEntity":{"GatewayTokenEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$GatewayTokenMetaEntity":{"GatewayTokenMetaEntity":[]},"GroupEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$GroupListResponseSerializer":{"StructuredSerializer":["GroupListResponse"],"Serializer":["GroupListResponse"]},"_$GroupItemResponseSerializer":{"StructuredSerializer":["GroupItemResponse"],"Serializer":["GroupItemResponse"]},"_$GroupEntitySerializer":{"StructuredSerializer":["GroupEntity"],"Serializer":["GroupEntity"]},"_$GroupListResponse":{"GroupListResponse":[]},"_$GroupItemResponse":{"GroupItemResponse":[]},"_$GroupEntity":{"GroupEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$HealthCheckResponseSerializer":{"StructuredSerializer":["HealthCheckResponse"],"Serializer":["HealthCheckResponse"]},"_$HealthCheckPHPResponseSerializer":{"StructuredSerializer":["HealthCheckPHPResponse"],"Serializer":["HealthCheckPHPResponse"]},"_$HealthCheckResponse":{"HealthCheckResponse":[]},"_$HealthCheckPHPResponse":{"HealthCheckPHPResponse":[]},"_$PreImportResponseSerializer":{"StructuredSerializer":["PreImportResponse"],"Serializer":["PreImportResponse"]},"_$PreImportResponseEntityDetailsSerializer":{"StructuredSerializer":["PreImportResponseEntityDetails"],"Serializer":["PreImportResponseEntityDetails"]},"_$ImportRequestSerializer":{"StructuredSerializer":["ImportRequest"],"Serializer":["ImportRequest"]},"_$ImportRequestMappingSerializer":{"StructuredSerializer":["ImportRequestMapping"],"Serializer":["ImportRequestMapping"]},"_$PreImportResponse":{"PreImportResponse":[]},"_$PreImportResponseEntityDetails":{"PreImportResponseEntityDetails":[]},"_$ImportRequestMapping":{"ImportRequestMapping":[]},"InvoiceEntity":{"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[],"BelongsToVendor":[]},"InvitationEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$InvoiceListResponseSerializer":{"StructuredSerializer":["InvoiceListResponse"],"Serializer":["InvoiceListResponse"]},"_$InvoiceItemResponseSerializer":{"StructuredSerializer":["InvoiceItemResponse"],"Serializer":["InvoiceItemResponse"]},"_$InvoiceEntitySerializer":{"StructuredSerializer":["InvoiceEntity"],"Serializer":["InvoiceEntity"]},"_$InvoiceItemEntitySerializer":{"StructuredSerializer":["InvoiceItemEntity"],"Serializer":["InvoiceItemEntity"]},"_$InvitationEntitySerializer":{"StructuredSerializer":["InvitationEntity"],"Serializer":["InvitationEntity"]},"_$InvoiceScheduleEntitySerializer":{"StructuredSerializer":["InvoiceScheduleEntity"],"Serializer":["InvoiceScheduleEntity"]},"_$InvoiceHistoryEntitySerializer":{"StructuredSerializer":["InvoiceHistoryEntity"],"Serializer":["InvoiceHistoryEntity"]},"_$InvoiceListResponse":{"InvoiceListResponse":[]},"_$InvoiceItemResponse":{"InvoiceItemResponse":[]},"_$InvoiceEntity":{"InvoiceEntity":[],"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[],"BelongsToVendor":[]},"_$InvoiceItemEntity":{"InvoiceItemEntity":[]},"_$InvitationEntity":{"InvitationEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$InvoiceScheduleEntity":{"InvoiceScheduleEntity":[]},"_$InvoiceHistoryEntity":{"InvoiceHistoryEntity":[]},"PaymentEntity":{"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"PaymentableEntity":{"SelectableEntity":[]},"_$PaymentListResponseSerializer":{"StructuredSerializer":["PaymentListResponse"],"Serializer":["PaymentListResponse"]},"_$PaymentItemResponseSerializer":{"StructuredSerializer":["PaymentItemResponse"],"Serializer":["PaymentItemResponse"]},"_$PaymentEntitySerializer":{"StructuredSerializer":["PaymentEntity"],"Serializer":["PaymentEntity"]},"_$PaymentableEntitySerializer":{"StructuredSerializer":["PaymentableEntity"],"Serializer":["PaymentableEntity"]},"_$PaymentListResponse":{"PaymentListResponse":[]},"_$PaymentItemResponse":{"PaymentItemResponse":[]},"_$PaymentEntity":{"PaymentEntity":[],"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"_$PaymentableEntity":{"PaymentableEntity":[],"SelectableEntity":[]},"PaymentTermEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$PaymentTermListResponseSerializer":{"StructuredSerializer":["PaymentTermListResponse"],"Serializer":["PaymentTermListResponse"]},"_$PaymentTermItemResponseSerializer":{"StructuredSerializer":["PaymentTermItemResponse"],"Serializer":["PaymentTermItemResponse"]},"_$PaymentTermEntitySerializer":{"StructuredSerializer":["PaymentTermEntity"],"Serializer":["PaymentTermEntity"]},"_$PaymentTermListResponse":{"PaymentTermListResponse":[]},"_$PaymentTermItemResponse":{"PaymentTermItemResponse":[]},"_$PaymentTermEntity":{"PaymentTermEntity":[],"BaseEntity":[],"SelectableEntity":[]},"ProductEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$ProductListResponseSerializer":{"StructuredSerializer":["ProductListResponse"],"Serializer":["ProductListResponse"]},"_$ProductItemResponseSerializer":{"StructuredSerializer":["ProductItemResponse"],"Serializer":["ProductItemResponse"]},"_$ProductEntitySerializer":{"StructuredSerializer":["ProductEntity"],"Serializer":["ProductEntity"]},"_$ProductListResponse":{"ProductListResponse":[]},"_$ProductItemResponse":{"ProductItemResponse":[]},"_$ProductEntity":{"ProductEntity":[],"BaseEntity":[],"SelectableEntity":[]},"ProjectEntity":{"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"_$ProjectListResponseSerializer":{"StructuredSerializer":["ProjectListResponse"],"Serializer":["ProjectListResponse"]},"_$ProjectItemResponseSerializer":{"StructuredSerializer":["ProjectItemResponse"],"Serializer":["ProjectItemResponse"]},"_$ProjectEntitySerializer":{"StructuredSerializer":["ProjectEntity"],"Serializer":["ProjectEntity"]},"_$ProjectListResponse":{"ProjectListResponse":[]},"_$ProjectItemResponse":{"ProjectItemResponse":[]},"_$ProjectEntity":{"ProjectEntity":[],"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"ScheduleEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$ScheduleListResponseSerializer":{"StructuredSerializer":["ScheduleListResponse"],"Serializer":["ScheduleListResponse"]},"_$ScheduleItemResponseSerializer":{"StructuredSerializer":["ScheduleItemResponse"],"Serializer":["ScheduleItemResponse"]},"_$ScheduleEntitySerializer":{"StructuredSerializer":["ScheduleEntity"],"Serializer":["ScheduleEntity"]},"_$ScheduleParametersSerializer":{"StructuredSerializer":["ScheduleParameters"],"Serializer":["ScheduleParameters"]},"_$ScheduleListResponse":{"ScheduleListResponse":[]},"_$ScheduleItemResponse":{"ScheduleItemResponse":[]},"_$ScheduleEntity":{"ScheduleEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$ScheduleParameters":{"ScheduleParameters":[]},"_$SettingsEntitySerializer":{"StructuredSerializer":["SettingsEntity"],"Serializer":["SettingsEntity"]},"_$PdfPreviewRequestSerializer":{"StructuredSerializer":["PdfPreviewRequest"],"Serializer":["PdfPreviewRequest"]},"_$SettingsEntity":{"SettingsEntity":[]},"CountryEntity":{"SelectableEntity":[]},"_$CountryListResponseSerializer":{"StructuredSerializer":["CountryListResponse"],"Serializer":["CountryListResponse"]},"_$CountryItemResponseSerializer":{"StructuredSerializer":["CountryItemResponse"],"Serializer":["CountryItemResponse"]},"_$CountryEntitySerializer":{"StructuredSerializer":["CountryEntity"],"Serializer":["CountryEntity"]},"_$CountryEntity":{"CountryEntity":[],"SelectableEntity":[]},"CurrencyEntity":{"SelectableEntity":[]},"_$CurrencyListResponseSerializer":{"StructuredSerializer":["CurrencyListResponse"],"Serializer":["CurrencyListResponse"]},"_$CurrencyItemResponseSerializer":{"StructuredSerializer":["CurrencyItemResponse"],"Serializer":["CurrencyItemResponse"]},"_$CurrencyEntitySerializer":{"StructuredSerializer":["CurrencyEntity"],"Serializer":["CurrencyEntity"]},"_$CurrencyEntity":{"CurrencyEntity":[],"SelectableEntity":[]},"DateFormatEntity":{"SelectableEntity":[]},"_$DateFormatListResponseSerializer":{"StructuredSerializer":["DateFormatListResponse"],"Serializer":["DateFormatListResponse"]},"_$DateFormatItemResponseSerializer":{"StructuredSerializer":["DateFormatItemResponse"],"Serializer":["DateFormatItemResponse"]},"_$DateFormatEntitySerializer":{"StructuredSerializer":["DateFormatEntity"],"Serializer":["DateFormatEntity"]},"_$DateFormatEntity":{"DateFormatEntity":[],"SelectableEntity":[]},"_$DatetimeFormatListResponseSerializer":{"StructuredSerializer":["DatetimeFormatListResponse"],"Serializer":["DatetimeFormatListResponse"]},"_$DatetimeFormatItemResponseSerializer":{"StructuredSerializer":["DatetimeFormatItemResponse"],"Serializer":["DatetimeFormatItemResponse"]},"_$DatetimeFormatEntitySerializer":{"StructuredSerializer":["DatetimeFormatEntity"],"Serializer":["DatetimeFormatEntity"]},"_$DatetimeFormatEntity":{"DatetimeFormatEntity":[]},"DocumentStatusEntity":{"EntityStatus":[],"SelectableEntity":[]},"_$DocumentStatusEntity":{"DocumentStatusEntity":[],"EntityStatus":[],"SelectableEntity":[]},"FontEntity":{"SelectableEntity":[]},"_$FontEntity":{"SelectableEntity":[]},"IndustryEntity":{"SelectableEntity":[]},"_$IndustryListResponseSerializer":{"StructuredSerializer":["IndustryListResponse"],"Serializer":["IndustryListResponse"]},"_$IndustryItemResponseSerializer":{"StructuredSerializer":["IndustryItemResponse"],"Serializer":["IndustryItemResponse"]},"_$IndustryEntitySerializer":{"StructuredSerializer":["IndustryEntity"],"Serializer":["IndustryEntity"]},"_$IndustryEntity":{"IndustryEntity":[],"SelectableEntity":[]},"InvoiceStatusEntity":{"EntityStatus":[],"SelectableEntity":[]},"_$InvoiceStatusEntitySerializer":{"StructuredSerializer":["InvoiceStatusEntity"],"Serializer":["InvoiceStatusEntity"]},"_$InvoiceStatusEntity":{"InvoiceStatusEntity":[],"EntityStatus":[],"SelectableEntity":[]},"LanguageEntity":{"SelectableEntity":[]},"_$LanguageListResponseSerializer":{"StructuredSerializer":["LanguageListResponse"],"Serializer":["LanguageListResponse"]},"_$LanguageItemResponseSerializer":{"StructuredSerializer":["LanguageItemResponse"],"Serializer":["LanguageItemResponse"]},"_$LanguageEntitySerializer":{"StructuredSerializer":["LanguageEntity"],"Serializer":["LanguageEntity"]},"_$LanguageEntity":{"LanguageEntity":[],"SelectableEntity":[]},"PaymentStatusEntity":{"EntityStatus":[],"SelectableEntity":[]},"_$PaymentStatusEntity":{"PaymentStatusEntity":[],"EntityStatus":[],"SelectableEntity":[]},"PaymentTypeEntity":{"SelectableEntity":[]},"_$PaymentTypeListResponseSerializer":{"StructuredSerializer":["PaymentTypeListResponse"],"Serializer":["PaymentTypeListResponse"]},"_$PaymentTypeItemResponseSerializer":{"StructuredSerializer":["PaymentTypeItemResponse"],"Serializer":["PaymentTypeItemResponse"]},"_$PaymentTypeEntitySerializer":{"StructuredSerializer":["PaymentTypeEntity"],"Serializer":["PaymentTypeEntity"]},"_$PaymentTypeEntity":{"PaymentTypeEntity":[],"SelectableEntity":[]},"SizeEntity":{"SelectableEntity":[]},"_$SizeListResponseSerializer":{"StructuredSerializer":["SizeListResponse"],"Serializer":["SizeListResponse"]},"_$SizeItemResponseSerializer":{"StructuredSerializer":["SizeItemResponse"],"Serializer":["SizeItemResponse"]},"_$SizeEntitySerializer":{"StructuredSerializer":["SizeEntity"],"Serializer":["SizeEntity"]},"_$SizeEntity":{"SizeEntity":[],"SelectableEntity":[]},"_$StaticDataItemResponseSerializer":{"StructuredSerializer":["StaticDataItemResponse"],"Serializer":["StaticDataItemResponse"]},"_$StaticDataEntitySerializer":{"StructuredSerializer":["StaticDataEntity"],"Serializer":["StaticDataEntity"]},"_$TemplateEntitySerializer":{"StructuredSerializer":["TemplateEntity"],"Serializer":["TemplateEntity"]},"_$StaticDataEntity":{"StaticDataEntity":[]},"_$TemplateEntity":{"TemplateEntity":[]},"TimezoneEntity":{"SelectableEntity":[]},"_$TimezoneListResponseSerializer":{"StructuredSerializer":["TimezoneListResponse"],"Serializer":["TimezoneListResponse"]},"_$TimezoneItemResponseSerializer":{"StructuredSerializer":["TimezoneItemResponse"],"Serializer":["TimezoneItemResponse"]},"_$TimezoneEntitySerializer":{"StructuredSerializer":["TimezoneEntity"],"Serializer":["TimezoneEntity"]},"_$TimezoneEntity":{"TimezoneEntity":[],"SelectableEntity":[]},"SubscriptionEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$SubscriptionListResponseSerializer":{"StructuredSerializer":["SubscriptionListResponse"],"Serializer":["SubscriptionListResponse"]},"_$SubscriptionItemResponseSerializer":{"StructuredSerializer":["SubscriptionItemResponse"],"Serializer":["SubscriptionItemResponse"]},"_$SubscriptionEntitySerializer":{"StructuredSerializer":["SubscriptionEntity"],"Serializer":["SubscriptionEntity"]},"_$WebhookConfigurationEntitySerializer":{"StructuredSerializer":["WebhookConfigurationEntity"],"Serializer":["WebhookConfigurationEntity"]},"_$SubscriptionListResponse":{"SubscriptionListResponse":[]},"_$SubscriptionItemResponse":{"SubscriptionItemResponse":[]},"_$SubscriptionEntity":{"SubscriptionEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$WebhookConfigurationEntity":{"WebhookConfigurationEntity":[]},"_$SystemLogEntitySerializer":{"StructuredSerializer":["SystemLogEntity"],"Serializer":["SystemLogEntity"]},"_$SystemLogEntity":{"SystemLogEntity":[]},"TaskEntity":{"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"_$TaskListResponseSerializer":{"StructuredSerializer":["TaskListResponse"],"Serializer":["TaskListResponse"]},"_$TaskItemResponseSerializer":{"StructuredSerializer":["TaskItemResponse"],"Serializer":["TaskItemResponse"]},"_$TaskEntitySerializer":{"StructuredSerializer":["TaskEntity"],"Serializer":["TaskEntity"]},"_$TaskListResponse":{"TaskListResponse":[]},"_$TaskItemResponse":{"TaskItemResponse":[]},"_$TaskTime":{"TaskTime":[]},"_$TaskEntity":{"TaskEntity":[],"BaseEntity":[],"SelectableEntity":[],"BelongsToClient":[]},"TaskStatusEntity":{"BaseEntity":[],"SelectableEntity":[],"EntityStatus":[]},"_$TaskStatusListResponseSerializer":{"StructuredSerializer":["TaskStatusListResponse"],"Serializer":["TaskStatusListResponse"]},"_$TaskStatusItemResponseSerializer":{"StructuredSerializer":["TaskStatusItemResponse"],"Serializer":["TaskStatusItemResponse"]},"_$TaskStatusEntitySerializer":{"StructuredSerializer":["TaskStatusEntity"],"Serializer":["TaskStatusEntity"]},"_$TaskStatusListResponse":{"TaskStatusListResponse":[]},"_$TaskStatusItemResponse":{"TaskStatusItemResponse":[]},"_$TaskStatusEntity":{"TaskStatusEntity":[],"BaseEntity":[],"SelectableEntity":[],"EntityStatus":[]},"_$TaxDataEntitySerializer":{"StructuredSerializer":["TaxDataEntity"],"Serializer":["TaxDataEntity"]},"_$TaxConfigEntitySerializer":{"StructuredSerializer":["TaxConfigEntity"],"Serializer":["TaxConfigEntity"]},"_$TaxConfigRegionEntitySerializer":{"StructuredSerializer":["TaxConfigRegionEntity"],"Serializer":["TaxConfigRegionEntity"]},"_$TaxConfigSubregionEntitySerializer":{"StructuredSerializer":["TaxConfigSubregionEntity"],"Serializer":["TaxConfigSubregionEntity"]},"_$TaxDataEntity":{"TaxDataEntity":[]},"_$TaxConfigEntity":{"TaxConfigEntity":[]},"_$TaxConfigRegionEntity":{"TaxConfigRegionEntity":[]},"_$TaxConfigSubregionEntity":{"TaxConfigSubregionEntity":[]},"TaxRateEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$TaxRateListResponseSerializer":{"StructuredSerializer":["TaxRateListResponse"],"Serializer":["TaxRateListResponse"]},"_$TaxRateItemResponseSerializer":{"StructuredSerializer":["TaxRateItemResponse"],"Serializer":["TaxRateItemResponse"]},"_$TaxRateEntitySerializer":{"StructuredSerializer":["TaxRateEntity"],"Serializer":["TaxRateEntity"]},"_$TaxRateListResponse":{"TaxRateListResponse":[]},"_$TaxRateItemResponse":{"TaxRateItemResponse":[]},"_$TaxRateEntity":{"TaxRateEntity":[],"BaseEntity":[],"SelectableEntity":[]},"TokenEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$TokenListResponseSerializer":{"StructuredSerializer":["TokenListResponse"],"Serializer":["TokenListResponse"]},"_$TokenItemResponseSerializer":{"StructuredSerializer":["TokenItemResponse"],"Serializer":["TokenItemResponse"]},"_$TokenEntitySerializer":{"StructuredSerializer":["TokenEntity"],"Serializer":["TokenEntity"]},"_$TokenListResponse":{"TokenListResponse":[]},"_$TokenItemResponse":{"TokenItemResponse":[]},"_$TokenEntity":{"TokenEntity":[],"BaseEntity":[],"SelectableEntity":[]},"TransactionEntity":{"BaseEntity":[],"SelectableEntity":[]},"TransactionStatusEntity":{"EntityStatus":[],"SelectableEntity":[]},"_$TransactionListResponseSerializer":{"StructuredSerializer":["TransactionListResponse"],"Serializer":["TransactionListResponse"]},"_$TransactionItemResponseSerializer":{"StructuredSerializer":["TransactionItemResponse"],"Serializer":["TransactionItemResponse"]},"_$TransactionEntitySerializer":{"StructuredSerializer":["TransactionEntity"],"Serializer":["TransactionEntity"]},"_$TransactionStatusEntitySerializer":{"StructuredSerializer":["TransactionStatusEntity"],"Serializer":["TransactionStatusEntity"]},"_$TransactionListResponse":{"TransactionListResponse":[]},"_$TransactionItemResponse":{"TransactionItemResponse":[]},"_$TransactionEntity":{"TransactionEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$TransactionStatusEntity":{"TransactionStatusEntity":[],"EntityStatus":[],"SelectableEntity":[]},"TransactionRuleEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$TransactionRuleListResponseSerializer":{"StructuredSerializer":["TransactionRuleListResponse"],"Serializer":["TransactionRuleListResponse"]},"_$TransactionRuleItemResponseSerializer":{"StructuredSerializer":["TransactionRuleItemResponse"],"Serializer":["TransactionRuleItemResponse"]},"_$TransactionRuleEntitySerializer":{"StructuredSerializer":["TransactionRuleEntity"],"Serializer":["TransactionRuleEntity"]},"_$TransactionRuleCriteriaEntitySerializer":{"StructuredSerializer":["TransactionRuleCriteriaEntity"],"Serializer":["TransactionRuleCriteriaEntity"]},"_$TransactionRuleListResponse":{"TransactionRuleListResponse":[]},"_$TransactionRuleItemResponse":{"TransactionRuleItemResponse":[]},"_$TransactionRuleEntity":{"TransactionRuleEntity":[],"BaseEntity":[],"SelectableEntity":[]},"_$TransactionRuleCriteriaEntity":{"TransactionRuleCriteriaEntity":[]},"UserEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$UserListResponseSerializer":{"StructuredSerializer":["UserListResponse"],"Serializer":["UserListResponse"]},"_$UserItemResponseSerializer":{"StructuredSerializer":["UserItemResponse"],"Serializer":["UserItemResponse"]},"_$UserTwoFactorResponseSerializer":{"StructuredSerializer":["UserTwoFactorResponse"],"Serializer":["UserTwoFactorResponse"]},"_$UserTwoFactorDataSerializer":{"StructuredSerializer":["UserTwoFactorData"],"Serializer":["UserTwoFactorData"]},"_$UserCompanyItemResponseSerializer":{"StructuredSerializer":["UserCompanyItemResponse"],"Serializer":["UserCompanyItemResponse"]},"_$UserEntitySerializer":{"StructuredSerializer":["UserEntity"],"Serializer":["UserEntity"]},"_$UserListResponse":{"UserListResponse":[]},"_$UserItemResponse":{"UserItemResponse":[]},"_$UserTwoFactorResponse":{"UserTwoFactorResponse":[]},"_$UserTwoFactorData":{"UserTwoFactorData":[]},"_$UserCompanyItemResponse":{"UserCompanyItemResponse":[]},"_$UserEntity":{"UserEntity":[],"BaseEntity":[],"SelectableEntity":[]},"VendorEntity":{"BaseEntity":[],"SelectableEntity":[],"HasActivities":[]},"VendorContactEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$VendorListResponseSerializer":{"StructuredSerializer":["VendorListResponse"],"Serializer":["VendorListResponse"]},"_$VendorItemResponseSerializer":{"StructuredSerializer":["VendorItemResponse"],"Serializer":["VendorItemResponse"]},"_$VendorEntitySerializer":{"StructuredSerializer":["VendorEntity"],"Serializer":["VendorEntity"]},"_$VendorContactEntitySerializer":{"StructuredSerializer":["VendorContactEntity"],"Serializer":["VendorContactEntity"]},"_$VendorListResponse":{"VendorListResponse":[]},"_$VendorItemResponse":{"VendorItemResponse":[]},"_$VendorEntity":{"VendorEntity":[],"BaseEntity":[],"SelectableEntity":[],"HasActivities":[]},"_$VendorContactEntity":{"VendorContactEntity":[],"BaseEntity":[],"SelectableEntity":[]},"WebhookEntity":{"BaseEntity":[],"SelectableEntity":[]},"_$WebhookListResponseSerializer":{"StructuredSerializer":["WebhookListResponse"],"Serializer":["WebhookListResponse"]},"_$WebhookItemResponseSerializer":{"StructuredSerializer":["WebhookItemResponse"],"Serializer":["WebhookItemResponse"]},"_$WebhookEntitySerializer":{"StructuredSerializer":["WebhookEntity"],"Serializer":["WebhookEntity"]},"_$WebhookListResponse":{"WebhookListResponse":[]},"_$WebhookItemResponse":{"WebhookItemResponse":[]},"_$WebhookEntity":{"WebhookEntity":[],"BaseEntity":[],"SelectableEntity":[]},"InvoiceNinjaApp":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceNinjaAppState":{"State":["InvoiceNinjaApp"]},"SwitchListTableLayout":{"PersistUI":[],"PersistPrefs":[]},"PopLastHistory":{"PersistUI":[]},"UpdateLastHistory":{"PersistUI":[]},"DismissNativeWarning":{"PersistUI":[]},"DismissNativeWarningPermanently":{"PersistUI":[],"PersistPrefs":[]},"DismissGatewayWarningPermanently":{"PersistUI":[],"PersistPrefs":[]},"DismissReviewAppPermanently":{"PersistUI":[],"PersistPrefs":[]},"DismissOneYearReviewAppPermanently":{"PersistUI":[],"PersistPrefs":[]},"DismissTwoYearReviewAppPermanently":{"PersistUI":[],"PersistPrefs":[]},"DismissTaskExtensionBanner":{"PersistUI":[],"PersistPrefs":[]},"LoadStaticSuccess":{"PersistStatic":[]},"ToggleEditorLayout":{"PersistPrefs":[]},"ToggleViewerLayout":{"PersistPrefs":[]},"UpdateUserPreferences":{"PersistPrefs":[]},"LoadAccountSuccess":{"StopLoading":[]},"ResendConfirmation":{"StartLoading":[]},"RefreshData":{"StartLoading":[]},"RefreshDataSuccess":{"StopLoading":[]},"RefreshDataFailure":{"StopLoading":[]},"FilterByEntity":{"PersistUI":[]},"FilterCompany":{"PersistUI":[]},"ResendConfirmationFailure":{"StopLoading":[]},"ResendConfirmationSuccess":{"StopLoading":[]},"_$AppStateSerializer":{"StructuredSerializer":["AppState"],"Serializer":["AppState"]},"_$AppState":{"AppState":[]},"OAuthLoginRequest":{"StartLoading":[]},"UserLoginRequest":{"StartLoading":[]},"UserLoginSuccess":{"StopLoading":[]},"RecoverPasswordRequest":{"StartLoading":[]},"UserLogout":{"PersistData":[],"PersistUI":[]},"UserLogoutAll":{"StartLoading":[]},"UserSignUpRequest":{"StartLoading":[]},"OAuthSignUpRequest":{"StartLoading":[]},"UserLoginFailure":{"StopLoading":[]},"RecoverPasswordSuccess":{"StopLoading":[]},"RecoverPasswordFailure":{"StopLoading":[]},"UserLogoutAllSuccess":{"StopLoading":[]},"UserLogoutAllFailure":{"StopLoading":[]},"_$AuthStateSerializer":{"StructuredSerializer":["AuthState"],"Serializer":["AuthState"]},"_$AuthState":{"AuthState":[]},"ViewBankAccountList":{"PersistUI":[]},"ViewBankAccount":{"PersistUI":[],"PersistPrefs":[]},"EditBankAccount":{"PersistUI":[],"PersistPrefs":[]},"UpdateBankAccount":{"PersistUI":[]},"LoadBankAccountSuccess":{"StopLoading":[],"PersistData":[]},"LoadBankAccountsFailure":{"StopLoading":[]},"LoadBankAccountsSuccess":{"StopLoading":[]},"SaveBankAccountRequest":{"StartSaving":[]},"SaveBankAccountSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddBankAccountSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveBankAccountsRequest":{"StartSaving":[]},"ArchiveBankAccountsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteBankAccountsRequest":{"StartSaving":[]},"DeleteBankAccountsSuccess":{"StopSaving":[],"PersistData":[]},"RestoreBankAccountsRequest":{"StartSaving":[]},"RestoreBankAccountsSuccess":{"StopSaving":[],"PersistData":[]},"FilterBankAccounts":{"PersistUI":[]},"SortBankAccounts":{"PersistUI":[],"PersistPrefs":[]},"FilterBankAccountsByState":{"PersistUI":[]},"FilterBankAccountsByCustom1":{"PersistUI":[]},"FilterBankAccountsByCustom2":{"PersistUI":[]},"FilterBankAccountsByCustom3":{"PersistUI":[]},"FilterBankAccountsByCustom4":{"PersistUI":[]},"UpdateBankAccountTab":{"PersistUI":[]},"LoadBankAccountRequest":{"StartLoading":[]},"LoadBankAccountFailure":{"StopLoading":[]},"LoadBankAccountsRequest":{"StartLoading":[]},"SaveBankAccountFailure":{"StopSaving":[]},"ArchiveBankAccountsFailure":{"StopSaving":[]},"DeleteBankAccountsFailure":{"StopSaving":[]},"RestoreBankAccountsFailure":{"StopSaving":[]},"_$BankAccountStateSerializer":{"StructuredSerializer":["BankAccountState"],"Serializer":["BankAccountState"]},"_$BankAccountUIStateSerializer":{"StructuredSerializer":["BankAccountUIState"],"Serializer":["BankAccountUIState"]},"_$BankAccountState":{"BankAccountState":[]},"_$BankAccountUIState":{"BankAccountUIState":[]},"ViewClientList":{"PersistUI":[]},"ViewClient":{"PersistUI":[],"PersistPrefs":[]},"EditClient":{"PersistUI":[],"PersistPrefs":[]},"EditContact":{"PersistUI":[]},"UpdateClient":{"PersistUI":[]},"LoadClientSuccess":{"StopLoading":[],"PersistData":[]},"LoadClientsRequest":{"StartLoading":[]},"LoadClientsFailure":{"StopLoading":[]},"LoadClientsSuccess":{"StopLoading":[]},"AddContact":{"PersistUI":[]},"UpdateContact":{"PersistUI":[]},"DeleteContact":{"PersistUI":[]},"SaveClientRequest":{"StartSaving":[]},"SaveClientSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddClientSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveClientsRequest":{"StartSaving":[]},"ArchiveClientsSuccess":{"StopSaving":[],"PersistData":[]},"MergeClientsRequest":{"StartSaving":[]},"MergeClientsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteClientsRequest":{"StartSaving":[]},"DeleteClientsSuccess":{"StopSaving":[],"PersistData":[]},"PurgeClientRequest":{"StartSaving":[]},"PurgeClientSuccess":{"StopSaving":[],"PersistData":[]},"RestoreClientsRequest":{"StartSaving":[]},"RestoreClientSuccess":{"StopSaving":[],"PersistData":[]},"FilterClients":{"PersistUI":[]},"SortClients":{"PersistUI":[],"PersistPrefs":[]},"FilterClientsByState":{"PersistUI":[]},"FilterClientsByCustom1":{"PersistUI":[]},"FilterClientsByCustom2":{"PersistUI":[]},"FilterClientsByCustom3":{"PersistUI":[]},"FilterClientsByCustom4":{"PersistUI":[]},"SaveClientDocumentRequest":{"StartSaving":[]},"UpdateClientTab":{"PersistUI":[]},"_MergClientPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"LoadClientRequest":{"StartLoading":[]},"LoadClientFailure":{"StopLoading":[]},"SaveClientFailure":{"StopSaving":[]},"ArchiveClientsFailure":{"StopSaving":[]},"MergeClientsFailure":{"StopSaving":[]},"DeleteClientsFailure":{"StopSaving":[]},"PurgeClientFailure":{"StopSaving":[]},"RestoreClientFailure":{"StopSaving":[]},"SaveClientDocumentFailure":{"StopSaving":[]},"__MergClientPickerState":{"State":["_MergClientPicker"]},"_$ClientStateSerializer":{"StructuredSerializer":["ClientState"],"Serializer":["ClientState"]},"_$ClientUIStateSerializer":{"StructuredSerializer":["ClientUIState"],"Serializer":["ClientUIState"]},"_$ClientState":{"ClientState":[]},"_$ClientUIState":{"ClientUIState":[]},"SelectCompany":{"ClearClientMultiselect":[]},"UpdateCompany":{"PersistUI":[]},"SaveCompanyRequest":{"StartSaving":[]},"SaveCompanySuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"SaveEInvoiceCertificateRequest":{"StartSaving":[]},"SaveEInvoiceCertificateSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddCompany":{"StartSaving":[]},"DeleteCompanyRequest":{"StartSaving":[]},"PurgeDataRequest":{"StartSaving":[]},"PurgeDataSuccess":{"StopSaving":[],"PersistData":[]},"SaveCompanyDocumentRequest":{"StartSaving":[]},"SetDefaultCompanyRequest":{"StartSaving":[]},"SaveCompanyFailure":{"StopSaving":[]},"SaveEInvoiceCertificateFailure":{"StopSaving":[]},"AddCompanySuccess":{"StopSaving":[]},"DeleteCompanySuccess":{"StopSaving":[],"PersistData":[]},"DeleteCompanyFailure":{"StopSaving":[]},"PurgeDataFailure":{"StopSaving":[]},"SaveCompanyDocumentFailure":{"StopSaving":[]},"SetDefaultCompanySuccess":{"StopSaving":[]},"SetDefaultCompanyFailure":{"StopSaving":[]},"_$UserCompanyStateSerializer":{"StructuredSerializer":["UserCompanyState"],"Serializer":["UserCompanyState"]},"_$UserCompanyState":{"UserCompanyState":[]},"ViewCompanyGatewayList":{"PersistUI":[]},"ViewCompanyGateway":{"PersistUI":[],"PersistPrefs":[]},"EditCompanyGateway":{"PersistUI":[],"PersistPrefs":[]},"UpdateCompanyGateway":{"PersistUI":[]},"LoadCompanyGatewaySuccess":{"StopLoading":[],"PersistData":[]},"LoadCompanyGatewaysSuccess":{"StopLoading":[]},"SaveCompanyGatewayRequest":{"StartSaving":[]},"SaveCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveCompanyGatewayRequest":{"StartSaving":[]},"ArchiveCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[]},"DeleteCompanyGatewayRequest":{"StartSaving":[]},"DeleteCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[]},"DisconnectCompanyGatewayRequest":{"StartSaving":[]},"RestoreCompanyGatewayRequest":{"StartSaving":[]},"RestoreCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[]},"FilterCompanyGateways":{"PersistUI":[]},"SortCompanyGateways":{"PersistUI":[],"PersistPrefs":[]},"FilterCompanyGatewaysByState":{"PersistUI":[]},"FilterCompanyGatewaysByCustom1":{"PersistUI":[]},"FilterCompanyGatewaysByCustom2":{"PersistUI":[]},"FilterCompanyGatewaysByCustom3":{"PersistUI":[]},"FilterCompanyGatewaysByCustom4":{"PersistUI":[]},"LoadCompanyGatewayRequest":{"StartLoading":[]},"LoadCompanyGatewayFailure":{"StopLoading":[]},"LoadCompanyGatewaysRequest":{"StartLoading":[]},"LoadCompanyGatewaysFailure":{"StopLoading":[]},"SaveCompanyGatewayFailure":{"StopSaving":[]},"ArchiveCompanyGatewayFailure":{"StopSaving":[]},"DeleteCompanyGatewayFailure":{"StopSaving":[]},"DisconnectCompanyGatewaySuccess":{"StopSaving":[],"PersistData":[]},"DisconnectCompanyGatewayFailure":{"StopSaving":[]},"RestoreCompanyGatewayFailure":{"StopSaving":[]},"_$CompanyGatewayStateSerializer":{"StructuredSerializer":["CompanyGatewayState"],"Serializer":["CompanyGatewayState"]},"_$CompanyGatewayUIStateSerializer":{"StructuredSerializer":["CompanyGatewayUIState"],"Serializer":["CompanyGatewayUIState"]},"_$CompanyGatewayState":{"CompanyGatewayState":[]},"_$CompanyGatewayUIState":{"CompanyGatewayUIState":[]},"ViewCreditList":{"PersistUI":[]},"ViewCredit":{"PersistUI":[],"PersistPrefs":[]},"EditCredit":{"PersistUI":[],"PersistPrefs":[]},"EditCreditItem":{"PersistUI":[]},"UpdateCredit":{"PersistUI":[]},"UpdateCreditClient":{"PersistUI":[]},"LoadCreditSuccess":{"StopLoading":[],"PersistData":[]},"LoadCreditsRequest":{"StartLoading":[]},"LoadCreditsFailure":{"StopLoading":[]},"LoadCreditsSuccess":{"StopLoading":[]},"AddCreditContact":{"PersistUI":[]},"RemoveCreditContact":{"PersistUI":[]},"AddCreditItem":{"PersistUI":[]},"MoveCreditItem":{"PersistUI":[]},"AddCreditItems":{"PersistUI":[]},"UpdateCreditItem":{"PersistUI":[]},"DeleteCreditItem":{"PersistUI":[]},"SaveCreditRequest":{"StartSaving":[]},"SaveCreditSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddCreditSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"EmailCreditRequest":{"StartSaving":[]},"MarkSentCreditRequest":{"StartSaving":[]},"MarkSentCreditSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailCreditsRequest":{"StartSaving":[]},"MarkCreditsPaidRequest":{"StartSaving":[]},"ArchiveCreditsRequest":{"StartSaving":[]},"ArchiveCreditsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteCreditsRequest":{"StartSaving":[]},"DeleteCreditsSuccess":{"StopSaving":[],"PersistData":[]},"DownloadCreditsRequest":{"StartSaving":[]},"RestoreCreditsRequest":{"StartSaving":[]},"RestoreCreditsSuccess":{"StopSaving":[],"PersistData":[]},"FilterCredits":{"PersistUI":[]},"SortCredits":{"PersistUI":[],"PersistPrefs":[]},"FilterCreditsByState":{"PersistUI":[]},"FilterCreditsByStatus":{"PersistUI":[]},"FilterCreditsByCustom1":{"PersistUI":[]},"FilterCreditsByCustom2":{"PersistUI":[]},"FilterCreditsByCustom3":{"PersistUI":[]},"FilterCreditsByCustom4":{"PersistUI":[]},"SaveCreditDocumentRequest":{"StartSaving":[]},"UpdateCreditTab":{"PersistUI":[]},"LoadCreditRequest":{"StartLoading":[]},"LoadCreditFailure":{"StopLoading":[]},"SaveCreditFailure":{"StopSaving":[]},"EmailCreditSuccess":{"StopSaving":[],"PersistData":[]},"EmailCreditFailure":{"StopSaving":[]},"MarkSentCreditFailure":{"StopSaving":[]},"BulkEmailCreditsSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailCreditsFailure":{"StopSaving":[]},"MarkCreditsPaidSuccess":{"StopSaving":[]},"MarkCreditsPaidFailure":{"StopSaving":[]},"ArchiveCreditsFailure":{"StopSaving":[]},"DeleteCreditsFailure":{"StopSaving":[]},"DownloadCreditsSuccess":{"StopSaving":[]},"DownloadCreditsFailure":{"StopSaving":[]},"RestoreCreditsFailure":{"StopSaving":[]},"SaveCreditDocumentFailure":{"StopSaving":[]},"_$CreditStateSerializer":{"StructuredSerializer":["CreditState"],"Serializer":["CreditState"]},"_$CreditUIStateSerializer":{"StructuredSerializer":["CreditUIState"],"Serializer":["CreditUIState"]},"_$CreditState":{"CreditState":[]},"_$CreditUIState":{"CreditUIState":[]},"ViewDashboard":{"PersistUI":[]},"UpdateDashboardFields":{"PersistUI":[]},"UpdateDashboardFieldSettingss":{"PersistUI":[]},"UpdateDashboardSelection":{"PersistUI":[]},"UpdateDashboardEntityType":{"PersistUI":[]},"UpdateDashboardSidebar":{"PersistUI":[]},"UpdateDashboardSettings":{"PersistUI":[]},"_$DashboardUIStateSerializer":{"StructuredSerializer":["DashboardUIState"],"Serializer":["DashboardUIState"]},"_$DashboardUISettingsSerializer":{"StructuredSerializer":["DashboardUISettings"],"Serializer":["DashboardUISettings"]},"_$DashboardUIState":{"DashboardUIState":[]},"_$DashboardUISettings":{"DashboardUISettings":[]},"ViewDesignList":{"PersistUI":[]},"ViewDesign":{"PersistUI":[],"PersistPrefs":[]},"EditDesign":{"PersistUI":[],"PersistPrefs":[]},"UpdateDesign":{"PersistUI":[]},"LoadDesignSuccess":{"StopLoading":[],"PersistData":[]},"LoadDesignsFailure":{"StopLoading":[]},"LoadDesignsSuccess":{"StopLoading":[]},"SaveDesignRequest":{"StartSaving":[]},"SaveDesignSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddDesignSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveDesignsRequest":{"StartSaving":[]},"ArchiveDesignsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteDesignsRequest":{"StartSaving":[]},"DeleteDesignsSuccess":{"StopSaving":[],"PersistData":[]},"RestoreDesignsRequest":{"StartSaving":[]},"RestoreDesignsSuccess":{"StopSaving":[],"PersistData":[]},"FilterDesigns":{"PersistUI":[]},"SortDesigns":{"PersistUI":[],"PersistPrefs":[]},"FilterDesignsByState":{"PersistUI":[]},"FilterDesignsByCustom1":{"PersistUI":[]},"FilterDesignsByCustom2":{"PersistUI":[]},"FilterDesignsByCustom3":{"PersistUI":[]},"FilterDesignsByCustom4":{"PersistUI":[]},"LoadDesignRequest":{"StartLoading":[]},"LoadDesignFailure":{"StopLoading":[]},"LoadDesignsRequest":{"StartLoading":[]},"SaveDesignFailure":{"StopSaving":[]},"ArchiveDesignsFailure":{"StopSaving":[]},"DeleteDesignsFailure":{"StopSaving":[]},"RestoreDesignsFailure":{"StopSaving":[]},"_$DesignStateSerializer":{"StructuredSerializer":["DesignState"],"Serializer":["DesignState"]},"_$DesignUIStateSerializer":{"StructuredSerializer":["DesignUIState"],"Serializer":["DesignUIState"]},"_$DesignState":{"DesignState":[]},"_$DesignUIState":{"DesignUIState":[]},"ViewDocumentList":{"PersistUI":[]},"ViewDocument":{"PersistUI":[]},"EditDocument":{"PersistUI":[]},"UpdateDocument":{"PersistUI":[]},"LoadDocumentSuccess":{"StopLoading":[],"PersistData":[]},"LoadDocumentsSuccess":{"StopLoading":[]},"SaveDocumentRequest":{"StartSaving":[]},"SaveDocumentSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddDocumentSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"DownloadDocumentsRequest":{"StartSaving":[]},"ArchiveDocumentRequest":{"StartSaving":[]},"ArchiveDocumentSuccess":{"StopSaving":[],"PersistData":[]},"DeleteDocumentRequest":{"StartSaving":[]},"DeleteDocumentSuccess":{"StopSaving":[],"PersistData":[],"UserVerifiedPassword":[]},"RestoreDocumentRequest":{"StartSaving":[]},"RestoreDocumentSuccess":{"StopSaving":[],"PersistData":[]},"FilterDocuments":{"PersistUI":[]},"FilterDocumentsByStatus":{"PersistUI":[]},"SortDocuments":{"PersistUI":[],"PersistPrefs":[]},"FilterDocumentsByState":{"PersistUI":[]},"FilterDocumentsByCustom1":{"PersistUI":[]},"FilterDocumentsByCustom2":{"PersistUI":[]},"FilterDocumentsByCustom3":{"PersistUI":[]},"FilterDocumentsByCustom4":{"PersistUI":[]},"LoadDocumentRequest":{"StartLoading":[]},"LoadDocumentFailure":{"StopLoading":[]},"SaveDocumentFailure":{"StopSaving":[]},"DownloadDocumentsSuccess":{"StopSaving":[]},"DownloadDocumentsFailure":{"StopSaving":[]},"ArchiveDocumentFailure":{"StopSaving":[]},"DeleteDocumentFailure":{"StopSaving":[]},"RestoreDocumentFailure":{"StopSaving":[]},"_$DocumentStateSerializer":{"StructuredSerializer":["DocumentState"],"Serializer":["DocumentState"]},"_$DocumentUIStateSerializer":{"StructuredSerializer":["DocumentUIState"],"Serializer":["DocumentUIState"]},"_$DocumentState":{"DocumentState":[]},"_$DocumentUIState":{"DocumentUIState":[]},"ViewExpenseList":{"PersistUI":[]},"ViewExpense":{"PersistUI":[],"PersistPrefs":[]},"EditExpense":{"PersistUI":[],"PersistPrefs":[]},"UpdateExpense":{"PersistUI":[]},"LoadExpenseSuccess":{"StopLoading":[],"PersistData":[]},"LoadExpensesRequest":{"StartLoading":[]},"LoadExpensesFailure":{"StopLoading":[]},"LoadExpensesSuccess":{"StopLoading":[]},"SaveExpenseRequest":{"StartSaving":[]},"SaveExpenseSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddExpenseSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveExpenseRequest":{"StartSaving":[]},"ArchiveExpenseSuccess":{"StopSaving":[],"PersistData":[]},"DeleteExpenseRequest":{"StartSaving":[]},"DeleteExpenseSuccess":{"StopSaving":[],"PersistData":[]},"RestoreExpenseRequest":{"StartSaving":[]},"RestoreExpenseSuccess":{"StopSaving":[],"PersistData":[]},"FilterExpenses":{"PersistUI":[]},"SortExpenses":{"PersistUI":[],"PersistPrefs":[]},"FilterExpensesByState":{"PersistUI":[]},"FilterExpensesByStatus":{"PersistUI":[]},"FilterExpensesByCustom1":{"PersistUI":[]},"FilterExpensesByCustom2":{"PersistUI":[]},"FilterExpensesByCustom3":{"PersistUI":[]},"FilterExpensesByCustom4":{"PersistUI":[]},"SaveExpenseDocumentRequest":{"StartSaving":[]},"UpdateExpenseTab":{"PersistUI":[]},"LoadExpenseRequest":{"StartLoading":[]},"LoadExpenseFailure":{"StopLoading":[]},"SaveExpenseFailure":{"StopSaving":[]},"ArchiveExpenseFailure":{"StopSaving":[]},"DeleteExpenseFailure":{"StopSaving":[]},"RestoreExpenseFailure":{"StopSaving":[]},"SaveExpenseDocumentFailure":{"StopSaving":[]},"_$ExpenseStateSerializer":{"StructuredSerializer":["ExpenseState"],"Serializer":["ExpenseState"]},"_$ExpenseUIStateSerializer":{"StructuredSerializer":["ExpenseUIState"],"Serializer":["ExpenseUIState"]},"_$ExpenseState":{"ExpenseState":[]},"_$ExpenseUIState":{"ExpenseUIState":[]},"ViewExpenseCategoryList":{"PersistUI":[]},"ViewExpenseCategory":{"PersistUI":[],"PersistPrefs":[]},"EditExpenseCategory":{"PersistUI":[],"PersistPrefs":[]},"UpdateExpenseCategory":{"PersistUI":[]},"LoadExpenseCategorySuccess":{"StopLoading":[],"PersistData":[]},"LoadExpenseCategoriesSuccess":{"StopLoading":[]},"SaveExpenseCategoryRequest":{"StartSaving":[]},"SaveExpenseCategorySuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddExpenseCategorySuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveExpenseCategoriesRequest":{"StartSaving":[]},"ArchiveExpenseCategoriesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteExpenseCategoriesRequest":{"StartSaving":[]},"DeleteExpenseCategoriesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreExpenseCategoriesRequest":{"StartSaving":[]},"RestoreExpenseCategoriesSuccess":{"StopSaving":[],"PersistData":[]},"FilterExpenseCategories":{"PersistUI":[]},"SortExpenseCategories":{"PersistUI":[],"PersistPrefs":[]},"FilterExpenseCategoriesByState":{"PersistUI":[]},"FilterExpenseCategoriesByCustom1":{"PersistUI":[]},"FilterExpenseCategoriesByCustom2":{"PersistUI":[]},"FilterExpenseCategoriesByCustom3":{"PersistUI":[]},"FilterExpenseCategoriesByCustom4":{"PersistUI":[]},"LoadExpenseCategoryRequest":{"StartLoading":[]},"LoadExpenseCategoryFailure":{"StopLoading":[]},"LoadExpenseCategoriesRequest":{"StartLoading":[]},"LoadExpenseCategoriesFailure":{"StopLoading":[]},"SaveExpenseCategoryFailure":{"StopSaving":[]},"ArchiveExpenseCategoriesFailure":{"StopSaving":[]},"DeleteExpenseCategoriesFailure":{"StopSaving":[]},"RestoreExpenseCategoriesFailure":{"StopSaving":[]},"_$ExpenseCategoryStateSerializer":{"StructuredSerializer":["ExpenseCategoryState"],"Serializer":["ExpenseCategoryState"]},"_$ExpenseCategoryUIStateSerializer":{"StructuredSerializer":["ExpenseCategoryUIState"],"Serializer":["ExpenseCategoryUIState"]},"_$ExpenseCategoryState":{"ExpenseCategoryState":[]},"_$ExpenseCategoryUIState":{"ExpenseCategoryUIState":[]},"ViewGroupList":{"PersistUI":[]},"ViewGroup":{"PersistUI":[],"PersistPrefs":[]},"EditGroup":{"PersistUI":[],"PersistPrefs":[]},"UpdateGroup":{"PersistUI":[]},"LoadGroupSuccess":{"StopLoading":[],"PersistData":[]},"LoadGroupsSuccess":{"StopLoading":[]},"SaveGroupRequest":{"StartSaving":[]},"SaveGroupSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddGroupSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveGroupRequest":{"StartSaving":[]},"ArchiveGroupSuccess":{"StopSaving":[],"PersistData":[]},"DeleteGroupRequest":{"StartSaving":[]},"DeleteGroupSuccess":{"StopSaving":[],"PersistData":[]},"RestoreGroupRequest":{"StartSaving":[]},"RestoreGroupSuccess":{"StopSaving":[],"PersistData":[]},"FilterGroups":{"PersistUI":[]},"SortGroups":{"PersistUI":[],"PersistPrefs":[]},"FilterGroupsByState":{"PersistUI":[]},"SaveGroupDocumentRequest":{"StartSaving":[]},"LoadGroupRequest":{"StartLoading":[]},"LoadGroupFailure":{"StopLoading":[]},"LoadGroupsRequest":{"StartLoading":[]},"LoadGroupsFailure":{"StopLoading":[]},"SaveGroupFailure":{"StopSaving":[]},"ArchiveGroupFailure":{"StopSaving":[]},"DeleteGroupFailure":{"StopSaving":[]},"RestoreGroupFailure":{"StopSaving":[]},"SaveGroupDocumentFailure":{"StopSaving":[]},"_$GroupStateSerializer":{"StructuredSerializer":["GroupState"],"Serializer":["GroupState"]},"_$GroupUIStateSerializer":{"StructuredSerializer":["GroupUIState"],"Serializer":["GroupUIState"]},"_$GroupState":{"GroupState":[]},"_$GroupUIState":{"GroupUIState":[]},"ViewInvoiceList":{"PersistUI":[]},"ViewInvoice":{"PersistUI":[],"PersistPrefs":[]},"EditInvoice":{"PersistUI":[],"PersistPrefs":[]},"EditInvoiceItem":{"PersistUI":[]},"UpdateInvoice":{"PersistUI":[]},"UpdateInvoiceClient":{"PersistUI":[]},"LoadInvoiceSuccess":{"StopLoading":[],"PersistData":[]},"LoadInvoicesRequest":{"StartLoading":[]},"LoadInvoicesFailure":{"StopLoading":[]},"LoadInvoicesSuccess":{"StopLoading":[]},"AddInvoiceContact":{"PersistUI":[]},"RemoveInvoiceContact":{"PersistUI":[]},"AddInvoiceItem":{"PersistUI":[]},"MoveInvoiceItem":{"PersistUI":[]},"AddInvoiceItems":{"PersistUI":[]},"UpdateInvoiceItem":{"PersistUI":[]},"DeleteInvoiceItem":{"PersistUI":[]},"SaveInvoiceRequest":{"StartSaving":[]},"SaveInvoiceSuccess":{"StopSaving":[],"PersistUI":[]},"AddInvoiceSuccess":{"StopSaving":[],"PersistUI":[]},"EmailInvoiceRequest":{"StartSaving":[]},"EmailInvoiceSuccess":{"StopSaving":[],"PersistData":[]},"MarkInvoicesSentRequest":{"StartSaving":[]},"MarkInvoicesSentSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailInvoicesRequest":{"StartSaving":[]},"MarkInvoicesPaidRequest":{"StartSaving":[]},"MarkInvoicesPaidSuccess":{"StopSaving":[]},"AutoBillInvoicesRequest":{"StartSaving":[]},"CancelInvoicesRequest":{"StartSaving":[]},"CancelInvoicesSuccess":{"StopSaving":[]},"ArchiveInvoicesRequest":{"StartSaving":[]},"ArchiveInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteInvoicesRequest":{"StartSaving":[]},"DeleteInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"DownloadInvoicesRequest":{"StartSaving":[]},"RestoreInvoicesRequest":{"StartSaving":[]},"RestoreInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"FilterInvoices":{"PersistUI":[]},"SortInvoices":{"PersistUI":[],"PersistPrefs":[]},"FilterInvoicesByState":{"PersistUI":[]},"FilterInvoicesByStatus":{"PersistUI":[]},"FilterInvoicesByCustom1":{"PersistUI":[]},"FilterInvoicesByCustom2":{"PersistUI":[]},"FilterInvoicesByCustom3":{"PersistUI":[]},"FilterInvoicesByCustom4":{"PersistUI":[]},"SaveInvoiceDocumentRequest":{"StartSaving":[]},"UpdateInvoiceTab":{"PersistUI":[]},"LoadInvoiceRequest":{"StartLoading":[]},"LoadInvoiceFailure":{"StopLoading":[]},"SaveInvoiceFailure":{"StopSaving":[]},"EmailInvoiceFailure":{"StopSaving":[]},"MarkInvoicesSentFailure":{"StopSaving":[]},"BulkEmailInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailInvoicesFailure":{"StopSaving":[]},"MarkInvoicesPaidFailure":{"StopSaving":[]},"AutoBillInvoicesSuccess":{"StopSaving":[]},"AutoBillInvoicesFailure":{"StopSaving":[]},"CancelInvoicesFailure":{"StopSaving":[]},"ArchiveInvoicesFailure":{"StopSaving":[]},"DeleteInvoicesFailure":{"StopSaving":[]},"DownloadInvoicesSuccess":{"StopSaving":[]},"DownloadInvoicesFailure":{"StopSaving":[]},"RestoreInvoicesFailure":{"StopSaving":[]},"SaveInvoiceDocumentFailure":{"StopSaving":[]},"_$InvoiceStateSerializer":{"StructuredSerializer":["InvoiceState"],"Serializer":["InvoiceState"]},"_$InvoiceUIStateSerializer":{"StructuredSerializer":["InvoiceUIState"],"Serializer":["InvoiceUIState"]},"_$InvoiceState":{"InvoiceState":[]},"_$InvoiceUIState":{"InvoiceUIState":[]},"ViewPaymentList":{"PersistUI":[]},"ViewPayment":{"PersistUI":[],"PersistPrefs":[]},"EditPayment":{"PersistUI":[],"PersistPrefs":[]},"ViewRefundPayment":{"PersistUI":[],"PersistPrefs":[]},"UpdatePayment":{"PersistUI":[]},"LoadPaymentSuccess":{"StopLoading":[],"PersistData":[]},"LoadPaymentsRequest":{"StartLoading":[]},"LoadPaymentsFailure":{"StopLoading":[]},"LoadPaymentsSuccess":{"StopLoading":[]},"SavePaymentRequest":{"StartSaving":[]},"SavePaymentSuccess":{"StopSaving":[],"PersistUI":[]},"AddPaymentSuccess":{"StopSaving":[],"PersistUI":[]},"RefundPaymentRequest":{"StartSaving":[]},"ArchivePaymentsRequest":{"StartSaving":[]},"ArchivePaymentsSuccess":{"StopSaving":[],"PersistData":[]},"DeletePaymentsRequest":{"StartSaving":[]},"DeletePaymentsSuccess":{"StopSaving":[]},"RestorePaymentsRequest":{"StartSaving":[]},"RestorePaymentsSuccess":{"StopSaving":[]},"EmailPaymentRequest":{"StartSaving":[]},"FilterPayments":{"PersistUI":[]},"SortPayments":{"PersistUI":[],"PersistPrefs":[]},"FilterPaymentsByState":{"PersistUI":[]},"FilterPaymentsByStatus":{"PersistUI":[]},"FilterPaymentsByCustom1":{"PersistUI":[]},"FilterPaymentsByCustom2":{"PersistUI":[]},"FilterPaymentsByCustom3":{"PersistUI":[]},"FilterPaymentsByCustom4":{"PersistUI":[]},"UpdatePaymentTab":{"PersistUI":[]},"LoadPaymentRequest":{"StartLoading":[]},"LoadPaymentFailure":{"StopLoading":[]},"SavePaymentFailure":{"StopSaving":[]},"RefundPaymentSuccess":{"StopSaving":[],"PersistUI":[]},"RefundPaymentFailure":{"StopSaving":[]},"ArchivePaymentsFailure":{"StopSaving":[]},"DeletePaymentsFailure":{"StopSaving":[]},"RestorePaymentsFailure":{"StopSaving":[]},"EmailPaymentSuccess":{"StopSaving":[],"PersistData":[]},"_$PaymentStateSerializer":{"StructuredSerializer":["PaymentState"],"Serializer":["PaymentState"]},"_$PaymentUIStateSerializer":{"StructuredSerializer":["PaymentUIState"],"Serializer":["PaymentUIState"]},"_$PaymentState":{"PaymentState":[]},"_$PaymentUIState":{"PaymentUIState":[]},"ViewPaymentTermList":{"PersistUI":[]},"ViewPaymentTerm":{"PersistUI":[],"PersistPrefs":[]},"EditPaymentTerm":{"PersistUI":[],"PersistPrefs":[]},"UpdatePaymentTerm":{"PersistUI":[]},"LoadPaymentTermSuccess":{"StopLoading":[],"PersistData":[]},"LoadPaymentTermsFailure":{"StopLoading":[]},"LoadPaymentTermsSuccess":{"StopLoading":[]},"SavePaymentTermRequest":{"StartSaving":[]},"SavePaymentTermSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddPaymentTermSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchivePaymentTermsRequest":{"StartSaving":[]},"ArchivePaymentTermsSuccess":{"StopSaving":[],"PersistData":[]},"DeletePaymentTermsRequest":{"StartSaving":[]},"DeletePaymentTermsSuccess":{"StopSaving":[],"PersistData":[]},"RestorePaymentTermsRequest":{"StartSaving":[]},"RestorePaymentTermsSuccess":{"StopSaving":[],"PersistData":[]},"FilterPaymentTerms":{"PersistUI":[]},"SortPaymentTerms":{"PersistUI":[],"PersistPrefs":[]},"FilterPaymentTermsByState":{"PersistUI":[]},"FilterPaymentTermsByCustom1":{"PersistUI":[]},"FilterPaymentTermsByCustom2":{"PersistUI":[]},"FilterPaymentTermsByCustom3":{"PersistUI":[]},"FilterPaymentTermsByCustom4":{"PersistUI":[]},"LoadPaymentTermRequest":{"StartLoading":[]},"LoadPaymentTermFailure":{"StopLoading":[]},"LoadPaymentTermsRequest":{"StartLoading":[]},"SavePaymentTermFailure":{"StopSaving":[]},"ArchivePaymentTermsFailure":{"StopSaving":[]},"DeletePaymentTermsFailure":{"StopSaving":[]},"RestorePaymentTermsFailure":{"StopSaving":[]},"_$PaymentTermStateSerializer":{"StructuredSerializer":["PaymentTermState"],"Serializer":["PaymentTermState"]},"_$PaymentTermUIStateSerializer":{"StructuredSerializer":["PaymentTermUIState"],"Serializer":["PaymentTermUIState"]},"_$PaymentTermState":{"PaymentTermState":[]},"_$PaymentTermUIState":{"PaymentTermUIState":[]},"ViewProductList":{"PersistUI":[]},"ViewProduct":{"PersistUI":[],"PersistPrefs":[]},"EditProduct":{"PersistUI":[],"PersistPrefs":[]},"UpdateProduct":{"PersistUI":[]},"LoadProductSuccess":{"StopLoading":[],"PersistData":[]},"LoadProductsRequest":{"StartLoading":[]},"LoadProductsFailure":{"StopLoading":[]},"LoadProductsSuccess":{"StopLoading":[]},"SaveProductRequest":{"StartSaving":[]},"SaveProductSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddProductSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveProductsRequest":{"StartSaving":[]},"ArchiveProductsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteProductsRequest":{"StartSaving":[]},"DeleteProductsSuccess":{"StopSaving":[],"PersistData":[]},"RestoreProductsRequest":{"StartSaving":[]},"RestoreProductsSuccess":{"StopSaving":[],"PersistData":[]},"SetTaxCategoryProductsRequest":{"StartSaving":[]},"SetTaxCategoryProductsSuccess":{"StopSaving":[],"PersistData":[]},"FilterProducts":{"PersistUI":[]},"SortProducts":{"PersistUI":[],"PersistPrefs":[]},"FilterProductsByState":{"PersistUI":[]},"FilterProductsByCustom1":{"PersistUI":[]},"FilterProductsByCustom2":{"PersistUI":[]},"FilterProductsByCustom3":{"PersistUI":[]},"FilterProductsByCustom4":{"PersistUI":[]},"SaveProductDocumentRequest":{"StartSaving":[]},"UpdateProductTab":{"PersistUI":[]},"LoadProductRequest":{"StartLoading":[]},"LoadProductFailure":{"StopLoading":[]},"SaveProductFailure":{"StopSaving":[]},"ArchiveProductsFailure":{"StopSaving":[]},"DeleteProductsFailure":{"StopSaving":[]},"RestoreProductsFailure":{"StopSaving":[]},"SetTaxCategoryProductsFailure":{"StopSaving":[]},"SaveProductDocumentFailure":{"StopSaving":[]},"_$ProductStateSerializer":{"StructuredSerializer":["ProductState"],"Serializer":["ProductState"]},"_$ProductUIStateSerializer":{"StructuredSerializer":["ProductUIState"],"Serializer":["ProductUIState"]},"_$ProductState":{"ProductState":[]},"_$ProductUIState":{"ProductUIState":[]},"ViewProjectList":{"PersistUI":[]},"ViewProject":{"PersistUI":[],"PersistPrefs":[]},"EditProject":{"PersistUI":[],"PersistPrefs":[]},"UpdateProject":{"PersistUI":[]},"LoadProjectSuccess":{"StopLoading":[],"PersistData":[]},"LoadProjectsRequest":{"StartLoading":[]},"LoadProjectsFailure":{"StopLoading":[]},"LoadProjectsSuccess":{"StopLoading":[]},"SaveProjectRequest":{"StartSaving":[]},"SaveProjectSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddProjectSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveProjectRequest":{"StartSaving":[]},"ArchiveProjectSuccess":{"StopSaving":[],"PersistData":[]},"DeleteProjectRequest":{"StartSaving":[]},"DeleteProjectSuccess":{"StopSaving":[],"PersistData":[]},"RestoreProjectRequest":{"StartSaving":[]},"RestoreProjectSuccess":{"StopSaving":[],"PersistData":[]},"FilterProjects":{"PersistUI":[]},"SortProjects":{"PersistUI":[],"PersistPrefs":[]},"FilterProjectsByState":{"PersistUI":[]},"FilterProjectsByCustom1":{"PersistUI":[]},"FilterProjectsByCustom2":{"PersistUI":[]},"FilterProjectsByCustom3":{"PersistUI":[]},"FilterProjectsByCustom4":{"PersistUI":[]},"SaveProjectDocumentRequest":{"StartSaving":[]},"UpdateProjectTab":{"PersistUI":[]},"LoadProjectRequest":{"StartLoading":[]},"LoadProjectFailure":{"StopLoading":[]},"SaveProjectFailure":{"StopSaving":[]},"ArchiveProjectFailure":{"StopSaving":[]},"DeleteProjectFailure":{"StopSaving":[]},"RestoreProjectFailure":{"StopSaving":[]},"SaveProjectDocumentFailure":{"StopSaving":[]},"_$ProjectStateSerializer":{"StructuredSerializer":["ProjectState"],"Serializer":["ProjectState"]},"_$ProjectUIStateSerializer":{"StructuredSerializer":["ProjectUIState"],"Serializer":["ProjectUIState"]},"_$ProjectState":{"ProjectState":[]},"_$ProjectUIState":{"ProjectUIState":[]},"ViewPurchaseOrderList":{"PersistUI":[]},"ViewPurchaseOrder":{"PersistUI":[],"PersistPrefs":[]},"EditPurchaseOrder":{"PersistUI":[],"PersistPrefs":[]},"EditPurchaseOrderItem":{"PersistUI":[]},"UpdatePurchaseOrder":{"PersistUI":[]},"UpdatePurchaseOrderVendor":{"PersistUI":[]},"LoadPurchaseOrderSuccess":{"StopLoading":[],"PersistData":[]},"LoadPurchaseOrdersRequest":{"StartLoading":[]},"LoadPurchaseOrdersFailure":{"StopLoading":[]},"LoadPurchaseOrdersSuccess":{"StopLoading":[]},"SavePurchaseOrderDocumentRequest":{"StartSaving":[]},"SavePurchaseOrderRequest":{"StartSaving":[]},"SavePurchaseOrderSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddPurchaseOrderSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"BulkEmailPurchaseOrdersRequest":{"StartSaving":[]},"ArchivePurchaseOrdersRequest":{"StartSaving":[]},"ArchivePurchaseOrdersSuccess":{"StopSaving":[],"PersistData":[]},"DeletePurchaseOrdersRequest":{"StartSaving":[]},"DeletePurchaseOrdersSuccess":{"StopSaving":[],"PersistData":[]},"DownloadPurchaseOrdersRequest":{"StartSaving":[]},"AcceptPurchaseOrdersRequest":{"StartSaving":[]},"AcceptPurchaseOrderSuccess":{"StopSaving":[]},"CancelPurchaseOrdersRequest":{"StartSaving":[]},"CancelPurchaseOrderSuccess":{"StopSaving":[]},"RestorePurchaseOrdersRequest":{"StartSaving":[]},"RestorePurchaseOrdersSuccess":{"StopSaving":[],"PersistData":[]},"EmailPurchaseOrderRequest":{"StartSaving":[]},"EmailPurchaseOrderSuccess":{"StopSaving":[],"PersistData":[]},"MarkPurchaseOrdersSentRequest":{"StartSaving":[]},"MarkPurchaseOrderSentSuccess":{"StopSaving":[],"PersistData":[]},"ConvertPurchaseOrdersToExpensesRequest":{"StartSaving":[]},"ConvertPurchaseOrdersToExpensesSuccess":{"StopSaving":[],"PersistData":[]},"AddPurchaseOrdersToInventoryRequest":{"StartSaving":[]},"AddPurchaseOrdersToInventorySuccess":{"StopSaving":[],"PersistData":[]},"ApprovePurchaseOrders":{"StartSaving":[]},"ApprovePurchaseOrderSuccess":{"StopSaving":[]},"AddPurchaseOrderContact":{"PersistUI":[]},"RemovePurchaseOrderContact":{"PersistUI":[]},"AddPurchaseOrderItem":{"PersistUI":[]},"MovePurchaseOrderItem":{"PersistUI":[]},"AddPurchaseOrderItems":{"PersistUI":[]},"UpdatePurchaseOrderItem":{"PersistUI":[]},"DeletePurchaseOrderItem":{"PersistUI":[]},"FilterPurchaseOrders":{"PersistUI":[]},"SortPurchaseOrders":{"PersistUI":[],"PersistPrefs":[]},"FilterPurchaseOrdersByState":{"PersistUI":[]},"FilterPurchaseOrdersByStatus":{"PersistUI":[]},"FilterPurchaseOrdersByCustom1":{"PersistUI":[]},"FilterPurchaseOrdersByCustom2":{"PersistUI":[]},"FilterPurchaseOrdersByCustom3":{"PersistUI":[]},"FilterPurchaseOrdersByCustom4":{"PersistUI":[]},"UpdatePurchaseOrderTab":{"PersistUI":[]},"LoadPurchaseOrderRequest":{"StartLoading":[]},"LoadPurchaseOrderFailure":{"StopLoading":[]},"SavePurchaseOrderDocumentFailure":{"StopSaving":[]},"SavePurchaseOrderFailure":{"StopSaving":[]},"BulkEmailPurchaseOrdersSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailPurchaseOrdersFailure":{"StopSaving":[]},"ArchivePurchaseOrdersFailure":{"StopSaving":[]},"DeletePurchaseOrdersFailure":{"StopSaving":[]},"DownloadPurchaseOrdersSuccess":{"StopSaving":[]},"DownloadPurchaseOrdersFailure":{"StopSaving":[]},"AcceptPurchaseOrderFailure":{"StopSaving":[]},"CancelPurchaseOrderFailure":{"StopSaving":[]},"RestorePurchaseOrdersFailure":{"StopSaving":[]},"EmailPurchaseOrderFailure":{"StopSaving":[]},"MarkPurchaseOrderSentFailure":{"StopSaving":[]},"ConvertPurchaseOrdersToExpensesFailure":{"StopSaving":[]},"AddPurchaseOrdersToInventoryFailure":{"StopSaving":[]},"ApprovePurchaseOrderFailure":{"StopSaving":[]},"_$PurchaseOrderStateSerializer":{"StructuredSerializer":["PurchaseOrderState"],"Serializer":["PurchaseOrderState"]},"_$PurchaseOrderUIStateSerializer":{"StructuredSerializer":["PurchaseOrderUIState"],"Serializer":["PurchaseOrderUIState"]},"_$PurchaseOrderState":{"PurchaseOrderState":[]},"_$PurchaseOrderUIState":{"PurchaseOrderUIState":[]},"ViewQuoteList":{"PersistUI":[]},"ViewQuote":{"PersistUI":[],"PersistPrefs":[]},"EditQuote":{"PersistUI":[],"PersistPrefs":[]},"EditQuoteItem":{"PersistUI":[]},"UpdateQuote":{"PersistUI":[]},"UpdateQuoteClient":{"PersistUI":[]},"LoadQuoteSuccess":{"StopLoading":[],"PersistData":[]},"LoadQuotesRequest":{"StartLoading":[]},"LoadQuotesFailure":{"StopLoading":[]},"LoadQuotesSuccess":{"StopLoading":[]},"AddQuoteContact":{"PersistUI":[]},"RemoveQuoteContact":{"PersistUI":[]},"AddQuoteItem":{"PersistUI":[]},"MoveQuoteItem":{"PersistUI":[]},"AddQuoteItems":{"PersistUI":[]},"UpdateQuoteItem":{"PersistUI":[]},"DeleteQuoteItem":{"PersistUI":[]},"SaveQuoteRequest":{"StartSaving":[]},"SaveQuoteSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddQuoteSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"EmailQuoteRequest":{"StartSaving":[]},"EmailQuoteSuccess":{"StopSaving":[],"PersistData":[]},"MarkSentQuotesRequest":{"StartSaving":[]},"MarkSentQuoteSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailQuotesRequest":{"StartSaving":[]},"ArchiveQuotesRequest":{"StartSaving":[]},"ArchiveQuotesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteQuotesRequest":{"StartSaving":[]},"DeleteQuotesSuccess":{"StopSaving":[],"PersistData":[]},"DownloadQuotesRequest":{"StartSaving":[]},"RestoreQuotesRequest":{"StartSaving":[]},"RestoreQuotesSuccess":{"StopSaving":[],"PersistData":[]},"FilterQuotes":{"PersistUI":[]},"SortQuotes":{"PersistUI":[],"PersistPrefs":[]},"FilterQuotesByState":{"PersistUI":[]},"FilterQuotesByStatus":{"PersistUI":[]},"FilterQuotesByCustom1":{"PersistUI":[]},"FilterQuotesByCustom2":{"PersistUI":[]},"FilterQuotesByCustom3":{"PersistUI":[]},"FilterQuotesByCustom4":{"PersistUI":[]},"ConvertQuotesToInvoices":{"StartSaving":[]},"ConvertQuotesToInvoicesSuccess":{"StopSaving":[]},"ConvertQuotesToProjects":{"StartSaving":[]},"ConvertQuotesToProjectsSuccess":{"StopSaving":[]},"ApproveQuotes":{"StartSaving":[]},"SaveQuoteDocumentRequest":{"StartSaving":[]},"UpdateQuoteTab":{"PersistUI":[]},"LoadQuoteRequest":{"StartLoading":[]},"LoadQuoteFailure":{"StopLoading":[]},"SaveQuoteFailure":{"StopSaving":[]},"EmailQuoteFailure":{"StopSaving":[]},"MarkSentQuoteFailure":{"StopSaving":[]},"BulkEmailQuotesSuccess":{"StopSaving":[],"PersistData":[]},"BulkEmailQuotesFailure":{"StopSaving":[]},"ArchiveQuotesFailure":{"StopSaving":[]},"DeleteQuotesFailure":{"StopSaving":[]},"DownloadQuotesSuccess":{"StopSaving":[]},"DownloadQuotesFailure":{"StopSaving":[]},"RestoreQuotesFailure":{"StopSaving":[]},"ConvertQuotesToInvoicesFailure":{"StopSaving":[]},"ConvertQuotesToProjectsFailure":{"StopSaving":[]},"ApproveQuoteSuccess":{"StopSaving":[]},"ApproveQuoteFailure":{"StopSaving":[]},"SaveQuoteDocumentFailure":{"StopSaving":[]},"_$QuoteStateSerializer":{"StructuredSerializer":["QuoteState"],"Serializer":["QuoteState"]},"_$QuoteUIStateSerializer":{"StructuredSerializer":["QuoteUIState"],"Serializer":["QuoteUIState"]},"_$QuoteState":{"QuoteState":[]},"_$QuoteUIState":{"QuoteUIState":[]},"ViewRecurringExpenseList":{"PersistUI":[]},"ViewRecurringExpense":{"PersistUI":[],"PersistPrefs":[]},"EditRecurringExpense":{"PersistUI":[],"PersistPrefs":[]},"UpdateRecurringExpense":{"PersistUI":[]},"LoadRecurringExpenseSuccess":{"StopLoading":[],"PersistData":[]},"LoadRecurringExpensesRequest":{"StartLoading":[]},"LoadRecurringExpensesFailure":{"StopLoading":[]},"LoadRecurringExpensesSuccess":{"StopLoading":[]},"SaveRecurringExpenseRequest":{"StartSaving":[]},"SaveRecurringExpenseSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddRecurringExpenseSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveRecurringExpensesRequest":{"StartSaving":[]},"ArchiveRecurringExpensesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteRecurringExpensesRequest":{"StartSaving":[]},"DeleteRecurringExpensesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreRecurringExpensesRequest":{"StartSaving":[]},"RestoreRecurringExpensesSuccess":{"StopSaving":[],"PersistData":[]},"FilterRecurringExpenses":{"PersistUI":[]},"SortRecurringExpenses":{"PersistUI":[],"PersistPrefs":[]},"FilterRecurringExpensesByState":{"PersistUI":[]},"FilterRecurringExpensesByStatus":{"PersistUI":[]},"FilterRecurringExpensesByCustom1":{"PersistUI":[]},"FilterRecurringExpensesByCustom2":{"PersistUI":[]},"FilterRecurringExpensesByCustom3":{"PersistUI":[]},"FilterRecurringExpensesByCustom4":{"PersistUI":[]},"UpdateRecurringExpenseTab":{"PersistUI":[]},"StartRecurringExpensesRequest":{"StartSaving":[]},"StartRecurringExpensesSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"StopRecurringExpensesRequest":{"StartSaving":[]},"StopRecurringExpensesSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"SaveRecurringExpenseDocumentRequest":{"StartSaving":[]},"LoadRecurringExpenseRequest":{"StartLoading":[]},"LoadRecurringExpenseFailure":{"StopLoading":[]},"SaveRecurringExpenseFailure":{"StopSaving":[]},"ArchiveRecurringExpensesFailure":{"StopSaving":[]},"DeleteRecurringExpensesFailure":{"StopSaving":[]},"RestoreRecurringExpensesFailure":{"StopSaving":[]},"StartRecurringExpensesFailure":{"StopSaving":[]},"StopRecurringExpensesFailure":{"StopSaving":[]},"SaveRecurringExpenseDocumentFailure":{"StopSaving":[]},"_$RecurringExpenseStateSerializer":{"StructuredSerializer":["RecurringExpenseState"],"Serializer":["RecurringExpenseState"]},"_$RecurringExpenseUIStateSerializer":{"StructuredSerializer":["RecurringExpenseUIState"],"Serializer":["RecurringExpenseUIState"]},"_$RecurringExpenseState":{"RecurringExpenseState":[]},"_$RecurringExpenseUIState":{"RecurringExpenseUIState":[]},"ViewRecurringInvoiceList":{"PersistUI":[]},"ViewRecurringInvoice":{"PersistUI":[],"PersistPrefs":[]},"EditRecurringInvoice":{"PersistUI":[],"PersistPrefs":[]},"EditRecurringInvoiceItem":{"PersistUI":[]},"UpdateRecurringInvoice":{"PersistUI":[]},"UpdateRecurringInvoiceClient":{"PersistUI":[]},"LoadRecurringInvoiceSuccess":{"StopLoading":[],"PersistData":[]},"LoadRecurringInvoicesRequest":{"StartLoading":[]},"LoadRecurringInvoicesFailure":{"StopLoading":[]},"LoadRecurringInvoicesSuccess":{"StopLoading":[]},"AddRecurringInvoiceContact":{"PersistUI":[]},"RemoveRecurringInvoiceContact":{"PersistUI":[]},"SaveRecurringInvoiceRequest":{"StartSaving":[]},"SaveRecurringInvoiceSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddRecurringInvoiceSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddRecurringInvoiceItem":{"PersistUI":[]},"MoveRecurringInvoiceItem":{"PersistUI":[]},"AddRecurringInvoiceItems":{"PersistUI":[]},"UpdateRecurringInvoiceItem":{"PersistUI":[]},"DeleteRecurringInvoiceItem":{"PersistUI":[]},"EmailRecurringInvoiceSuccess":{"StopSaving":[],"PersistData":[]},"ArchiveRecurringInvoicesRequest":{"StartSaving":[]},"ArchiveRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"SendNowRecurringInvoicesRequest":{"StartSaving":[]},"SendNowRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"UpdatePricesRecurringInvoicesRequest":{"StartSaving":[]},"IncreasePricesRecurringInvoicesRequest":{"StartSaving":[]},"DeleteRecurringInvoicesRequest":{"StartSaving":[]},"DeleteRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreRecurringInvoicesRequest":{"StartSaving":[]},"RestoreRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"FilterRecurringInvoices":{"PersistUI":[]},"SortRecurringInvoices":{"PersistUI":[],"PersistPrefs":[]},"FilterRecurringInvoicesByState":{"PersistUI":[]},"FilterRecurringInvoicesByStatus":{"PersistUI":[]},"FilterRecurringInvoicesByCustom1":{"PersistUI":[]},"FilterRecurringInvoicesByCustom2":{"PersistUI":[]},"FilterRecurringInvoicesByCustom3":{"PersistUI":[]},"FilterRecurringInvoicesByCustom4":{"PersistUI":[]},"SaveRecurringInvoiceDocumentRequest":{"StartSaving":[]},"StartRecurringInvoicesRequest":{"StartSaving":[]},"StartRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"StopRecurringInvoicesRequest":{"StartSaving":[]},"StopRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"UpdateRecurringInvoiceTab":{"PersistUI":[]},"LoadRecurringInvoiceRequest":{"StartLoading":[]},"LoadRecurringInvoiceFailure":{"StopLoading":[]},"SaveRecurringInvoiceFailure":{"StopSaving":[]},"ArchiveRecurringInvoicesFailure":{"StopSaving":[]},"SendNowRecurringInvoicesFailure":{"StopSaving":[]},"UpdatePricesRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"UpdatePricesRecurringInvoicesFailure":{"StopSaving":[]},"IncreasePricesRecurringInvoicesSuccess":{"StopSaving":[],"PersistData":[]},"IncreasePricesRecurringInvoicesFailure":{"StopSaving":[]},"DeleteRecurringInvoicesFailure":{"StopSaving":[]},"RestoreRecurringInvoicesFailure":{"StopSaving":[]},"SaveRecurringInvoiceDocumentFailure":{"StopSaving":[]},"StartRecurringInvoicesFailure":{"StopSaving":[]},"StopRecurringInvoicesFailure":{"StopSaving":[]},"_$RecurringInvoiceStateSerializer":{"StructuredSerializer":["RecurringInvoiceState"],"Serializer":["RecurringInvoiceState"]},"_$RecurringInvoiceUIStateSerializer":{"StructuredSerializer":["RecurringInvoiceUIState"],"Serializer":["RecurringInvoiceUIState"]},"_$RecurringInvoiceState":{"RecurringInvoiceState":[]},"_$RecurringInvoiceUIState":{"RecurringInvoiceUIState":[]},"ViewReports":{"PersistUI":[]},"UpdateReportSettings":{"PersistUI":[]},"_$ReportsUIStateSerializer":{"StructuredSerializer":["ReportsUIState"],"Serializer":["ReportsUIState"]},"_$ReportsUIState":{"ReportsUIState":[]},"ViewScheduleList":{"PersistUI":[]},"ViewSchedule":{"PersistUI":[],"PersistPrefs":[]},"EditSchedule":{"PersistUI":[],"PersistPrefs":[]},"UpdateSchedule":{"PersistUI":[]},"LoadScheduleSuccess":{"StopLoading":[],"PersistData":[]},"LoadSchedulesFailure":{"StopLoading":[]},"LoadSchedulesSuccess":{"StopLoading":[]},"SaveScheduleRequest":{"StartSaving":[]},"SaveScheduleSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddScheduleSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveSchedulesRequest":{"StartSaving":[]},"ArchiveSchedulesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteSchedulesRequest":{"StartSaving":[]},"DeleteSchedulesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreSchedulesRequest":{"StartSaving":[]},"RestoreSchedulesSuccess":{"StopSaving":[],"PersistData":[]},"FilterSchedules":{"PersistUI":[]},"SortSchedules":{"PersistUI":[],"PersistPrefs":[]},"FilterSchedulesByState":{"PersistUI":[]},"FilterSchedulesByCustom1":{"PersistUI":[]},"FilterSchedulesByCustom2":{"PersistUI":[]},"FilterSchedulesByCustom3":{"PersistUI":[]},"FilterSchedulesByCustom4":{"PersistUI":[]},"UpdateScheduleTab":{"PersistUI":[]},"LoadScheduleRequest":{"StartLoading":[]},"LoadScheduleFailure":{"StopLoading":[]},"LoadSchedulesRequest":{"StartLoading":[]},"SaveScheduleFailure":{"StopSaving":[]},"ArchiveSchedulesFailure":{"StopSaving":[]},"DeleteSchedulesFailure":{"StopSaving":[]},"RestoreSchedulesFailure":{"StopSaving":[]},"_$ScheduleStateSerializer":{"StructuredSerializer":["ScheduleState"],"Serializer":["ScheduleState"]},"_$ScheduleUIStateSerializer":{"StructuredSerializer":["ScheduleUIState"],"Serializer":["ScheduleUIState"]},"_$ScheduleState":{"ScheduleState":[]},"_$ScheduleUIState":{"ScheduleUIState":[]},"ViewSettings":{"PersistUI":[]},"ClearSettingsFilter":{"PersistUI":[]},"UpdateSettings":{"PersistUI":[]},"UpdateSettingsTab":{"PersistUI":[]},"UpdatedSettingUI":{"PersistUI":[]},"UpdateSettingsTemplate":{"PersistUI":[]},"UpdateUserSettings":{"PersistUI":[]},"UploadLogoRequest":{"StartSaving":[]},"SaveUserSettingsRequest":{"StartSaving":[]},"SaveUserSettingsSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"SaveAuthUserRequest":{"StartSaving":[]},"SaveAuthUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"ConnecOAuthUserRequest":{"StartSaving":[]},"ConnectOAuthUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"DisconnecOAuthUserRequest":{"StartSaving":[]},"DisconnectOAuthUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"DisconnectOAuthMailerRequest":{"StartSaving":[]},"DisconnectOAuthMailerSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"DisableTwoFactorRequest":{"StartSaving":[]},"DisableTwoFactorSuccess":{"StopSaving":[],"PersistData":[],"UserVerifiedPassword":[]},"ConnecGmailUserRequest":{"StartSaving":[]},"ConnecGmailUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"FilterSettings":{"PersistUI":[]},"UpdatedSetting":{"PersistUI":[]},"UploadLogoFailure":{"StopSaving":[]},"SaveUserSettingsFailure":{"StopSaving":[]},"SaveAuthUserFailure":{"StopSaving":[]},"ConnecOAuthUserFailure":{"StopSaving":[]},"DisconnecOAuthUserFailure":{"StopSaving":[]},"DisconnectOAuthMailerFailure":{"StopSaving":[]},"DisableTwoFactorFailure":{"StopSaving":[]},"ConnecGmailUserFailure":{"StopSaving":[]},"_$SettingsUIStateSerializer":{"StructuredSerializer":["SettingsUIState"],"Serializer":["SettingsUIState"]},"_$SettingsUIState":{"SettingsUIState":[]},"_$StaticStateSerializer":{"StructuredSerializer":["StaticState"],"Serializer":["StaticState"]},"_$StaticState":{"StaticState":[]},"ViewSubscriptionList":{"PersistUI":[]},"ViewSubscription":{"PersistUI":[],"PersistPrefs":[]},"EditSubscription":{"PersistUI":[],"PersistPrefs":[]},"UpdateSubscription":{"PersistUI":[]},"LoadSubscriptionSuccess":{"StopLoading":[],"PersistData":[]},"LoadSubscriptionsFailure":{"StopLoading":[]},"LoadSubscriptionsSuccess":{"StopLoading":[]},"SaveSubscriptionRequest":{"StartSaving":[]},"SaveSubscriptionSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddSubscriptionSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveSubscriptionsRequest":{"StartSaving":[]},"ArchiveSubscriptionsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteSubscriptionsRequest":{"StartSaving":[]},"DeleteSubscriptionsSuccess":{"StopSaving":[],"PersistData":[]},"RestoreSubscriptionsRequest":{"StartSaving":[]},"RestoreSubscriptionsSuccess":{"StopSaving":[],"PersistData":[]},"FilterSubscriptions":{"PersistUI":[]},"SortSubscriptions":{"PersistUI":[],"PersistPrefs":[]},"FilterSubscriptionsByState":{"PersistUI":[]},"FilterSubscriptionsByCustom1":{"PersistUI":[]},"FilterSubscriptionsByCustom2":{"PersistUI":[]},"FilterSubscriptionsByCustom3":{"PersistUI":[]},"FilterSubscriptionsByCustom4":{"PersistUI":[]},"UpdateSubscriptionTab":{"PersistUI":[]},"LoadSubscriptionRequest":{"StartLoading":[]},"LoadSubscriptionFailure":{"StopLoading":[]},"LoadSubscriptionsRequest":{"StartLoading":[]},"SaveSubscriptionFailure":{"StopSaving":[]},"ArchiveSubscriptionsFailure":{"StopSaving":[]},"DeleteSubscriptionsFailure":{"StopSaving":[]},"RestoreSubscriptionsFailure":{"StopSaving":[]},"_$SubscriptionStateSerializer":{"StructuredSerializer":["SubscriptionState"],"Serializer":["SubscriptionState"]},"_$SubscriptionUIStateSerializer":{"StructuredSerializer":["SubscriptionUIState"],"Serializer":["SubscriptionUIState"]},"_$SubscriptionState":{"SubscriptionState":[]},"_$SubscriptionUIState":{"SubscriptionUIState":[]},"ViewTaskList":{"PersistUI":[]},"ViewTask":{"PersistUI":[],"PersistPrefs":[]},"EditTask":{"PersistUI":[],"PersistPrefs":[]},"UpdateTask":{"PersistUI":[]},"LoadTaskSuccess":{"StopLoading":[],"PersistData":[]},"EditTaskTime":{"PersistUI":[]},"AddTaskTime":{"PersistUI":[]},"UpdateTaskTime":{"PersistUI":[]},"DeleteTaskTime":{"PersistUI":[]},"LoadTasksRequest":{"StartLoading":[]},"LoadTasksFailure":{"StopLoading":[]},"LoadTasksSuccess":{"StopLoading":[]},"SaveTaskRequest":{"StartSaving":[]},"SaveTaskSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddTaskSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveTaskRequest":{"StartSaving":[]},"ArchiveTaskSuccess":{"StopSaving":[],"PersistData":[]},"StartTasksRequest":{"StartSaving":[]},"StartTasksSuccess":{"StopSaving":[],"PersistData":[]},"StopTasksRequest":{"StartSaving":[]},"StopTasksSuccess":{"StopSaving":[],"PersistData":[]},"DeleteTaskRequest":{"StartSaving":[]},"DeleteTaskSuccess":{"StopSaving":[],"PersistData":[]},"RestoreTaskRequest":{"StartSaving":[]},"RestoreTaskSuccess":{"StopSaving":[],"PersistData":[]},"SortTasksRequest":{"StartSaving":[]},"SortTasksSuccess":{"StopSaving":[],"PersistData":[]},"FilterTasks":{"PersistUI":[]},"SortTasks":{"PersistUI":[],"PersistPrefs":[]},"FilterTasksByState":{"PersistUI":[]},"FilterTasksByStatus":{"PersistUI":[]},"FilterTasksByCustom1":{"PersistUI":[]},"FilterTasksByCustom2":{"PersistUI":[]},"FilterTasksByCustom3":{"PersistUI":[]},"FilterTasksByCustom4":{"PersistUI":[]},"SaveTaskDocumentRequest":{"StartSaving":[]},"UpdateTaskTab":{"PersistUI":[]},"LoadTaskRequest":{"StartLoading":[]},"LoadTaskFailure":{"StopLoading":[]},"SaveTaskFailure":{"StopSaving":[]},"ArchiveTaskFailure":{"StopSaving":[]},"StartTasksFailure":{"StopSaving":[]},"StopTasksFailure":{"StopSaving":[]},"DeleteTaskFailure":{"StopSaving":[]},"RestoreTaskFailure":{"StopSaving":[]},"SortTasksFailure":{"StopSaving":[]},"SaveTaskDocumentFailure":{"StopSaving":[]},"_$TaskStateSerializer":{"StructuredSerializer":["TaskState"],"Serializer":["TaskState"]},"_$TaskUIStateSerializer":{"StructuredSerializer":["TaskUIState"],"Serializer":["TaskUIState"]},"_$TaskState":{"TaskState":[]},"_$TaskUIState":{"TaskUIState":[]},"ViewTaskStatusList":{"PersistUI":[]},"ViewTaskStatus":{"PersistUI":[],"PersistPrefs":[]},"EditTaskStatus":{"PersistUI":[],"PersistPrefs":[]},"UpdateTaskStatus":{"PersistUI":[]},"LoadTaskStatusSuccess":{"StopLoading":[],"PersistData":[]},"LoadTaskStatusesFailure":{"StopLoading":[]},"LoadTaskStatusesSuccess":{"StopLoading":[]},"SaveTaskStatusRequest":{"StartSaving":[]},"SaveTaskStatusSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddTaskStatusSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveTaskStatusesRequest":{"StartSaving":[]},"ArchiveTaskStatusesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteTaskStatusesRequest":{"StartSaving":[]},"DeleteTaskStatusesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreTaskStatusesRequest":{"StartSaving":[]},"RestoreTaskStatusesSuccess":{"StopSaving":[],"PersistData":[]},"FilterTaskStatuses":{"PersistUI":[]},"SortTaskStatuses":{"PersistUI":[],"PersistPrefs":[]},"FilterTaskStatusesByState":{"PersistUI":[]},"FilterTaskStatusesByCustom1":{"PersistUI":[]},"FilterTaskStatusesByCustom2":{"PersistUI":[]},"FilterTaskStatusesByCustom3":{"PersistUI":[]},"FilterTaskStatusesByCustom4":{"PersistUI":[]},"LoadTaskStatusRequest":{"StartLoading":[]},"LoadTaskStatusFailure":{"StopLoading":[]},"LoadTaskStatusesRequest":{"StartLoading":[]},"SaveTaskStatusFailure":{"StopSaving":[]},"ArchiveTaskStatusesFailure":{"StopSaving":[]},"DeleteTaskStatusesFailure":{"StopSaving":[]},"RestoreTaskStatusesFailure":{"StopSaving":[]},"_$TaskStatusStateSerializer":{"StructuredSerializer":["TaskStatusState"],"Serializer":["TaskStatusState"]},"_$TaskStatusUIStateSerializer":{"StructuredSerializer":["TaskStatusUIState"],"Serializer":["TaskStatusUIState"]},"_$TaskStatusState":{"TaskStatusState":[]},"_$TaskStatusUIState":{"TaskStatusUIState":[]},"ViewTaxRateList":{"PersistUI":[]},"ViewTaxRate":{"PersistUI":[]},"EditTaxRate":{"PersistUI":[]},"UpdateTaxRate":{"PersistUI":[]},"LoadTaxRateSuccess":{"StopLoading":[],"PersistData":[]},"LoadTaxRatesSuccess":{"StopLoading":[]},"SaveTaxRateRequest":{"StartSaving":[]},"SaveTaxRateSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddTaxRateSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveTaxRateRequest":{"StartSaving":[]},"ArchiveTaxRatesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteTaxRateRequest":{"StartSaving":[]},"DeleteTaxRatesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreTaxRateRequest":{"StartSaving":[]},"RestoreTaxRatesSuccess":{"StopSaving":[],"PersistData":[]},"FilterTaxRates":{"PersistUI":[]},"SortTaxRates":{"PersistUI":[],"PersistPrefs":[]},"FilterTaxRatesByState":{"PersistUI":[]},"LoadTaxRateRequest":{"StartLoading":[]},"LoadTaxRateFailure":{"StopLoading":[]},"LoadTaxRatesRequest":{"StartLoading":[]},"LoadTaxRatesFailure":{"StopLoading":[]},"SaveTaxRateFailure":{"StopSaving":[]},"ArchiveTaxRateFailure":{"StopSaving":[]},"DeleteTaxRateFailure":{"StopSaving":[]},"RestoreTaxRateFailure":{"StopSaving":[]},"_$TaxRateStateSerializer":{"StructuredSerializer":["TaxRateState"],"Serializer":["TaxRateState"]},"_$TaxRateUIStateSerializer":{"StructuredSerializer":["TaxRateUIState"],"Serializer":["TaxRateUIState"]},"_$TaxRateState":{"TaxRateState":[]},"_$TaxRateUIState":{"TaxRateUIState":[]},"ViewTokenList":{"PersistUI":[]},"ViewToken":{"PersistUI":[],"PersistPrefs":[]},"EditToken":{"PersistUI":[],"PersistPrefs":[]},"UpdateToken":{"PersistUI":[]},"LoadTokenSuccess":{"StopLoading":[],"PersistData":[]},"LoadTokensFailure":{"StopLoading":[]},"LoadTokensSuccess":{"StopLoading":[]},"SaveTokenRequest":{"StartSaving":[]},"SaveTokenSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"AddTokenSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"ArchiveTokensRequest":{"StartSaving":[]},"ArchiveTokensSuccess":{"StopSaving":[],"PersistData":[]},"DeleteTokensRequest":{"StartSaving":[]},"DeleteTokensSuccess":{"StopSaving":[],"PersistData":[]},"RestoreTokensRequest":{"StartSaving":[]},"RestoreTokensSuccess":{"StopSaving":[],"PersistData":[]},"FilterTokens":{"PersistUI":[]},"SortTokens":{"PersistUI":[],"PersistPrefs":[]},"FilterTokensByState":{"PersistUI":[]},"FilterTokensByCustom1":{"PersistUI":[]},"FilterTokensByCustom2":{"PersistUI":[]},"FilterTokensByCustom3":{"PersistUI":[]},"FilterTokensByCustom4":{"PersistUI":[]},"LoadTokenRequest":{"StartLoading":[]},"LoadTokenFailure":{"StopLoading":[]},"LoadTokensRequest":{"StartLoading":[]},"SaveTokenFailure":{"StopSaving":[]},"ArchiveTokensFailure":{"StopSaving":[]},"DeleteTokensFailure":{"StopSaving":[]},"RestoreTokensFailure":{"StopSaving":[]},"_$TokenStateSerializer":{"StructuredSerializer":["TokenState"],"Serializer":["TokenState"]},"_$TokenUIStateSerializer":{"StructuredSerializer":["TokenUIState"],"Serializer":["TokenUIState"]},"_$TokenState":{"TokenState":[]},"_$TokenUIState":{"TokenUIState":[]},"ViewTransactionList":{"PersistUI":[]},"ViewTransaction":{"PersistUI":[],"PersistPrefs":[]},"EditTransaction":{"PersistUI":[],"PersistPrefs":[]},"UpdateTransaction":{"PersistUI":[]},"LoadTransactionSuccess":{"StopLoading":[],"PersistData":[]},"LoadTransactionsRequest":{"StartLoading":[]},"LoadTransactionsFailure":{"StopLoading":[]},"LoadTransactionsSuccess":{"StopLoading":[]},"SaveTransactionRequest":{"StartSaving":[]},"SaveTransactionSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddTransactionSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveTransactionsRequest":{"StartSaving":[]},"ArchiveTransactionsSuccess":{"StopSaving":[],"PersistData":[]},"DeleteTransactionsRequest":{"StartSaving":[]},"DeleteTransactionsSuccess":{"StopSaving":[],"PersistData":[]},"RestoreTransactionsRequest":{"StartSaving":[]},"RestoreTransactionsSuccess":{"StopSaving":[],"PersistData":[]},"ConvertTransactionToPaymentRequest":{"StartSaving":[]},"ConvertTransactionToPaymentSuccess":{"StopSaving":[],"PersistData":[]},"LinkTransactionToPaymentRequest":{"StartSaving":[]},"LinkTransactionToPaymentSuccess":{"StopSaving":[],"PersistData":[]},"UnlinkTransactionsRequest":{"StartSaving":[]},"LinkTransactionToExpenseRequest":{"StartSaving":[]},"LinkTransactionToExpenseSuccess":{"StopSaving":[],"PersistData":[]},"ConvertTransactionsToExpensesRequest":{"StartSaving":[]},"ConvertTransactionsToExpensesSuccess":{"StopSaving":[],"PersistData":[]},"ConvertTransactionsRequest":{"StartSaving":[]},"ConvertTransactionsSuccess":{"StopSaving":[],"PersistData":[]},"FilterTransactions":{"PersistUI":[]},"SortTransactions":{"PersistUI":[],"PersistPrefs":[]},"FilterTransactionsByState":{"PersistUI":[]},"FilterTransactionsByStatus":{"PersistUI":[]},"FilterTransactionsByCustom1":{"PersistUI":[]},"FilterTransactionsByCustom2":{"PersistUI":[]},"FilterTransactionsByCustom3":{"PersistUI":[]},"FilterTransactionsByCustom4":{"PersistUI":[]},"UpdateTransactionTab":{"PersistUI":[]},"LoadTransactionRequest":{"StartLoading":[]},"LoadTransactionFailure":{"StopLoading":[]},"SaveTransactionFailure":{"StopSaving":[]},"ArchiveTransactionsFailure":{"StopSaving":[]},"DeleteTransactionsFailure":{"StopSaving":[]},"RestoreTransactionsFailure":{"StopSaving":[]},"ConvertTransactionToPaymentFailure":{"StopSaving":[]},"LinkTransactionToPaymentFailure":{"StopSaving":[]},"UnlinkTransactionsSuccess":{"StopSaving":[],"PersistData":[]},"UnlinkTransactionsFailure":{"StopSaving":[]},"LinkTransactionToExpenseFailure":{"StopSaving":[]},"ConvertTransactionsToExpensesFailure":{"StopSaving":[]},"ConvertTransactionsFailure":{"StopSaving":[]},"_$TransactionStateSerializer":{"StructuredSerializer":["TransactionState"],"Serializer":["TransactionState"]},"_$TransactionUIStateSerializer":{"StructuredSerializer":["TransactionUIState"],"Serializer":["TransactionUIState"]},"_$TransactionState":{"TransactionState":[]},"_$TransactionUIState":{"TransactionUIState":[]},"ViewTransactionRuleList":{"PersistUI":[]},"ViewTransactionRule":{"PersistUI":[],"PersistPrefs":[]},"EditTransactionRule":{"PersistUI":[],"PersistPrefs":[]},"UpdateTransactionRule":{"PersistUI":[]},"LoadTransactionRuleSuccess":{"StopLoading":[],"PersistData":[]},"LoadTransactionRulesFailure":{"StopLoading":[]},"LoadTransactionRulesSuccess":{"StopLoading":[]},"SaveTransactionRuleRequest":{"StartSaving":[]},"SaveTransactionRuleSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddTransactionRuleSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveTransactionRulesRequest":{"StartSaving":[]},"ArchiveTransactionRulesSuccess":{"StopSaving":[],"PersistData":[]},"DeleteTransactionRulesRequest":{"StartSaving":[]},"DeleteTransactionRulesSuccess":{"StopSaving":[],"PersistData":[]},"RestoreTransactionRulesRequest":{"StartSaving":[]},"RestoreTransactionRulesSuccess":{"StopSaving":[],"PersistData":[]},"FilterTransactionRules":{"PersistUI":[]},"SortTransactionRules":{"PersistUI":[],"PersistPrefs":[]},"FilterTransactionRulesByState":{"PersistUI":[]},"FilterTransactionRulesByCustom1":{"PersistUI":[]},"FilterTransactionRulesByCustom2":{"PersistUI":[]},"FilterTransactionRulesByCustom3":{"PersistUI":[]},"FilterTransactionRulesByCustom4":{"PersistUI":[]},"UpdateTransactionRuleTab":{"PersistUI":[]},"LoadTransactionRuleRequest":{"StartLoading":[]},"LoadTransactionRuleFailure":{"StopLoading":[]},"LoadTransactionRulesRequest":{"StartLoading":[]},"SaveTransactionRuleFailure":{"StopSaving":[]},"ArchiveTransactionRulesFailure":{"StopSaving":[]},"DeleteTransactionRulesFailure":{"StopSaving":[]},"RestoreTransactionRulesFailure":{"StopSaving":[]},"_$TransactionRuleStateSerializer":{"StructuredSerializer":["TransactionRuleState"],"Serializer":["TransactionRuleState"]},"_$TransactionRuleUIStateSerializer":{"StructuredSerializer":["TransactionRuleUIState"],"Serializer":["TransactionRuleUIState"]},"_$TransactionRuleState":{"TransactionRuleState":[]},"_$TransactionRuleUIState":{"TransactionRuleUIState":[]},"_$ListUIStateSerializer":{"StructuredSerializer":["ListUIState"],"Serializer":["ListUIState"]},"_$ListUIState":{"ListUIState":[]},"_$PrefStateSerializer":{"StructuredSerializer":["PrefState"],"Serializer":["PrefState"]},"_$PrefStateSortFieldSerializer":{"StructuredSerializer":["PrefStateSortField"],"Serializer":["PrefStateSortField"]},"_$CompanyPrefStateSerializer":{"StructuredSerializer":["CompanyPrefState"],"Serializer":["CompanyPrefState"]},"_$AppLayoutSerializer":{"PrimitiveSerializer":["AppLayout"],"Serializer":["AppLayout"]},"_$ModuleLayoutSerializer":{"PrimitiveSerializer":["ModuleLayout"],"Serializer":["ModuleLayout"]},"_$AppSidebarModeSerializer":{"PrimitiveSerializer":["AppSidebarMode"],"Serializer":["AppSidebarMode"]},"_$HistoryRecordSerializer":{"StructuredSerializer":["HistoryRecord"],"Serializer":["HistoryRecord"]},"_$PrefState":{"PrefState":[]},"_$PrefStateSortField":{"PrefStateSortField":[]},"_$CompanyPrefState":{"CompanyPrefState":[]},"_$HistoryRecord":{"HistoryRecord":[]},"_$UIStateSerializer":{"StructuredSerializer":["UIState"],"Serializer":["UIState"]},"_$UIState":{"UIState":[]},"ViewUserList":{"PersistUI":[]},"ViewUser":{"PersistUI":[],"PersistPrefs":[]},"EditUser":{"PersistUI":[],"PersistPrefs":[]},"UpdateUser":{"PersistUI":[]},"LoadUserSuccess":{"StopLoading":[],"PersistData":[]},"LoadUsersSuccess":{"StopLoading":[]},"SaveUserRequest":{"StartSaving":[]},"SaveUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"AddUserSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[],"UserVerifiedPassword":[]},"ArchiveUserRequest":{"StartSaving":[]},"ArchiveUserSuccess":{"StopSaving":[],"PersistData":[],"UserVerifiedPassword":[]},"DeleteUserRequest":{"StartSaving":[]},"DeleteUserSuccess":{"StopSaving":[],"PersistData":[],"UserVerifiedPassword":[]},"RestoreUserRequest":{"StartSaving":[]},"RestoreUserSuccess":{"StopSaving":[],"PersistData":[],"UserVerifiedPassword":[]},"RemoveUserRequest":{"StartSaving":[]},"RemoveUserSuccess":{"StopSaving":[],"PersistData":[]},"ResendInviteRequest":{"StartSaving":[]},"SortUsers":{"PersistUI":[],"PersistPrefs":[]},"FilterUsersByState":{"PersistUI":[]},"FilterUsersByCustom1":{"PersistUI":[]},"FilterUsersByCustom2":{"PersistUI":[]},"FilterUsersByCustom3":{"PersistUI":[]},"FilterUsersByCustom4":{"PersistUI":[]},"LoadUserRequest":{"StartLoading":[]},"LoadUserFailure":{"StopLoading":[]},"LoadUsersRequest":{"StartLoading":[]},"LoadUsersFailure":{"StopLoading":[]},"SaveUserFailure":{"StopSaving":[]},"ArchiveUserFailure":{"StopSaving":[]},"DeleteUserFailure":{"StopSaving":[]},"RestoreUserFailure":{"StopSaving":[]},"RemoveUserFailure":{"StopSaving":[]},"ResendInviteSuccess":{"StopSaving":[],"PersistData":[]},"ResendInviteFailure":{"StopSaving":[]},"_$UserStateSerializer":{"StructuredSerializer":["UserState"],"Serializer":["UserState"]},"_$UserUIStateSerializer":{"StructuredSerializer":["UserUIState"],"Serializer":["UserUIState"]},"_$UserState":{"UserState":[]},"_$UserUIState":{"UserUIState":[]},"ViewVendorList":{"PersistUI":[]},"ViewVendor":{"PersistUI":[],"PersistPrefs":[]},"EditVendor":{"PersistUI":[],"PersistPrefs":[]},"UpdateVendor":{"PersistUI":[]},"LoadVendorSuccess":{"StopLoading":[],"PersistData":[]},"LoadVendorsRequest":{"StartLoading":[]},"LoadVendorsFailure":{"StopLoading":[]},"LoadVendorsSuccess":{"StopLoading":[]},"SaveVendorRequest":{"StartSaving":[]},"SaveVendorSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddVendorSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveVendorRequest":{"StartSaving":[]},"ArchiveVendorSuccess":{"StopSaving":[],"PersistData":[]},"DeleteVendorRequest":{"StartSaving":[]},"DeleteVendorSuccess":{"StopSaving":[],"PersistData":[]},"RestoreVendorRequest":{"StartSaving":[]},"RestoreVendorSuccess":{"StopSaving":[],"PersistData":[]},"EditVendorContact":{"PersistUI":[]},"AddVendorContact":{"PersistUI":[]},"UpdateVendorContact":{"PersistUI":[]},"DeleteVendorContact":{"PersistUI":[]},"FilterVendors":{"PersistUI":[]},"SortVendors":{"PersistUI":[],"PersistPrefs":[]},"FilterVendorsByState":{"PersistUI":[]},"FilterVendorsByCustom1":{"PersistUI":[]},"FilterVendorsByCustom2":{"PersistUI":[]},"FilterVendorsByCustom3":{"PersistUI":[]},"FilterVendorsByCustom4":{"PersistUI":[]},"SaveVendorDocumentRequest":{"StartSaving":[]},"UpdateVendorTab":{"PersistUI":[]},"LoadVendorRequest":{"StartLoading":[]},"LoadVendorFailure":{"StopLoading":[]},"SaveVendorFailure":{"StopSaving":[]},"ArchiveVendorFailure":{"StopSaving":[]},"DeleteVendorFailure":{"StopSaving":[]},"RestoreVendorFailure":{"StopSaving":[]},"SaveVendorDocumentFailure":{"StopSaving":[]},"_$VendorStateSerializer":{"StructuredSerializer":["VendorState"],"Serializer":["VendorState"]},"_$VendorUIStateSerializer":{"StructuredSerializer":["VendorUIState"],"Serializer":["VendorUIState"]},"_$VendorState":{"VendorState":[]},"_$VendorUIState":{"VendorUIState":[]},"ViewWebhookList":{"PersistUI":[]},"ViewWebhook":{"PersistUI":[],"PersistPrefs":[]},"EditWebhook":{"PersistUI":[],"PersistPrefs":[]},"UpdateWebhook":{"PersistUI":[]},"LoadWebhookSuccess":{"StopLoading":[],"PersistData":[]},"LoadWebhooksFailure":{"StopLoading":[]},"LoadWebhooksSuccess":{"StopLoading":[]},"SaveWebhookRequest":{"StartSaving":[]},"SaveWebhookSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"AddWebhookSuccess":{"StopSaving":[],"PersistData":[],"PersistUI":[]},"ArchiveWebhooksRequest":{"StartSaving":[]},"ArchiveWebhooksSuccess":{"StopSaving":[],"PersistData":[]},"DeleteWebhooksRequest":{"StartSaving":[]},"DeleteWebhooksSuccess":{"StopSaving":[],"PersistData":[]},"RestoreWebhooksRequest":{"StartSaving":[]},"RestoreWebhooksSuccess":{"StopSaving":[],"PersistData":[]},"FilterWebhooks":{"PersistUI":[]},"SortWebhooks":{"PersistUI":[],"PersistPrefs":[]},"FilterWebhooksByState":{"PersistUI":[]},"FilterWebhooksByCustom1":{"PersistUI":[]},"FilterWebhooksByCustom2":{"PersistUI":[]},"FilterWebhooksByCustom3":{"PersistUI":[]},"FilterWebhooksByCustom4":{"PersistUI":[]},"LoadWebhookRequest":{"StartLoading":[]},"LoadWebhookFailure":{"StopLoading":[]},"LoadWebhooksRequest":{"StartLoading":[]},"SaveWebhookFailure":{"StopSaving":[]},"ArchiveWebhooksFailure":{"StopSaving":[]},"DeleteWebhooksFailure":{"StopSaving":[]},"RestoreWebhooksFailure":{"StopSaving":[]},"_$WebhookStateSerializer":{"StructuredSerializer":["WebhookState"],"Serializer":["WebhookState"]},"_$WebhookUIStateSerializer":{"StructuredSerializer":["WebhookUIState"],"Serializer":["WebhookUIState"]},"_$WebhookState":{"WebhookState":[]},"_$WebhookUIState":{"WebhookUIState":[]},"FieldGrid":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ActionMenuButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ViewActionMenuButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppBorder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppBottomBar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomFieldSelector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AppBottomBarState":{"State":["AppBottomBar"]},"AppBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppBuilderState":{"State":["AppBuilder"]},"AppHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppWebView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebWebView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AutobillDropdownMenuItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BlankScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppTextButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BottomButtons":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ChangeLayoutBanner":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ChangeLayoutBannerState":{"State":["ChangeLayoutBanner"]},"ConfirmEmail":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ConfirmEmailBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CopyToClipboard":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashedRect":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashRectPainter":{"Listenable":[]},"DesktopSessionTimeout":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DesktopSessionTimeoutState":{"State":["DesktopSessionTimeout"]},"MessageDialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ErrorDialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"HealthCheckDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HealthCheckDialogState":{"State":["HealthCheckDialog"]},"_HealthListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LoadingDialog":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"MultiSelectList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"MultiSelectListState":{"State":["MultiSelectList"]},"DismissibleEntity":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentGrid":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DocumentGridState":{"State":["DocumentGrid"]},"DocumentPreview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EditScaffold":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityActionListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityListTile":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntitiesListTile":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EntityListTileState":{"State":["EntityListTile"]},"_EntitiesListTileState":{"State":["EntitiesListTile"]},"EntityStatusChip":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityDropdown":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityDropdownDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityAutocompleteListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EntityDropdownState":{"State":["EntityDropdown"]},"_EntityDropdownDialogState":{"State":["EntityDropdownDialog"]},"_AutocompleteEntity":{"SelectableEntity":[]},"EntityHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityStateLabel":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityTopFilter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityTopFilterHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"FormCard":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppDropdownButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppForm":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppTabForm":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppTabBar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppToggleButtons":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoolDropdownButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientPicker":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"FormColorPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FormColorPickerState":{"State":["FormColorPicker"]},"CustomField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CustomFieldState":{"State":["CustomField"]},"CustomSurcharges":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DatePicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DatePickerState":{"State":["DatePicker"]},"DecoratedFormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DecoratedFormFieldState":{"State":["DecoratedFormField"]},"DesignPicker":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DiscountField":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DurationPicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DurationPickerState":{"State":["DurationPicker"]},"DynamicSelector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GrowableFormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_GrowableFormFieldState":{"State":["GrowableFormField"]},"LearnMoreUrl":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"NotificationSettings":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_NotificationSelector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PasswordFormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PasswordFormFieldState":{"State":["PasswordFormField"]},"ProjectPicker":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SaveCancelButtons":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TimePicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TimePickerState":{"State":["TimePicker"]},"UserPicker":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorPicker":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenMeta":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"HelpText":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"HistoryDrawer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"HistoryListTile":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_HistoryListTileState":{"State":["HistoryListTile"]},"HistoryDrawerBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IconMessage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IconText":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEmailView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceEmailViewState":{"State":["InvoiceEmailView"]},"InvoiceItemListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateDropdown":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaxRateDropdownState":{"State":["TaxRateDropdown"]},"TaxRateField":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LinkTextRelatedEntity":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LinkTextRelatedEntityState":{"State":["LinkTextRelatedEntity"]},"LinkTextSpan":{"TextSpan":[],"InlineSpan":[],"DiagnosticableTree":[],"MouseTrackerAnnotation":[],"HitTestTarget":[]},"ListFilter":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ListFilterState":{"State":["ListFilter"]},"ListScaffold":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ActivityListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ListDivider":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ListFilterMessage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"FilterListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SelectedIndicator":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LiveText":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LiveTextState":{"State":["LiveText"]},"LoadingIndicator":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"MainScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityScreens":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsScreens":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"MenuDrawer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DrawerTile":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContactUsDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MenuDrawerState":{"State":["MenuDrawer"]},"_DrawerTileState":{"State":["DrawerTile"]},"SidebarFooter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SidebarFooterCollapsed":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ContactUsDialogState":{"State":["ContactUsDialog"]},"MenuDrawerBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectRow":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DropDownMultiSelect":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DropDownMultiSelectState":{"State":["DropDownMultiSelect"]},"AppPinput":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PortalLinks":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TableTooltip":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CachedImage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ResponsivePadding":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReviewApp":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ReviewAppState":{"State":["ReviewApp"]},"ScrollableListView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollableListViewBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScrollableListViewState":{"State":["ScrollableListView"]},"_ScrollableListViewBuilderState":{"State":["ScrollableListViewBuilder"]},"SearchText":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AccountSmsVerification":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserSmsVerification":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AccountSmsVerificationState":{"State":["AccountSmsVerification"]},"_UserSmsVerificationState":{"State":["UserSmsVerification"]},"SystemLogViewer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SystemLogViewerState":{"State":["SystemLogViewer"]},"AppPaginatedDataTable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AppPaginatedDataTableState":{"State":["AppPaginatedDataTable"]},"EntityDataTableSource":{"Listenable":[]},"EntityList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EntityListState":{"State":["EntityList"]},"UpgradeDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_UpgradeDialogState":{"State":["UpgradeDialog"]},"VariablesHelp":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VariablesHelpState":{"State":["VariablesHelp"]},"_VariableGrid":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ViewScaffold":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebSessionTimeout":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebSessionTimeoutState":{"State":["WebSessionTimeout"]},"WebSocketRefresh":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebSocketRefreshState":{"State":["WebSocketRefresh"]},"WindowManager":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WindowManagerState":{"State":["WindowManager"]},"InitScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LockScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LoginView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LoginState":{"State":["LoginView"]},"RuledText":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LoginScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BankAccountListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BankAccountListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BankAccountScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BankAccountScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BankAccountEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BankAccountEditState":{"State":["BankAccountEdit"]},"BankAccountEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BankAccountView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_BankAccountViewState":{"State":["BankAccountView"]},"BankAccountViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientPdfView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientPdfViewState":{"State":["ClientPdfView"]},"ClientPdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientEditState":{"State":["ClientEdit"]},"ClientEditBillingAddress":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditBillingAddressState":{"State":["ClientEditBillingAddress"]},"ClientEditContacts":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContactListTile0":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContactEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientEditContactsState":{"State":["ClientEditContacts"]},"ContactEditDetailsState":{"State":["ContactEditDetails"]},"ClientEditContactsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditDesktop":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditDetailsState":{"State":["ClientEditDetails"]},"ClientEditFooter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditNotes":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditNotesState":{"State":["ClientEditNotes"]},"ClientEditSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditSettingsState":{"State":["ClientEditSettings"]},"ClientEditShippingAddress":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientEditShippingAddressState":{"State":["ClientEditShippingAddress"]},"ClientEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewState":{"State":["ClientView"]},"ClientViewActivity":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewActivityState":{"State":["ClientViewActivity"]},"ClientViewDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewDetailsState":{"State":["ClientViewDetails"]},"ClientViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientViewFullwidth":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewFullwidthState":{"State":["ClientViewFullwidth"]},"ClientViewLedger":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewLedgerState":{"State":["ClientViewLedger"]},"ClientOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientViewPaymentMethods":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientViewSystemLogs":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientViewSystemLogsState":{"State":["ClientViewSystemLogs"]},"ClientViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CompanyGatewayListState":{"State":["CompanyGatewayList"]},"CompanyGatewayListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"GatewayConfigField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"LimitEditor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FeesEditor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CompanyGatewayEditState":{"State":["CompanyGatewayEdit"]},"GatewayConfigSettings":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_GatewayConfigFieldState":{"State":["GatewayConfigField"]},"_LimitEditorState":{"State":["LimitEditor"]},"_FeesEditorState":{"State":["FeesEditor"]},"CompanyGatewayEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyGatewayView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CompanyGatewaySystemLog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CompanyGatewayViewState":{"State":["CompanyGatewayView"]},"_CompanyGatewayOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"__CompanyGatewaySystemLogState":{"State":["_CompanyGatewaySystemLog"]},"CompanyGatewayViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEmailScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditPdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CreditEditState":{"State":["CreditEdit"]},"CreditEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEditItemsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEditNotesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEditPDFScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashboardActivity":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashboardChart":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DashboardChartState":{"State":["DashboardChart"]},"DashboardDateRangePicker":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DashboardDateRangePickerState":{"State":["DashboardDateRangePicker"]},"_DashboardPanel":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OverviewPanel":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DashboardSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DashboardField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashboardPanels":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"__DashboardPanelState":{"State":["_DashboardPanel"]},"__OverviewPanelState":{"State":["_OverviewPanel"]},"__DashboardSettingsState":{"State":["_DashboardSettings"]},"_DashboardFieldState":{"State":["_DashboardField"]},"DashboardScreen":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DashboardScreenState":{"State":["DashboardScreen"]},"_CustomTabBarView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashboardScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SidebarScaffold":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceSidebar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentSidebar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteSidebar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskSidebar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseSidbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DashboardSidebar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DashboardSystemLogs":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfDesignPreview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InsertTabIntent":{"Intent":[]},"_DesignImportDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DesignEditState":{"State":["DesignEdit"]},"DesignSection":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DesignSettingsState":{"State":["DesignSettings"]},"_PdfDesignPreviewState":{"State":["PdfDesignPreview"]},"HtmlDesignPreview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InsertTabAction":{"Action":["Intent"],"Action.T":"Intent"},"__DesignImportDialogState":{"State":["_DesignImportDialog"]},"DesignEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DesignView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DesignViewState":{"State":["DesignView"]},"DesignViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentEdit0":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DocumentEditState":{"State":["DocumentEdit0"]},"DocumentEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DocumentViewState":{"State":["DocumentView"]},"DocumentViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseEditState":{"State":["ExpenseEdit"]},"ExpenseEditDesktop":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseEditDetailsState":{"State":["ExpenseEditDetails"]},"ExpenseEditNotes":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseEditNotesState":{"State":["ExpenseEditNotes"]},"ExpenseEditSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseEditSettingsState":{"State":["ExpenseEditSettings"]},"ExpenseEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseViewState":{"State":["ExpenseView"]},"ExpenseViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseViewSchedule":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseViewScheduleState":{"State":["ExpenseViewSchedule"]},"ExpenseViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseCategoryEditState":{"State":["ExpenseCategoryEdit"]},"ExpenseCategoryEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseCategoryView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseCategoryViewState":{"State":["ExpenseCategoryView"]},"ExpenseCategoryViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_GroupEditState":{"State":["GroupEdit"]},"GroupEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_GroupViewState":{"State":["GroupView"]},"SettingsViewer":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GroupViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceEditState":{"State":["InvoiceEdit"]},"InvoiceEditContacts":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ContactListTile":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ContactListTileState":{"State":["_ContactListTile"]},"InvoiceEditContactsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditDesktop":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PdfPreview0":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditDesktopState":{"State":["InvoiceEditDesktop"]},"__PdfPreviewState":{"State":["_PdfPreview0"]},"InvoiceEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditDetailsState":{"State":["InvoiceEditDetails"]},"InvoiceEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditFooter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditItems":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ItemEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceEditItemsState":{"State":["InvoiceEditItems"]},"ItemEditDetailsState":{"State":["ItemEditDetails"]},"InvoiceEditItemsDesktop":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceEditItemsDesktopState":{"State":["InvoiceEditItemsDesktop"]},"TableHeader":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditItemsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditNotes":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditNotesState":{"State":["InvoiceEditNotes"]},"InvoiceEditNotesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditPDF":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditPDFState":{"State":["InvoiceEditPDF"]},"InvoiceEditPDFScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceItemSelector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceItemSelectorState":{"State":["InvoiceItemSelector"]},"InvoiceTaxDetails":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceEmailScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoicePdfView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoicePdfViewState":{"State":["InvoicePdfView"]},"InvoicePdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceViewState":{"State":["InvoiceView"]},"InvoiceViewActivity":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceViewActivityState":{"State":["InvoiceViewActivity"]},"_InvitationListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceViewContacts":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceViewHistory":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceViewHistoryState":{"State":["InvoiceViewHistory"]},"InvoiceOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceViewSchedule":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceViewScheduleState":{"State":["InvoiceViewSchedule"]},"InvoiceViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentableEditor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentEditState":{"State":["PaymentEdit"]},"_PaymentableEditorState":{"State":["PaymentableEditor"]},"PaymentEditFooter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentRefund":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentableEditor0":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentRefundState":{"State":["PaymentRefund"]},"_PaymentableEditorState0":{"State":["PaymentableEditor0"]},"PaymentRefundScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentViewState":{"State":["PaymentView"]},"PaymentViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentTermEditState":{"State":["PaymentTermEdit"]},"PaymentTermEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentTermView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentTermViewState":{"State":["PaymentTermView"]},"PaymentTermViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProductEditState":{"State":["ProductEdit"]},"ProductEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProductViewState":{"State":["ProductView"]},"ProductViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductOverview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProductOverviewState":{"State":["ProductOverview"]},"ProductViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProjectEditState":{"State":["ProjectEdit"]},"ProjectEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProjectViewState":{"State":["ProjectView"]},"ProjectViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProjectOverview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProjectOverviewState":{"State":["ProjectOverview"]},"ProjectViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PurchaseOrderEditState":{"State":["PurchaseOrderEdit"]},"PurchaseOrderEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEditItemsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEditNotesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEditPDFScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderEmailScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderPdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PurchaseOrderViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_QuoteEditState":{"State":["QuoteEdit"]},"QuoteEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEditItemsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEditNotesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEditPDFScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteEmailScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuotePdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QuoteViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringExpenseViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RecurringInvoiceEditState":{"State":["RecurringInvoiceEdit"]},"RecurringInvoiceEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceEditItemsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceEditNotesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceEditPDFScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoicePdfScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"RecurringInvoiceViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReportCharts":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReportsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReportDataTable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ReportDataTableState":{"State":["ReportDataTable"]},"TotalsDataTable":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReportDataTableSource":{"Listenable":[]},"ReportStringValue":{"ReportElement":[]},"ReportEntityTypeValue":{"ReportElement":[]},"ReportAgeValue":{"ReportElement":[]},"ReportDurationValue":{"ReportElement":[]},"ReportIntValue":{"ReportElement":[]},"ReportNumberValue":{"ReportElement":[]},"ReportBoolValue":{"ReportElement":[]},"ReportsScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScheduleEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScheduleEditState":{"State":["ScheduleEdit"]},"ScheduleEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScheduleListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScheduleListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScheduleScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScheduleScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScheduleView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScheduleViewState":{"State":["ScheduleView"]},"ScheduleViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AccountManagement":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AccountManagementState":{"State":["AccountManagement"]},"_AccountOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AccountManagementScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ClientPortal":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ClientPortalState":{"State":["ClientPortal"]},"ClientPortalScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CompanyDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CompanyDetailsState":{"State":["CompanyDetails"]},"CompanyDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CreditCardsAndBanks":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CreditCardsAndBanksState":{"State":["CreditCardsAndBanks"]},"CreditCardsAndBanksScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomFields":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"CustomFormField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CustomFieldsState":{"State":["CustomFields"]},"CustomFieldsSettings":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CustomFormFieldState":{"State":["CustomFormField"]},"CustomFieldsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DataVisualizations":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DataVisualizationsState":{"State":["DataVisualizations"]},"DataVisualizationsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"DeviceSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DeviceSettingsState":{"State":["DeviceSettings"]},"DeviceSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EmailSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EmailSettingsState":{"State":["EmailSettings"]},"EmailSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ExpenseSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExpenseSettingsState":{"State":["ExpenseSettings"]},"ExpenseSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GeneratedNumbers":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EntityNumberSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_GeneratedNumbersState":{"State":["GeneratedNumbers"]},"_EntityNumberSettingsState":{"State":["EntityNumberSettings"]},"HelpPanel":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"GeneratedNumbersScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ImportExport":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FileImport":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_FileMapper":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ImportExportState":{"State":["ImportExport"]},"_FileImportState":{"State":["_FileImport"]},"__FileMapperState":{"State":["_FileMapper"]},"_FieldMapper":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ImportExportScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"InvoiceDesign":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PdfPreview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InvoiceDesignState":{"State":["InvoiceDesign"]},"_PdfPreviewState":{"State":["_PdfPreview"]},"InvoiceDesignScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"LocalizationSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AddCompanyDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_LocalizationSettingsState":{"State":["LocalizationSettings"]},"_AddCompanyDialogState":{"State":["_AddCompanyDialog"]},"LocalizationScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PaymentSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PaymentSettingsState":{"State":["PaymentSettings"]},"PaymentsSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ProductSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ProductSettingsState":{"State":["ProductSettings"]},"ProductSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsListTile":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SettingsListState":{"State":["SettingsList"]},"_SettingsListTileState":{"State":["SettingsListTile"]},"SettingsSearch":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SettingsWizard":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SettingsWizardState":{"State":["SettingsWizard"]},"TaskSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskSettingsState":{"State":["TaskSettings"]},"TaskSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EditSubregionDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaxSettingsState":{"State":["TaxSettings"]},"NumberOfRatesSelector":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"__EditSubregionDialogState":{"State":["_EditSubregionDialog"]},"TaxSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TemplatesAndReminders":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ReminderSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TemplatesAndRemindersState":{"State":["TemplatesAndReminders"]},"_ReminderSettingsState":{"State":["ReminderSettings"]},"EmailPreview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TemplatesAndRemindersScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EnableTwoFactor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_UserDetailsState":{"State":["UserDetails"]},"_EnableTwoFactorState":{"State":["_EnableTwoFactor"]},"UserDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WorkflowSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WorkflowSettingsState":{"State":["WorkflowSettings"]},"WorkflowSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SubscriptionEditState":{"State":["SubscriptionEdit"]},"SubscriptionEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SubscriptionView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SubscriptionViewState":{"State":["SubscriptionView"]},"SubscriptionViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UpdateDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_UpdateDialogState":{"State":["UpdateDialog"]},"TaskEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskEditState":{"State":["TaskEdit"]},"_BottomBar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskEditDesktop":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskEditDesktopState":{"State":["TaskEditDesktop"]},"TaskEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskEditDetailsState":{"State":["TaskEditDetails"]},"TaskEditDetailsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskEditTimes":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TimeEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskEditTimesState":{"State":["TaskEditTimes"]},"TimeEditDetailsState":{"State":["TimeEditDetails"]},"TaskEditTimesScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"KanbanTaskCard":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_KanbanTaskCardState":{"State":["KanbanTaskCard"]},"KanbanStatusCard":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_KanbanStatusCardState":{"State":["KanbanStatusCard"]},"KanbanView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"KanbanViewState":{"State":["KanbanView"]},"KanbanViewBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_KanbanViewBuilderState":{"State":["KanbanViewBuilder"]},"TaskListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskTimeListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskViewState":{"State":["TaskView"]},"TaskViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskOverview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskOverviewState":{"State":["TaskOverview"]},"TaskViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskStatusEditState":{"State":["TaskStatusEdit"]},"TaskStatusEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskStatusListState":{"State":["TaskStatusList"]},"TaskStatusListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaskStatusView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaskStatusViewState":{"State":["TaskStatusView"]},"TaskStatusViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaxRateEditState":{"State":["TaxRateEdit"]},"TaxRateEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateSettingsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TaxRateView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TaxRateViewState":{"State":["TaxRateView"]},"TaxRateViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TokenEditState":{"State":["TokenEdit"]},"TokenEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TokenViewState":{"State":["TokenView"]},"_TokenListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TokenViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TransactionEditState":{"State":["TransactionEdit"]},"TransactionEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MatchDeposits":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MatchWithdrawals":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TransactionViewState":{"State":["TransactionView"]},"_MatchDepositsState":{"State":["_MatchDeposits"]},"_MatchWithdrawalsState":{"State":["_MatchWithdrawals"]},"TransactionViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionRuleEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RuleCriteria":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TransactionRuleEditState":{"State":["TransactionRuleEdit"]},"__RuleCriteriaState":{"State":["_RuleCriteria"]},"TransactionRuleEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionRuleListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionRuleListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionRuleScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionRuleScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TransactionRuleView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TransactionRuleViewState":{"State":["TransactionRuleView"]},"TransactionRuleViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_UserEditState":{"State":["UserEdit"]},"_PermissionCheckbox":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UserViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorEditState":{"State":["VendorEdit"]},"VendorEditAddress":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditAddressState":{"State":["VendorEditAddress"]},"VendorEditContacts":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContactListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorContactEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorEditContactsState":{"State":["VendorEditContacts"]},"VendorContactEditDetailsState":{"State":["VendorContactEditDetails"]},"VendorEditContactsScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditDesktop":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditDetailsState":{"State":["VendorEditDetails"]},"VendorEditFooter":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditNotes":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditNotesState":{"State":["VendorEditNotes"]},"VendorEditSettings":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorEditSettingsState":{"State":["VendorEditSettings"]},"VendorEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorViewState":{"State":["VendorView"]},"VendorViewActivity":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorViewActivityState":{"State":["VendorViewActivity"]},"VendorViewDetails":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorViewDetailsState":{"State":["VendorViewDetails"]},"VendorViewDocuments":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorViewFullwidth":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_VendorViewFullwidthState":{"State":["VendorViewFullwidth"]},"VendorOverview":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"VendorViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookEdit":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebhookEditState":{"State":["WebhookEdit"]},"WebhookEditScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebhookViewState":{"State":["WebhookView"]},"TargetListTile":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookViewScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookListItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookListBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookScreen":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"WebhookScreenBuilder":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PasswordConfirmation":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FieldConfirmation":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RunTemplateDialog":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PasswordConfirmationState":{"State":["PasswordConfirmation"]},"_FieldConfirmationState":{"State":["FieldConfirmation"]},"_RunTemplateDialogState":{"State":["RunTemplateDialog"]},"AppLocalizationsDelegate":{"LocalizationsDelegate":["AppLocalization"],"LocalizationsDelegate.T":"AppLocalization"},"_EmptyParagraphSyntax":{"BlockSyntax":[]},"ExampleEditor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ExampleEditorState":{"State":["ExampleEditor"]},"SuperEditorDemoTextItemSelector":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SuperEditorDemoTextItemSelectorState":{"State":["SuperEditorDemoTextItemSelector"]},"SuperEditorPopoverButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"EditorToolbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ImageFormatToolbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EditorToolbarState":{"State":["EditorToolbar"]},"_ImageFormatToolbarState":{"State":["ImageFormatToolbar"]},"_PositionedToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SingleLineAttributedTextEditingController":{"Listenable":[]},"LinkableElement":{"LinkifyElement":[]},"TextElement0":{"LinkifyElement":[]},"EmailLinkifier":{"Linkifier":[]},"EmailElement":{"LinkifyElement":[]},"UrlLinkifier":{"Linkifier":[]},"UrlElement":{"LinkifyElement":[]},"AndroidAuthMessages":{"AuthMessages":[]},"IOSAuthMessages":{"AuthMessages":[]},"WindowsAuthMessages":{"AuthMessages":[]},"Level":{"Comparable":["Level"]},"Element1":{"Node2":[]},"Text1":{"Node2":[]},"UnparsedContent":{"Node2":[]},"EmptyBlockSyntax":{"BlockSyntax":[]},"SetextHeaderSyntax":{"BlockSyntax":[]},"HeaderSyntax":{"BlockSyntax":[]},"BlockquoteSyntax":{"BlockSyntax":[]},"CodeBlockSyntax":{"BlockSyntax":[]},"FencedCodeBlockSyntax":{"BlockSyntax":[]},"HorizontalRuleSyntax":{"BlockSyntax":[]},"BlockHtmlSyntax":{"BlockSyntax":[]},"BlockTagBlockHtmlSyntax":{"BlockSyntax":[]},"OtherTagBlockHtmlSyntax":{"BlockSyntax":[]},"LongBlockHtmlSyntax":{"BlockSyntax":[]},"ListSyntax":{"BlockSyntax":[]},"UnorderedListSyntax":{"BlockSyntax":[]},"OrderedListSyntax":{"BlockSyntax":[]},"ParagraphSyntax":{"BlockSyntax":[]},"LineBreakSyntax":{"InlineSyntax":[]},"TextSyntax":{"InlineSyntax":[]},"EscapeSyntax":{"InlineSyntax":[]},"InlineHtmlSyntax":{"InlineSyntax":[]},"EmailAutolinkSyntax":{"InlineSyntax":[]},"AutolinkSyntax":{"InlineSyntax":[]},"SimpleDelimiter":{"Delimiter":[]},"DelimiterRun":{"Delimiter":[]},"TagSyntax":{"InlineSyntax":[]},"LinkSyntax":{"InlineSyntax":[]},"ImageSyntax":{"InlineSyntax":[]},"CodeSyntax":{"InlineSyntax":[]},"_MdiIconData":{"IconData":[]},"MsalJsException":{"Exception":[]},"AuthException":{"Exception":[]},"ClientAuthException":{"Exception":[]},"ClientConfigurationException":{"Exception":[]},"InteractionRequiredAuthException":{"Exception":[]},"ServerException":{"Exception":[]},"BrowserAuthException":{"Exception":[]},"BrowserConfigurationAuthException":{"Exception":[]},"OverflowViewParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"RenderOverflowView":{"RenderBoxContainerDefaultsMixin":["RenderBox","OverflowViewParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","OverflowViewParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"OverflowViewParentData","RenderBoxContainerDefaultsMixin.1":"OverflowViewParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"OverflowView":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_OverflowViewElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"CupertinoPopoverMenu":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderPopover":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"CupertinoPopoverToolbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_IosPagerParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"_CupertinoPopoverToolbarState":{"State":["CupertinoPopoverToolbar"]},"_MenuPageController":{"Listenable":[]},"_IosToolbarMenuContent":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderIosPagedMenu":{"RenderBoxContainerDefaultsMixin":["RenderBox","_IosPagerParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","_IosPagerParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"_IosPagerParentData","RenderBoxContainerDefaultsMixin.1":"_IosPagerParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"PathException":{"Exception":[]},"MissingPlatformDirectoryException":{"Exception":[]},"PinchZoom":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PinchZoomState":{"State":["PinchZoom"]},"Pinput":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PinItem":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PinputAnimatedCursor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PinputState":{"State":["Pinput"],"WidgetsBindingObserver":[],"AutofillClient":[]},"_PinputFormField":{"FormField":["String"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[],"FormField.T":"String"},"_SeparatedRaw":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PinputCursor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PinputAnimatedCursorState":{"State":["_PinputAnimatedCursor"]},"PointerInterceptor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_WebPdfRaster":{"PdfRaster":[]},"PdfPreviewAction":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfPrintAction":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfShareAction":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfPreviewController":{"InheritedNotifier":["Listenable"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"Listenable"},"PdfPreviewData":{"Listenable":[]},"PdfPreviewCustom":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfPreviewCustomState":{"State":["PdfPreviewCustom"]},"PdfPreviewPage":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfPreview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PdfPreviewState":{"State":["PdfPreview"]},"QrBitBuffer":{"ListBase":["bool"],"List":["bool"],"EfficientLengthIterable":["bool"],"Iterable":["bool"],"ListBase.E":"bool","Iterable.E":"bool"},"QrByte":{"QrDatum":[]},"InputTooLongException":{"Exception":[]},"QrImageView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_QrImageViewState":{"State":["QrImageView"]},"_QrContentView":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"QrPainter":{"Listenable":[]},"LoggingMiddleware":{"MiddlewareClass":["1"]},"RoundedLoadingButton":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"RoundedLoadingButtonState":{"State":["RoundedLoadingButton"]},"DeferStream":{"Stream":["1"],"Stream.T":"1"},"ValueStreamError":{"Error":[]},"BehaviorSubject":{"Subject":["1"],"EventSink":["1"],"Stream":["1"],"Stream.T":"1"},"_BehaviorSubjectStream":{"Stream":["1"],"Stream.T":"1"},"Subject":{"EventSink":["1"],"Stream":["1"]},"_SubjectStream":{"Stream":["1"],"Stream.T":"1"},"_MultiControllerSink":{"EventSink":["1"]},"NoOpClient":{"Client0":[]},"SentryNavigatorObserver":{"RouteObserver":["PageRoute<@>"],"NavigatorObserver":[],"RouteObserver.R":"PageRoute<@>"},"AppleLogoPainter":{"Listenable":[]},"SignInWithAppleButton":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"UnknownSignInWithAppleException":{"Exception":[]},"SignInWithAppleNotSupportedException":{"Exception":[]},"SignInWithAppleAuthorizationException":{"Exception":[]},"SignInWithAppleCredentialsException":{"Exception":[]},"FileLocation":{"SourceLocation":[],"Comparable":["SourceLocation"]},"_FileSpan":{"SourceSpanWithContext":[],"Comparable":["SourceSpan"]},"SourceLocation":{"Comparable":["SourceLocation"]},"SourceLocationMixin":{"SourceLocation":[],"Comparable":["SourceLocation"]},"SourceSpan":{"Comparable":["SourceSpan"]},"SourceSpanBase":{"Comparable":["SourceSpan"]},"SourceSpanException":{"Exception":[]},"SourceSpanFormatException":{"FormatException":[],"Exception":[]},"SourceSpanMixin":{"Comparable":["SourceSpan"]},"SourceSpanWithContext":{"Comparable":["SourceSpan"]},"MyStatefulWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_InheritedInjected":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Injected":{"ReactiveModel":["1"]},"InjectedImp":{"ReactiveModelImp":["1"],"ReactiveModel":["1"]},"ReactiveModelImp":{"ReactiveModel":["1"]},"OnBuilder":{"MyStatefulWidget":["1"],"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MyStatefulWidgetState":{"ExtendedState":["MyStatefulWidget<1>"],"State":["MyStatefulWidget<1>"]},"IStatefulWidget":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"MyElement":{"StatefulElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"ExtendedState":{"State":["1"]},"StringScannerException":{"FormatException":[],"Exception":[]},"DocumentNode":{"Listenable":[]},"NodeInsertedEvent":{"DocumentChange":[]},"NodeRemovedEvent":{"DocumentChange":[]},"NodeChangeEvent":{"DocumentChange":[]},"MutableDocumentComposer":{"Listenable":[],"Editable":[]},"ChangeSelectionCommand":{"EditCommand":[]},"ChangeComposingRegionCommand":{"EditCommand":[]},"ChangeInteractionModeCommand":{"EditCommand":[]},"DocumentComposer":{"Listenable":[]},"ComposerPreferences":{"Listenable":[]},"ClearSelectionRequest":{"EditRequest":[]},"ChangeSelectionRequest":{"EditRequest":[]},"SelectionChangeEvent":{"EditEvent":[]},"ComposingRegionChangeEvent":{"EditEvent":[]},"ChangeComposingRegionRequest":{"EditRequest":[]},"ClearComposingRegionRequest":{"EditRequest":[]},"ChangeInteractionModeRequest":{"EditRequest":[]},"DocumentLayoutEditable":{"Editable":[]},"DocumentEdit":{"EditEvent":[]},"MutableDocument":{"Document2":[],"Editable":[]},"LinkAttribution":{"Attribution":[]},"BlockquoteComponentBuilder":{"ComponentBuilder":[]},"BlockquoteComponentViewModel":{"TextComponentViewModel":[],"SingleColumnLayoutComponentViewModel":[]},"BlockquoteComponent":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"BoxComponent":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DeleteUpstreamAtBeginningOfBlockNodeCommand":{"EditCommand":[]},"BlockNode":{"DocumentNode":[],"Listenable":[]},"_BoxComponentState":{"DocumentComponent":["BoxComponent"],"State":["BoxComponent"]},"SelectableBox":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"PasteEditorCommand":{"EditCommand":[]},"DeleteUpstreamCharacterCommand":{"EditCommand":[]},"DeleteDownstreamCharacterCommand":{"EditCommand":[]},"PasteEditorRequest":{"EditRequest":[]},"DeleteUpstreamCharacterRequest":{"EditRequest":[]},"UpdateComposerTextStylesReaction":{"EditReaction":[]},"SuperEditorDebugVisuals":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorFocusDebugVisuals":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorImeDebugVisuals":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"HeaderConversionReaction":{"EditReaction":[]},"UnorderedListItemConversionReaction":{"EditReaction":[]},"OrderedListItemConversionReaction":{"EditReaction":[]},"BlockquoteConversionReaction":{"EditReaction":[]},"HorizontalRuleConversionReaction":{"EditReaction":[]},"ParagraphPrefixConversionReaction":{"EditReaction":[]},"ImageUrlConversionReaction":{"EditReaction":[]},"LinkifyReaction":{"EditReaction":[]},"CaretDocumentOverlay":{"StatefulWidget":[],"ContentLayerWidget":[],"Widget":[],"DiagnosticableTree":[]},"CaretDocumentOverlayState":{"State":["CaretDocumentOverlay"]},"EditorSelectionAndFocusPolicy":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EditorSelectionAndFocusPolicyState":{"State":["EditorSelectionAndFocusPolicy"]},"DocumentMouseInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DocumentMouseInteractorState":{"State":["DocumentMouseInteractor"]},"SuperEditorAndroidControlsScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidDocumentTouchInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorAndroidControlsOverlayManager":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorAndroidToolbarFocalPointDocumentLayerBuilder":{"SuperEditorLayerBuilder":[]},"SuperEditorAndroidHandlesDocumentLayerBuilder":{"SuperEditorLayerBuilder":[]},"_AndroidDocumentTouchInteractorState":{"State":["AndroidDocumentTouchInteractor"],"WidgetsBindingObserver":[]},"SuperEditorAndroidControlsOverlayManagerState":{"State":["SuperEditorAndroidControlsOverlayManager"]},"IosDocumentTouchInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorIosToolbarOverlayManager":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorIosMagnifierOverlayManager":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"EditorFloatingCursor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorIosControlsScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"_IosDocumentTouchInteractorState":{"State":["IosDocumentTouchInteractor"],"WidgetsBindingObserver":[]},"SuperEditorIosToolbarOverlayManagerState":{"State":["SuperEditorIosToolbarOverlayManager"]},"SuperEditorIosMagnifierOverlayManagerState":{"State":["SuperEditorIosMagnifierOverlayManager"]},"_EditorFloatingCursorState":{"State":["EditorFloatingCursor"]},"SuperEditorHardwareKeyHandler":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SuperEditorHardwareKeyHandlerState":{"State":["SuperEditorHardwareKeyHandler"]},"DocumentImeInputClient":{"DeltaTextInputClient":[]},"ImeFocusPolicy":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentSelectionOpenAndCloseImePolicy":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ImeFocusPolicyState":{"State":["ImeFocusPolicy"]},"_DocumentSelectionOpenAndCloseImePolicyState":{"State":["DocumentSelectionOpenAndCloseImePolicy"]},"DeltaTextInputClientDecorator":{"DeltaTextInputClient":[]},"SoftwareKeyboardOpener":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SoftwareKeyboardOpenerState":{"State":["SoftwareKeyboardOpener"]},"KeyboardEditingToolbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"KeyboardHeightBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_KeyboardEditingToolbarState":{"State":["KeyboardEditingToolbar"],"WidgetsBindingObserver":[]},"_KeyboardHeightBuilderState":{"State":["KeyboardHeightBuilder"],"WidgetsBindingObserver":[]},"SuperEditorImeInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorImeInteractorState":{"State":["SuperEditorImeInteractor"]},"DocumentScrollable":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DocumentScrollableState":{"State":["DocumentScrollable"]},"AutoScrollController":{"Listenable":[]},"HorizontalRuleNode":{"DocumentNode":[],"Listenable":[]},"HorizontalRuleComponentBuilder":{"ComponentBuilder":[]},"HorizontalRuleComponentViewModel":{"SingleColumnLayoutComponentViewModel":[]},"HorizontalRuleComponent":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ImageNode":{"DocumentNode":[],"Listenable":[]},"ImageComponentBuilder":{"ComponentBuilder":[]},"ImageComponentViewModel":{"SingleColumnLayoutComponentViewModel":[]},"ImageComponent":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"SingleColumnDocumentLayout":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PresenterComponentBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_Component":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SingleColumnDocumentLayoutState":{"State":["SingleColumnDocumentLayout"],"DocumentLayout":[]},"_PresenterComponentBuilderState":{"State":["_PresenterComponentBuilder"]},"SingleColumnLayoutComposingRegionStyler":{"SingleColumnLayoutStylePhase":[]},"SingleColumnLayoutCustomComponentStyler":{"SingleColumnLayoutStylePhase":[]},"SingleColumnStylesheetStyler":{"SingleColumnLayoutStylePhase":[]},"SingleColumnLayoutSelectionStyler":{"SingleColumnLayoutStylePhase":[]},"UnorderedListItemComponent":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"OrderedListItemComponent":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IndentListItemCommand":{"EditCommand":[]},"UnIndentListItemCommand":{"EditCommand":[]},"ConvertListItemToParagraphCommand":{"EditCommand":[]},"ConvertParagraphToListItemCommand":{"EditCommand":[]},"ChangeListItemTypeCommand":{"EditCommand":[]},"SplitListItemCommand":{"EditCommand":[]},"ListItemNode":{"TextNode":[],"DocumentNode":[],"Listenable":[]},"ListItemComponentBuilder":{"ComponentBuilder":[]},"ListItemComponentViewModel":{"TextComponentViewModel":[],"SingleColumnLayoutComponentViewModel":[]},"IndentListItemRequest":{"EditRequest":[]},"UnIndentListItemRequest":{"EditRequest":[]},"ConvertListItemToParagraphRequest":{"EditRequest":[]},"ConvertParagraphToListItemRequest":{"EditRequest":[]},"ChangeListItemTypeRequest":{"EditRequest":[]},"SplitListItemRequest":{"EditRequest":[]},"SplitListItemIntention":{"EditEvent":[]},"InsertNodeAtIndexCommand":{"EditCommand":[]},"InsertNodeBeforeNodeCommand":{"EditCommand":[]},"InsertNodeAfterNodeCommand":{"EditCommand":[]},"InsertNodeAtCaretCommand":{"EditCommand":[]},"MoveNodeCommand":{"EditCommand":[]},"ReplaceNodeCommand":{"EditCommand":[]},"ReplaceNodeWithEmptyParagraphWithCaretCommand":{"EditCommand":[]},"DeleteContentCommand":{"EditCommand":[]},"DeleteNodeCommand":{"EditCommand":[]},"InsertNodeAtIndexRequest":{"EditRequest":[]},"InsertNodeBeforeNodeRequest":{"EditRequest":[]},"InsertNodeAfterNodeRequest":{"EditRequest":[]},"ReplaceNodeRequest":{"EditRequest":[]},"ReplaceNodeWithEmptyParagraphWithCaretRequest":{"EditRequest":[]},"DeleteContentRequest":{"EditRequest":[]},"DeleteUpstreamAtBeginningOfNodeRequest":{"EditRequest":[]},"DeleteNodeRequest":{"EditRequest":[]},"ParagraphNode":{"TextNode":[],"DocumentNode":[],"Listenable":[]},"ChangeParagraphAlignmentCommand":{"EditCommand":[]},"ChangeParagraphBlockTypeCommand":{"EditCommand":[]},"CombineParagraphsCommand":{"EditCommand":[]},"SplitParagraphCommand":{"EditCommand":[]},"DeleteUpstreamAtBeginningOfParagraphCommand":{"EditCommand":[]},"ParagraphComponentBuilder":{"ComponentBuilder":[]},"ParagraphComponentViewModel":{"TextComponentViewModel":[],"SingleColumnLayoutComponentViewModel":[]},"ChangeParagraphBlockTypeRequest":{"EditRequest":[]},"CombineParagraphsRequest":{"EditRequest":[]},"SplitParagraphRequest":{"EditRequest":[]},"Intention":{"EditEvent":[]},"SplitParagraphIntention":{"EditEvent":[]},"SubmitParagraphIntention":{"EditEvent":[]},"SuperEditor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperEditorLaunchLinkTapHandler":{"Listenable":[]},"SuperEditorState":{"State":["SuperEditor"]},"DefaultAndroidEditorToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectionLeadersDocumentLayerBuilder":{"SuperEditorLayerBuilder":[]},"DefaultCaretOverlayBuilder":{"SuperEditorLayerBuilder":[]},"TaskComponent":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ChangeTaskCompletionCommand":{"EditCommand":[]},"ConvertParagraphToTaskCommand":{"EditCommand":[]},"ConvertTaskToParagraphCommand":{"EditCommand":[]},"SplitExistingTaskCommand":{"EditCommand":[]},"TaskNode":{"TextNode":[],"DocumentNode":[],"Listenable":[]},"TaskComponentBuilder":{"ComponentBuilder":[]},"TaskComponentViewModel":{"TextComponentViewModel":[],"SingleColumnLayoutComponentViewModel":[]},"_TaskComponentState":{"ProxyDocumentComponent":["TaskComponent"],"DocumentComponent":["TaskComponent"],"State":["TaskComponent"],"ProxyTextComposable":[],"TextComposable":[]},"ChangeTaskCompletionRequest":{"EditRequest":[]},"SplitExistingTaskRequest":{"EditRequest":[]},"SplitTaskIntention":{"EditEvent":[]},"TextNode":{"DocumentNode":[],"Listenable":[]},"TextComponent":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AddTextAttributionsCommand":{"EditCommand":[]},"RemoveTextAttributionsCommand":{"EditCommand":[]},"ToggleTextAttributionsCommand":{"EditCommand":[]},"InsertTextCommand":{"EditCommand":[]},"ConvertTextNodeToParagraphCommand":{"EditCommand":[]},"InsertCharacterAtCaretCommand":{"EditCommand":[]},"TextNodeSelection":{"TextSelection":[],"TextRange":[]},"TextNodePosition":{"TextPosition":[]},"TextComponentState":{"DocumentComponent":["TextComponent"],"State":["TextComponent"],"TextComposable":[]},"ToggleTextAttributionsRequest":{"EditRequest":[]},"InsertTextRequest":{"EditRequest":[]},"TextInsertionEvent":{"NodeChangeEvent":[],"DocumentChange":[]},"TextDeletedEvent":{"NodeChangeEvent":[],"DocumentChange":[]},"ConvertTextNodeToParagraphRequest":{"EditRequest":[]},"InsertAttributedTextCommand":{"EditCommand":[]},"InsertCharacterAtCaretRequest":{"EditRequest":[]},"UnknownComponentBuilder":{"ComponentBuilder":[]},"ContentLayerWidget":{"Widget":[],"DiagnosticableTree":[]},"ContentLayers":{"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContentLayersElement":{"RenderObjectElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"RenderContentLayers":{"RenderBox":[],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"_NullElement1":{"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"_NullWidget5":{"Widget":[],"DiagnosticableTree":[]},"ContentLayerProxyWidget":{"StatelessWidget":[],"ContentLayerWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContentLayerStatelessWidget":{"StatelessWidget":[],"ContentLayerWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContentLayerStatefulWidget":{"StatefulWidget":[],"ContentLayerWidget":[],"Widget":[],"DiagnosticableTree":[]},"ContentLayerStatefulElement":{"StatefulElement":[],"Element0":[],"DiagnosticableTree":[],"BuildContext":[]},"ContentLayerState":{"State":["1"]},"RoundedRectanglePopoverAppearance":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RoundedRectanglePopoverAppearanceState":{"State":["RoundedRectanglePopoverAppearance"]},"ContentTapDelegate":{"Listenable":[]},"DocumentLayoutLayerStatefulWidget":{"StatefulWidget":[],"ContentLayerWidget":[],"Widget":[],"DiagnosticableTree":[]},"DocumentLayoutLayerState":{"State":["1"]},"DocumentScaffold":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_DocumentScaffoldState":{"State":["DocumentScaffold<@>"]},"SelectionLeadersDocumentLayer":{"StatefulWidget":[],"ContentLayerWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SelectionLeadersDocumentLayerState":{"State":["SelectionLeadersDocumentLayer"]},"CupertinoScrollbarWithCustomPhysics":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_CupertinoScrollbarState0":{"RawScrollbarWithCustomPhysicsState":["CupertinoScrollbarWithCustomPhysics"],"State":["CupertinoScrollbarWithCustomPhysics"]},"_MaterialScrollbar0":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ScrollbarWithCustomPhysics":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialScrollbarState0":{"RawScrollbarWithCustomPhysicsState":["_MaterialScrollbar0"],"State":["_MaterialScrollbar0"]},"OverlayGroupPriority":{"Comparable":["OverlayGroupPriority"]},"RawScrollbarWithCustomPhysics":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ThumbPressGestureRecognizer0":{"LongPressGestureRecognizer":[],"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"_TrackTapGestureRecognizer0":{"TapGestureRecognizer":[],"OneSequenceGestureRecognizer":[],"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"RawScrollbarWithCustomPhysicsState":{"State":["1"]},"ScrollbarPainter0":{"Listenable":[]},"NonReparentingFocus":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"FocusWithCustomParent":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_NonReparentingFocusState":{"State":["NonReparentingFocus"]},"_FocusWithCustomParentState":{"State":["FocusWithCustomParent"]},"_FocusMarker":{"InheritedNotifier":["FocusNode"],"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[],"InheritedNotifier.T":"FocusNode"},"MultiListenableBuilder":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MultiListenableBuilderState":{"State":["MultiListenableBuilder"]},"TapSequenceGestureRecognizer":{"GestureRecognizer":[],"DiagnosticableTree":[],"GestureArenaMember":[]},"PausableValueNotifier":{"ValueNotifier":["1"],"Listenable":[]},"AndroidToolbarFocalPointDocumentLayer":{"StatefulWidget":[],"ContentLayerWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidHandlesDocumentLayer":{"StatefulWidget":[],"ContentLayerWidget":[],"Widget":[],"DiagnosticableTree":[]},"_AndroidToolbarFocalPointDocumentLayerState":{"State":["AndroidToolbarFocalPointDocumentLayer"]},"AndroidControlsDocumentLayerState":{"State":["AndroidHandlesDocumentLayer"]},"AndroidFollowingMagnifier":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidMagnifyingGlass":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidSelectionHandle":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidTextEditingFloatingToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IosFloatingToolbarOverlay":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_IosFloatingToolbarOverlayState":{"State":["IosFloatingToolbarOverlay"]},"IOSFollowingMagnifier":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IOSRoundedRectangleMagnifyingGlass":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IOSSelectionHandle":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"IOSTextEditingFloatingToolbar":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_PreventPrioritizedIntentsFromBubblingUp":{"Action":["PrioritizedIntents"],"Action.T":"PrioritizedIntents"},"MagnifierAndToolbarController":{"Listenable":[]},"PopoverScaffold":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"PopoverController":{"Listenable":[]},"_PopoverScaffoldState":{"State":["PopoverScaffold"]},"SuperEditorPopover":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"ItemSelectionList":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"ItemSelectionListState":{"State":["ItemSelectionList<1>"]},"SignalNotifier":{"Listenable":[]},"ViewportBoundsReporter":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderViewportBoundsReporter":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"ViewportBoundsReplicator":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderViewportBoundsReplicator":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"AndroidEditingOverlayControls":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidEditingOverlayController":{"Listenable":[]},"_AndroidEditingOverlayControlsState":{"State":["AndroidEditingOverlayControls"],"WidgetsBindingObserver":[]},"AndroidTextFieldTouchInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"AndroidTextFieldTouchInteractorState":{"State":["AndroidTextFieldTouchInteractor"]},"SuperAndroidTextField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperAndroidTextFieldState":{"State":["SuperAndroidTextField"],"WidgetsBindingObserver":[]},"SuperDesktopTextField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperTextFieldGestureInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperTextFieldKeyboardInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperTextFieldImeInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperTextFieldScrollview":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperTextFieldScrollviewState":{"State":["SuperTextFieldScrollview"]},"SuperDesktopTextFieldState":{"State":["SuperDesktopTextField"]},"_SuperTextFieldGestureInteractorState":{"State":["SuperTextFieldGestureInteractor"]},"_SuperTextFieldKeyboardInteractorState":{"State":["SuperTextFieldKeyboardInteractor"]},"_SuperTextFieldImeInteractorState":{"State":["SuperTextFieldImeInteractor"]},"AttributedTextEditingController":{"Listenable":[]},"FillWidthIfConstrained":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderFillWidthIfConstrained":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"MagnifyingGlass":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"OuterBoxShadow":{"BoxShadow":[],"Shadow":[]},"TextScrollView":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TextScrollViewState":{"State":["TextScrollView"]},"TextScrollController":{"Listenable":[]},"_TextLinesLimiter":{"SingleChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"_RenderTextViewport":{"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[]},"ImeAttributedTextEditingController":{"DeltaTextInputClient":[],"Listenable":[]},"IOSEditingControls":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"IOSEditingOverlayController":{"Listenable":[]},"_IOSEditingControlsState":{"State":["IOSEditingControls"],"WidgetsBindingObserver":[]},"IOSFloatingCursor":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"FloatingCursorController":{"Listenable":[]},"IOSTextFieldTouchInteractor":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"IOSTextFieldTouchInteractorState":{"State":["IOSTextFieldTouchInteractor"]},"SuperIOSTextField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperIOSTextFieldState":{"State":["SuperIOSTextField"],"WidgetsBindingObserver":[]},"SuperTextField":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"SuperTextFieldState":{"State":["SuperTextField"]},"TextLayoutCaret":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextLayoutCaretState":{"State":["TextLayoutCaret"]},"CaretPainter":{"Listenable":[]},"BlinkController":{"Listenable":[]},"SuperText":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_SuperTextLayoutParentData":{"ContainerBoxParentData":["RenderBox"],"BoxParentData":[],"ContainerParentDataMixin":["RenderBox"],"ParentData":[]},"SuperTextState":{"ProseTextState":["SuperText"],"State":["SuperText"]},"_SuperTextLayout":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderSuperTextLayout":{"RenderBoxContainerDefaultsMixin":["RenderBox","_SuperTextLayoutParentData"],"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","_SuperTextLayoutParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"_SuperTextLayoutParentData","RenderBoxContainerDefaultsMixin.1":"_SuperTextLayoutParentData","RenderBoxContainerDefaultsMixin.0":"RenderBox","ContainerRenderObjectMixin.0":"RenderBox"},"LayoutAwareRichText":{"MultiChildRenderObjectWidget":[],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[]},"RenderLayoutAwareParagraph":{"RenderBox":[],"ContainerRenderObjectMixin":["RenderBox","TextParentData"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"ContainerRenderObjectMixin.1":"TextParentData","ContainerRenderObjectMixin.0":"RenderBox"},"ProseTextState":{"State":["1"]},"ProseTextLayout":{"TextLayout":[]},"RenderParagraphProseTextLayout":{"ProseTextLayout":[],"TextLayout":[]},"TextLayoutSelectionHighlight":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextLayoutEmptyHighlight":{"StatelessWidget":[],"Widget":[],"DiagnosticableTree":[]},"_EmptyHighlightPainter":{"Listenable":[]},"TextSelectionPainter":{"Listenable":[]},"TextUnderlineLayer":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"TextUnderlineLayerState":{"State":["TextUnderlineLayer"]},"_UnderlinePainter":{"Listenable":[]},"ArMessages":{"LookupMessages":[]},"CaMessages":{"LookupMessages":[]},"CsMessages":{"LookupMessages":[]},"DaMessages":{"LookupMessages":[]},"DeMessages":{"LookupMessages":[]},"EnMessages":{"LookupMessages":[]},"EnShortMessages":{"LookupMessages":[]},"EsMessages":{"LookupMessages":[]},"EsShortMessages":{"LookupMessages":[]},"FaMessages":{"LookupMessages":[]},"FrMessages":{"LookupMessages":[]},"FrShortMessages":{"LookupMessages":[]},"HuMessages":{"LookupMessages":[]},"HuShortMessages":{"LookupMessages":[]},"ItMessages":{"LookupMessages":[]},"ItShortMessages":{"LookupMessages":[]},"JaMessages":{"LookupMessages":[]},"NbNoShortMessages":{"LookupMessages":[]},"NbNoMessages":{"LookupMessages":[]},"NlMessages":{"LookupMessages":[]},"NlShortMessages":{"LookupMessages":[]},"PlMessages":{"LookupMessages":[]},"PtBrMessages":{"LookupMessages":[]},"PtBrShortMessages":{"LookupMessages":[]},"RoMessages":{"LookupMessages":[]},"RoShortMessages":{"LookupMessages":[]},"RuMessages":{"LookupMessages":[]},"RuShortMessages":{"LookupMessages":[]},"SvMessages":{"LookupMessages":[]},"SvShortMessages":{"LookupMessages":[]},"ThMessages":{"LookupMessages":[]},"ThShortMessages":{"LookupMessages":[]},"ZhMessages":{"LookupMessages":[]},"BoxValueConstraints":{"BoxConstraints":[],"Constraints":[]},"ValueLayoutBuilder":{"ConstrainedLayoutBuilder":["BoxValueConstraints<1>"],"RenderObjectWidget":[],"Widget":[],"DiagnosticableTree":[],"ConstrainedLayoutBuilder.0":"BoxValueConstraints<1>"},"_RenderValueLayoutBuilder":{"RenderConstrainedLayoutBuilder":["BoxValueConstraints<1>","RenderBox"],"RenderBox":[],"RenderObjectWithChildMixin":["RenderBox"],"RenderObject":[],"DiagnosticableTree":[],"HitTestTarget":[],"RenderConstrainedLayoutBuilder.0":"BoxValueConstraints<1>"},"Version":{"Comparable":["Version"]},"VsScrollbar":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_MaterialScrollbar1":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_ScrollbarState":{"State":["VsScrollbar"]},"_MaterialScrollbarState1":{"RawScrollbarState":["_MaterialScrollbar1"],"State":["_MaterialScrollbar1"]},"_EventStream0":{"Stream":["1"],"Stream.T":"1"},"CupertinoUserInterfaceLevel":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"MaterialBanner":{"StatefulWidget":[],"Widget":[],"DiagnosticableTree":[]},"_TooltipVisibilityScope":{"InheritedWidget":[],"ProxyWidget":[],"Widget":[],"DiagnosticableTree":[]},"Pixel":{"Color1":[],"Iterable":["num"]},"LinkViewController":{"PlatformViewController":[]}}')); + A._Universe_addErasedTypes(init.typeUniverse, JSON.parse('{"FixedLengthListMixin":1,"UnmodifiableListMixin":1,"UnmodifiableListBase":1,"__CastListBase__CastIterableBase_ListMixin":2,"ConstantSet":1,"NativeTypedArray":1,"EventSink":1,"MultiStreamController":1,"StreamView":1,"StreamTransformerBase":2,"_SyncStreamControllerDispatch":1,"_DelayedEvent":1,"UnmodifiableMapBase":2,"_UnmodifiableSetMixin":1,"_SplayTreeNode":2,"_SplayTree":2,"_SplayTreeMap__SplayTree_MapMixin":2,"_SplayTreeSet__SplayTree_Iterable":1,"_SplayTreeSet__SplayTree_Iterable_SetMixin":1,"_UnmodifiableMapView_MapView__UnmodifiableMapMixin":2,"_UnmodifiableSetView_SetBase__UnmodifiableSetMixin":1,"ChunkedConversionSink":1,"Codec0":2,"_StringSinkConversionSink":1,"Comparable":1,"Iterator":1,"_JsArray_JsObject_ListMixin":1,"Serializer":1,"BaseBarRendererConfig":1,"BaseRenderSpec":1,"Scale":1,"Extents":1,"TypedKey":1,"_BaseChartState_State_TickerProviderStateMixin":1,"CartesianChart0":1,"AnimationWithParentMixin":1,"CompoundAnimation":1,"_CompoundAnimation_Animation_AnimationLazyListenerMixin":1,"_CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin":1,"_CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin":1,"ParametricCurve":1,"__AnimatedEvaluation_Animation_AnimationWithParentMixin":1,"__CupertinoRadioState_State_TickerProviderStateMixin":1,"__CupertinoRadioState_State_TickerProviderStateMixin_ToggleableStateMixin":1,"ToggleableStateMixin":1,"__DropdownButtonState_State_WidgetsBindingObserver":1,"MaterialStateMixin":1,"_MaterialPageRoute_PageRoute_MaterialRouteTransitionMixin":1,"_ZoomTransitionBase":1,"__RadioState_State_TickerProviderStateMixin":1,"__RadioState_State_TickerProviderStateMixin_ToggleableStateMixin":1,"ToggleableStateMixin0":1,"_ContainerBoxParentData_BoxParentData_ContainerParentDataMixin":1,"ContainerParentDataMixin":1,"RenderProxyBoxMixin":1,"RenderAnimatedOpacityMixin":1,"_RenderCustomClip":1,"_RenderPhysicalModelBase":1,"RenderViewportBase":1,"AutomaticKeepAliveClientMixin":1,"_FormFieldState_State_RestorationMixin":1,"ImplicitlyAnimatedWidgetState":1,"AnimatedWidgetBaseState":1,"_ImplicitlyAnimatedWidgetState_State_SingleTickerProviderStateMixin":1,"Page":1,"TransitionDelegate":1,"PageStorageKey":1,"PageRoute":1,"RestorableProperty":1,"RestorationMixin":1,"RestorableValue":1,"_RestorablePrimitiveValue":1,"RestorableListenable":1,"RestorableChangeNotifier":1,"__RouterState_State_RestorationMixin":1,"OverlayRoute":1,"LocalHistoryRoute":1,"PopupRoute":1,"RawDialogRoute":1,"_ModalRoute_TransitionRoute_LocalHistoryRoute":1,"_RawScrollbarState_State_TickerProviderStateMixin":1,"SlottedMultiChildRenderObjectWidget":2,"_SlottedMultiChildRenderObjectWidget_RenderObjectWidget_SlottedMultiChildRenderObjectWidgetMixin":2,"SingleTickerProviderStateMixin":1,"TickerProviderStateMixin":1,"_UndoHistoryState_State_UndoManagerClient":1,"ForwardingSink":2,"IObservable":1,"_ReactiveModel_Object_IObservable":1,"ContentLayerStatefulWidget":1,"ContentLayerState":2,"DocumentLayoutLayerState":2,"_RawScrollbarWithCustomPhysicsState_State_TickerProviderStateMixin":1,"_ItemSelectionListState_State_SingleTickerProviderStateMixin":1,"_ProseTextState_State_ProseTextBlock":1,"__RenderValueLayoutBuilder_RenderBox_RenderObjectWithChildMixin_RenderConstrainedLayoutBuilder":1,"Factory":1,"ExceptionCauseExtractor":1,"ExceptionStackTraceExtractor":1}')); var string$ = { x10__0__: "\x10@\x100@@\xa0\x80 0P`pPP\xb1\x10@\x100@@\xa0\x80 0P`pPP\xb0\x11@\x100@@\xa0\x80 0P`pPP\xb0\x10@\x100@@\xa0\x80 1P`pPP\xb0\x10A\x101AA\xa1\x81 1QaqQQ\xb0\x10@\x100@@\xa0\x80 1Q`pPP\xb0\x10@\x100@@\xa0\x80 1QapQP\xb0\x10@\x100@@\xa0\x80 1PaqQQ\xb0\x10\xe0\x100@@\xa0\x80 1P`pPP\xb0\xb1\xb1\xb1\xb1\x91\xb1\xc1\x81\xb1\xb1\xb1\xb1\xb1\xb1\xb1\xb1\x10@\x100@@\xd0\x80 1P`pPP\xb0\x11A\x111AA\xa1\x81!1QaqQQ\xb1\x10@\x100@@\x90\x80 1P`pPP\xb0", x20__con: " - continuing an existing character selection: ", @@ -626266,6 +627624,7 @@ InvoiceUIState: findType("InvoiceUIState"), InvoiceViewVM: findType("InvoiceViewVM"), ItemEditDetails: findType("ItemEditDetails"), + ItemSelectionList_SuperEditorDemoTextItem: findType("ItemSelectionList"), IterableEquality_dynamic: findType("IterableEquality<@>"), Iterable_dynamic: findType("Iterable<@>"), Iterable_nullable_Object: findType("Iterable"), @@ -626686,6 +628045,7 @@ LicenseEntry: findType("LicenseEntry"), LineCharProperty: findType("LineCharProperty"), LinePointHighlighter_DateTime: findType("LinePointHighlighter"), + LinkAttribution: findType("LinkAttribution"), LinkReference: findType("LinkReference"), LinkTransactionToExpenseRequest: findType("LinkTransactionToExpenseRequest"), LinkTransactionToPaymentRequest: findType("LinkTransactionToPaymentRequest"), @@ -626980,6 +628340,7 @@ MappedListIterable_VendorReportFields_String: findType("MappedListIterable"), MappedListIterable_Widget_Expanded: findType("MappedListIterable"), MappedListIterable_Widget_Widget: findType("MappedListIterable"), + MappedListIterable__TextType_SuperEditorDemoTextItem: findType("MappedListIterable<_TextType,SuperEditorDemoTextItem>"), MappedListIterable__TraversalSortNode_SemanticsNode: findType("MappedListIterable<_TraversalSortNode,SemanticsNode>"), MappedListIterable_int_SemanticsNode: findType("MappedListIterable"), MappedListIterable_int_Widget: findType("MappedListIterable"), @@ -627333,6 +628694,7 @@ RestoreVendorRequest: findType("RestoreVendorRequest"), RestoreWebhooksRequest: findType("RestoreWebhooksRequest"), ReverseTween_nullable_Rect: findType("ReverseTween"), + ReversedListIterable_NamedAttribution: findType("ReversedListIterable"), ReversedListIterable_String: findType("ReversedListIterable"), ReversedListIterable__OverlayEntryWidget: findType("ReversedListIterable<_OverlayEntryWidget>"), ReversedListIterable__SemanticsSortGroup: findType("ReversedListIterable<_SemanticsSortGroup>"), @@ -628158,6 +629520,7 @@ WhereIterable_PurchaseOrderItemReportFields: findType("WhereIterable"), WhereIterable_QuoteItemReportFields: findType("WhereIterable"), WhereIterable_String: findType("WhereIterable"), + WhereIterable__TextType: findType("WhereIterable<_TextType>"), WhereTypeIterable_BaseEntity: findType("WhereTypeIterable"), WhereTypeIterable_CompanyGatewayEntity: findType("WhereTypeIterable"), WhereTypeIterable_DocumentEdit: findType("WhereTypeIterable"), @@ -628836,6 +630199,8 @@ B.AttributeKey_kKQ = new A.AttributeKey("SeriesRenderer.rendererId", type$.AttributeKey_String); B.AttributeKey_kWM = new A.AttributeKey("Axis.measureAxis", type$.AttributeKey_Axis_Object); B.AttributeKey_vl2 = new A.AttributeKey("BarRenderer.elements", A.findType("AttributeKey>")); + B.AttributionVisitEvent_0 = new A.AttributionVisitEvent(0, "start"); + B.AttributionVisitEvent_1 = new A.AttributionVisitEvent(1, "end"); B.AuthenticationOptions_false = new A.AuthenticationOptions(false); B.AuthenticationOptions_true = new A.AuthenticationOptions(true); B.AuthorizationErrorCode_0 = new A.AuthorizationErrorCode(0, "canceled"); @@ -628989,6 +630354,7 @@ B.BoxFit_2 = new A.BoxFit(2, "cover"); B.BoxFit_6 = new A.BoxFit(6, "scaleDown"); B.BoxHeightStyle_0 = new A.BoxHeightStyle(0, "tight"); + B.BoxHeightStyle_1 = new A.BoxHeightStyle(1, "max"); B.BoxHeightStyle_5 = new A.BoxHeightStyle(5, "strut"); B.BoxShape_1 = new A.BoxShape(1, "circle"); B.BoxWidthStyle_0 = new A.BoxWidthStyle(0, "tight"); @@ -629026,6 +630392,7 @@ B.C_BrowserPlatformLocation = new A.BrowserPlatformLocation(); B.C_CkLinearToSrgbGammaColorFilter = new A.CkLinearToSrgbGammaColorFilter(); B.C_CkSrgbToLinearGammaColorFilter = new A.CkSrgbToLinearGammaColorFilter(); + B.C_ClearComposingRegionRequest = new A.ClearComposingRegionRequest(); B.C_ClearSelectionRequest = new A.ClearSelectionRequest(); B.C_ClientRepository = new A.ClientRepository(); B.C_CodeBlockSyntax = new A.CodeBlockSyntax(); @@ -629238,6 +630605,7 @@ B.TextStyle_SVP = new A.TextStyle(true, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.C_PinTheme = new A.PinTheme(); B.C_PointerSupportDetector = new A.PointerSupportDetector(); + B.C_PopoverGeometry = new A.PopoverGeometry(); B.C_PreviousInputAction = new A.PreviousInputAction(); B.C_ProductRepository = new A.ProductRepository(); B.C_ProductTypeConverter = new A.ProductTypeConverter(); @@ -629985,6 +631353,7 @@ B.EdgeInsets_10_0_0_0 = new A.EdgeInsets(10, 0, 0, 0); B.EdgeInsets_10_0_10_0 = new A.EdgeInsets(10, 0, 10, 0); B.EdgeInsets_10_0_16_0 = new A.EdgeInsets(10, 0, 16, 0); + B.EdgeInsets_10_0_8_0 = new A.EdgeInsets(10, 0, 8, 0); B.EdgeInsets_10_10_10_10 = new A.EdgeInsets(10, 10, 10, 10); B.EdgeInsets_10_3_10_3 = new A.EdgeInsets(10, 3, 10, 3); B.EdgeInsets_10_4_16_4 = new A.EdgeInsets(10, 4, 16, 4); @@ -630007,6 +631376,7 @@ B.EdgeInsets_16_0_16_16 = new A.EdgeInsets(16, 0, 16, 16); B.EdgeInsets_16_0_16_20 = new A.EdgeInsets(16, 0, 16, 20); B.EdgeInsets_16_0_16_8 = new A.EdgeInsets(16, 0, 16, 8); + B.EdgeInsets_16_0_24_0 = new A.EdgeInsets(16, 0, 24, 0); B.EdgeInsets_16_0_4_0 = new A.EdgeInsets(16, 0, 4, 0); B.EdgeInsets_16_12_16_12 = new A.EdgeInsets(16, 12, 16, 12); B.EdgeInsets_16_13_16_13 = new A.EdgeInsets(16, 13, 16, 13); @@ -633155,6 +634525,11 @@ B._Diagonal__CornerId_1__CornerId_2 = new A._Diagonal(B._CornerId_1, B._CornerId_2); B._Diagonal__CornerId_2__CornerId_1 = new A._Diagonal(B._CornerId_2, B._CornerId_1); B.List_Tkv = A._setArrayType(makeConstList([B._Diagonal__CornerId_0__CornerId_3, B._Diagonal__CornerId_3__CornerId_0, B._Diagonal__CornerId_1__CornerId_2, B._Diagonal__CornerId_2__CornerId_1]), A.findType("JSArray<_Diagonal>")); + B.NamedAttribution_code = new A.NamedAttribution("code"); + B.NamedAttribution_bold = new A.NamedAttribution("bold"); + B.NamedAttribution_italics = new A.NamedAttribution("italics"); + B.NamedAttribution_strikethrough = new A.NamedAttribution("strikethrough"); + B.List_Toh = A._setArrayType(makeConstList([B.NamedAttribution_code, B.NamedAttribution_bold, B.NamedAttribution_italics, B.NamedAttribution_strikethrough]), A.findType("JSArray")); B.List_TrQ = A._setArrayType(makeConstList(["dom", "lun", "mar", "mer", "gio", "ven", "sab"]), type$.JSArray_String); B.List_TsS = A._setArrayType(makeConstList(["h:mm:ss\u202fa zzzz", "h:mm:ss\u202fa z", "h:mm:ss\u202fa", "h:mm\u202fa"]), type$.JSArray_String); B.List_Type_AppLayout_co1 = A._setArrayType(makeConstList([B.Type_AppLayout_co1]), type$.JSArray_Type); @@ -634351,6 +635726,10 @@ B.List_lqi = A._setArrayType(makeConstList(["G", "F", "M", "A", "M", "G", "L", "A", "S", "O", "N", "D"]), type$.JSArray_String); B.Type__$InvitationEntity_0mj = A.typeLiteral("_$InvitationEntity"); B.List_m1d = A._setArrayType(makeConstList([B.Type_InvitationEntity_qtf, B.Type__$InvitationEntity_0mj]), type$.JSArray_Type); + B.LogicalKeyboardKey_4294967309 = new A.LogicalKeyboardKey(4294967309); + B.LogicalKeyboardKey_8589935117 = new A.LogicalKeyboardKey(8589935117); + B.LogicalKeyboardKey_4294967323 = new A.LogicalKeyboardKey(4294967323); + B.List_m2n = A._setArrayType(makeConstList([B.LogicalKeyboardKey_4294967309, B.LogicalKeyboardKey_8589935117, B.LogicalKeyboardKey_4294968065, B.LogicalKeyboardKey_4294968068, B.LogicalKeyboardKey_4294967323]), type$.JSArray_LogicalKeyboardKey); B.List_m5d = A._setArrayType(makeConstList(["\u1325\u12cb\u1275", "\u12a8\u1230\u12d3\u1275"]), type$.JSArray_String); B.List_m5d0 = A._setArrayType(makeConstList(["jan.", "feb.", "mars", "apr.", "maj", "juni", "juli", "aug.", "sep.", "okt.", "nov.", "dec."]), type$.JSArray_String); B.Type_PaymentTypeItemResponse_4QF = A.typeLiteral("PaymentTypeItemResponse"); @@ -634692,6 +636071,14 @@ B.List_swi = A._setArrayType(makeConstList(["januar", "februar", "mart", "april", "maj", "juni", "juli", "august", "septembar", "oktobar", "novembar", "decembar"]), type$.JSArray_String); B.List_t2a = A._setArrayType(makeConstList(["jan", "feb", "mar", "apr", "maj", "jun", "jul", "avg", "sep", "okt", "nov", "dec"]), type$.JSArray_String); B.List_tA7 = A._setArrayType(makeConstList(["h:mm:ss a, zzzz", "h:mm:ss a, z", "h:mm:ss a", "h:mm a"]), type$.JSArray_String); + B._TextType_0 = new A._TextType(0, "header1"); + B._TextType_1 = new A._TextType(1, "header2"); + B._TextType_2 = new A._TextType(2, "header3"); + B._TextType_3 = new A._TextType(3, "paragraph"); + B._TextType_4 = new A._TextType(4, "blockquote"); + B._TextType_5 = new A._TextType(5, "orderedListItem"); + B._TextType_6 = new A._TextType(6, "unorderedListItem"); + B.List_tCu = A._setArrayType(makeConstList([B._TextType_0, B._TextType_1, B._TextType_2, B._TextType_3, B._TextType_4, B._TextType_5, B._TextType_6]), A.findType("JSArray<_TextType>")); B.List_tSO = A._setArrayType(makeConstList(["I \u10d9\u10d5\u10d0\u10e0\u10e2\u10d0\u10da\u10d8", "II \u10d9\u10d5\u10d0\u10e0\u10e2\u10d0\u10da\u10d8", "III \u10d9\u10d5\u10d0\u10e0\u10e2\u10d0\u10da\u10d8", "IV \u10d9\u10d5\u10d0\u10e0\u10e2\u10d0\u10da\u10d8"]), type$.JSArray_String); B.List_tSk = A._setArrayType(makeConstList(["S", "M", "D", "W", "D", "V", "S"]), type$.JSArray_String); B.List_tbody_tfoot_thead_html = A._setArrayType(makeConstList(["tbody", "tfoot", "thead", "html"]), type$.JSArray_String); @@ -635027,8 +636414,6 @@ B.LogicalKeyboardKey_32 = new A.LogicalKeyboardKey(32); B.LogicalKeyboardKey_4294967304 = new A.LogicalKeyboardKey(4294967304); B.LogicalKeyboardKey_4294967305 = new A.LogicalKeyboardKey(4294967305); - B.LogicalKeyboardKey_4294967309 = new A.LogicalKeyboardKey(4294967309); - B.LogicalKeyboardKey_4294967323 = new A.LogicalKeyboardKey(4294967323); B.LogicalKeyboardKey_4294967423 = new A.LogicalKeyboardKey(4294967423); B.LogicalKeyboardKey_4294967558 = new A.LogicalKeyboardKey(4294967558); B.LogicalKeyboardKey_4294968069 = new A.LogicalKeyboardKey(4294968069); @@ -635047,7 +636432,6 @@ B.LogicalKeyboardKey_8589935090 = new A.LogicalKeyboardKey(8589935090); B.LogicalKeyboardKey_8589935092 = new A.LogicalKeyboardKey(8589935092); B.LogicalKeyboardKey_8589935094 = new A.LogicalKeyboardKey(8589935094); - B.LogicalKeyboardKey_8589935117 = new A.LogicalKeyboardKey(8589935117); B.LogicalKeyboardKey_97 = new A.LogicalKeyboardKey(97); B.LogicalKeyboardKey_98 = new A.LogicalKeyboardKey(98); B.LogicalKeyboardKey_99 = new A.LogicalKeyboardKey(99); @@ -636237,8 +637621,6 @@ B.MutatorType_3 = new A.MutatorType(3, "transform"); B.MutatorType_4 = new A.MutatorType(4, "opacity"); B.NamedAttribution_blockquote = new A.NamedAttribution("blockquote"); - B.NamedAttribution_bold = new A.NamedAttribution("bold"); - B.NamedAttribution_code = new A.NamedAttribution("code"); B.NamedAttribution_header1 = new A.NamedAttribution("header1"); B.NamedAttribution_header2 = new A.NamedAttribution("header2"); B.NamedAttribution_header3 = new A.NamedAttribution("header3"); @@ -636247,10 +637629,8 @@ B.NamedAttribution_header6 = new A.NamedAttribution("header6"); B.NamedAttribution_horizontalRule = new A.NamedAttribution("horizontalRule"); B.NamedAttribution_image = new A.NamedAttribution("image"); - B.NamedAttribution_italics = new A.NamedAttribution("italics"); B.NamedAttribution_listItem = new A.NamedAttribution("listItem"); B.NamedAttribution_paragraph = new A.NamedAttribution("paragraph"); - B.NamedAttribution_strikethrough = new A.NamedAttribution("strikethrough"); B.NamedAttribution_task = new A.NamedAttribution("task"); B.NamedAttribution_underline = new A.NamedAttribution("underline"); B.NavigationBarThemeData_WjX = new A.NavigationBarThemeData(null, null, null, null, null, null, null, null, null, null); @@ -636391,6 +637771,7 @@ B.PopupMenuThemeData_MqF = new A.PopupMenuThemeData(null, null, null, null, null, null, null, null, null, null, null, null); B.PortalLinkStyle_0 = new A.PortalLinkStyle(0, "icons"); B.PortalLinkStyle_2 = new A.PortalLinkStyle(2, "dropdown"); + B.Positioned_wrt = new A.Positioned(null, null, 0, null, null, null, B.Icon_YuM, null); B.PreferredLaunchMode_0 = new A.PreferredLaunchMode(0, "platformDefault"); B.PreferredLaunchMode_1 = new A.PreferredLaunchMode(1, "inAppWebView"); B.PreferredLaunchMode_2 = new A.PreferredLaunchMode(2, "inAppBrowserView"); @@ -636928,6 +638309,7 @@ B.TextStyle_SVP1 = new A.TextStyle(true, null, null, null, null, null, 16, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null); B.TextStyle_c8s = new A.TextStyle(false, B.CupertinoDynamicColor_qQo, null, ".SF Pro Text", null, null, 17, null, null, -0.41, null, null, null, null, null, null, null, B.TextDecoration_0, null, null, null, null, null, null, null, null); B.TextStyle_cMb = new A.TextStyle(true, B.Color_0, null, null, null, null, 1, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null); + B.TextStyle_cMb1 = new A.TextStyle(true, B.Color_4278190080, null, null, null, null, 12, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.TextStyle_cMb0 = new A.TextStyle(true, B.Color_4278190080, null, null, null, null, 16, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.TextStyle_etK = new A.TextStyle(true, B.Color_4294967295, null, null, null, null, 16, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); B.TextStyle_gkc = new A.TextStyle(true, B.Color_4287137928, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); @@ -647816,7 +649198,7 @@ var t1 = A.findType("NamedAttribution"); return new A.UnmodifiableSetView(A.LinkedHashSet_LinkedHashSet$of(A.LinkedHashSet_LinkedHashSet$_literal([B.NamedAttribution_bold, B.NamedAttribution_italics, B.NamedAttribution_underline, B.NamedAttribution_strikethrough], t1), t1), A.findType("UnmodifiableSetView")); }); - _lazyFinal($, "defaultRequestHandlers", "$get$defaultRequestHandlers", () => A.List_List$unmodifiable(A._setArrayType([new A.defaultRequestHandlers_closure(), new A.defaultRequestHandlers_closure0(), new A.defaultRequestHandlers_closure1(), new A.defaultRequestHandlers_closure2(), new A.defaultRequestHandlers_closure3(), new A.defaultRequestHandlers_closure4(), new A.defaultRequestHandlers_closure5(), new A.defaultRequestHandlers_closure6(), new A.defaultRequestHandlers_closure7(), new A.defaultRequestHandlers_closure8(), new A.defaultRequestHandlers_closure9(), new A.defaultRequestHandlers_closure10(), new A.defaultRequestHandlers_closure11(), new A.defaultRequestHandlers_closure12(), new A.defaultRequestHandlers_closure13(), new A.defaultRequestHandlers_closure14(), new A.defaultRequestHandlers_closure15(), new A.defaultRequestHandlers_closure16(), new A.defaultRequestHandlers_closure17(), new A.defaultRequestHandlers_closure18(), new A.defaultRequestHandlers_closure19(), new A.defaultRequestHandlers_closure20(), new A.defaultRequestHandlers_closure21(), new A.defaultRequestHandlers_closure22(), new A.defaultRequestHandlers_closure23(), new A.defaultRequestHandlers_closure24(), new A.defaultRequestHandlers_closure25(), new A.defaultRequestHandlers_closure26(), new A.defaultRequestHandlers_closure27(), new A.defaultRequestHandlers_closure28(), new A.defaultRequestHandlers_closure29(), new A.defaultRequestHandlers_closure30(), new A.defaultRequestHandlers_closure31(), new A.defaultRequestHandlers_closure32(), new A.defaultRequestHandlers_closure33(), new A.defaultRequestHandlers_closure34(), new A.defaultRequestHandlers_closure35(), new A.defaultRequestHandlers_closure36(), new A.defaultRequestHandlers_closure37()], A.findType("JSArray")), type$.dynamic)); + _lazyFinal($, "defaultRequestHandlers", "$get$defaultRequestHandlers", () => A.List_List$unmodifiable(A._setArrayType([new A.defaultRequestHandlers_closure(), new A.defaultRequestHandlers_closure0(), new A.defaultRequestHandlers_closure1(), new A.defaultRequestHandlers_closure2(), new A.defaultRequestHandlers_closure3(), new A.defaultRequestHandlers_closure4(), new A.defaultRequestHandlers_closure5(), new A.defaultRequestHandlers_closure6(), new A.defaultRequestHandlers_closure7(), new A.defaultRequestHandlers_closure8(), new A.defaultRequestHandlers_closure9(), new A.defaultRequestHandlers_closure10(), new A.defaultRequestHandlers_closure11(), new A.defaultRequestHandlers_closure12(), new A.defaultRequestHandlers_closure13(), new A.defaultRequestHandlers_closure14(), new A.defaultRequestHandlers_closure15(), new A.defaultRequestHandlers_closure16(), new A.defaultRequestHandlers_closure17(), new A.defaultRequestHandlers_closure18(), new A.defaultRequestHandlers_closure19(), new A.defaultRequestHandlers_closure20(), new A.defaultRequestHandlers_closure21(), new A.defaultRequestHandlers_closure22(), new A.defaultRequestHandlers_closure23(), new A.defaultRequestHandlers_closure24(), new A.defaultRequestHandlers_closure25(), new A.defaultRequestHandlers_closure26(), new A.defaultRequestHandlers_closure27(), new A.defaultRequestHandlers_closure28(), new A.defaultRequestHandlers_closure29(), new A.defaultRequestHandlers_closure30(), new A.defaultRequestHandlers_closure31(), new A.defaultRequestHandlers_closure32(), new A.defaultRequestHandlers_closure33(), new A.defaultRequestHandlers_closure34(), new A.defaultRequestHandlers_closure35(), new A.defaultRequestHandlers_closure36(), new A.defaultRequestHandlers_closure37(), new A.defaultRequestHandlers_closure38(), new A.defaultRequestHandlers_closure39()], A.findType("JSArray")), type$.dynamic)); _lazyFinal($, "defaultEditorReactions", "$get$defaultEditorReactions", () => { var t1 = $.$get$defaultExtendableStyles(), t2 = new A.HeaderConversionReaction();